diff --git a/CHANGELOG.md b/CHANGELOG.md index 5cba61b88..dd442d549 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -37,6 +37,10 @@ Ref: https://keepachangelog.com/en/1.0.0/ ## Unreleased +### State Machine Breaking + +- (dependencies) [#970](https://github.com/dymensionxyz/dymension/pull/970) Bump dependencies cosmos-sdk to v0.47.12 + ### Features - (swagger) [#856](https://github.com/dymensionxyz/dymension/issues/856) Add make command `proto-swagger-gen` diff --git a/Makefile b/Makefile index 03b84784d..cab9142dc 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ VERSION ?= $(shell git describe --tags --always) PACKAGES_SIMTEST=$(shell go list ./... | grep '/simulation') LEDGER_ENABLED ?= true SDK_PACK := $(shell go list -m github.com/cosmos/cosmos-sdk | sed 's/ /\@/g') -TM_VERSION := $(shell go list -m github.com/tendermint/tendermint | sed 's:.* ::') +TM_VERSION := $(shell go list -m github.com/cometbft/cometbft | sed 's:.* ::') DOCKER := $(shell which docker) BUILDDIR ?= $(CURDIR)/build @@ -65,7 +65,7 @@ ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=dymension \ -X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \ -X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) \ -X "github.com/cosmos/cosmos-sdk/version.BuildTags=$(build_tags_comma_sep)" \ - -X github.com/tendermint/tendermint/version.TMCoreSemVer=$(TM_VERSION) + -X github.com/cometbft/cometbft/version.TMCoreSemVer=$(TM_VERSION) ifeq (cleveldb,$(findstring cleveldb,$(DYMENSION_BUILD_OPTIONS))) ldflags += -X github.com/cosmos/cosmos-sdk/types.DBBackend=cleveldb @@ -164,19 +164,16 @@ containerProtoFmt=cosmos-sdk-proto-fmt-$(protoVer) # Link to the cosmos/proto-builder docker images: # https://github.com/cosmos/cosmos-sdk/pkgs/container/proto-builder # -protoCosmosVer=0.11.2 +protoCosmosVer=0.14.0 protoCosmosName=ghcr.io/cosmos/proto-builder:$(protoCosmosVer) protoCosmosImage=$(DOCKER) run --network host --rm -v $(CURDIR):/workspace --workdir /workspace $(protoCosmosName) proto-gen: @echo "Generating Protobuf files" - @if docker ps -a --format '{{.Names}}' | grep -Eq "^${containerProtoGen}$$"; then docker start -a $(containerProtoGen); else docker run --name $(containerProtoGen) -v $(CURDIR):/workspace --workdir /workspace $(protoImageName) \ - sh ./scripts/protocgen.sh; fi + $(protoCosmosImage) sh ./scripts/protocgen.sh @go mod tidy proto-swagger-gen: - @echo "Downloading Protobuf dependencies" - @make proto-download-deps @echo "Generating Protobuf Swagger" $(protoCosmosImage) sh ./scripts/protoc-swagger-gen.sh diff --git a/app/ante/ante.go b/app/ante/ante.go index 677781f94..6d1353502 100644 --- a/app/ante/ante.go +++ b/app/ante/ante.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" + cometbftlog "github.com/cometbft/cometbft/libs/log" authante "github.com/cosmos/cosmos-sdk/x/auth/ante" - tmlog "github.com/tendermint/tendermint/libs/log" errorsmod "cosmossdk.io/errors" errortypes "github.com/cosmos/cosmos-sdk/types/errors" @@ -63,7 +63,7 @@ func NewAnteHandler(options HandlerOptions) (sdk.AnteHandler, error) { }, nil } -func Recover(logger tmlog.Logger, err *error) { +func Recover(logger cometbftlog.Logger, err *error) { if r := recover(); r != nil { *err = errorsmod.Wrapf(errortypes.ErrPanic, "%v", r) diff --git a/app/ante/ante_options.go b/app/ante/ante_options.go index 3d288791a..3abd009b7 100644 --- a/app/ante/ante_options.go +++ b/app/ante/ante_options.go @@ -5,7 +5,7 @@ import ( authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" authsigning "github.com/cosmos/cosmos-sdk/x/auth/signing" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - ibckeeper "github.com/cosmos/ibc-go/v6/modules/core/keeper" + ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" rollappkeeper "github.com/dymensionxyz/dymension/v3/x/rollapp/keeper" ethante "github.com/evmos/ethermint/app/ante" diff --git a/app/ante/ante_test.go b/app/ante/ante_test.go index dcb98ce4a..3bc1cdd6b 100644 --- a/app/ante/ante_test.go +++ b/app/ante/ante_test.go @@ -9,6 +9,7 @@ import ( "github.com/ethereum/go-ethereum/signer/core/apitypes" "github.com/stretchr/testify/suite" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/cosmos/cosmos-sdk/client" codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/crypto/keyring" @@ -22,7 +23,6 @@ import ( "github.com/evmos/ethermint/ethereum/eip712" "github.com/evmos/ethermint/testutil" ethermint "github.com/evmos/ethermint/types" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" "github.com/dymensionxyz/dymension/v3/app" "github.com/dymensionxyz/dymension/v3/app/ante" @@ -47,7 +47,7 @@ func TestAnteTestSuite(t *testing.T) { // SetupTest setups a new test, with new app, context, and anteHandler. func (s *AnteTestSuite) SetupTest(isCheckTx bool) { s.app = apptesting.Setup(s.T(), isCheckTx) - s.ctx = s.app.BaseApp.NewContext(isCheckTx, tmproto.Header{}).WithBlockHeight(1).WithChainID(apptesting.TestChainID) + s.ctx = s.app.BaseApp.NewContext(isCheckTx, cometbftproto.Header{}).WithBlockHeight(1).WithChainID(apptesting.TestChainID) txConfig := s.app.GetTxConfig() s.clientCtx = client.Context{}. diff --git a/app/ante/handlers.go b/app/ante/handlers.go index e85f9bd15..a1b5dacf4 100644 --- a/app/ante/handlers.go +++ b/app/ante/handlers.go @@ -3,7 +3,7 @@ package ante import ( sdk "github.com/cosmos/cosmos-sdk/types" ante "github.com/cosmos/cosmos-sdk/x/auth/ante" - ibcante "github.com/cosmos/ibc-go/v6/modules/core/ante" + ibcante "github.com/cosmos/ibc-go/v7/modules/core/ante" "github.com/dymensionxyz/dymension/v3/x/rollapp/transfergenesis" ethante "github.com/evmos/ethermint/app/ante" txfeesante "github.com/osmosis-labs/osmosis/v15/x/txfees/ante" diff --git a/app/app.go b/app/app.go index c5db7e273..050518945 100644 --- a/app/app.go +++ b/app/app.go @@ -9,20 +9,27 @@ import ( "os" "path/filepath" - "github.com/cosmos/cosmos-sdk/store/streaming" - "github.com/gorilla/mux" - "github.com/spf13/cast" - abci "github.com/tendermint/tendermint/abci/types" - tmjson "github.com/tendermint/tendermint/libs/json" - "github.com/tendermint/tendermint/libs/log" - tmos "github.com/tendermint/tendermint/libs/os" - dbm "github.com/tendermint/tm-db" + autocliv1 "cosmossdk.io/api/cosmos/autocli/v1" + reflectionv1 "cosmossdk.io/api/cosmos/reflection/v1" + runtimeservices "github.com/cosmos/cosmos-sdk/runtime/services" + simappparams "cosmossdk.io/simapp/params" + "github.com/cosmos/cosmos-sdk/runtime" + "github.com/cosmos/cosmos-sdk/x/auth/posthandler" "github.com/dymensionxyz/dymension/v3/app/keepers" "github.com/dymensionxyz/dymension/v3/app/upgrades" v3 "github.com/dymensionxyz/dymension/v3/app/upgrades/v3" v4 "github.com/dymensionxyz/dymension/v3/app/upgrades/v4" + dbm "github.com/cometbft/cometbft-db" + abci "github.com/cometbft/cometbft/abci/types" + cometbftjson "github.com/cometbft/cometbft/libs/json" + "github.com/cometbft/cometbft/libs/log" + cometbftos "github.com/cometbft/cometbft/libs/os" + + "github.com/gorilla/mux" + "github.com/spf13/cast" + "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/client" nodeservice "github.com/cosmos/cosmos-sdk/client/grpc/node" @@ -32,25 +39,28 @@ import ( "github.com/cosmos/cosmos-sdk/server/api" "github.com/cosmos/cosmos-sdk/server/config" servertypes "github.com/cosmos/cosmos-sdk/server/types" - "github.com/cosmos/cosmos-sdk/simapp" + "github.com/cosmos/cosmos-sdk/store/streaming" + sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" + moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" "github.com/cosmos/cosmos-sdk/version" authtx "github.com/cosmos/cosmos-sdk/x/auth/tx" + "github.com/cosmos/cosmos-sdk/x/crisis" + upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" "github.com/dymensionxyz/dymension/v3/docs" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" - ibctesting "github.com/cosmos/ibc-go/v6/testing" + ibctesting "github.com/cosmos/ibc-go/v7/testing" "github.com/dymensionxyz/dymension/v3/app/ante" appparams "github.com/dymensionxyz/dymension/v3/app/params" - packetforwardmiddleware "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6/packetforward" - packetforwardkeeper "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6/packetforward/keeper" - packetforwardtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6/packetforward/types" + packetforwardmiddleware "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward" + packetforwardkeeper "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/keeper" + packetforwardtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/types" /* ------------------------------ ethermint imports ----------------------------- */ @@ -66,7 +76,7 @@ var ( _ = packetforwardtypes.ErrIntOverflowGenesis _ servertypes.Application = (*App)(nil) - _ simapp.App = (*App)(nil) + _ runtime.AppI = (*App)(nil) _ ibctesting.TestingApp = (*App)(nil) // DefaultNodeHome default home directories for the application daemon @@ -145,7 +155,7 @@ func New( app.GenerateKeys() // load state streaming if enabled - if _, _, err := streaming.LoadStreamingServices(bApp, appOpts, appCodec, keepers.KVStoreKeys); err != nil { + if _, _, err := streaming.LoadStreamingServices(bApp, appOpts, appCodec, logger, keepers.KVStoreKeys); err != nil { panic("failed to load state streaming services: " + err.Error()) } @@ -179,8 +189,8 @@ func New( // so that other modules that want to create or claim capabilities afterwards in InitChain // can do so safely. app.mm.SetOrderInitGenesis(keepers.InitGenesis...) - app.mm.RegisterInvariants(&app.CrisisKeeper) - app.mm.RegisterRoutes(app.Router(), app.QueryRouter(), encodingConfig.Amino) + app.mm.RegisterInvariants(app.CrisisKeeper) + app.configurator = module.NewConfigurator(app.appCodec, app.MsgServiceRouter(), app.GRPCQueryRouter()) app.mm.RegisterServices(app.configurator) @@ -210,14 +220,29 @@ func New( if err != nil { panic(err) } + postHandler, err := posthandler.NewPostHandler( + posthandler.HandlerOptions{}, + ) + if err != nil { + panic(fmt.Errorf("failed to create PostHandler: %w", err)) + } app.SetAnteHandler(anteHandler) app.SetEndBlocker(app.EndBlocker) + app.SetPostHandler(postHandler) app.setupUpgradeHandlers() + autocliv1.RegisterQueryServer(app.GRPCQueryRouter(), runtimeservices.NewAutoCLIQueryService(app.mm.Modules)) + + reflectionSvc, err := runtimeservices.NewReflectionService() + if err != nil { + panic(err) + } + reflectionv1.RegisterReflectionServiceServer(app.GRPCQueryRouter(), reflectionSvc) + if loadLatest { if err := app.LoadLatestVersion(); err != nil { - tmos.Exit(err.Error()) + cometbftos.Exit(err.Error()) } } @@ -243,7 +268,7 @@ func (app *App) EndBlocker(ctx sdk.Context, req abci.RequestEndBlock) abci.Respo // InitChainer application update at chain initialization func (app *App) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain { var genesisState GenesisState - if err := tmjson.Unmarshal(req.AppStateBytes, &genesisState); err != nil { + if err := cometbftjson.Unmarshal(req.AppStateBytes, &genesisState); err != nil { panic(err) } app.UpgradeKeeper.SetModuleVersionMap(ctx, app.mm.GetVersionMap()) @@ -336,7 +361,7 @@ func (app *App) SimulationManager() *module.SimulationManager { // GetTxConfig implements ibctesting.TestingApp func (app *App) GetTxConfig() client.TxConfig { - return simappparams.MakeTestEncodingConfig().TxConfig + return moduletestutil.MakeTestEncodingConfig().TxConfig } func (app *App) ExportState(ctx sdk.Context) map[string]json.RawMessage { @@ -360,17 +385,12 @@ func (app *App) setupUpgradeHandler(upgrade upgrades.Upgrade) { ), ) - // When a planned update height is reached, the old binary will panic - // writing on disk the height and name of the update that triggered it - // This will read that value, and execute the preparations for the upgrade. upgradeInfo, err := app.UpgradeKeeper.ReadUpgradeInfoFromDisk() if err != nil { panic(fmt.Errorf("failed to read upgrade info from disk: %w", err)) } - // Pre upgrade handler switch upgradeInfo.Name { - // do nothing } if upgradeInfo.Name == upgrade.Name && !app.UpgradeKeeper.IsSkipHeight(upgradeInfo.Height) { diff --git a/app/apptesting/events.go b/app/apptesting/events.go index ed7e0f1a9..8126d31f3 100644 --- a/app/apptesting/events.go +++ b/app/apptesting/events.go @@ -43,7 +43,7 @@ func (s *KeeperTestHelper) ExtractAttributes(event sdk.Event) map[string]string return attrs } for _, a := range event.Attributes { - attrs[string(a.Key)] = string(a.Value) + attrs[a.Key] = a.Value } return attrs } diff --git a/app/apptesting/test_helpers.go b/app/apptesting/test_helpers.go index 0f5145383..cbede7a77 100644 --- a/app/apptesting/test_helpers.go +++ b/app/apptesting/test_helpers.go @@ -14,13 +14,13 @@ import ( "cosmossdk.io/math" + dbm "github.com/cometbft/cometbft-db" + abci "github.com/cometbft/cometbft/abci/types" + "github.com/cometbft/cometbft/libs/log" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" + cometbfttypes "github.com/cometbft/cometbft/types" "github.com/dymensionxyz/dymension/v3/app/params" "github.com/stretchr/testify/require" - abci "github.com/tendermint/tendermint/abci/types" - "github.com/tendermint/tendermint/libs/log" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - tmtypes "github.com/tendermint/tendermint/types" - dbm "github.com/tendermint/tm-db" bam "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/client" @@ -30,8 +30,8 @@ import ( "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" "github.com/cosmos/cosmos-sdk/server/types" - "github.com/cosmos/cosmos-sdk/simapp/helpers" "github.com/cosmos/cosmos-sdk/testutil/mock" + simapp "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/errors" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" @@ -44,19 +44,19 @@ import ( // DefaultConsensusParams defines the default Tendermint consensus params used in // SimApp testing. -var DefaultConsensusParams = &abci.ConsensusParams{ - Block: &abci.BlockParams{ +var DefaultConsensusParams = &cometbftproto.ConsensusParams{ + Block: &cometbftproto.BlockParams{ MaxBytes: 200000, MaxGas: -1, }, - Evidence: &tmproto.EvidenceParams{ + Evidence: &cometbftproto.EvidenceParams{ MaxAgeNumBlocks: 302400, MaxAgeDuration: 504 * time.Hour, // 3 weeks is the max duration MaxBytes: 10000, }, - Validator: &tmproto.ValidatorParams{ + Validator: &cometbftproto.ValidatorParams{ PubKeyTypes: []string{ - tmtypes.ABCIPubKeyTypeEd25519, + cometbfttypes.ABCIPubKeyTypeEd25519, }, }, } @@ -79,7 +79,7 @@ func SetupTestingApp() (*app.App, app.GenesisState) { encCdc := app.MakeEncodingConfig() params.SetAddressPrefixes() - newApp := app.New(log.NewNopLogger(), db, nil, true, map[int64]bool{}, app.DefaultNodeHome, 5, encCdc, EmptyAppOptions{}) + newApp := app.New(log.NewNopLogger(), db, nil, true, map[int64]bool{}, app.DefaultNodeHome, 5, encCdc, EmptyAppOptions{}, bam.SetChainID(TestChainID)) defaultGenesisState := app.NewDefaultGenesisState(encCdc.Codec) @@ -104,8 +104,8 @@ func Setup(t *testing.T, isCheckTx bool) *app.App { require.NoError(t, err) // create validator set with single validator - validator := tmtypes.NewValidator(pubKey, 1) - valSet := tmtypes.NewValidatorSet([]*tmtypes.Validator{validator}) + validator := cometbfttypes.NewValidator(pubKey, 1) + valSet := cometbfttypes.NewValidatorSet([]*cometbfttypes.Validator{validator}) // generate genesis account senderPrivKey := secp256k1.GenPrivKey() @@ -122,7 +122,7 @@ func Setup(t *testing.T, isCheckTx bool) *app.App { func genesisStateWithValSet(t *testing.T, app *app.App, genesisState app.GenesisState, - valSet *tmtypes.ValidatorSet, genAccs []authtypes.GenesisAccount, + valSet *cometbfttypes.ValidatorSet, genAccs []authtypes.GenesisAccount, balances ...banktypes.Balance, ) app.GenesisState { // set genesis accounts @@ -178,7 +178,7 @@ func genesisStateWithValSet(t *testing.T, }) // update total supply - bankGenesis := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, totalSupply, []banktypes.Metadata{}) + bankGenesis := banktypes.NewGenesisState(banktypes.DefaultGenesisState().Params, balances, totalSupply, []banktypes.Metadata{}, []banktypes.SendEnabled{}) genesisState[banktypes.ModuleName] = app.AppCodec().MustMarshalJSON(bankGenesis) return genesisState @@ -188,7 +188,7 @@ func genesisStateWithValSet(t *testing.T, // that also act as delegators. For simplicity, each validator is bonded with a delegation // of one consensus engine unit in the default token of the simapp from first genesis // account. A Nop logger is set in SimApp. -func SetupWithGenesisValSet(t *testing.T, valSet *tmtypes.ValidatorSet, genAccs []authtypes.GenesisAccount, balances ...banktypes.Balance) *app.App { +func SetupWithGenesisValSet(t *testing.T, valSet *cometbfttypes.ValidatorSet, genAccs []authtypes.GenesisAccount, balances ...banktypes.Balance) *app.App { t.Helper() app, genesisState := SetupTestingApp() @@ -198,7 +198,7 @@ func SetupWithGenesisValSet(t *testing.T, valSet *tmtypes.ValidatorSet, genAccs require.NoError(t, err) // init chain will set the validator set and initialize the genesis accounts - app.InitChain( + _ = app.InitChain( abci.RequestInitChain{ ChainId: TestChainID, Validators: []abci.ValidatorUpdate{}, @@ -220,8 +220,8 @@ func SetupWithGenesisAccounts(t *testing.T, genAccs []authtypes.GenesisAccount, require.NoError(t, err) // create validator set with single validator - validator := tmtypes.NewValidator(pubKey, 1) - valSet := tmtypes.NewValidatorSet([]*tmtypes.Validator{validator}) + validator := cometbfttypes.NewValidator(pubKey, 1) + valSet := cometbfttypes.NewValidatorSet([]*cometbfttypes.Validator{validator}) return SetupWithGenesisValSet(t, valSet, genAccs, balances...) } @@ -340,7 +340,7 @@ func TestAddr(addr string, bech string) (sdk.AccAddress, error) { // CheckBalance checks the balance of an account. func CheckBalance(t *testing.T, app *app.App, addr sdk.AccAddress, balances sdk.Coins) { - ctxCheck := app.BaseApp.NewContext(true, tmproto.Header{}) + ctxCheck := app.BaseApp.NewContext(true, cometbftproto.Header{}) require.True(t, balances.IsEqual(app.BankKeeper.GetAllBalances(ctxCheck, addr))) } @@ -349,16 +349,16 @@ func CheckBalance(t *testing.T, app *app.App, addr sdk.AccAddress, balances sdk. // the parameter 'expPass' against the result. A corresponding result is // returned. func SignCheckDeliver( - t *testing.T, txCfg client.TxConfig, app *bam.BaseApp, header tmproto.Header, msgs []sdk.Msg, + t *testing.T, txCfg client.TxConfig, app *bam.BaseApp, header cometbftproto.Header, msgs []sdk.Msg, chainID string, accNums, accSeqs []uint64, expSimPass, expPass bool, priv ...cryptotypes.PrivKey, ) (sdk.GasInfo, *sdk.Result, error) { - tx, err := helpers.GenSignedMockTx( + tx, err := simapp.GenSignedMockTx( // nolint: errcheck, gosec rand.New(rand.NewSource(time.Now().UnixNano())), txCfg, msgs, sdk.Coins{sdk.NewInt64Coin(sdk.DefaultBondDenom, 0)}, - helpers.DefaultGenTxGas, + simapp.DefaultGenTxGas, chainID, accNums, accSeqs, @@ -404,13 +404,13 @@ func GenSequenceOfTxs(txGen client.TxConfig, msgs []sdk.Msg, accNums []uint64, i txs := make([]sdk.Tx, numToGenerate) var err error for i := 0; i < numToGenerate; i++ { - txs[i], err = helpers.GenSignedMockTx( + txs[i], err = simapp.GenSignedMockTx( // nolint: gosec rand.New(rand.NewSource(time.Now().UnixNano())), txGen, msgs, sdk.Coins{sdk.NewInt64Coin(sdk.DefaultBondDenom, 0)}, - helpers.DefaultGenTxGas, + simapp.DefaultGenTxGas, "", accNums, initSeqNums, diff --git a/app/apptesting/test_suite.go b/app/apptesting/test_suite.go index c953bdea2..e432eeaf9 100644 --- a/app/apptesting/test_suite.go +++ b/app/apptesting/test_suite.go @@ -1,12 +1,12 @@ package apptesting import ( + "github.com/cometbft/cometbft/libs/rand" codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/dymensionxyz/dymension/v3/app" "github.com/stretchr/testify/suite" - "github.com/tendermint/tendermint/libs/rand" bankutil "github.com/cosmos/cosmos-sdk/x/bank/testutil" rollappkeeper "github.com/dymensionxyz/dymension/v3/x/rollapp/keeper" @@ -88,3 +88,17 @@ func (s *KeeperTestHelper) PostStateUpdate(ctx sdk.Context, rollappId, seqAddr s _, err = msgServer.UpdateState(ctx, &updateState) return startHeight + numOfBlocks, err } + +// FundModuleAcc funds target modules with specified amount. +func (suite *KeeperTestHelper) FundModuleAcc(moduleName string, amounts sdk.Coins) { + err := bankutil.FundModuleAccount(suite.App.BankKeeper, suite.Ctx, moduleName, amounts) + suite.Require().NoError(err) +} + +// StateNotAltered validates that app state is not altered. Fails if it is. +func (suite *KeeperTestHelper) StateNotAltered() { + oldState := suite.App.ExportState(suite.Ctx) + suite.App.Commit() + newState := suite.App.ExportState(suite.Ctx) + suite.Require().Equal(oldState, newState) +} diff --git a/app/export.go b/app/export.go index 87459bcc3..d14856995 100644 --- a/app/export.go +++ b/app/export.go @@ -5,7 +5,7 @@ import ( "fmt" "log" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" servertypes "github.com/cosmos/cosmos-sdk/server/types" sdk "github.com/cosmos/cosmos-sdk/types" @@ -17,10 +17,10 @@ import ( // ExportAppStateAndValidators exports the state of the application for a genesis // file. func (app *App) ExportAppStateAndValidators( - forZeroHeight bool, jailAllowedAddrs []string, + forZeroHeight bool, jailAllowedAddrs []string, modulesToExport []string, ) (servertypes.ExportedApp, error) { // as if they could withdraw from the start of the next block - ctx := app.NewContext(true, tmproto.Header{Height: app.LastBlockHeight()}) + ctx := app.NewContext(true, cometbftproto.Header{Height: app.LastBlockHeight()}) // We export at last height + 1, because that's the height at which // Tendermint will start InitChain. @@ -30,13 +30,13 @@ func (app *App) ExportAppStateAndValidators( app.prepForZeroHeightGenesis(ctx, jailAllowedAddrs) } - genState := app.mm.ExportGenesis(ctx, app.appCodec) + genState := app.mm.ExportGenesisForModules(ctx, app.appCodec, modulesToExport) appState, err := json.MarshalIndent(genState, "", " ") if err != nil { return servertypes.ExportedApp{}, err } - validators, err := staking.WriteValidators(ctx, app.StakingKeeper) + validators, err := staking.WriteValidators(ctx, &app.StakingKeeper) if err != nil { return servertypes.ExportedApp{}, err } diff --git a/app/keepers/keepers.go b/app/keepers/keepers.go index 103781d65..2204247d6 100644 --- a/app/keepers/keepers.go +++ b/app/keepers/keepers.go @@ -13,9 +13,11 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" + + consensusparamkeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper" + consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types" crisiskeeper "github.com/cosmos/cosmos-sdk/x/crisis/keeper" crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" - distr "github.com/cosmos/cosmos-sdk/x/distribution" distrkeeper "github.com/cosmos/cosmos-sdk/x/distribution/keeper" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" evidencekeeper "github.com/cosmos/cosmos-sdk/x/evidence/keeper" @@ -39,18 +41,18 @@ import ( "github.com/cosmos/cosmos-sdk/x/upgrade" upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - packetforwardmiddleware "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6/packetforward" - packetforwardkeeper "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6/packetforward/keeper" - packetforwardtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6/packetforward/types" - ibctransfer "github.com/cosmos/ibc-go/v6/modules/apps/transfer" - ibctransferkeeper "github.com/cosmos/ibc-go/v6/modules/apps/transfer/keeper" - ibctransfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - ibcclient "github.com/cosmos/ibc-go/v6/modules/core/02-client" - ibcclienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - ibcporttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - ibchost "github.com/cosmos/ibc-go/v6/modules/core/24-host" - ibckeeper "github.com/cosmos/ibc-go/v6/modules/core/keeper" - ibctestingtypes "github.com/cosmos/ibc-go/v6/testing/types" + packetforwardmiddleware "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward" + packetforwardkeeper "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/keeper" + packetforwardtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/types" + ibctransfer "github.com/cosmos/ibc-go/v7/modules/apps/transfer" + ibctransferkeeper "github.com/cosmos/ibc-go/v7/modules/apps/transfer/keeper" + ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + ibcclient "github.com/cosmos/ibc-go/v7/modules/core/02-client" + ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + ibcporttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" + ibctestingtypes "github.com/cosmos/ibc-go/v7/testing/types" "github.com/evmos/ethermint/x/evm" evmkeeper "github.com/evmos/ethermint/x/evm/keeper" evmtypes "github.com/evmos/ethermint/x/evm/types" @@ -101,9 +103,9 @@ type AppKeepers struct { SlashingKeeper slashingkeeper.Keeper MintKeeper mintkeeper.Keeper DistrKeeper distrkeeper.Keeper - GovKeeper govkeeper.Keeper - CrisisKeeper crisiskeeper.Keeper - UpgradeKeeper upgradekeeper.Keeper + GovKeeper *govkeeper.Keeper + CrisisKeeper *crisiskeeper.Keeper + UpgradeKeeper *upgradekeeper.Keeper ParamsKeeper paramskeeper.Keeper IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly TransferStack ibcporttypes.IBCModule @@ -113,6 +115,7 @@ type AppKeepers struct { TransferKeeper ibctransferkeeper.Keeper FeeGrantKeeper feegrantkeeper.Keeper PacketForwardMiddlewareKeeper *packetforwardkeeper.Keeper + ConsensusParamsKeeper consensusparamkeeper.Keeper // Ethermint keepers EvmKeeper *evmkeeper.Keeper @@ -154,23 +157,25 @@ func (a *AppKeepers) InitKeepers( invCheckPeriod uint, tracer, homePath string, ) { + govModuleAddress := authtypes.NewModuleAddress(govtypes.ModuleName).String() // init keepers a.ParamsKeeper = initParamsKeeper(appCodec, cdc, a.keys[paramstypes.StoreKey], a.tkeys[paramstypes.TStoreKey]) // set the BaseApp's parameter store - bApp.SetParamStore(a.ParamsKeeper.Subspace(baseapp.Paramspace).WithKeyTable(paramstypes.ConsensusParamsKeyTable())) + a.ConsensusParamsKeeper = consensusparamkeeper.NewKeeper(appCodec, a.keys[consensusparamtypes.StoreKey], govModuleAddress) + bApp.SetParamStore(&a.ConsensusParamsKeeper) // add capability keeper and ScopeToModule for ibc module a.CapabilityKeeper = capabilitykeeper.NewKeeper(appCodec, a.keys[capabilitytypes.StoreKey], a.memKeys[capabilitytypes.MemStoreKey]) // grant capabilities for the ibc and ibc-transfer modules - a.ScopedIBCKeeper = a.CapabilityKeeper.ScopeToModule(ibchost.ModuleName) + a.ScopedIBCKeeper = a.CapabilityKeeper.ScopeToModule(ibcexported.ModuleName) a.ScopedTransferKeeper = a.CapabilityKeeper.ScopeToModule(ibctransfertypes.ModuleName) a.CapabilityKeeper.Seal() a.CrisisKeeper = crisiskeeper.NewKeeper( - a.GetSubspace(crisistypes.ModuleName), invCheckPeriod, a.BankKeeper, authtypes.FeeCollectorName, + appCodec, a.keys[crisistypes.StoreKey], invCheckPeriod, a.BankKeeper, authtypes.FeeCollectorName, govModuleAddress, ) a.UpgradeKeeper = upgradekeeper.NewKeeper( @@ -179,16 +184,16 @@ func (a *AppKeepers) InitKeepers( appCodec, homePath, bApp, - authtypes.NewModuleAddress(govtypes.ModuleName).String(), + govModuleAddress, ) a.AccountKeeper = authkeeper.NewAccountKeeper( appCodec, a.keys[authtypes.StoreKey], - a.GetSubspace(authtypes.ModuleName), authtypes.ProtoBaseAccount, maccPerms, sdk.GetConfig().GetBech32AccountAddrPrefix(), + govModuleAddress, ) a.AuthzKeeper = authzkeeper.NewKeeper( @@ -202,8 +207,8 @@ func (a *AppKeepers) InitKeepers( appCodec, a.keys[banktypes.StoreKey], a.AccountKeeper, - a.GetSubspace(banktypes.ModuleName), moduleAccountAddrs, + govModuleAddress, ) stakingKeeper := stakingkeeper.NewKeeper( @@ -211,40 +216,42 @@ func (a *AppKeepers) InitKeepers( a.keys[stakingtypes.StoreKey], a.AccountKeeper, a.BankKeeper, - a.GetSubspace(stakingtypes.ModuleName), + govModuleAddress, ) a.MintKeeper = mintkeeper.NewKeeper( appCodec, a.keys[minttypes.StoreKey], - a.GetSubspace(minttypes.ModuleName), - &stakingKeeper, + stakingKeeper, a.AccountKeeper, a.BankKeeper, authtypes.FeeCollectorName, + govModuleAddress, ) a.DistrKeeper = distrkeeper.NewKeeper( appCodec, a.keys[distrtypes.StoreKey], - a.GetSubspace(distrtypes.ModuleName), a.AccountKeeper, a.BankKeeper, - &stakingKeeper, + stakingKeeper, authtypes.FeeCollectorName, + govModuleAddress, ) a.SlashingKeeper = slashingkeeper.NewKeeper( appCodec, + cdc, a.keys[slashingtypes.StoreKey], - &stakingKeeper, - a.GetSubspace(slashingtypes.ModuleName), + stakingKeeper, + govModuleAddress, ) // TODO: move back to SetupHooks after https://github.com/dymensionxyz/dymension/pull/970 is merged - a.StakingKeeper = *stakingKeeper.SetHooks( + stakingKeeper.SetHooks( stakingtypes.NewMultiStakingHooks(a.DistrKeeper.Hooks(), a.SlashingKeeper.Hooks()), ) + a.StakingKeeper = *stakingKeeper a.FeeGrantKeeper = feegrantkeeper.NewKeeper( appCodec, @@ -255,7 +262,8 @@ func (a *AppKeepers) InitKeepers( // Create Ethermint keepers a.FeeMarketKeeper = feemarketkeeper.NewKeeper( appCodec, - authtypes.NewModuleAddress(govtypes.ModuleName), + sdk.MustAccAddressFromBech32(govModuleAddress), + a.ConsensusParamsKeeper, a.keys[feemarkettypes.StoreKey], a.tkeys[feemarkettypes.TransientKey], a.GetSubspace(feemarkettypes.ModuleName), @@ -269,7 +277,7 @@ func (a *AppKeepers) InitKeepers( authtypes.NewModuleAddress(govtypes.ModuleName), a.AccountKeeper, a.BankKeeper, - &stakingKeeper, + stakingKeeper, a.FeeMarketKeeper, nil, geth.NewEVM, @@ -322,8 +330,8 @@ func (a *AppKeepers) InitKeepers( // Create IBC Keeper a.IBCKeeper = ibckeeper.NewKeeper( appCodec, - a.keys[ibchost.StoreKey], - a.GetSubspace(ibchost.ModuleName), + a.keys[ibcexported.StoreKey], + a.GetSubspace(ibcexported.ModuleName), stakingKeeper, a.UpgradeKeeper, a.ScopedIBCKeeper, @@ -411,7 +419,6 @@ func (a *AppKeepers) InitKeepers( govRouter := govv1beta1.NewRouter() govRouter.AddRoute(govtypes.RouterKey, govv1beta1.ProposalHandler). AddRoute(paramproposal.RouterKey, params.NewParamChangeProposalHandler(a.ParamsKeeper)). - AddRoute(distrtypes.RouterKey, distr.NewCommunityPoolSpendProposalHandler(a.DistrKeeper)). AddRoute(upgradetypes.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(a.UpgradeKeeper)). AddRoute(ibcclienttypes.RouterKey, ibcclient.NewClientProposalHandler(a.IBCKeeper.ClientKeeper)). AddRoute(streamermoduletypes.RouterKey, streamermodule.NewStreamerProposalHandler(a.StreamerKeeper)). @@ -427,18 +434,19 @@ func (a *AppKeepers) InitKeepers( govConfig := govtypes.DefaultConfig() a.GovKeeper = govkeeper.NewKeeper( - appCodec, a.keys[govtypes.StoreKey], a.GetSubspace(govtypes.ModuleName), a.AccountKeeper, a.BankKeeper, - &stakingKeeper, govRouter, bApp.MsgServiceRouter(), govConfig, + appCodec, a.keys[govtypes.StoreKey], a.AccountKeeper, a.BankKeeper, + stakingKeeper, bApp.MsgServiceRouter(), govConfig, govModuleAddress, ) + a.GovKeeper.SetLegacyRouter(govRouter) a.PacketForwardMiddlewareKeeper = packetforwardkeeper.NewKeeper( appCodec, a.keys[packetforwardtypes.StoreKey], - a.GetSubspace(packetforwardtypes.ModuleName), a.TransferKeeper, a.IBCKeeper.ChannelKeeper, a.DistrKeeper, a.BankKeeper, a.IBCKeeper.ChannelKeeper, + govModuleAddress, ) } @@ -563,7 +571,7 @@ func initParamsKeeper(appCodec codec.BinaryCodec, legacyAmino *codec.LegacyAmino paramsKeeper.Subspace(crisistypes.ModuleName) paramsKeeper.Subspace(packetforwardtypes.ModuleName).WithKeyTable(packetforwardtypes.ParamKeyTable()) paramsKeeper.Subspace(ibctransfertypes.ModuleName) - paramsKeeper.Subspace(ibchost.ModuleName) + paramsKeeper.Subspace(ibcexported.ModuleName) paramsKeeper.Subspace(rollappmoduletypes.ModuleName) paramsKeeper.Subspace(sequencermoduletypes.ModuleName) paramsKeeper.Subspace(streamermoduletypes.ModuleName) diff --git a/app/keepers/keys.go b/app/keepers/keys.go index 17336d025..016c4b13d 100644 --- a/app/keepers/keys.go +++ b/app/keepers/keys.go @@ -7,6 +7,8 @@ import ( authzkeeper "github.com/cosmos/cosmos-sdk/x/authz/keeper" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" + consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types" + crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" evidencetypes "github.com/cosmos/cosmos-sdk/x/evidence/types" "github.com/cosmos/cosmos-sdk/x/feegrant" @@ -16,9 +18,9 @@ import ( slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - packetforwardtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6/packetforward/types" - ibctransfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - ibchost "github.com/cosmos/ibc-go/v6/modules/core/24-host" + packetforwardtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/types" + ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" evmtypes "github.com/evmos/ethermint/x/evm/types" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" epochstypes "github.com/osmosis-labs/osmosis/v15/x/epochs/types" @@ -100,12 +102,14 @@ var KVStoreKeys = sdk.NewKVStoreKeys( slashingtypes.StoreKey, govtypes.StoreKey, paramstypes.StoreKey, - ibchost.StoreKey, + ibcexported.StoreKey, upgradetypes.StoreKey, feegrant.StoreKey, evidencetypes.StoreKey, ibctransfertypes.StoreKey, capabilitytypes.StoreKey, + crisistypes.StoreKey, + consensusparamtypes.StoreKey, rollappmoduletypes.StoreKey, sequencermoduletypes.StoreKey, streamermoduletypes.StoreKey, diff --git a/app/keepers/modules.go b/app/keepers/modules.go index 651019b25..a914cb4a8 100644 --- a/app/keepers/modules.go +++ b/app/keepers/modules.go @@ -14,11 +14,12 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/cosmos/cosmos-sdk/x/capability" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" + "github.com/cosmos/cosmos-sdk/x/consensus" + consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types" "github.com/cosmos/cosmos-sdk/x/crisis" crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" "github.com/cosmos/cosmos-sdk/x/distribution" distr "github.com/cosmos/cosmos-sdk/x/distribution" - distrclient "github.com/cosmos/cosmos-sdk/x/distribution/client" distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" "github.com/cosmos/cosmos-sdk/x/evidence" evidencetypes "github.com/cosmos/cosmos-sdk/x/evidence/types" @@ -41,15 +42,16 @@ import ( "github.com/cosmos/cosmos-sdk/x/upgrade" upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6/packetforward" - packetforwardmiddleware "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6/packetforward" - packetforwardtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6/packetforward/types" - "github.com/cosmos/ibc-go/v6/modules/apps/transfer" - ibctransfer "github.com/cosmos/ibc-go/v6/modules/apps/transfer" - ibctransfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - ibc "github.com/cosmos/ibc-go/v6/modules/core" - ibcclientclient "github.com/cosmos/ibc-go/v6/modules/core/02-client/client" - ibchost "github.com/cosmos/ibc-go/v6/modules/core/24-host" + "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward" + packetforwardmiddleware "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward" + packetforwardtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/types" + "github.com/cosmos/ibc-go/v7/modules/apps/transfer" + ibctransfer "github.com/cosmos/ibc-go/v7/modules/apps/transfer" + ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + ibc "github.com/cosmos/ibc-go/v7/modules/core" + ibcclientclient "github.com/cosmos/ibc-go/v7/modules/core/02-client/client" + ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" "github.com/evmos/ethermint/x/evm" evmclient "github.com/evmos/ethermint/x/evm/client" evmtypes "github.com/evmos/ethermint/x/evm/types" @@ -102,12 +104,12 @@ var ModuleBasics = module.NewBasicManager( genutil.AppModuleBasic{}, bank.AppModuleBasic{}, capability.AppModuleBasic{}, + consensus.AppModuleBasic{}, staking.AppModuleBasic{}, mint.AppModuleBasic{}, distribution.AppModuleBasic{}, gov.NewAppModuleBasic([]client.ProposalHandler{ paramsclient.ProposalHandler, - distrclient.ProposalHandler, upgradeclient.LegacyProposalHandler, upgradeclient.LegacyCancelProposalHandler, ibcclientclient.UpdateClientProposalHandler, @@ -126,6 +128,7 @@ var ModuleBasics = module.NewBasicManager( slashing.AppModuleBasic{}, feegrantmodule.AppModuleBasic{}, ibc.AppModuleBasic{}, + ibctm.AppModuleBasic{}, upgrade.AppModuleBasic{}, evidence.AppModuleBasic{}, transfer.AppModuleBasic{}, @@ -162,23 +165,24 @@ func (a *AppKeepers) SetupModules( a.AccountKeeper, a.StakingKeeper, bApp.DeliverTx, encodingConfig.TxConfig, ), - auth.NewAppModule(appCodec, a.AccountKeeper, nil), + auth.NewAppModule(appCodec, a.AccountKeeper, nil, a.GetSubspace(authtypes.ModuleName)), authzmodule.NewAppModule(appCodec, a.AuthzKeeper, a.AccountKeeper, a.BankKeeper, encodingConfig.InterfaceRegistry), vesting.NewAppModule(a.AccountKeeper, a.BankKeeper), - bank.NewAppModule(appCodec, a.BankKeeper, a.AccountKeeper), - capability.NewAppModule(appCodec, *a.CapabilityKeeper), + bank.NewAppModule(appCodec, a.BankKeeper, a.AccountKeeper, a.GetSubspace(banktypes.ModuleName)), + capability.NewAppModule(appCodec, *a.CapabilityKeeper, false), feegrantmodule.NewAppModule(appCodec, a.AccountKeeper, a.BankKeeper, a.FeeGrantKeeper, encodingConfig.InterfaceRegistry), - crisis.NewAppModule(&a.CrisisKeeper, skipGenesisInvariants), - gov.NewAppModule(appCodec, a.GovKeeper, a.AccountKeeper, a.BankKeeper), - mint.NewAppModule(appCodec, a.MintKeeper, a.AccountKeeper, nil), - slashing.NewAppModule(appCodec, a.SlashingKeeper, a.AccountKeeper, a.BankKeeper, a.StakingKeeper), - distr.NewAppModule(appCodec, a.DistrKeeper, a.AccountKeeper, a.BankKeeper, a.StakingKeeper), - staking.NewAppModule(appCodec, a.StakingKeeper, a.AccountKeeper, a.BankKeeper), + crisis.NewAppModule(a.CrisisKeeper, skipGenesisInvariants, a.GetSubspace(crisistypes.ModuleName)), + consensus.NewAppModule(appCodec, a.ConsensusParamsKeeper), + gov.NewAppModule(appCodec, a.GovKeeper, a.AccountKeeper, a.BankKeeper, a.GetSubspace(govtypes.ModuleName)), + mint.NewAppModule(appCodec, a.MintKeeper, a.AccountKeeper, nil, a.GetSubspace(minttypes.ModuleName)), + slashing.NewAppModule(appCodec, a.SlashingKeeper, a.AccountKeeper, a.BankKeeper, a.StakingKeeper, a.GetSubspace(slashingtypes.ModuleName)), + distr.NewAppModule(appCodec, a.DistrKeeper, a.AccountKeeper, a.BankKeeper, a.StakingKeeper, a.GetSubspace(distrtypes.ModuleName)), + staking.NewAppModule(appCodec, &a.StakingKeeper, a.AccountKeeper, a.BankKeeper, a.GetSubspace(stakingtypes.ModuleName)), upgrade.NewAppModule(a.UpgradeKeeper), evidence.NewAppModule(a.EvidenceKeeper), ibc.NewAppModule(a.IBCKeeper), params.NewAppModule(a.ParamsKeeper), - packetforwardmiddleware.NewAppModule(a.PacketForwardMiddlewareKeeper), + packetforwardmiddleware.NewAppModule(a.PacketForwardMiddlewareKeeper, a.GetSubspace(packetforwardtypes.ModuleName)), ibctransfer.NewAppModule(a.TransferKeeper), rollappmodule.NewAppModule(appCodec, &a.RollappKeeper, a.AccountKeeper, a.BankKeeper), sequencermodule.NewAppModule(appCodec, a.SequencerKeeper, a.AccountKeeper, a.BankKeeper), @@ -246,7 +250,7 @@ var BeginBlockers = []string{ vestingtypes.ModuleName, feemarkettypes.ModuleName, evmtypes.ModuleName, - ibchost.ModuleName, + ibcexported.ModuleName, ibctransfertypes.ModuleName, packetforwardtypes.ModuleName, authtypes.ModuleName, @@ -268,6 +272,7 @@ var BeginBlockers = []string{ poolmanagertypes.ModuleName, incentivestypes.ModuleName, txfeestypes.ModuleName, + consensusparamtypes.ModuleName, } var EndBlockers = []string{ @@ -289,7 +294,7 @@ var EndBlockers = []string{ feegrant.ModuleName, paramstypes.ModuleName, upgradetypes.ModuleName, - ibchost.ModuleName, + ibcexported.ModuleName, ibctransfertypes.ModuleName, packetforwardtypes.ModuleName, rollappmoduletypes.ModuleName, @@ -304,6 +309,7 @@ var EndBlockers = []string{ poolmanagertypes.ModuleName, incentivestypes.ModuleName, txfeestypes.ModuleName, + consensusparamtypes.ModuleName, } var InitGenesis = []string{ @@ -320,7 +326,7 @@ var InitGenesis = []string{ govtypes.ModuleName, minttypes.ModuleName, crisistypes.ModuleName, - ibchost.ModuleName, + ibcexported.ModuleName, genutiltypes.ModuleName, evidencetypes.ModuleName, paramstypes.ModuleName, @@ -340,4 +346,5 @@ var InitGenesis = []string{ poolmanagertypes.ModuleName, incentivestypes.ModuleName, txfeestypes.ModuleName, + consensusparamtypes.ModuleName, } diff --git a/app/params/encoding.go b/app/params/encoding.go index 8ff9ea04b..b9e9a1634 100644 --- a/app/params/encoding.go +++ b/app/params/encoding.go @@ -14,3 +14,8 @@ type EncodingConfig struct { TxConfig client.TxConfig Amino *codec.LegacyAmino } + +const ( + StakePerAccount = "stake_per_account" + InitiallyBondedValidators = "initially_bonded_validators" +) diff --git a/app/upgrades/types.go b/app/upgrades/types.go index ccb3f909b..44282adaf 100644 --- a/app/upgrades/types.go +++ b/app/upgrades/types.go @@ -1,11 +1,11 @@ package upgrades import ( + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - abci "github.com/tendermint/tendermint/abci/types" "github.com/dymensionxyz/dymension/v3/app/keepers" ) @@ -13,8 +13,8 @@ import ( // BaseAppParamManager defines an interface that BaseApp is expected to fulfill // that allows upgrade handlers to modify BaseApp parameters. type BaseAppParamManager interface { - GetConsensusParams(ctx sdk.Context) *abci.ConsensusParams - StoreConsensusParams(ctx sdk.Context, cp *abci.ConsensusParams) + GetConsensusParams(ctx sdk.Context) *cometbftproto.ConsensusParams + StoreConsensusParams(ctx sdk.Context, cp *cometbftproto.ConsensusParams) } // Upgrade defines a struct containing necessary fields that a SoftwareUpgradeProposal diff --git a/app/upgrades/v3/upgrade_test.go b/app/upgrades/v3/upgrade_test.go index ec1f856e6..8c557d3b6 100644 --- a/app/upgrades/v3/upgrade_test.go +++ b/app/upgrades/v3/upgrade_test.go @@ -6,12 +6,12 @@ import ( "testing" "time" + abci "github.com/cometbft/cometbft/abci/types" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" incentivestypes "github.com/osmosis-labs/osmosis/v15/x/incentives/types" "github.com/stretchr/testify/suite" - abci "github.com/tendermint/tendermint/abci/types" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" "github.com/dymensionxyz/dymension/v3/app" "github.com/dymensionxyz/dymension/v3/app/apptesting" @@ -27,7 +27,7 @@ type UpgradeTestSuite struct { // SetupTest initializes the necessary items for each test func (s *UpgradeTestSuite) SetupTest(t *testing.T) { s.App = apptesting.Setup(t, false) - s.Ctx = s.App.BaseApp.NewContext(false, tmproto.Header{Height: 1, ChainID: "dymension_100-1", Time: time.Now().UTC()}) + s.Ctx = s.App.BaseApp.NewContext(false, cometbftproto.Header{Height: 1, ChainID: "dymension_100-1", Time: time.Now().UTC()}) } // TestUpgradeTestSuite runs the suite of tests for the upgrade handler diff --git a/app/upgrades/v4/constants.go b/app/upgrades/v4/constants.go index 5767968b7..dfa8303f1 100644 --- a/app/upgrades/v4/constants.go +++ b/app/upgrades/v4/constants.go @@ -2,7 +2,8 @@ package v4 import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" - + consensustypes "github.com/cosmos/cosmos-sdk/x/consensus/types" + crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" "github.com/dymensionxyz/dymension/v3/app/upgrades" ) @@ -13,5 +14,10 @@ const ( var Upgrade = upgrades.Upgrade{ Name: UpgradeName, CreateHandler: CreateUpgradeHandler, - StoreUpgrades: storetypes.StoreUpgrades{}, + StoreUpgrades: storetypes.StoreUpgrades{ + Added: []string{ + consensustypes.ModuleName, + crisistypes.ModuleName, + }, + }, } diff --git a/app/upgrades/v4/expected_keepers.go b/app/upgrades/v4/expected_keepers.go new file mode 100644 index 000000000..9ab207e39 --- /dev/null +++ b/app/upgrades/v4/expected_keepers.go @@ -0,0 +1,8 @@ +package v4 + +import paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" + +type ParamsKeeper interface { + Subspace(s string) paramstypes.Subspace + GetSubspaces() []paramstypes.Subspace +} diff --git a/app/upgrades/v4/upgrade.go b/app/upgrades/v4/upgrade.go index a0b276e43..fb84a3791 100644 --- a/app/upgrades/v4/upgrade.go +++ b/app/upgrades/v4/upgrade.go @@ -1,13 +1,27 @@ package v4 import ( + "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" + authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" + banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" + crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" + distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types" + govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" + govv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1" + minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" + paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" + slashingtypes "github.com/cosmos/cosmos-sdk/x/slashing/types" + stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" + // Ethermint modules "github.com/dymensionxyz/dymension/v3/app/keepers" "github.com/dymensionxyz/dymension/v3/app/upgrades" delayedacktypes "github.com/dymensionxyz/dymension/v3/x/delayedack/types" + evmtypes "github.com/evmos/ethermint/x/evm/types" + feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" ) // CreateUpgradeHandler creates an SDK upgrade handler for v4 @@ -19,6 +33,44 @@ func CreateUpgradeHandler( ) upgradetypes.UpgradeHandler { return func(ctx sdk.Context, _ upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) { logger := ctx.Logger().With("upgrade", UpgradeName) + // Set param key table for params module migration + for _, subspace := range keepers.ParamsKeeper.GetSubspaces() { + + var keyTable paramstypes.KeyTable + switch subspace.Name() { + case authtypes.ModuleName: + keyTable = authtypes.ParamKeyTable() //nolint:staticcheck + case banktypes.ModuleName: + keyTable = banktypes.ParamKeyTable() //nolint:staticcheck + case stakingtypes.ModuleName: + keyTable = stakingtypes.ParamKeyTable() //nolint:staticcheck + case minttypes.ModuleName: + keyTable = minttypes.ParamKeyTable() //nolint:staticcheck + case distrtypes.ModuleName: + keyTable = distrtypes.ParamKeyTable() //nolint:staticcheck + case slashingtypes.ModuleName: + keyTable = slashingtypes.ParamKeyTable() //nolint:staticcheck + case govtypes.ModuleName: + keyTable = govv1.ParamKeyTable() //nolint:staticcheck + case crisistypes.ModuleName: + keyTable = crisistypes.ParamKeyTable() //nolint:staticcheck + + // Ethermint modules + case evmtypes.ModuleName: + keyTable = evmtypes.ParamKeyTable() //nolint:staticcheck + case feemarkettypes.ModuleName: + keyTable = feemarkettypes.ParamKeyTable() //nolint:staticcheck + default: + continue + } + + if !subspace.HasKeyTable() { + subspace.WithKeyTable(keyTable) + } + } + // Migrate Tendermint consensus parameters from x/params module to a dedicated x/consensus module. + baseAppLegacySS := keepers.ParamsKeeper.Subspace(baseapp.Paramspace).WithKeyTable(paramstypes.ConsensusParamsKeyTable()) + baseapp.MigrateParams(ctx, baseAppLegacySS, &keepers.ConsensusParamsKeeper) // overwrite params for delayedack module due to added parameters daParams := delayedacktypes.DefaultParams() diff --git a/app/upgrades/v4/upgrade_test.go b/app/upgrades/v4/upgrade_test.go index 2cf3cda5f..00202d7f0 100644 --- a/app/upgrades/v4/upgrade_test.go +++ b/app/upgrades/v4/upgrade_test.go @@ -5,11 +5,11 @@ import ( "testing" "time" + abci "github.com/cometbft/cometbft/abci/types" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" "github.com/stretchr/testify/suite" - abci "github.com/tendermint/tendermint/abci/types" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" "github.com/dymensionxyz/dymension/v3/app" "github.com/dymensionxyz/dymension/v3/app/apptesting" @@ -25,7 +25,7 @@ type UpgradeTestSuite struct { // SetupTest initializes the necessary items for each test func (s *UpgradeTestSuite) SetupTest(t *testing.T) { s.App = apptesting.Setup(t, false) - s.Ctx = s.App.BaseApp.NewContext(false, tmproto.Header{Height: 1, ChainID: "dymension_100-1", Time: time.Now().UTC()}) + s.Ctx = s.App.BaseApp.NewContext(false, cometbftproto.Header{Height: 1, ChainID: "dymension_100-1", Time: time.Now().UTC()}) } // TestUpgradeTestSuite runs the suite of tests for the upgrade handler diff --git a/cmd/dymd/cmd/inspect.go b/cmd/dymd/cmd/inspect.go index 79bb4868f..445cc8dd2 100644 --- a/cmd/dymd/cmd/inspect.go +++ b/cmd/dymd/cmd/inspect.go @@ -7,7 +7,7 @@ import ( "os" "path/filepath" - dbm "github.com/tendermint/tm-db" + dbm "github.com/cometbft/cometbft-db" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" @@ -50,7 +50,7 @@ func InspectCmd(appExporter types.AppExporter, appCreator types.AppCreator, defa // TODO: fix to flag if len(args) > 0 && args[0] == "tendermint" { - return getTendermintState(serverCtx.Config) + return getCometbftState(serverCtx.Config) } /* --------------------------- read rollapps state from db --------------------------- */ @@ -67,7 +67,7 @@ func InspectCmd(appExporter types.AppExporter, appCreator types.AppCreator, defa } height, _ := cmd.Flags().GetInt64(FlagHeight) - exported, err := appExporter(serverCtx.Logger, db, traceWriter, height, false, []string{}, serverCtx.Viper) + exported, err := appExporter(serverCtx.Logger, db, traceWriter, height, false, []string{}, nil, []string{}) if err != nil { return fmt.Errorf("exporting state: %w", err) } diff --git a/cmd/dymd/cmd/inspect_tendermint.go b/cmd/dymd/cmd/inspect_cometbft.go similarity index 89% rename from cmd/dymd/cmd/inspect_tendermint.go rename to cmd/dymd/cmd/inspect_cometbft.go index 08908413b..fb6f14a16 100644 --- a/cmd/dymd/cmd/inspect_tendermint.go +++ b/cmd/dymd/cmd/inspect_cometbft.go @@ -7,10 +7,10 @@ import ( dbm "github.com/cometbft/cometbft-db" - cfg "github.com/tendermint/tendermint/config" - "github.com/tendermint/tendermint/libs/os" - "github.com/tendermint/tendermint/state" - "github.com/tendermint/tendermint/store" + cfg "github.com/cometbft/cometbft/config" + "github.com/cometbft/cometbft/libs/os" + "github.com/cometbft/cometbft/state" + "github.com/cometbft/cometbft/store" ) func loadStateAndBlockStore(config *cfg.Config) (*store.BlockStore, state.Store, error) { @@ -43,7 +43,7 @@ func loadStateAndBlockStore(config *cfg.Config) (*store.BlockStore, state.Store, return blockStore, stateStore, nil } -func getTendermintState(config *cfg.Config) error { +func getCometbftState(config *cfg.Config) error { // use the parsed config to load the block and state store blockStore, stateStore, err := loadStateAndBlockStore(config) if err != nil { diff --git a/cmd/dymd/cmd/root.go b/cmd/dymd/cmd/root.go index 4e2da78ca..87c2e45c7 100644 --- a/cmd/dymd/cmd/root.go +++ b/cmd/dymd/cmd/root.go @@ -14,6 +14,10 @@ import ( "github.com/cosmos/cosmos-sdk/client/rpc" "github.com/cosmos/cosmos-sdk/server" + dbm "github.com/cometbft/cometbft-db" + cometbftcfg "github.com/cometbft/cometbft/config" + cometbftcli "github.com/cometbft/cometbft/libs/cli" + "github.com/cometbft/cometbft/libs/log" sdkserver "github.com/cosmos/cosmos-sdk/server" servertypes "github.com/cosmos/cosmos-sdk/server/types" sdk "github.com/cosmos/cosmos-sdk/types" @@ -22,12 +26,9 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/cosmos/cosmos-sdk/x/crisis" genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" + genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" "github.com/spf13/cast" "github.com/spf13/cobra" - tmcfg "github.com/tendermint/tendermint/config" - tmcli "github.com/tendermint/tendermint/libs/cli" - "github.com/tendermint/tendermint/libs/log" - dbm "github.com/tendermint/tm-db" // this line is used by starport scaffolding # root/moduleImport @@ -97,8 +98,8 @@ ______ __ __ __ __ _______ __ _ _______ ___ _______ __ _ // initTendermintConfig helps to override default Tendermint Config values. // return tmcfg.DefaultConfig if no custom configuration is required for the application. -func initTendermintConfig() *tmcfg.Config { - cfg := tmcfg.DefaultConfig() +func initTendermintConfig() *cometbftcfg.Config { + cfg := cometbftcfg.DefaultConfig() // these values put a higher strain on node memory // cfg.P2P.MaxNumInboundPeers = 100 @@ -127,7 +128,7 @@ func initRootCmd(rootCmd *cobra.Command, encodingConfig appparams.EncodingConfig ethermintclient.ValidateChainID( genutilcli.InitCmd(keepers.ModuleBasics, app.DefaultNodeHome), ), - genutilcli.CollectGenTxsCmd(banktypes.GenesisBalancesIterator{}, app.DefaultNodeHome), + genutilcli.CollectGenTxsCmd(banktypes.GenesisBalancesIterator{}, app.DefaultNodeHome, genutiltypes.DefaultMessageValidator), genutilcli.MigrateGenesisCmd(), genutilcli.GenTxCmd( keepers.ModuleBasics, @@ -137,7 +138,7 @@ func initRootCmd(rootCmd *cobra.Command, encodingConfig appparams.EncodingConfig ), genutilcli.ValidateGenesisCmd(keepers.ModuleBasics), AddGenesisAccountCmd(app.DefaultNodeHome), - tmcli.NewCompletionCmd(rootCmd, true), + cometbftcli.NewCompletionCmd(rootCmd, true), debug.Cmd(), config.Cmd(), pruning.PruningCmd(a.newApp), @@ -262,6 +263,7 @@ func (a appCreator) appExport( forZeroHeight bool, jailAllowedAddrs []string, appOpts servertypes.AppOptions, + modulesToExport []string, ) (servertypes.ExportedApp, error) { homePath, ok := appOpts.Get(flags.FlagHome).(string) if !ok || homePath == "" { @@ -286,5 +288,5 @@ func (a appCreator) appExport( } } - return app.ExportAppStateAndValidators(forZeroHeight, jailAllowedAddrs) + return app.ExportAppStateAndValidators(forZeroHeight, jailAllowedAddrs, modulesToExport) } diff --git a/docs/static/openapi.yml b/docs/static/openapi.yml index c5add4012..5ba5805e3 100644 --- a/docs/static/openapi.yml +++ b/docs/static/openapi.yml @@ -113,6 +113,7 @@ paths: - ON_RECV - ON_ACK - ON_TIMEOUT + - UNDEFINED default: ON_RECV error: type: string @@ -263,6 +264,596 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := anypb.New(foo) + if err != nil { + ... + } + ... + foo := &pb.Foo{} + if err := any.UnmarshalTo(foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + JSON + + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: rollappId + in: path + required: true + type: string + - name: status + in: path + required: true + type: string + enum: + - PENDING + - FINALIZED + - REVERTED + - name: type + in: query + required: false + type: string + enum: + - ON_RECV + - ON_ACK + - ON_TIMEOUT + - UNDEFINED + default: ON_RECV + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean + tags: + - Query + /dymensionxyz/dymension/delayedack/params: + get: + summary: Parameters queries the parameters of the module. + operationId: DelayedAckParams + responses: + '200': + description: A successful response. + schema: + type: object + properties: + params: + description: params holds all the parameters of this module. + type: object + properties: + epoch_identifier: + type: string + bridging_fee: + type: string + description: >- + QueryParamsResponse is response type for the Query/Params RPC + method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := anypb.New(foo) + if err != nil { + ... + } + ... + foo := &pb.Foo{} + if err := any.UnmarshalTo(foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + + + JSON + + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + tags: + - Query + /dymensionxyz/dymension/eibc/demand_order/{id}: + get: + summary: Queries a Demand Order by id. + operationId: DemandOrderById + responses: + '200': + description: A successful response. + schema: + type: object + properties: + demand_order: + title: demand order with the given id + type: object + properties: + id: + type: string + title: >- + id is a hash of the form generated by + GetRollappPacketKey, + + e.g + status/rollappid/packetProofHeight/packetDestinationChannel-PacketSequence + which gurantees uniqueness + tracking_packet_key: + type: string + description: >- + tracking_packet_key is the key of the packet that is being + tracked. + + This key can change depends on the packet status. + price: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: >- + price is the amount that the fulfiller sends to original + eibc transfer recipient + fee: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: >- + fee is the effective profit made by the fulfiller because + they pay price and receive fee + price + recipient: + type: string + is_fulfilled: + type: boolean + tracking_packet_status: + type: string + enum: + - PENDING + - FINALIZED + - REVERTED + default: PENDING + rollapp_id: + type: string + type: + type: string + enum: + - ON_RECV + - ON_ACK + - ON_TIMEOUT + - UNDEFINED + default: ON_RECV + description: >- + QueryGetDemandOrderResponse is the response type for the + Query/GetDemandOrder RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -302,6 +893,305 @@ paths: name "y.z". + JSON + + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: id + description: id of the demand order to get + in: path + required: true + type: string + tags: + - Query + /dymensionxyz/dymension/eibc/demand_orders/{status}: + get: + summary: Queries a list of demand orders by status. + operationId: DemandOrdersByStatus + responses: + '200': + description: A successful response. + schema: + type: object + properties: + demand_orders: + type: array + items: + type: object + properties: + id: + type: string + title: >- + id is a hash of the form generated by + GetRollappPacketKey, + + e.g + status/rollappid/packetProofHeight/packetDestinationChannel-PacketSequence + which gurantees uniqueness + tracking_packet_key: + type: string + description: >- + tracking_packet_key is the key of the packet that is + being tracked. + + This key can change depends on the packet status. + price: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: >- + price is the amount that the fulfiller sends to original + eibc transfer recipient + fee: + type: array + items: + type: object + properties: + denom: + type: string + amount: + type: string + description: >- + Coin defines a token with a denomination and an + amount. + + + NOTE: The amount field is an Int which implements the + custom method + + signatures required by gogoproto. + title: >- + fee is the effective profit made by the fulfiller + because they pay price and receive fee + price + recipient: + type: string + is_fulfilled: + type: boolean + tracking_packet_status: + type: string + enum: + - PENDING + - FINALIZED + - REVERTED + default: PENDING + rollapp_id: + type: string + type: + type: string + enum: + - ON_RECV + - ON_ACK + - ON_TIMEOUT + - UNDEFINED + default: ON_RECV + title: A list of demand orders with the given status + description: >- + QueryDemandOrdersByStatusResponse is the response type for the + Query/GetDemandOrdersByStatus RPC method. + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := anypb.New(foo) + if err != nil { + ... + } + ... + foo := &pb.Foo{} + if err := any.UnmarshalTo(foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + JSON @@ -342,11 +1232,8 @@ paths: "value": "1.212s" } parameters: - - name: rollappId - in: path - required: true - type: string - name: status + description: status of the demand order in: path required: true type: string @@ -354,68 +1241,44 @@ paths: - PENDING - FINALIZED - REVERTED - - name: pagination.key - description: |- - key is a value returned in PageResponse.next_key to begin - querying the next page most efficiently. Only one of offset or key - should be set. - in: query - required: false - type: string - format: byte - - name: pagination.offset - description: >- - offset is a numeric offset that can be used when key is unavailable. - - It is less efficient than using key. Only one of offset or key - should - - be set. + - name: type + description: optional type. in: query required: false type: string - format: uint64 - - name: pagination.limit - description: >- - limit is the total number of results to be returned in the result - page. - - If left empty it will default to a value to be set by each app. + enum: + - ON_RECV + - ON_ACK + - ON_TIMEOUT + - UNDEFINED + default: ON_RECV + - name: rollapp_id + description: optional rollapp_id. in: query required: false type: string - format: uint64 - - name: pagination.count_total - description: >- - count_total is set to true to indicate that the result set should - include - - a count of the total number of items available for pagination in - UIs. - - count_total is only respected when offset is used. It is ignored - when key - - is set. + - name: limit + description: optional limit. in: query required: false - type: boolean - - name: pagination.reverse - description: >- - reverse is set to true if results are to be returned in the - descending order. - - - Since: cosmos-sdk 0.43 + type: integer + format: int32 + - name: fulfillment_state + description: optional fulfillment state. in: query required: false - type: boolean + type: string + enum: + - UNDEFINED + - FULFILLED + - UNFULFILLED + default: UNDEFINED tags: - Query - /dymensionxyz/dymension/delayedack/params: + /dymensionxyz/dymension/eibc/params: get: summary: Parameters queries the parameters of the module. - operationId: DelayedAckParams + operationId: EIbcParams responses: '200': description: A successful response. @@ -428,6 +1291,10 @@ paths: properties: epoch_identifier: type: string + timeout_fee: + type: string + errack_fee: + type: string description: >- QueryParamsResponse is response type for the Query/Params RPC method. @@ -544,6 +1411,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -583,7 +1454,6 @@ paths: name "y.z". - JSON @@ -624,161 +1494,6 @@ paths: } tags: - Query - /dymensionxyz/dymension/eibc/demand_order/{id}: - get: - summary: Queries a Demand Order by id. - operationId: DemandOrderById - responses: - '200': - description: A successful response. - schema: - type: object - properties: - demand_order: - title: demand order with the given id - type: object - properties: - id: - type: string - title: >- - id is a hash of the form generated by - GetRollappPacketKey, - - e.g - status/rollappid/packetProofHeight/packetDestinationChannel-PacketSequence - which gurantees uniqueness - tracking_packet_key: - type: string - description: >- - tracking_packet_key is the key of the packet that is being - tracked. - - This key can change depends on the packet status. - price: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. - - - NOTE: The amount field is an Int which implements the - custom method - - signatures required by gogoproto. - fee: - type: array - items: - type: object - properties: - denom: - type: string - amount: - type: string - description: >- - Coin defines a token with a denomination and an amount. - - - NOTE: The amount field is an Int which implements the - custom method - - signatures required by gogoproto. - recipient: - type: string - is_fulfilled: - type: boolean - tracking_packet_status: - type: string - enum: - - PENDING - - FINALIZED - - REVERTED - default: PENDING - description: >- - QueryGetDemandOrderResponse is the response type for the - Query/GetDemandOrder RPC method. - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string - value: - type: string - format: byte - parameters: - - name: id - description: id of the demand order to get - in: path - required: true - type: string - tags: - - Query - /dymensionxyz/dymension/eibc/params: - get: - summary: Parameters queries the parameters of the module. - operationId: EIbcParams - responses: - '200': - description: A successful response. - schema: - type: object - properties: - params: - description: params holds all the parameters of this module. - type: object - properties: - epoch_identifier: - type: string - timeout_fee: - type: string - errack_fee: - type: string - description: >- - QueryParamsResponse is response type for the Query/Params RPC - method. - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string - value: - type: string - format: byte - tags: - - Query /dymensionxyz/dymension/rollapp/eip155/{eip155}: get: summary: Queries a Rollapp by index. @@ -974,6 +1689,13 @@ paths: description: >- frozen is a boolean that indicates if the rollapp is frozen. + registeredDenoms: + type: array + items: + type: string + title: >- + registeredDenoms is a list of registered denom bases on + this rollapp title: >- Rollapp defines a rollapp object. First the RollApp is created and then @@ -1134,50 +1856,126 @@ paths: type: boolean tags: - Query - /dymensionxyz/dymension/rollapp/latest_state_index/{rollappId}: + /dymensionxyz/dymension/rollapp/latest_state_index/{rollappId}: + get: + summary: Queries a LatestStateIndex by rollapp-id. + operationId: LatestStateIndex + responses: + '200': + description: A successful response. + schema: + type: object + properties: + stateIndex: + type: object + properties: + rollappId: + type: string + title: >- + rollappId is the rollapp that the sequencer belongs to and + asking to update + + it used to identify the what rollapp a StateInfo belongs + + The rollappId follows the same standard as cosmos chain_id + index: + type: string + format: uint64 + title: >- + index is a sequential increasing number, updating on each + + state update used for indexing to a specific state info, + the first index is 1 + title: >- + StateInfoIndex is the data used for indexing and retrieving a + StateInfo + + it updated and saved with every UpdateState in StateInfo. + + We use the this structure also for: + + 1. LatestStateInfoIndex which defines the rollapps' current + (latest) index of the last UpdateState + + 2. LatestFinalizedStateIndex which defines the rollapps' + current (latest) index of the latest StateInfo that was + finalized + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + value: + type: string + format: byte + parameters: + - name: rollappId + in: path + required: true + type: string + - name: finalized + in: query + required: false + type: boolean + tags: + - Query + /dymensionxyz/dymension/rollapp/params: get: - summary: Queries a LatestStateIndex by rollapp-id. - operationId: LatestStateIndex + summary: Parameters queries the parameters of the module. + operationId: RollAppParams responses: '200': description: A successful response. schema: type: object properties: - stateIndex: + params: + description: params holds all the parameters of this module. type: object properties: - rollappId: - type: string - title: >- - rollappId is the rollapp that the sequencer belongs to and - asking to update - - it used to identify the what rollapp a StateInfo belongs - - The rollappId follows the same standard as cosmos chain_id - index: + dispute_period_in_blocks: type: string format: uint64 + title: |- + dispute_period_in_blocks the number of blocks it takes + to change a status of a state from received to finalized. + during that period, any user could submit fraud proof + deployer_whitelist: + type: array + items: + type: object + properties: + address: + type: string + description: |- + address is a bech32-encoded address of the + accounts that are allowed to create a rollapp. title: >- - index is a sequential increasing number, updating on each - - state update used for indexing to a specific state info, - the first index is 1 - title: >- - StateInfoIndex is the data used for indexing and retrieving a - StateInfo - - it updated and saved with every UpdateState in StateInfo. - - We use the this structure also for: + deployer_whitelist is a list of the - 1. LatestStateInfoIndex which defines the rollapps' current - (latest) index of the last UpdateState + accounts that are allowed to create a rollapp and maximum + number of rollapps. - 2. LatestFinalizedStateIndex which defines the rollapps' - current (latest) index of the latest StateInfo that was - finalized + In the case of an empty list, there are no restrictions + rollapps_enabled: + type: boolean + description: >- + QueryParamsResponse is response type for the Query/Params RPC + method. default: description: An unexpected error response. schema: @@ -1200,60 +1998,139 @@ paths: value: type: string format: byte - parameters: - - name: rollappId - in: path - required: true - type: string - - name: finalized - in: query - required: false - type: boolean tags: - Query - /dymensionxyz/dymension/rollapp/params: + /dymensionxyz/dymension/rollapp/rollapp: get: - summary: Parameters queries the parameters of the module. - operationId: RollAppParams + summary: Queries a list of Rollapp items. + operationId: RollappAll responses: '200': description: A successful response. schema: type: object properties: - params: - description: params holds all the parameters of this module. + rollapp: + type: array + items: + type: object + properties: + rollappId: + type: string + description: >- + The unique identifier of the rollapp chain. + + The rollappId follows the same standard as cosmos + chain_id. + latestStateIndex: + type: object + properties: + rollappId: + type: string + title: >- + rollappId is the rollapp that the sequencer belongs + to and asking to update + + it used to identify the what rollapp a StateInfo + belongs + + The rollappId follows the same standard as cosmos + chain_id + index: + type: string + format: uint64 + title: >- + index is a sequential increasing number, updating on + each + + state update used for indexing to a specific state + info, the first index is 1 + title: >- + StateInfoIndex is the data used for indexing and + retrieving a StateInfo + + it updated and saved with every UpdateState in + StateInfo. + + We use the this structure also for: + + 1. LatestStateInfoIndex which defines the rollapps' + current (latest) index of the last UpdateState + + 2. LatestFinalizedStateIndex which defines the rollapps' + current (latest) index of the latest StateInfo that was + finalized + description: Defines the index of the last rollapp UpdateState. + latestFinalizedStateIndex: + type: object + properties: + rollappId: + type: string + title: >- + rollappId is the rollapp that the sequencer belongs + to and asking to update + + it used to identify the what rollapp a StateInfo + belongs + + The rollappId follows the same standard as cosmos + chain_id + index: + type: string + format: uint64 + title: >- + index is a sequential increasing number, updating on + each + + state update used for indexing to a specific state + info, the first index is 1 + title: >- + StateInfoIndex is the data used for indexing and + retrieving a StateInfo + + it updated and saved with every UpdateState in + StateInfo. + + We use the this structure also for: + + 1. LatestStateInfoIndex which defines the rollapps' + current (latest) index of the last UpdateState + + 2. LatestFinalizedStateIndex which defines the rollapps' + current (latest) index of the latest StateInfo that was + finalized + description: >- + Defines the index of the last rollapp UpdateState that + was finalized. + title: Rollapp summary is a compact representation of Rollapp + pagination: type: object properties: - dispute_period_in_blocks: + next_key: + type: string + format: byte + description: |- + next_key is the key to be passed to PageRequest.key to + query the next page most efficiently. It will be empty if + there are no more results. + total: type: string format: uint64 - title: |- - dispute_period_in_blocks the number of blocks it takes - to change a status of a state from received to finalized. - during that period, any user could submit fraud proof - deployer_whitelist: - type: array - items: - type: object - properties: - address: - type: string - description: |- - address is a bech32-encoded address of the - accounts that are allowed to create a rollapp. title: >- - deployer_whitelist is a list of the + total is total number of results available if + PageRequest.count_total - accounts that are allowed to create a rollapp and maximum - number of rollapps. + was set, its value is undefined otherwise + description: >- + PageResponse is to be embedded in gRPC response messages where + the - In the case of an empty list, there are no restrictions - rollapps_enabled: - type: boolean - description: >- - QueryParamsResponse is response type for the Query/Params RPC - method. + corresponding request message has used PageRequest. + + message SomeResponse { + repeated Bar results = 1; + PageResponse page = 2; + } default: description: An unexpected error response. schema: @@ -1276,6 +2153,63 @@ paths: value: type: string format: byte + parameters: + - name: pagination.key + description: |- + key is a value returned in PageResponse.next_key to begin + querying the next page most efficiently. Only one of offset or key + should be set. + in: query + required: false + type: string + format: byte + - name: pagination.offset + description: >- + offset is a numeric offset that can be used when key is unavailable. + + It is less efficient than using key. Only one of offset or key + should + + be set. + in: query + required: false + type: string + format: uint64 + - name: pagination.limit + description: >- + limit is the total number of results to be returned in the result + page. + + If left empty it will default to a value to be set by each app. + in: query + required: false + type: string + format: uint64 + - name: pagination.count_total + description: >- + count_total is set to true to indicate that the result set should + include + + a count of the total number of items available for pagination in + UIs. + + count_total is only respected when offset is used. It is ignored + when key + + is set. + in: query + required: false + type: boolean + - name: pagination.reverse + description: >- + reverse is set to true if results are to be returned in the + descending order. + + + Since: cosmos-sdk 0.43 + in: query + required: false + type: boolean tags: - Query /dymensionxyz/dymension/rollapp/rollapp/{rollappId}: @@ -1473,6 +2407,13 @@ paths: description: >- frozen is a boolean that indicates if the rollapp is frozen. + registeredDenoms: + type: array + items: + type: string + title: >- + registeredDenoms is a list of registered denom bases on + this rollapp title: >- Rollapp defines a rollapp object. First the RollApp is created and then @@ -1893,6 +2834,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -1932,7 +2877,6 @@ paths: name "y.z". - JSON @@ -2093,6 +3037,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -2132,7 +3080,6 @@ paths: name "y.z". - JSON @@ -2408,6 +3355,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -2447,7 +3398,6 @@ paths: name "y.z". - JSON @@ -2663,6 +3613,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -2702,7 +3656,6 @@ paths: name "y.z". - JSON @@ -2947,6 +3900,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -2986,7 +3943,6 @@ paths: name "y.z". - JSON @@ -3152,6 +4108,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -3191,7 +4151,6 @@ paths: name "y.z". - JSON @@ -3439,6 +4398,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -3478,7 +4441,6 @@ paths: name "y.z". - JSON @@ -3644,6 +4606,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -3683,7 +4649,6 @@ paths: name "y.z". - JSON @@ -3931,6 +4896,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -3970,7 +4939,6 @@ paths: name "y.z". - JSON @@ -5029,6 +5997,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -5068,7 +6040,6 @@ paths: name "y.z". - JSON @@ -5246,6 +6217,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -5285,7 +6260,6 @@ paths: name "y.z". - JSON @@ -5463,6 +6437,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -5502,7 +6480,6 @@ paths: name "y.z". - JSON @@ -5673,6 +6650,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -5712,7 +6693,6 @@ paths: name "y.z". - JSON @@ -5898,6 +6878,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -5937,7 +6921,6 @@ paths: name "y.z". - JSON @@ -6112,6 +7095,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -6151,7 +7138,6 @@ paths: name "y.z". - JSON @@ -6440,6 +7426,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -6479,7 +7469,6 @@ paths: name "y.z". - JSON @@ -6812,6 +7801,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -6851,7 +7844,6 @@ paths: name "y.z". - JSON @@ -7025,6 +8017,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -7064,7 +8060,6 @@ paths: name "y.z". - JSON @@ -7246,6 +8241,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -7285,7 +8284,6 @@ paths: name "y.z". - JSON @@ -7673,6 +8671,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -7712,7 +8714,6 @@ paths: name "y.z". - JSON @@ -8046,7 +9047,7 @@ paths: format: byte - name: chain_id description: >- - chain_id is the eip155 chain id parsed from the requested block + chain_id is the the eip155 chain id parsed from the requested block header. in: query required: false @@ -8197,6 +9198,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -8236,7 +9241,6 @@ paths: name "y.z". - JSON @@ -8428,6 +9432,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -8467,7 +9475,6 @@ paths: name "y.z". - JSON @@ -8678,6 +9685,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -8717,7 +9728,6 @@ paths: name "y.z". - JSON @@ -8966,6 +9976,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -9005,7 +10019,6 @@ paths: name "y.z". - JSON @@ -9233,6 +10246,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -9272,7 +10289,6 @@ paths: name "y.z". - JSON @@ -9612,6 +10628,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -9651,7 +10671,6 @@ paths: name "y.z". - JSON @@ -9819,6 +10838,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -9858,7 +10881,6 @@ paths: name "y.z". - JSON @@ -10029,6 +11051,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -10068,7 +11094,6 @@ paths: name "y.z". - JSON @@ -10303,6 +11328,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -10342,7 +11371,6 @@ paths: name "y.z". - JSON @@ -10537,6 +11565,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -10576,7 +11608,6 @@ paths: name "y.z". - JSON @@ -10727,6 +11758,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -10766,7 +11801,6 @@ paths: name "y.z". - JSON @@ -10937,6 +11971,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -10976,7 +12014,6 @@ paths: name "y.z". - JSON @@ -11182,6 +12219,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -11221,7 +12262,6 @@ paths: name "y.z". - JSON @@ -11370,6 +12410,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -11409,7 +12453,6 @@ paths: name "y.z". - JSON @@ -11595,6 +12638,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -11634,7 +12681,6 @@ paths: name "y.z". - JSON @@ -11826,6 +12872,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -11865,7 +12915,6 @@ paths: name "y.z". - JSON @@ -12019,6 +13068,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -12058,7 +13111,6 @@ paths: name "y.z". - JSON @@ -12207,6 +13259,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -12246,7 +13302,6 @@ paths: name "y.z". - JSON @@ -12426,6 +13481,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -12465,7 +13524,6 @@ paths: name "y.z". - JSON @@ -12659,6 +13717,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -12698,7 +13760,6 @@ paths: name "y.z". - JSON @@ -12882,6 +13943,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -12921,7 +13986,6 @@ paths: name "y.z". - JSON @@ -13107,6 +14171,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -13146,7 +14214,6 @@ paths: name "y.z". - JSON @@ -13311,223 +14378,9 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := anypb.New(foo) - if err != nil { - ... - } - ... - foo := &pb.Foo{} - if err := any.UnmarshalTo(foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by - default use - - 'type.googleapis.com/full.type.name' as the type URL and the - unpack - - methods only use the fully qualified type name after the - last '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield - type - - name "y.z". - - - - JSON - - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with - an - - additional field `@type` which contains the type URL. - Example: - - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - - If the embedded message type is well-known and has a custom - JSON - - representation, that representation will be embedded adding - a field - - `value` which holds the custom JSON in addition to the - `@type` - - field. Example (for message [google.protobuf.Duration][]): - - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - parameters: - - name: pool_id - in: path - required: true - type: string - format: uint64 - - name: sender - in: query - required: false - type: string - - name: token_in - in: query - required: false - type: string - tags: - - Query - /dymensionxyz/dymension/gamm/v1beta1/{pool_id}/estimate/swap_exact_amount_out: - get: - operationId: EstimateSwapExactAmountOut - responses: - '200': - description: A successful response. - schema: - type: object - properties: - token_in_amount: - type: string - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of - the serialized - - protocol buffer message. This string must contain at - least - - one "/" character. The last segment of the URL's path - must represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in - a canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary - all types that they - - expect it to use in the context of Any. However, for - URLs which use the - - scheme `http`, `https`, or no scheme, one can optionally - set up a type - - server that maps type URLs to message definitions as - follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based - on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in - the official - - protobuf release, and it is not used for type URLs - beginning with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) - might be - - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer - message along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values - in the form - - of utility functions or additional generated methods of the - Any type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); } Example 3: Pack and unpack a message in Python. @@ -13568,6 +14421,226 @@ paths: name "y.z". + JSON + + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + parameters: + - name: pool_id + in: path + required: true + type: string + format: uint64 + - name: sender + in: query + required: false + type: string + - name: token_in + in: query + required: false + type: string + tags: + - Query + /dymensionxyz/dymension/gamm/v1beta1/{pool_id}/estimate/swap_exact_amount_out: + get: + operationId: EstimateSwapExactAmountOut + responses: + '200': + description: A successful response. + schema: + type: object + properties: + token_in_amount: + type: string + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := anypb.New(foo) + if err != nil { + ... + } + ... + foo := &pb.Foo{} + if err := any.UnmarshalTo(foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + JSON @@ -17731,6 +18804,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -17770,7 +18847,6 @@ paths: name "y.z". - JSON @@ -17964,6 +19040,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -18003,7 +19083,6 @@ paths: name "y.z". - JSON @@ -18209,6 +19288,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -18248,7 +19331,6 @@ paths: name "y.z". - JSON @@ -18439,6 +19521,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -18478,7 +19564,6 @@ paths: name "y.z". - JSON @@ -18655,6 +19740,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -18694,7 +19783,6 @@ paths: name "y.z". - JSON @@ -18886,6 +19974,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -18925,7 +20017,6 @@ paths: name "y.z". - JSON @@ -19118,6 +20209,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -19157,7 +20252,6 @@ paths: name "y.z". - JSON @@ -19455,6 +20549,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -19494,7 +20592,6 @@ paths: name "y.z". - JSON @@ -19709,6 +20806,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -19748,7 +20849,6 @@ paths: name "y.z". - JSON @@ -19944,6 +21044,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -19983,7 +21087,6 @@ paths: name "y.z". - JSON @@ -20190,6 +21293,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -20229,7 +21336,6 @@ paths: name "y.z". - JSON @@ -20378,6 +21484,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -20417,7 +21527,6 @@ paths: name "y.z". - JSON @@ -20570,6 +21679,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -20609,7 +21722,6 @@ paths: name "y.z". - JSON @@ -20758,6 +21870,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -20797,7 +21913,6 @@ paths: name "y.z". - JSON @@ -20950,6 +22065,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -20989,7 +22108,6 @@ paths: name "y.z". - JSON @@ -21196,6 +22314,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -21235,7 +22357,6 @@ paths: name "y.z". - JSON @@ -21555,6 +22676,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -21594,7 +22719,6 @@ paths: name "y.z". - JSON @@ -21949,6 +23073,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -21988,7 +23116,6 @@ paths: name "y.z". - JSON @@ -22153,6 +23280,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -22192,7 +23323,6 @@ paths: name "y.z". - JSON @@ -22386,6 +23516,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -22425,7 +23559,6 @@ paths: name "y.z". - JSON @@ -22582,6 +23715,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -22621,7 +23758,6 @@ paths: name "y.z". - JSON @@ -22810,6 +23946,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -22849,7 +23989,6 @@ paths: name "y.z". - JSON @@ -23048,6 +24187,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -23087,7 +24230,6 @@ paths: name "y.z". - JSON @@ -23392,6 +24534,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -23431,7 +24577,6 @@ paths: name "y.z". - JSON @@ -23767,6 +24912,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -23806,7 +24955,6 @@ paths: name "y.z". - JSON @@ -23978,6 +25126,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -24017,7 +25169,6 @@ paths: name "y.z". - JSON @@ -24211,6 +25362,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -24250,7 +25405,6 @@ paths: name "y.z". - JSON @@ -24412,6 +25566,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -24451,7 +25609,6 @@ paths: name "y.z". - JSON @@ -24640,6 +25797,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -24679,7 +25840,6 @@ paths: name "y.z". - JSON @@ -24908,6 +26068,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -24947,7 +26111,6 @@ paths: name "y.z". - JSON @@ -25216,6 +26379,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -25255,7 +26422,6 @@ paths: name "y.z". - JSON @@ -25539,6 +26705,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -25578,7 +26748,6 @@ paths: name "y.z". - JSON @@ -25851,6 +27020,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -25890,7 +27063,6 @@ paths: name "y.z". - JSON @@ -26163,6 +27335,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -26202,7 +27378,6 @@ paths: name "y.z". - JSON @@ -26429,6 +27604,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -26468,7 +27647,6 @@ paths: name "y.z". - JSON @@ -26698,6 +27876,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -26737,7 +27919,6 @@ paths: name "y.z". - JSON @@ -26966,6 +28147,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -27005,7 +28190,6 @@ paths: name "y.z". - JSON @@ -27329,6 +28513,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -27368,7 +28556,6 @@ paths: name "y.z". - JSON @@ -27583,6 +28770,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -27622,7 +28813,6 @@ paths: name "y.z". - JSON @@ -27800,6 +28990,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -27839,7 +29033,6 @@ paths: name "y.z". - JSON @@ -28045,6 +29238,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -28084,7 +29281,6 @@ paths: name "y.z". - JSON @@ -28236,6 +29432,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -28275,7 +29475,6 @@ paths: name "y.z". - JSON @@ -28452,6 +29651,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -28491,7 +29694,6 @@ paths: name "y.z". - JSON @@ -28674,217 +29876,9 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } - - Example 3: Pack and unpack a message in Python. - - foo = Foo(...) - any = Any() - any.Pack(foo) - ... - if any.Is(Foo.DESCRIPTOR): - any.Unpack(foo) - ... - - Example 4: Pack and unpack a message in Go - - foo := &pb.Foo{...} - any, err := anypb.New(foo) - if err != nil { - ... - } - ... - foo := &pb.Foo{} - if err := any.UnmarshalTo(foo); err != nil { - ... - } - - The pack methods provided by protobuf library will by - default use - - 'type.googleapis.com/full.type.name' as the type URL and the - unpack - - methods only use the fully qualified type name after the - last '/' - - in the type URL, for example "foo.bar.com/x/y.z" will yield - type - - name "y.z". - - - - JSON - - - The JSON representation of an `Any` value uses the regular - - representation of the deserialized, embedded message, with - an - - additional field `@type` which contains the type URL. - Example: - - package google.profile; - message Person { - string first_name = 1; - string last_name = 2; - } - - { - "@type": "type.googleapis.com/google.profile.Person", - "firstName": , - "lastName": - } - - If the embedded message type is well-known and has a custom - JSON - - representation, that representation will be embedded adding - a field - - `value` which holds the custom JSON in addition to the - `@type` - - field. Example (for message [google.protobuf.Duration][]): - - { - "@type": "type.googleapis.com/google.protobuf.Duration", - "value": "1.212s" - } - tags: - - Query - /cosmos/auth/v1beta1/bech32/{address_bytes}: - get: - summary: AddressBytesToString converts Account Address bytes to string - description: 'Since: cosmos-sdk 0.46' - operationId: AddressBytesToString - responses: - '200': - description: A successful response. - schema: - type: object - properties: - address_string: - type: string - description: >- - AddressBytesToStringResponse is the response type for - AddressString rpc method. - - - Since: cosmos-sdk 0.46 - default: - description: An unexpected error response. - schema: - type: object - properties: - error: - type: string - code: - type: integer - format: int32 - message: - type: string - details: - type: array - items: - type: object - properties: - type_url: - type: string - description: >- - A URL/resource name that uniquely identifies the type of - the serialized - - protocol buffer message. This string must contain at - least - - one "/" character. The last segment of the URL's path - must represent - - the fully qualified name of the type (as in - - `path/google.protobuf.Duration`). The name should be in - a canonical form - - (e.g., leading "." is not accepted). - - - In practice, teams usually precompile into the binary - all types that they - - expect it to use in the context of Any. However, for - URLs which use the - - scheme `http`, `https`, or no scheme, one can optionally - set up a type - - server that maps type URLs to message definitions as - follows: - - - * If no scheme is provided, `https` is assumed. - - * An HTTP GET on the URL must yield a - [google.protobuf.Type][] - value in binary format, or produce an error. - * Applications are allowed to cache lookup results based - on the - URL, or have them precompiled into a binary to avoid any - lookup. Therefore, binary compatibility needs to be preserved - on changes to types. (Use versioned type names to manage - breaking changes.) - - Note: this functionality is not currently available in - the official - - protobuf release, and it is not used for type URLs - beginning with - - type.googleapis.com. - - - Schemes other than `http`, `https` (or the empty scheme) - might be - - used with implementation specific semantics. - value: - type: string - format: byte - description: >- - Must be a valid serialized protocol buffer of the above - specified type. - description: >- - `Any` contains an arbitrary serialized protocol buffer - message along with a - - URL that describes the type of the serialized message. - - - Protobuf library provides support to pack/unpack Any values - in the form - - of utility functions or additional generated methods of the - Any type. - - - Example 1: Pack and unpack a message in C++. - - Foo foo = ...; - Any any; - any.PackFrom(foo); - ... - if (any.UnpackTo(&foo)) { - ... - } - - Example 2: Pack and unpack a message in Java. - - Foo foo = ...; - Any any = Any.pack(foo); - ... - if (any.is(Foo.class)) { - foo = any.unpack(Foo.class); + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); } Example 3: Pack and unpack a message in Python. @@ -28925,6 +29919,220 @@ paths: name "y.z". + JSON + + + The JSON representation of an `Any` value uses the regular + + representation of the deserialized, embedded message, with + an + + additional field `@type` which contains the type URL. + Example: + + package google.profile; + message Person { + string first_name = 1; + string last_name = 2; + } + + { + "@type": "type.googleapis.com/google.profile.Person", + "firstName": , + "lastName": + } + + If the embedded message type is well-known and has a custom + JSON + + representation, that representation will be embedded adding + a field + + `value` which holds the custom JSON in addition to the + `@type` + + field. Example (for message [google.protobuf.Duration][]): + + { + "@type": "type.googleapis.com/google.protobuf.Duration", + "value": "1.212s" + } + tags: + - Query + /cosmos/auth/v1beta1/bech32/{address_bytes}: + get: + summary: AddressBytesToString converts Account Address bytes to string + description: 'Since: cosmos-sdk 0.46' + operationId: AddressBytesToString + responses: + '200': + description: A successful response. + schema: + type: object + properties: + address_string: + type: string + description: >- + AddressBytesToStringResponse is the response type for + AddressString rpc method. + + + Since: cosmos-sdk 0.46 + default: + description: An unexpected error response. + schema: + type: object + properties: + error: + type: string + code: + type: integer + format: int32 + message: + type: string + details: + type: array + items: + type: object + properties: + type_url: + type: string + description: >- + A URL/resource name that uniquely identifies the type of + the serialized + + protocol buffer message. This string must contain at + least + + one "/" character. The last segment of the URL's path + must represent + + the fully qualified name of the type (as in + + `path/google.protobuf.Duration`). The name should be in + a canonical form + + (e.g., leading "." is not accepted). + + + In practice, teams usually precompile into the binary + all types that they + + expect it to use in the context of Any. However, for + URLs which use the + + scheme `http`, `https`, or no scheme, one can optionally + set up a type + + server that maps type URLs to message definitions as + follows: + + + * If no scheme is provided, `https` is assumed. + + * An HTTP GET on the URL must yield a + [google.protobuf.Type][] + value in binary format, or produce an error. + * Applications are allowed to cache lookup results based + on the + URL, or have them precompiled into a binary to avoid any + lookup. Therefore, binary compatibility needs to be preserved + on changes to types. (Use versioned type names to manage + breaking changes.) + + Note: this functionality is not currently available in + the official + + protobuf release, and it is not used for type URLs + beginning with + + type.googleapis.com. + + + Schemes other than `http`, `https` (or the empty scheme) + might be + + used with implementation specific semantics. + value: + type: string + format: byte + description: >- + Must be a valid serialized protocol buffer of the above + specified type. + description: >- + `Any` contains an arbitrary serialized protocol buffer + message along with a + + URL that describes the type of the serialized message. + + + Protobuf library provides support to pack/unpack Any values + in the form + + of utility functions or additional generated methods of the + Any type. + + + Example 1: Pack and unpack a message in C++. + + Foo foo = ...; + Any any; + any.PackFrom(foo); + ... + if (any.UnpackTo(&foo)) { + ... + } + + Example 2: Pack and unpack a message in Java. + + Foo foo = ...; + Any any = Any.pack(foo); + ... + if (any.is(Foo.class)) { + foo = any.unpack(Foo.class); + } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } + + Example 3: Pack and unpack a message in Python. + + foo = Foo(...) + any = Any() + any.Pack(foo) + ... + if any.Is(Foo.DESCRIPTOR): + any.Unpack(foo) + ... + + Example 4: Pack and unpack a message in Go + + foo := &pb.Foo{...} + any, err := anypb.New(foo) + if err != nil { + ... + } + ... + foo := &pb.Foo{} + if err := any.UnmarshalTo(foo); err != nil { + ... + } + + The pack methods provided by protobuf library will by + default use + + 'type.googleapis.com/full.type.name' as the type URL and the + unpack + + methods only use the fully qualified type name after the + last '/' + + in the type URL, for example "foo.bar.com/x/y.z" will yield + type + + name "y.z". + JSON @@ -29105,6 +30313,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -29144,7 +30356,6 @@ paths: name "y.z". - JSON @@ -29302,6 +30513,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -29341,7 +30556,6 @@ paths: name "y.z". - JSON @@ -29499,6 +30713,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -29538,7 +30756,6 @@ paths: name "y.z". - JSON @@ -29687,6 +30904,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -29726,7 +30947,6 @@ paths: name "y.z". - JSON @@ -29878,6 +31098,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -29917,7 +31141,6 @@ paths: name "y.z". - JSON @@ -30108,6 +31331,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -30147,7 +31374,6 @@ paths: name "y.z". - JSON @@ -30302,6 +31528,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -30341,7 +31571,6 @@ paths: name "y.z". - JSON @@ -30534,6 +31763,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -30573,7 +31806,6 @@ paths: name "y.z". - JSON @@ -30805,6 +32037,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -30844,7 +32080,6 @@ paths: name "y.z". - JSON @@ -31029,6 +32264,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -31068,7 +32307,6 @@ paths: name "y.z". - JSON @@ -31289,6 +32527,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -31328,7 +32570,6 @@ paths: name "y.z". - JSON @@ -31513,6 +32754,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -31552,7 +32797,6 @@ paths: name "y.z". - JSON @@ -33627,6 +34871,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -33666,7 +34914,6 @@ paths: name "y.z". - JSON @@ -33956,6 +35203,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -33995,7 +35246,6 @@ paths: name "y.z". - JSON @@ -34335,6 +35585,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -34374,7 +35628,6 @@ paths: name "y.z". - JSON @@ -34661,6 +35914,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -34700,7 +35957,6 @@ paths: name "y.z". - JSON @@ -34868,6 +36124,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -34907,7 +36167,6 @@ paths: name "y.z". - JSON @@ -35162,6 +36421,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -35201,7 +36464,6 @@ paths: name "y.z". - JSON @@ -35450,6 +36712,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -35489,7 +36755,6 @@ paths: name "y.z". - JSON @@ -35720,6 +36985,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -35759,7 +37028,6 @@ paths: name "y.z". - JSON @@ -35985,6 +37253,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -36024,7 +37296,6 @@ paths: name "y.z". - JSON @@ -36286,6 +37557,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -36325,7 +37600,6 @@ paths: name "y.z". - JSON @@ -36516,6 +37790,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -36555,7 +37833,6 @@ paths: name "y.z". - JSON @@ -36814,6 +38091,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -36853,7 +38134,6 @@ paths: name "y.z". - JSON @@ -37146,6 +38426,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -37185,7 +38469,6 @@ paths: name "y.z". - JSON @@ -37420,6 +38703,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -37459,7 +38746,6 @@ paths: name "y.z". - JSON @@ -37629,6 +38915,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -37668,7 +38958,6 @@ paths: name "y.z". - JSON @@ -37928,6 +39217,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -37967,7 +39260,6 @@ paths: name "y.z". - JSON @@ -38218,6 +39510,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -38257,7 +39553,6 @@ paths: name "y.z". - JSON @@ -38495,6 +39790,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -38534,7 +39833,6 @@ paths: name "y.z". - JSON @@ -38760,6 +40058,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -38799,7 +40101,6 @@ paths: name "y.z". - JSON @@ -39061,6 +40362,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -39100,7 +40405,6 @@ paths: name "y.z". - JSON @@ -39291,6 +40595,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -39330,7 +40638,6 @@ paths: name "y.z". - JSON @@ -39572,6 +40879,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -39611,7 +40922,6 @@ paths: name "y.z". - JSON @@ -39887,6 +41197,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -39926,7 +41240,6 @@ paths: name "y.z". - JSON @@ -40511,6 +41824,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -40550,7 +41867,6 @@ paths: name "y.z". - JSON @@ -40913,6 +42229,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -40952,7 +42272,6 @@ paths: name "y.z". - JSON @@ -41267,6 +42586,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -41306,7 +42629,6 @@ paths: name "y.z". - JSON @@ -41530,6 +42852,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -41569,7 +42895,6 @@ paths: name "y.z". - JSON @@ -41874,6 +43199,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -41913,7 +43242,6 @@ paths: name "y.z". - JSON @@ -42135,6 +43463,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -42174,7 +43506,6 @@ paths: name "y.z". - JSON @@ -42456,6 +43787,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -42495,7 +43830,6 @@ paths: name "y.z". - JSON @@ -42748,6 +44082,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -42787,7 +44125,6 @@ paths: name "y.z". - JSON @@ -43075,6 +44412,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -43114,7 +44455,6 @@ paths: name "y.z". - JSON @@ -43319,6 +44659,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -43358,7 +44702,6 @@ paths: name "y.z". - JSON @@ -43531,6 +44874,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -43570,7 +44917,6 @@ paths: name "y.z". - JSON @@ -43730,6 +45076,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -43769,7 +45119,6 @@ paths: name "y.z". - JSON @@ -44074,6 +45423,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -44113,7 +45466,6 @@ paths: name "y.z". - JSON @@ -44333,6 +45685,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -44372,7 +45728,6 @@ paths: name "y.z". - JSON @@ -44654,6 +46009,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -44693,7 +46052,6 @@ paths: name "y.z". - JSON @@ -44935,6 +46293,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -44974,7 +46336,6 @@ paths: name "y.z". - JSON @@ -45251,6 +46612,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -45290,7 +46655,6 @@ paths: name "y.z". - JSON @@ -45519,6 +46883,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -45558,7 +46926,6 @@ paths: name "y.z". - JSON @@ -45810,6 +47177,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -45849,7 +47220,6 @@ paths: name "y.z". - JSON @@ -46136,6 +47506,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -46175,7 +47549,6 @@ paths: name "y.z". - JSON @@ -46338,6 +47711,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -46377,7 +47754,6 @@ paths: name "y.z". - JSON @@ -46546,6 +47922,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -46585,7 +47965,6 @@ paths: name "y.z". - JSON @@ -46916,6 +48295,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -46955,7 +48338,6 @@ paths: name "y.z". - JSON @@ -47171,6 +48553,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -47210,7 +48596,6 @@ paths: name "y.z". - JSON @@ -47409,6 +48794,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -47448,7 +48837,6 @@ paths: name "y.z". - JSON @@ -47674,6 +49062,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -47713,7 +49105,6 @@ paths: name "y.z". - JSON @@ -47960,6 +49351,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -47999,7 +49394,6 @@ paths: name "y.z". - JSON @@ -49292,6 +50686,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -49331,7 +50729,6 @@ paths: name "y.z". - JSON @@ -50605,6 +52002,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -50644,7 +52045,6 @@ paths: name "y.z". - JSON @@ -50888,6 +52288,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -50927,7 +52331,6 @@ paths: name "y.z". - JSON @@ -51096,6 +52499,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -51135,7 +52542,6 @@ paths: name "y.z". - JSON @@ -51295,6 +52701,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -51334,7 +52744,6 @@ paths: name "y.z". - JSON @@ -51517,6 +52926,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -51556,7 +52969,6 @@ paths: name "y.z". - JSON @@ -51773,6 +53185,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -51812,7 +53228,6 @@ paths: name "y.z". - JSON @@ -51995,6 +53410,10 @@ paths: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -52034,7 +53453,6 @@ paths: name "y.z". - JSON @@ -52308,6 +53726,7 @@ definitions: - ON_RECV - ON_ACK - ON_TIMEOUT + - UNDEFINED default: ON_RECV error: type: string @@ -52323,6 +53742,7 @@ definitions: - ON_RECV - ON_ACK - ON_TIMEOUT + - UNDEFINED default: ON_RECV dymensionxyz.dymension.common.Status: type: string @@ -52336,6 +53756,8 @@ definitions: properties: epoch_identifier: type: string + bridging_fee: + type: string description: Params defines the parameters for the module. dymensionxyz.dymension.delayedack.QueryParamsResponse: type: object @@ -52346,6 +53768,8 @@ definitions: properties: epoch_identifier: type: string + bridging_fee: + type: string description: QueryParamsResponse is response type for the Query/Params RPC method. dymensionxyz.dymension.delayedack.QueryRollappPacketListResponse: type: object @@ -52449,6 +53873,7 @@ definitions: - ON_RECV - ON_ACK - ON_TIMEOUT + - UNDEFINED default: ON_RECV error: type: string @@ -52572,6 +53997,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -52607,7 +54036,6 @@ definitions: name "y.z". - JSON @@ -52748,6 +54176,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -52783,7 +54215,6 @@ definitions: name "y.z". - JSON @@ -52948,6 +54379,9 @@ definitions: NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto. + title: >- + price is the amount that the fulfiller sends to original eibc transfer + recipient fee: type: array items: @@ -52962,6 +54396,9 @@ definitions: NOTE: The amount field is an Int which implements the custom method signatures required by gogoproto. + title: >- + fee is the effective profit made by the fulfiller because they pay + price and receive fee + price recipient: type: string is_fulfilled: @@ -52973,6 +54410,23 @@ definitions: - FINALIZED - REVERTED default: PENDING + rollapp_id: + type: string + type: + type: string + enum: + - ON_RECV + - ON_ACK + - ON_TIMEOUT + - UNDEFINED + default: ON_RECV + dymensionxyz.dymension.eibc.FulfillmentState: + type: string + enum: + - UNDEFINED + - FULFILLED + - UNFULFILLED + default: UNDEFINED dymensionxyz.dymension.eibc.Params: type: object properties: @@ -53023,6 +54477,9 @@ definitions: method signatures required by gogoproto. + title: >- + price is the amount that the fulfiller sends to original eibc + transfer recipient fee: type: array items: @@ -53040,6 +54497,9 @@ definitions: method signatures required by gogoproto. + title: >- + fee is the effective profit made by the fulfiller because they + pay price and receive fee + price recipient: type: string is_fulfilled: @@ -53051,6 +54511,16 @@ definitions: - FINALIZED - REVERTED default: PENDING + rollapp_id: + type: string + type: + type: string + enum: + - ON_RECV + - ON_ACK + - ON_TIMEOUT + - UNDEFINED + default: ON_RECV title: A list of demand orders with the given status description: >- QueryDemandOrdersByStatusResponse is the response type for the @@ -53094,6 +54564,9 @@ definitions: method signatures required by gogoproto. + title: >- + price is the amount that the fulfiller sends to original eibc + transfer recipient fee: type: array items: @@ -53111,6 +54584,9 @@ definitions: method signatures required by gogoproto. + title: >- + fee is the effective profit made by the fulfiller because they pay + price and receive fee + price recipient: type: string is_fulfilled: @@ -53122,6 +54598,16 @@ definitions: - FINALIZED - REVERTED default: PENDING + rollapp_id: + type: string + type: + type: string + enum: + - ON_RECV + - ON_ACK + - ON_TIMEOUT + - UNDEFINED + default: ON_RECV description: >- QueryGetDemandOrderResponse is the response type for the Query/GetDemandOrder RPC method. @@ -53585,6 +55071,13 @@ definitions: frozen: type: boolean description: frozen is a boolean that indicates if the rollapp is frozen. + registeredDenoms: + type: array + items: + type: string + title: >- + registeredDenoms is a list of registered denom bases on this + rollapp title: >- Rollapp defines a rollapp object. First the RollApp is created and then @@ -53963,6 +55456,11 @@ definitions: frozen: type: boolean description: frozen is a boolean that indicates if the rollapp is frozen. + registeredDenoms: + type: array + items: + type: string + title: registeredDenoms is a list of registered denom bases on this rollapp title: >- Rollapp defines a rollapp object. First the RollApp is created and then @@ -54454,6 +55952,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -54490,7 +55992,6 @@ definitions: name "y.z". - JSON @@ -54714,6 +56215,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -54752,7 +56257,6 @@ definitions: name "y.z". - JSON @@ -54976,6 +56480,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -55014,7 +56522,6 @@ definitions: name "y.z". - JSON @@ -55264,6 +56771,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -55302,7 +56813,6 @@ definitions: name "y.z". - JSON @@ -55541,6 +57051,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -55576,7 +57090,6 @@ definitions: name "y.z". - JSON @@ -56551,6 +58064,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -56586,7 +58103,6 @@ definitions: name "y.z". - JSON @@ -57694,6 +59210,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -57729,7 +59249,6 @@ definitions: name "y.z". - JSON @@ -57858,6 +59377,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -57893,7 +59416,6 @@ definitions: name "y.z". - JSON @@ -58027,6 +59549,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -58062,7 +59588,6 @@ definitions: name "y.z". - JSON @@ -58215,6 +59740,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -58250,7 +59779,6 @@ definitions: name "y.z". - JSON @@ -61042,6 +62570,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -61077,7 +62609,6 @@ definitions: name "y.z". - JSON @@ -61216,6 +62747,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -61251,7 +62786,6 @@ definitions: name "y.z". - JSON @@ -61409,6 +62943,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -61444,7 +62982,6 @@ definitions: name "y.z". - JSON @@ -61628,6 +63165,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -61666,7 +63207,6 @@ definitions: name "y.z". - JSON @@ -61915,6 +63455,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -61950,7 +63494,6 @@ definitions: name "y.z". - JSON @@ -62165,6 +63708,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -62203,7 +63750,6 @@ definitions: name "y.z". - JSON @@ -62370,6 +63916,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -62405,7 +63955,6 @@ definitions: name "y.z". - JSON @@ -62538,6 +64087,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -62573,7 +64126,6 @@ definitions: name "y.z". - JSON @@ -62984,6 +64536,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -63020,7 +64576,6 @@ definitions: name "y.z". - JSON @@ -63189,6 +64744,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -63224,7 +64783,6 @@ definitions: name "y.z". - JSON @@ -63912,6 +65470,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -63948,7 +65510,6 @@ definitions: name "y.z". - JSON @@ -64117,6 +65678,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -64152,7 +65717,6 @@ definitions: name "y.z". - JSON @@ -65217,6 +66781,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -65252,7 +66820,6 @@ definitions: name "y.z". - JSON @@ -65389,6 +66956,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -65424,7 +66995,6 @@ definitions: name "y.z". - JSON @@ -65579,6 +67149,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -65614,7 +67188,6 @@ definitions: name "y.z". - JSON @@ -65751,6 +67324,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -65786,7 +67363,6 @@ definitions: name "y.z". - JSON @@ -65944,6 +67520,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -65979,7 +67559,6 @@ definitions: name "y.z". - JSON @@ -66125,6 +67704,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -66160,7 +67743,6 @@ definitions: name "y.z". - JSON @@ -66312,6 +67894,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -66350,7 +67936,6 @@ definitions: name "y.z". - JSON @@ -66526,6 +68111,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -66564,7 +68153,6 @@ definitions: name "y.z". - JSON @@ -66736,6 +68324,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -66774,7 +68366,6 @@ definitions: name "y.z". - JSON @@ -68337,6 +69928,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -68372,7 +69967,6 @@ definitions: name "y.z". - JSON @@ -68755,6 +70349,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -68791,7 +70389,6 @@ definitions: name "y.z". - JSON @@ -69010,6 +70607,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -69048,7 +70649,6 @@ definitions: name "y.z". - JSON @@ -69639,6 +71239,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -69674,7 +71278,6 @@ definitions: name "y.z". - JSON @@ -70061,6 +71664,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -70099,7 +71706,6 @@ definitions: name "y.z". - JSON @@ -70323,6 +71929,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -70362,7 +71972,6 @@ definitions: name "y.z". - JSON @@ -71293,6 +72902,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -71331,7 +72944,6 @@ definitions: name "y.z". - JSON @@ -71841,6 +73453,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -71877,7 +73493,6 @@ definitions: name "y.z". - JSON @@ -72141,6 +73756,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -72179,7 +73798,6 @@ definitions: name "y.z". - JSON @@ -72547,6 +74165,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -72586,7 +74208,6 @@ definitions: name "y.z". - JSON @@ -73159,6 +74780,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -73195,7 +74820,6 @@ definitions: name "y.z". - JSON @@ -73529,6 +75153,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -73567,7 +75195,6 @@ definitions: name "y.z". - JSON @@ -74117,6 +75744,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -74152,7 +75783,6 @@ definitions: name "y.z". - JSON @@ -74632,6 +76262,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -74667,7 +76301,6 @@ definitions: name "y.z". - JSON @@ -74901,6 +76534,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -74936,7 +76573,6 @@ definitions: name "y.z". - JSON @@ -75436,6 +77072,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -75472,7 +77112,6 @@ definitions: name "y.z". - JSON @@ -76387,6 +78026,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -76423,7 +78066,6 @@ definitions: name "y.z". - JSON @@ -76710,6 +78352,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -76748,7 +78394,6 @@ definitions: name "y.z". - JSON @@ -77162,6 +78807,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -77197,7 +78846,6 @@ definitions: name "y.z". - JSON @@ -77443,6 +79091,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -77481,7 +79133,6 @@ definitions: name "y.z". - JSON @@ -77657,6 +79308,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -77695,7 +79350,6 @@ definitions: name "y.z". - JSON @@ -77865,6 +79519,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -77903,7 +79561,6 @@ definitions: name "y.z". - JSON @@ -78046,6 +79703,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -78084,7 +79745,6 @@ definitions: name "y.z". - JSON @@ -78247,6 +79907,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -78282,7 +79946,6 @@ definitions: name "y.z". - JSON @@ -78445,6 +80108,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -78480,7 +80147,6 @@ definitions: name "y.z". - JSON @@ -78618,6 +80284,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -78653,7 +80323,6 @@ definitions: name "y.z". - JSON @@ -83826,6 +85495,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -83864,7 +85537,6 @@ definitions: name "y.z". - JSON @@ -84122,6 +85794,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -84160,7 +85836,6 @@ definitions: name "y.z". - JSON @@ -84476,6 +86151,10 @@ definitions: if (any.is(Foo.class)) { foo = any.unpack(Foo.class); } + // or ... + if (any.isSameTypeAs(Foo.getDefaultInstance())) { + foo = any.unpack(Foo.getDefaultInstance()); + } Example 3: Pack and unpack a message in Python. @@ -84511,7 +86190,6 @@ definitions: name "y.z". - JSON diff --git a/go.mod b/go.mod index 43d6f7bbe..58c31751d 100644 --- a/go.mod +++ b/go.mod @@ -3,57 +3,60 @@ module github.com/dymensionxyz/dymension/v3 go 1.22.4 require ( + cosmossdk.io/api v0.3.1 cosmossdk.io/errors v1.0.1 cosmossdk.io/math v1.3.0 + cosmossdk.io/simapp v0.0.0-20230608160436-666c345ad23d + github.com/cometbft/cometbft v0.37.5 github.com/cometbft/cometbft-db v0.11.0 - github.com/cosmos/cosmos-proto v1.0.0-beta.3 - github.com/cosmos/cosmos-sdk v0.46.16 - github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6 v6.1.2-0.20240228222509-2b38263c41d3 - github.com/cosmos/ibc-go/v6 v6.2.1 + github.com/cosmos/cosmos-proto v1.0.0-beta.5 + github.com/cosmos/cosmos-sdk v0.47.13 + github.com/cosmos/gogoproto v1.4.10 + github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7 v7.1.3 + github.com/cosmos/ibc-go/v7 v7.5.1 github.com/decred/dcrd/dcrec/edwards v1.0.0 - github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac + github.com/dustin/go-humanize v1.0.1 github.com/dymensionxyz/gerr-cosmos v1.0.0 - github.com/dymensionxyz/sdk-utils v0.1.1 + github.com/dymensionxyz/sdk-utils v0.2.0 github.com/ethereum/go-ethereum v1.10.26 github.com/evmos/ethermint v0.22.0 - github.com/gogo/protobuf v1.3.3 github.com/golang/protobuf v1.5.4 github.com/gorilla/mux v1.8.1 github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/osmosis-labs/osmosis/v15 v15.2.0 github.com/pkg/errors v0.9.1 - github.com/spf13/cast v1.5.0 + github.com/spf13/cast v1.6.0 github.com/spf13/cobra v1.8.0 github.com/spf13/pflag v1.0.5 github.com/stretchr/testify v1.9.0 - github.com/tendermint/tendermint v0.34.29 - github.com/tendermint/tm-db v0.6.8-0.20220506192307-f628bb5dc95b - golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df + golang.org/x/exp v0.0.0-20230905200255-921286631fa9 gonum.org/v1/gonum v0.8.2 google.golang.org/genproto/googleapis/api v0.0.0-20240318140521-94a12d6c2237 google.golang.org/grpc v1.64.0 + google.golang.org/protobuf v1.33.0 gopkg.in/yaml.v2 v2.4.0 ) -require github.com/nxadm/tail v1.4.8 // indirect - require ( cloud.google.com/go v0.112.1 // indirect cloud.google.com/go/compute v1.25.1 // indirect cloud.google.com/go/compute/metadata v0.2.3 // indirect cloud.google.com/go/iam v1.1.6 // indirect cloud.google.com/go/storage v1.38.0 // indirect - filippo.io/edwards25519 v1.0.0-rc.1 // indirect + cosmossdk.io/core v0.5.1 // indirect + cosmossdk.io/depinject v1.0.0-alpha.4 // indirect + cosmossdk.io/log v1.3.1 // indirect + cosmossdk.io/tools/rosetta v0.2.1 // indirect + filippo.io/edwards25519 v1.0.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/99designs/keyring v1.2.1 // indirect github.com/ChainSafe/go-schnorrkel v1.0.0 // indirect github.com/DataDog/zstd v1.5.0 // indirect github.com/StackExchange/wmi v0.0.0-20180116203802-5d049714c4a6 // indirect github.com/VictoriaMetrics/fastcache v1.6.0 // indirect - github.com/Workiva/go-datastructures v1.0.53 // indirect github.com/agl/ed25519 v0.0.0-20170116200512-5312a6153412 // indirect github.com/armon/go-metrics v0.4.1 // indirect - github.com/aws/aws-sdk-go v1.44.122 // indirect + github.com/aws/aws-sdk-go v1.44.203 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect github.com/bgentry/speakeasy v0.1.1-0.20220910012023-760eaf8b6816 // indirect @@ -64,7 +67,7 @@ require ( github.com/cenkalti/backoff/v4 v4.1.3 // indirect github.com/cespare/xxhash v1.1.0 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect - github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect + github.com/chzyer/readline v1.5.1 // indirect github.com/cockroachdb/apd/v2 v2.0.2 // indirect github.com/cockroachdb/errors v1.11.1 // indirect github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect @@ -75,44 +78,45 @@ require ( github.com/confio/ics23/go v0.9.0 // indirect github.com/cosmos/btcutil v1.0.5 // indirect github.com/cosmos/go-bip39 v1.0.0 // indirect - github.com/cosmos/gogoproto v1.4.7 // indirect - github.com/cosmos/gorocksdb v1.2.0 // indirect - github.com/cosmos/iavl v0.19.6 // indirect + github.com/cosmos/gogogateway v1.2.0 // indirect + github.com/cosmos/iavl v0.20.1 // indirect + github.com/cosmos/ics23/go v0.10.0 // indirect github.com/cosmos/ledger-cosmos-go v0.12.4 // indirect - github.com/creachadair/taskgroup v0.3.2 // indirect + github.com/cosmos/rosetta-sdk-go v0.10.0 // indirect + github.com/creachadair/taskgroup v0.4.2 // indirect github.com/danieljoos/wincred v1.1.2 // indirect github.com/danwt/gerr v1.0.0 // indirect - github.com/davecgh/go-spew v1.1.1 // indirect + github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/deckarep/golang-set v1.8.0 // indirect github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f // indirect github.com/dgraph-io/badger/v2 v2.2007.4 // indirect - github.com/dgraph-io/badger/v3 v3.2103.2 // indirect - github.com/dgraph-io/ristretto v0.1.0 // indirect + github.com/dgraph-io/ristretto v0.1.1 // indirect github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 // indirect github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91 // indirect github.com/dop251/goja v0.0.0-20220405120441-9037c2b61cbf // indirect - github.com/dvsekhvalnov/jose2go v1.5.0 // indirect + github.com/dvsekhvalnov/jose2go v1.6.0 // indirect github.com/edsrzf/mmap-go v1.0.0 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect - github.com/fsnotify/fsnotify v1.6.0 // indirect + github.com/fsnotify/fsnotify v1.7.0 // indirect github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff // indirect - github.com/getsentry/sentry-go v0.18.0 // indirect + github.com/getsentry/sentry-go v0.23.0 // indirect github.com/go-kit/kit v0.12.0 // indirect github.com/go-kit/log v0.2.1 // indirect - github.com/go-logfmt/logfmt v0.5.1 // indirect + github.com/go-logfmt/logfmt v0.6.0 // indirect github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/go-ole/go-ole v1.2.6 // indirect github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect github.com/go-stack/stack v1.8.1 // indirect github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 // indirect - github.com/gogo/gateway v1.1.0 // indirect + github.com/gogo/googleapis v1.4.1 // indirect + github.com/gogo/protobuf v1.3.3 // indirect github.com/golang/glog v1.2.0 // indirect github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect + github.com/golang/mock v1.6.0 // indirect github.com/golang/snappy v0.0.4 // indirect github.com/google/btree v1.1.2 // indirect - github.com/google/flatbuffers v2.0.8+incompatible // indirect github.com/google/go-cmp v0.6.0 // indirect github.com/google/orderedcode v0.0.1 // indirect github.com/google/s2a-go v0.1.7 // indirect @@ -126,15 +130,16 @@ require ( github.com/gtank/merlin v0.1.1 // indirect github.com/gtank/ristretto255 v0.1.2 // indirect github.com/hashicorp/go-cleanhttp v0.5.2 // indirect - github.com/hashicorp/go-getter v1.7.1 // indirect + github.com/hashicorp/go-getter v1.7.5 // indirect github.com/hashicorp/go-immutable-radix v1.3.1 // indirect github.com/hashicorp/go-safetemp v1.0.0 // indirect github.com/hashicorp/go-version v1.6.0 // indirect github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect github.com/hashicorp/hcl v1.0.0 // indirect - github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3 // indirect + github.com/hdevalence/ed25519consensus v0.1.0 // indirect github.com/holiman/bloomfilter/v2 v2.0.3 // indirect github.com/holiman/uint256 v1.2.2 // indirect + github.com/huandu/skiplist v1.2.0 // indirect github.com/huin/goupnp v1.0.3 // indirect github.com/iancoleman/orderedmap v0.2.0 // indirect github.com/improbable-eng/grpc-web v0.15.0 // indirect @@ -142,7 +147,7 @@ require ( github.com/jackpal/go-nat-pmp v1.0.2 // indirect github.com/jmespath/go-jmespath v0.4.0 // indirect github.com/jmhodges/levigo v1.0.0 // indirect - github.com/klauspost/compress v1.16.0 // indirect + github.com/klauspost/compress v1.17.0 // indirect github.com/kr/pretty v0.3.1 // indirect github.com/kr/text v0.2.0 // indirect github.com/lib/pq v1.10.7 // indirect @@ -151,7 +156,7 @@ require ( github.com/magiconair/properties v1.8.7 // indirect github.com/manifoldco/promptui v0.9.0 // indirect github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.18 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect github.com/mattn/go-runewidth v0.0.14 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect github.com/mimoo/StrobeGo v0.0.0-20210601165009-122bf33a46e0 // indirect @@ -162,9 +167,9 @@ require ( github.com/mtibben/percent v0.2.1 // indirect github.com/olekukonko/tablewriter v0.0.5 // indirect github.com/osmosis-labs/osmosis/osmomath v0.0.4 // indirect - github.com/pelletier/go-toml/v2 v2.0.7 // indirect + github.com/pelletier/go-toml/v2 v2.1.0 // indirect github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08 // indirect - github.com/pmezard/go-difflib v1.0.0 // indirect + github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/prometheus/client_golang v1.14.0 // indirect github.com/prometheus/client_model v0.3.0 // indirect github.com/prometheus/common v0.42.0 // indirect @@ -172,22 +177,23 @@ require ( github.com/prometheus/tsdb v0.7.1 // indirect github.com/rakyll/statik v0.1.7 // indirect github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 // indirect - github.com/regen-network/cosmos-proto v0.3.1 // indirect github.com/rivo/uniseg v0.2.0 // indirect github.com/rjeczalik/notify v0.9.3 // indirect - github.com/rogpeppe/go-internal v1.9.0 // indirect + github.com/rogpeppe/go-internal v1.11.0 // indirect github.com/rs/cors v1.9.0 // indirect - github.com/rs/zerolog v1.29.1 // indirect + github.com/rs/zerolog v1.32.0 // indirect + github.com/sagikazarmark/locafero v0.4.0 // indirect + github.com/sagikazarmark/slog-shim v0.1.0 // indirect github.com/sasha-s/go-deadlock v0.3.1 // indirect github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect - github.com/spf13/afero v1.9.3 // indirect - github.com/spf13/jwalterweatherman v1.1.0 // indirect - github.com/spf13/viper v1.15.0 // indirect + github.com/sourcegraph/conc v0.3.0 // indirect + github.com/spf13/afero v1.11.0 // indirect + github.com/spf13/viper v1.18.2 // indirect github.com/status-im/keycard-go v0.2.0 // indirect - github.com/subosito/gotenv v1.4.2 // indirect + github.com/subosito/gotenv v1.6.0 // indirect github.com/syndtr/goleveldb v1.0.1-0.20220721030215-126854af5e6d // indirect github.com/tendermint/go-amino v0.16.0 // indirect - github.com/tidwall/btree v1.5.0 // indirect + github.com/tidwall/btree v1.6.0 // indirect github.com/tidwall/gjson v1.14.4 // indirect github.com/tidwall/match v1.1.1 // indirect github.com/tidwall/pretty v1.2.0 // indirect @@ -195,7 +201,7 @@ require ( github.com/tklauser/go-sysconf v0.3.11 // indirect github.com/tklauser/numcpus v0.6.0 // indirect github.com/tyler-smith/go-bip39 v1.1.0 // indirect - github.com/ulikunitz/xz v0.5.10 // indirect + github.com/ulikunitz/xz v0.5.11 // indirect github.com/zondax/hid v0.9.2 // indirect github.com/zondax/ledger-go v0.14.3 // indirect go.etcd.io/bbolt v1.3.8 // indirect @@ -205,8 +211,9 @@ require ( go.opentelemetry.io/otel v1.24.0 // indirect go.opentelemetry.io/otel/metric v1.24.0 // indirect go.opentelemetry.io/otel/trace v1.24.0 // indirect + go.uber.org/multierr v1.10.0 // indirect golang.org/x/crypto v0.21.0 // indirect - golang.org/x/net v0.22.0 // indirect + golang.org/x/net v0.23.0 // indirect golang.org/x/oauth2 v0.18.0 // indirect golang.org/x/sync v0.6.0 // indirect golang.org/x/sys v0.18.0 // indirect @@ -217,23 +224,26 @@ require ( google.golang.org/appengine v1.6.8 // indirect google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect - google.golang.org/protobuf v1.33.0 // indirect gopkg.in/ini.v1 v1.67.0 // indirect gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect gopkg.in/yaml.v3 v3.0.1 // indirect nhooyr.io/websocket v1.8.7 // indirect + pgregory.net/rapid v1.1.0 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) replace ( // use dymension forks - github.com/evmos/ethermint => github.com/dymensionxyz/ethermint v0.22.0-dymension-v0.4.1 + github.com/evmos/ethermint => github.com/dymensionxyz/ethermint v0.22.0-dymension-v0.4.1.0.20240625101522-b1506ae83050 github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 github.com/osmosis-labs/osmosis/osmomath => github.com/dymensionxyz/osmosis/osmomath v0.0.6-dym-v0.0.1 - github.com/osmosis-labs/osmosis/v15 => github.com/dymensionxyz/osmosis/v15 v15.2.0-dymension-v1.1.3 + github.com/osmosis-labs/osmosis/v15 => github.com/dymensionxyz/osmosis/v15 v15.2.1-0.20240627111157-f2243f47cdb3 // broken goleveldb github.com/syndtr/goleveldb => github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 + // use cometbft github.com/tendermint/tendermint => github.com/cometbft/cometbft v0.34.29 + + golang.org/x/exp => golang.org/x/exp v0.0.0-20230711153332-06a737ee72cb ) diff --git a/go.sum b/go.sum index 98227cac9..15f95212a 100644 --- a/go.sum +++ b/go.sum @@ -4,7 +4,6 @@ cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSR cloud.google.com/go v0.43.0/go.mod h1:BOSR3VbTLkk6FDC/TcffxP4NF/FFBGA5ku+jvKOP7pg= cloud.google.com/go v0.44.1/go.mod h1:iSa0KzasP4Uvy3f1mN/7PiObzGgflwredwwASm/v6AU= cloud.google.com/go v0.44.2/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= -cloud.google.com/go v0.44.3/go.mod h1:60680Gw3Yr4ikxnPRS/oxxkBccT6SA1yMk63TGekxKY= cloud.google.com/go v0.45.1/go.mod h1:RpBamKRgapWJb87xiFSdk4g1CME7QZg3uwTez+TSTjc= cloud.google.com/go v0.46.3/go.mod h1:a6bKKbmY7er1mI7TEI4lsAkts/mkhTSZK8w33B4RAg0= cloud.google.com/go v0.50.0/go.mod h1:r9sluTvynVuxRIOHXQEHMFffphuXHOMZMycpNR5e6To= @@ -18,7 +17,6 @@ cloud.google.com/go v0.62.0/go.mod h1:jmCYTdRCQuc1PHIIJ/maLInMho30T/Y0M4hTdTShOY cloud.google.com/go v0.65.0/go.mod h1:O5N8zS7uWy9vkA9vayVHs65eM1ubvY4h553ofrNHObY= cloud.google.com/go v0.72.0/go.mod h1:M+5Vjvlc2wnp6tjzE102Dw08nGShTscUx2nZMufOKPI= cloud.google.com/go v0.74.0/go.mod h1:VV1xSbzvo+9QJOxLDaJfTjx5e+MePCpCWwvftOeQmWk= -cloud.google.com/go v0.75.0/go.mod h1:VGuuCn7PG0dwsd5XPVm2Mm3wlh3EL55/79EKB6hlPTY= cloud.google.com/go v0.78.0/go.mod h1:QjdrLG0uq+YwhjoVOLsS1t7TW8fs36kLs4XO5R5ECHg= cloud.google.com/go v0.79.0/go.mod h1:3bzgcEeQlzbuEAYu4mrWhKqWjmpprinYgKJLgKHnbb8= cloud.google.com/go v0.81.0/go.mod h1:mk/AM35KwGk/Nm2YSeZbxXdrNK3KZOYHmLkOqC2V6E0= @@ -173,7 +171,6 @@ cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0Zeo cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk= cloud.google.com/go/storage v1.8.0/go.mod h1:Wv1Oy7z6Yz3DshWRJFhqM/UCfaWIRTdp0RXyy7KQOVs= cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9ullr3+Kg0= -cloud.google.com/go/storage v1.14.0/go.mod h1:GrKmX003DSIwi9o29oFT7YDnHYwZoctc3fOKtUw0Xmo= cloud.google.com/go/storage v1.22.1/go.mod h1:S8N1cAStu7BOeFfE8KAQzmyyLkK8p/vmRq6kuBTW58Y= cloud.google.com/go/storage v1.23.0/go.mod h1:vOEEDNFnciUMhBeT6hsJIn3ieU5cFRmzeLgDvXzfIXc= cloud.google.com/go/storage v1.27.0/go.mod h1:x9DOL8TK/ygDUMieqwfhdpQryTeEkhGKMi80i/iqR2s= @@ -191,13 +188,25 @@ cloud.google.com/go/webrisk v1.5.0/go.mod h1:iPG6fr52Tv7sGk0H6qUFzmL3HHZev1htXuW cloud.google.com/go/workflows v1.6.0/go.mod h1:6t9F5h/unJz41YqfBmqSASJSXccBLtD1Vwf+KmJENM0= cloud.google.com/go/workflows v1.7.0/go.mod h1:JhSrZuVZWuiDfKEFxU0/F1PQjmpnpcoISEXH2bcHC3M= collectd.org v0.3.0/go.mod h1:A/8DzQBkF6abtvrT2j/AU/4tiBgJWYyh0y/oB/4MlWE= +cosmossdk.io/api v0.3.1 h1:NNiOclKRR0AOlO4KIqeaG6PS6kswOMhHD0ir0SscNXE= +cosmossdk.io/api v0.3.1/go.mod h1:DfHfMkiNA2Uhy8fj0JJlOCYOBp4eWUUJ1te5zBGNyIw= +cosmossdk.io/core v0.5.1 h1:vQVtFrIYOQJDV3f7rw4pjjVqc1id4+mE0L9hHP66pyI= +cosmossdk.io/core v0.5.1/go.mod h1:KZtwHCLjcFuo0nmDc24Xy6CRNEL9Vl/MeimQ2aC7NLE= +cosmossdk.io/depinject v1.0.0-alpha.4 h1:PLNp8ZYAMPTUKyG9IK2hsbciDWqna2z1Wsl98okJopc= +cosmossdk.io/depinject v1.0.0-alpha.4/go.mod h1:HeDk7IkR5ckZ3lMGs/o91AVUc7E596vMaOmslGFM3yU= cosmossdk.io/errors v1.0.1 h1:bzu+Kcr0kS/1DuPBtUFdWjzLqyUuCiyHjyJB6srBV/0= cosmossdk.io/errors v1.0.1/go.mod h1:MeelVSZThMi4bEakzhhhE/CKqVv3nOJDA25bIqRDu/U= +cosmossdk.io/log v1.3.1 h1:UZx8nWIkfbbNEWusZqzAx3ZGvu54TZacWib3EzUYmGI= +cosmossdk.io/log v1.3.1/go.mod h1:2/dIomt8mKdk6vl3OWJcPk2be3pGOS8OQaLUM/3/tCM= cosmossdk.io/math v1.3.0 h1:RC+jryuKeytIiictDslBP9i1fhkVm6ZDmZEoNP316zE= cosmossdk.io/math v1.3.0/go.mod h1:vnRTxewy+M7BtXBNFybkuhSH4WfedVAAnERHgVFhp3k= -dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU= -filippo.io/edwards25519 v1.0.0-rc.1 h1:m0VOOB23frXZvAOK44usCgLWvtsxIoMCTBGJZlpmGfU= +cosmossdk.io/simapp v0.0.0-20230608160436-666c345ad23d h1:E/8y0oG3u9hBR8l4F9MtC0LdZIamPCUwUoLlrHrX86I= +cosmossdk.io/simapp v0.0.0-20230608160436-666c345ad23d/go.mod h1:xbjky3L3DJEylaho6gXplkrMvJ5sFgv+qNX+Nn47bzY= +cosmossdk.io/tools/rosetta v0.2.1 h1:ddOMatOH+pbxWbrGJKRAawdBkPYLfKXutK9IETnjYxw= +cosmossdk.io/tools/rosetta v0.2.1/go.mod h1:Pqdc1FdvkNV3LcNIkYWt2RQY6IP1ge6YWZk8MhhO9Hw= filippo.io/edwards25519 v1.0.0-rc.1/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns= +filippo.io/edwards25519 v1.0.0 h1:0wAIcmJUqRdI8IJ/3eGi5/HwXZWPujYXXlkrQogz0Ek= +filippo.io/edwards25519 v1.0.0/go.mod h1:N1IkdkCkiLB6tki+MYJoSx2JTY9NUlxZE7eHn5EwJns= git.sr.ht/~sircmpwn/getopt v0.0.0-20191230200459-23622cc906b3/go.mod h1:wMEGFFFNuPos7vHmWXfszqImLppbc0wEhh6JBfJIUgw= git.sr.ht/~sircmpwn/go-bare v0.0.0-20210406120253-ab86bc2846d9/go.mod h1:BVJwbDfVjCjoFiKrhkei6NdGcZYpkDkdyCdg1ukytRA= github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 h1:/vQbFIOMbk2FiG/kXiLl8BRyzTWDw7gX/Hz7Dd5eDMs= @@ -210,7 +219,6 @@ github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v0.3.0/go.mod h1:tPaiy8S5bQ github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 h1:UQHMgLO+TxOElx5B5HZ4hJQsoJ/PvUvKRhJHDQXO8P8= github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo= github.com/ChainSafe/go-schnorrkel v1.0.0 h1:3aDA67lAykLaG1y3AOjs88dMxC88PgUuHRrLeDnvGIM= github.com/ChainSafe/go-schnorrkel v1.0.0/go.mod h1:dpzHYVxLZcp8pjlV+O+UR8K0Hp/z7vcchBSbMBEhCw4= github.com/DATA-DOG/go-sqlmock v1.3.3/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM= @@ -218,8 +226,8 @@ github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3 github.com/DataDog/zstd v1.5.0 h1:+K/VEwIAaPcHiMtQvpLD4lqW7f0Gk3xdYZmI1hD+CXo= github.com/DataDog/zstd v1.5.0/go.mod h1:g4AWEaM3yOg3HYfnJ3YIawPnVdXJh9QME85blwSAmyw= github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible/go.mod h1:r7JcOSlj0wfOMncg0iLm8Leh48TZaKVeNIfJntJ2wa0= -github.com/Microsoft/go-winio v0.6.0 h1:slsWYD/zyx7lCXoZVlvQrj0hPTM1HI4+v1sIda2yDvg= -github.com/Microsoft/go-winio v0.6.0/go.mod h1:cTAf44im0RAYeL23bpB+fzCyDH2MJiz2BO69KH/soAE= +github.com/Microsoft/go-winio v0.6.1 h1:9/kr64B9VUZrLm5YYwbGtUJnMgqWVOdUAXu6Migciow= +github.com/Microsoft/go-winio v0.6.1/go.mod h1:LRdKpFKfdobln8UmuiYcKPot9D2v6svN5+sAH+4kjUM= github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 h1:TngWCqHvy9oXAN6lEVMRuU21PR1EtLVZJmdB18Gu3Rw= github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5/go.mod h1:lmUJ/7eu/Q8D7ML55dXQrVaamCz2vxCfdQBasLZfHKk= github.com/OneOfOne/xxhash v1.2.2 h1:KMrpdQIwFcEqXDklaen+P1axHaj9BSKzvpUUfnHldSE= @@ -232,8 +240,6 @@ github.com/VictoriaMetrics/fastcache v1.6.0 h1:C/3Oi3EiBCqufydp1neRZkqcwmEiuRT9c github.com/VictoriaMetrics/fastcache v1.6.0/go.mod h1:0qHz5QP0GMX4pfmMA/zt5RgfNuXJrTP0zS7DqpHGGTw= github.com/VividCortex/gohistogram v1.0.0 h1:6+hBz+qvs0JOrrNhhmR7lFxo5sINxBCGXrdtl/UvroE= github.com/VividCortex/gohistogram v1.0.0/go.mod h1:Pf5mBqqDxYaXu3hDrrU+w6nw50o/4+TcAqDqk/vUH7g= -github.com/Workiva/go-datastructures v1.0.53 h1:J6Y/52yX10Xc5JjXmGtWoSSxs3mZnGSaq37xZZh7Yig= -github.com/Workiva/go-datastructures v1.0.53/go.mod h1:1yZL+zfsztete+ePzZz/Zb1/t5BnDuE2Ya2MMGhzP6A= github.com/Zilliqa/gozilliqa-sdk v1.2.1-0.20201201074141-dd0ecada1be6/go.mod h1:eSYp2T6f0apnuW8TzhV3f6Aff2SE8Dwio++U4ha4yEM= github.com/adlio/schema v1.3.3 h1:oBJn8I02PyTB466pZO1UZEn1TV5XLlifBSyMrmHl/1I= github.com/adlio/schema v1.3.3/go.mod h1:1EsRssiv9/Ce2CMzq5DoL7RiMshhuigQxrR4DMV9fHg= @@ -263,8 +269,9 @@ github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310/go.mod h1:ufUuZ+zHj github.com/aryann/difflib v0.0.0-20170710044230-e206f873d14a/go.mod h1:DAHtR1m6lCRdSC2Tm3DSWRPvIPr6xNKyeHdqDQSQT+A= github.com/aws/aws-lambda-go v1.13.3/go.mod h1:4UKl9IzQMoD+QF79YdCuzCwp8VbmG4VAQwij/eHl5CU= github.com/aws/aws-sdk-go v1.27.0/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN924inxo= -github.com/aws/aws-sdk-go v1.44.122 h1:p6mw01WBaNpbdP2xrisz5tIkcNwzj/HysobNoaAHjgo= github.com/aws/aws-sdk-go v1.44.122/go.mod h1:y4AeaBuwd2Lk+GepC1E9v0qOiTws0MIWAX4oIKwKHZo= +github.com/aws/aws-sdk-go v1.44.203 h1:pcsP805b9acL3wUqa4JR2vg1k2wnItkDYNvfmcy6F+U= +github.com/aws/aws-sdk-go v1.44.203/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI= github.com/aws/aws-sdk-go-v2 v0.18.0/go.mod h1:JWVYvqSMppoMJC0x5wdwiImzgXTI9FuZwxzkQq9wy+g= github.com/aws/aws-sdk-go-v2 v1.2.0/go.mod h1:zEQs02YRBw1DjK0PoJv3ygDYOFTre1ejlJWl8FwAuQo= github.com/aws/aws-sdk-go-v2/config v1.1.1/go.mod h1:0XsVy9lBI/BCXm+2Tuvt39YmdHwS5unDQmxZOYe8F5Y= @@ -318,8 +325,8 @@ github.com/btcsuite/snappy-go v0.0.0-20151229074030-0bdef8d06723/go.mod h1:8woku github.com/btcsuite/snappy-go v1.0.0/go.mod h1:8woku9dyThutzjeg+3xrA5iCpBRH8XEEg3lh6TiUghc= github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792/go.mod h1:ghJtEyQwv5/p4Mg4C0fgbePVuGr935/5ddU9Z3TmDRY= github.com/btcsuite/winsvc v1.0.0/go.mod h1:jsenWakMcC0zFBFurPLEAyrnc/teJEM1O46fmI40EZs= -github.com/bufbuild/protocompile v0.1.0 h1:HjgJBI85hY/qmW5tw/66sNDZ7z0UDdVSi/5r40WHw4s= -github.com/bufbuild/protocompile v0.1.0/go.mod h1:ix/MMMdsT3fzxfw91dvbfzKW3fRRnuPCP47kpAm5m/4= +github.com/bufbuild/protocompile v0.4.0 h1:LbFKd2XowZvQ/kajzguUp2DC9UEIQhIq77fZZlaQsNA= +github.com/bufbuild/protocompile v0.4.0/go.mod h1:3v93+mbWn/v3xzN+31nwkJfrEpAUwp+BagBSZWx+TP8= github.com/bwesterb/go-ristretto v1.2.0/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0= github.com/c-bata/go-prompt v0.2.2/go.mod h1:VzqtzE2ksDBcdln8G7mk2RX9QyGjH+OVqOCSiVIqS34= github.com/casbin/casbin/v2 v2.1.2/go.mod h1:YcPU1XXisHhLzuxH9coDNf2FbKpjGlbCg3n9yuLkIJQ= @@ -337,12 +344,15 @@ github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XL github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cheggaaa/pb v1.0.27/go.mod h1:pQciLPpbU0oxA0h+VJYYLxO+XeDQb5pZijXscXHm81s= -github.com/chzyer/logex v1.1.10 h1:Swpa1K6QvQznwJRcfTfQJmTE72DqScAa40E+fbHEXEE= github.com/chzyer/logex v1.1.10/go.mod h1:+Ywpsq7O8HXn0nuIou7OrIPyXbp3wmkHB+jjWRnGsAI= -github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e h1:fY5BOSpyZCqRo5OhCuC+XN+r/bBCmeuuJtjz+bCNIf8= +github.com/chzyer/logex v1.2.1 h1:XHDu3E6q+gdHgsdTPH6ImJMIp436vR6MPtH8gP05QzM= +github.com/chzyer/logex v1.2.1/go.mod h1:JLbx6lG2kDbNRFnfkgvh4eRJRPX1QCoOIWomwysCBrQ= github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e/go.mod h1:nSuG5e5PlCu98SY8svDHJxuZscDgtXS6KTTbou5AhLI= -github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 h1:q763qf9huN11kDQavWsoZXJNW3xEE4JJyHa5Q25/sd8= +github.com/chzyer/readline v1.5.1 h1:upd/6fQk4src78LMRzh5vItIt361/o4uq553V8B5sGI= +github.com/chzyer/readline v1.5.1/go.mod h1:Eh+b79XXUwfKfcPLepksvw2tcLE/Ct21YObkaSkeBlk= github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMnBNeIyt5eFwwo7qiLfzFZmjNmxjkiQlU= +github.com/chzyer/test v1.0.0 h1:p3BQDXSxOhOG0P9z6/hGnII4LGiEPOYBhs8asl/fC04= +github.com/chzyer/test v1.0.0/go.mod h1:2JlltgoNkt4TW/z9V/IzDdFaMTM2JPIi26O1pF38GC8= github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/clbanning/x2j v0.0.0-20191024224557-825249438eec/go.mod h1:jMjuTZXRI4dUb/I5gc9Hdhagfvm9+RyrPryS/auMzxE= @@ -376,8 +386,8 @@ github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd/go.mod h1:sE github.com/coinbase/kryptology v1.8.0/go.mod h1:RYXOAPdzOGUe3qlSFkMGn58i3xUA8hmxYHksuq+8ciI= github.com/coinbase/rosetta-sdk-go v0.7.9 h1:lqllBjMnazTjIqYrOGv8h8jxjg9+hJazIGZr9ZvoCcA= github.com/coinbase/rosetta-sdk-go v0.7.9/go.mod h1:0/knutI7XGVqXmmH4OQD8OckFrbQ8yMsUZTG7FXCR2M= -github.com/cometbft/cometbft v0.34.29 h1:Q4FqMevP9du2pOgryZJHpDV2eA6jg/kMYxBj9ZTY6VQ= -github.com/cometbft/cometbft v0.34.29/go.mod h1:L9shMfbkZ8B+7JlwANEr+NZbBcn+hBpwdbeYvA5rLCw= +github.com/cometbft/cometbft v0.37.5 h1:/U/TlgMh4NdnXNo+YU9T2NMCWyhXNDF34Mx582jlvq0= +github.com/cometbft/cometbft v0.37.5/go.mod h1:QC+mU0lBhKn8r9qvmnq53Dmf3DWBt4VtkcKw2C81wxY= github.com/cometbft/cometbft-db v0.11.0 h1:M3Lscmpogx5NTbb1EGyGDaFRdsoLWrUWimFEyf7jej8= github.com/cometbft/cometbft-db v0.11.0/go.mod h1:GDPJAC/iFHNjmZZPN8V8C1yr/eyityhi2W1hz2MGKSc= github.com/confio/ics23/go v0.9.0 h1:cWs+wdbS2KRPZezoaaj+qBleXgUk5WOQFMP3CQFGTr4= @@ -396,32 +406,37 @@ github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSV github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= github.com/cosmos/btcutil v1.0.5 h1:t+ZFcX77LpKtDBhjucvnOH8C2l2ioGsBNEQ3jef8xFk= github.com/cosmos/btcutil v1.0.5/go.mod h1:IyB7iuqZMJlthe2tkIFL33xPyzbFYP0XVdS8P5lUPis= -github.com/cosmos/cosmos-proto v1.0.0-beta.3 h1:VitvZ1lPORTVxkmF2fAp3IiA61xVwArQYKXTdEcpW6o= -github.com/cosmos/cosmos-proto v1.0.0-beta.3/go.mod h1:t8IASdLaAq+bbHbjq4p960BvcTqtwuAxid3b/2rOD6I= -github.com/cosmos/cosmos-sdk v0.46.16 h1:RVGv1+RulLZeNyfCaPZrZtv0kY7ZZNAI6JGpub0Uh6o= -github.com/cosmos/cosmos-sdk v0.46.16/go.mod h1:05U50tAsOzQ8JOAePshJCbJQw5ib1YJR6IXcqyVI1Xg= +github.com/cosmos/cosmos-proto v1.0.0-beta.5 h1:eNcayDLpip+zVLRLYafhzLvQlSmyab+RC5W7ZfmxJLA= +github.com/cosmos/cosmos-proto v1.0.0-beta.5/go.mod h1:hQGLpiIUloJBMdQMMWb/4wRApmI9hjHH05nefC0Ojec= +github.com/cosmos/cosmos-sdk v0.47.13 h1:9d57rl2ilSgc8a6u1JAulqNX/E5w8lbqbRe3NON3Jb4= +github.com/cosmos/cosmos-sdk v0.47.13/go.mod h1:pYMzhTfKFn9AJB5X64Epwe9NgYk0y3v7XN8Ks5xqWoo= github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y= github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY= github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw= -github.com/cosmos/gogoproto v1.4.7 h1:RzYKVnsEC7UIkDnhTIkqEB7LnIQbsySvmNEqPCiPevk= -github.com/cosmos/gogoproto v1.4.7/go.mod h1:gxGePp9qedovvl/StQL2BIJ6qlIBn1+9YxR0IulGBKA= -github.com/cosmos/gorocksdb v1.2.0 h1:d0l3jJG8M4hBouIZq0mDUHZ+zjOx044J3nGRskwTb4Y= -github.com/cosmos/gorocksdb v1.2.0/go.mod h1:aaKvKItm514hKfNJpUJXnnOWeBnk2GL4+Qw9NHizILw= -github.com/cosmos/iavl v0.19.6 h1:XY78yEeNPrEYyNCKlqr9chrwoeSDJ0bV2VjocTk//OU= -github.com/cosmos/iavl v0.19.6/go.mod h1:X9PKD3J0iFxdmgNLa7b2LYWdsGd90ToV5cAONApkEPw= -github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6 v6.1.2-0.20240228222509-2b38263c41d3 h1:q4Q/AtIiaUobNWJWshlGqHWB75rpVtzbU28zvYTYmw8= -github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v6 v6.1.2-0.20240228222509-2b38263c41d3/go.mod h1:Jo934o/sW7fNxuOa/TjCalSalz+1Fd649eLyANaJx8g= -github.com/cosmos/ibc-go/v6 v6.2.1 h1:NiaDXTRhKwf3n9kELD4VRIe5zby1yk1jBvaz9tXTQ6k= -github.com/cosmos/ibc-go/v6 v6.2.1/go.mod h1:XLsARy4Y7+GtAqzMcxNdlQf6lx+ti1e8KcMGv5NIK7A= +github.com/cosmos/gogogateway v1.2.0 h1:Ae/OivNhp8DqBi/sh2A8a1D0y638GpL3tkmLQAiKxTE= +github.com/cosmos/gogogateway v1.2.0/go.mod h1:iQpLkGWxYcnCdz5iAdLcRBSw3h7NXeOkZ4GUkT+tbFI= +github.com/cosmos/gogoproto v1.4.2/go.mod h1:cLxOsn1ljAHSV527CHOtaIP91kK6cCrZETRBrkzItWU= +github.com/cosmos/gogoproto v1.4.10 h1:QH/yT8X+c0F4ZDacDv3z+xE3WU1P1Z3wQoLMBRJoKuI= +github.com/cosmos/gogoproto v1.4.10/go.mod h1:3aAZzeRWpAwr+SS/LLkICX2/kDFyaYVzckBDzygIxek= +github.com/cosmos/iavl v0.20.1 h1:rM1kqeG3/HBT85vsZdoSNsehciqUQPWrR4BYmqE2+zg= +github.com/cosmos/iavl v0.20.1/go.mod h1:WO7FyvaZJoH65+HFOsDir7xU9FWk2w9cHXNW1XHcl7A= +github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7 v7.1.3 h1:MZGDMETv72suFpTAD6VPGqSIm1FJcChtk2HmVh9D+Bo= +github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7 v7.1.3/go.mod h1:UvDmcGIWJPIytq+Q78/ff5NTOsuX/7IrNgEugTW5i0s= +github.com/cosmos/ibc-go/v7 v7.5.1 h1:KqS/g7W7EMX1OtOvufS8lWMJibOKpdgtNNZIU6fAgVU= +github.com/cosmos/ibc-go/v7 v7.5.1/go.mod h1:ktFg5GvKOyrGCqTWtW7Grj5uweU4ZapxrNeVS1CLLbo= +github.com/cosmos/ics23/go v0.10.0 h1:iXqLLgp2Lp+EdpIuwXTYIQU+AiHj9mOC2X9ab++bZDM= +github.com/cosmos/ics23/go v0.10.0/go.mod h1:ZfJSmng/TBNTBkFemHHHj5YY7VAU/MBU980F4VU1NG0= github.com/cosmos/ledger-cosmos-go v0.12.4 h1:drvWt+GJP7Aiw550yeb3ON/zsrgW0jgh5saFCr7pDnw= github.com/cosmos/ledger-cosmos-go v0.12.4/go.mod h1:fjfVWRf++Xkygt9wzCsjEBdjcf7wiiY35fv3ctT+k4M= +github.com/cosmos/rosetta-sdk-go v0.10.0 h1:E5RhTruuoA7KTIXUcMicL76cffyeoyvNybzUGSKFTcM= +github.com/cosmos/rosetta-sdk-go v0.10.0/go.mod h1:SImAZkb96YbwvoRkzSMQB6noNJXFgWl/ENIznEoYQI4= github.com/cpuguy83/go-md2man v1.0.10 h1:BSKMNlYxDvnunlTymqtgONjNnaRV1sTpcovwwjF22jk= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.3 h1:qMCsGGgs+MAzDFyp9LpAe1Lqy/fY/qCovCm0qnXZOBM= github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creachadair/taskgroup v0.3.2 h1:zlfutDS+5XG40AOxcHDSThxKzns8Tnr9jnr6VqkYlkM= -github.com/creachadair/taskgroup v0.3.2/go.mod h1:wieWwecHVzsidg2CsUnFinW1faVN4+kq+TDlRJQ0Wbk= +github.com/creachadair/taskgroup v0.4.2 h1:jsBLdAJE42asreGss2xZGZ8fJra7WtwnHWeJFxv2Li8= +github.com/creachadair/taskgroup v0.4.2/go.mod h1:qiXUOSrbwAY3u0JPGTzObbE3yf9hcXHDKBZ2ZjpCbgM= github.com/creack/pty v1.1.7/go.mod h1:lj5s0c3V2DBrqTV7llrYr5NG6My20zk30Fl46Y7DoTY= github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/cyberdelia/templates v0.0.0-20141128023046-ca7fffd4298c/go.mod h1:GyV+0YP4qX0UQ7r2MoYZ+AvYDp12OF5yg4q8rGnyNh4= @@ -432,8 +447,9 @@ github.com/danwt/gerr v1.0.0/go.mod h1:tIj6P8ZPBLAbr64HdWqKHGUXbWJT6HenD08Fn98oA github.com/dave/jennifer v1.2.0/go.mod h1:fIb+770HOpJ2fmN9EPPKOqm1vMGhB+TwXKMZhrIygKg= github.com/davecgh/go-spew v0.0.0-20171005155431-ecdeabc65495/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1VwoXQT9A3Wy9MM3WgvqSxFWenqJduM= +github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/deckarep/golang-set v1.8.0 h1:sk9/l/KqpunDwP7pSjUg0keiOOLEnOBHzykLrsPppp4= github.com/deckarep/golang-set v1.8.0/go.mod h1:5nI87KwE7wgsBU1F4GKAw2Qod7p5kyS383rP6+o6qqo= github.com/decred/dcrd/crypto/blake256 v1.0.0 h1:/8DMNYp9SGi5f0w7uCm6d6M4OU2rGFK09Y2A4Xv7EE0= @@ -450,12 +466,10 @@ github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f h1:U5y3Y5UE0w7amNe github.com/desertbit/timer v0.0.0-20180107155436-c41aec40b27f/go.mod h1:xH/i4TFMt8koVQZ6WFms69WAsDWr2XsYL3Hkl7jkoLE= github.com/dgraph-io/badger/v2 v2.2007.4 h1:TRWBQg8UrlUhaFdco01nO2uXwzKS7zd+HVdwV/GHc4o= github.com/dgraph-io/badger/v2 v2.2007.4/go.mod h1:vSw/ax2qojzbN6eXHIx6KPKtCSHJN/Uz0X0VPruTIhk= -github.com/dgraph-io/badger/v3 v3.2103.2 h1:dpyM5eCJAtQCBcMCZcT4UBZchuTJgCywerHHgmxfxM8= -github.com/dgraph-io/badger/v3 v3.2103.2/go.mod h1:RHo4/GmYcKKh5Lxu63wLEMHJ70Pac2JqZRYGhlyAo2M= github.com/dgraph-io/ristretto v0.0.3-0.20200630154024-f66de99634de/go.mod h1:KPxhHT9ZxKefz+PCeOGsrHpl1qZ7i70dGTu2u+Ahh6E= github.com/dgraph-io/ristretto v0.0.3/go.mod h1:KPxhHT9ZxKefz+PCeOGsrHpl1qZ7i70dGTu2u+Ahh6E= -github.com/dgraph-io/ristretto v0.1.0 h1:Jv3CGQHp9OjuMBSne1485aDpUkTKEcUqF+jm/LuerPI= -github.com/dgraph-io/ristretto v0.1.0/go.mod h1:fux0lOrBhrVCJd3lcTHsIJhq1T2rokOu6v9Vcb3Q9ug= +github.com/dgraph-io/ristretto v0.1.1 h1:6CWw5tJNgpegArSHpNHJKldNeq03FQCwYvfMVWajOK8= +github.com/dgraph-io/ristretto v0.1.1/go.mod h1:S1GPSBCYCIhmVNfcth17y2zZtQT6wzkzgwUve0VDWWA= github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= github.com/dgryski/go-bitstream v0.0.0-20180413035011-3522498ce2c8/go.mod h1:VMaSuZ+SZcx/wljOQKvp5srsbCiKDEb6K2wC4+PiBmQ= github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2/go.mod h1:SqUrOPUnsFjfmXRMNPybcSiG0BgUW2AuFH8PAnS2iTw= @@ -477,20 +491,20 @@ github.com/dop251/goja v0.0.0-20220405120441-9037c2b61cbf/go.mod h1:R9ET47fwRVRP github.com/dop251/goja_nodejs v0.0.0-20210225215109-d91c329300e7/go.mod h1:hn7BA7c8pLvoGndExHudxTDKZ84Pyvv+90pbBjbTz0Y= github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac h1:opbrjaN/L8gg6Xh5D04Tem+8xVcz6ajZlGCs49mQgyg= -github.com/dustin/go-humanize v1.0.1-0.20200219035652-afde56e7acac/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= -github.com/dvsekhvalnov/jose2go v1.5.0 h1:3j8ya4Z4kMCwT5nXIKFSV84YS+HdqSSO0VsTQxaLAeM= -github.com/dvsekhvalnov/jose2go v1.5.0/go.mod h1:QsHjhyTlD/lAVqn/NSbVZmSCGeDehTB/mPZadG+mhXU= -github.com/dymensionxyz/ethermint v0.22.0-dymension-v0.4.1 h1:J31ASxmDVm7ytjmk9ToVZeJA4WyAZKO0r2ErwbhEf98= -github.com/dymensionxyz/ethermint v0.22.0-dymension-v0.4.1/go.mod h1:O2J61ZwM0Vdms6pRa1fb43pwmCuNRctro3AB90WlOc0= +github.com/dustin/go-humanize v1.0.1 h1:GzkhY7T5VNhEkwH0PVJgjz+fX1rhBrR7pRT3mDkpeCY= +github.com/dustin/go-humanize v1.0.1/go.mod h1:Mu1zIs6XwVuF/gI1OepvI0qD18qycQx+mFykh5fBlto= +github.com/dvsekhvalnov/jose2go v1.6.0 h1:Y9gnSnP4qEI0+/uQkHvFXeD2PLPJeXEL+ySMEA2EjTY= +github.com/dvsekhvalnov/jose2go v1.6.0/go.mod h1:QsHjhyTlD/lAVqn/NSbVZmSCGeDehTB/mPZadG+mhXU= +github.com/dymensionxyz/ethermint v0.22.0-dymension-v0.4.1.0.20240625101522-b1506ae83050 h1:1mtlo6bDOdBihHWbDpOaai0NMC/4xHCkCHGCqdLT8WM= +github.com/dymensionxyz/ethermint v0.22.0-dymension-v0.4.1.0.20240625101522-b1506ae83050/go.mod h1:aokD0im7cUMMtR/khzNsmcGtINtxCpBfcgRvJdmLymA= github.com/dymensionxyz/gerr-cosmos v1.0.0 h1:oi91rgOkpJWr41oX9JOyjvvBnhGY54tj513x8VlDAEc= github.com/dymensionxyz/gerr-cosmos v1.0.0/go.mod h1:n+0olxPogzWqFKba45mCpvrHLGmeS8W9UZjggHnWk6c= github.com/dymensionxyz/osmosis/osmomath v0.0.6-dym-v0.0.1 h1:59ZE3Ocrn04MUpb5VJgfi24eDcnQ9VBfCSw0Mx1n7OI= github.com/dymensionxyz/osmosis/osmomath v0.0.6-dym-v0.0.1/go.mod h1:2idySYJxP5YfMAEeSeqD8e7fSchfsI4jn7XFHJgNUsM= -github.com/dymensionxyz/osmosis/v15 v15.2.0-dymension-v1.1.3 h1:8L0sMJfGjIgDmA373Qokoix4kdCrzG1j1lYe//B5kkQ= -github.com/dymensionxyz/osmosis/v15 v15.2.0-dymension-v1.1.3/go.mod h1:BHHGzl86byC0sov3EUfTzyDuIsGY//rcrek6gCOa+fw= -github.com/dymensionxyz/sdk-utils v0.1.1 h1:QX/4S0t+wUhbRlAw34fz2kEF+RP1D+tEVQ/S5QRa5X0= -github.com/dymensionxyz/sdk-utils v0.1.1/go.mod h1:5fmenxP75quS5D1gPynbmh5qE6vla64Kks2O/hM+gi4= +github.com/dymensionxyz/osmosis/v15 v15.2.1-0.20240627111157-f2243f47cdb3 h1:4VD23Jv5d8hqXEhLNNcLXlpSDJCWAGYJLF0kisJtkIk= +github.com/dymensionxyz/osmosis/v15 v15.2.1-0.20240627111157-f2243f47cdb3/go.mod h1:2rsnXAdjYfXtyEw0mNwAdOiAccALYjAPvINGUf9Qg7Y= +github.com/dymensionxyz/sdk-utils v0.2.0 h1:7nmP3CZ9w0XkSGaIKh3xuAw2Ah/Gc5ENwM46+AALyy8= +github.com/dymensionxyz/sdk-utils v0.2.0/go.mod h1:ywr7+EEhHyuXCPUyLsktF3R4Mr31uCiviIjqwWNbQ84= github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= @@ -511,12 +525,6 @@ github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7 github.com/ethereum/go-ethereum v1.10.17/go.mod h1:Lt5WzjM07XlXc95YzrhosmR4J9Ahd6X2wyEV2SvGhk0= github.com/ethereum/go-ethereum v1.10.26 h1:i/7d9RBBwiXCEuyduBQzJw/mKmnvzsN14jqBmytw72s= github.com/ethereum/go-ethereum v1.10.26/go.mod h1:EYFyF19u3ezGLD4RqOkLq+ZCXzYbLoNDdZlMt7kyKFg= -github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c h1:8ISkoahWXwZR41ois5lSJBSVw4D0OV19Ht/JSTzvSv0= -github.com/facebookgo/ensure v0.0.0-20200202191622-63f1cf65ac4c/go.mod h1:Yg+htXGokKKdzcwhuNDwVvN+uBxDGXJ7G/VN1d8fa64= -github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 h1:JWuenKqqX8nojtoVVWjGfOF9635RETekkoH6Cc9SX0A= -github.com/facebookgo/stack v0.0.0-20160209184415-751773369052/go.mod h1:UbMTZqLaRiH3MsBH8va0n7s1pQYcu3uTb8G4tygF4Zg= -github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4 h1:7HZCaLC5+BZpmbhCOZJ293Lz68O7PYrF2EzeiFMwCLk= -github.com/facebookgo/subset v0.0.0-20200203212716-c811ad88dec4/go.mod h1:5tD+neXqOorC30/tWg0LCSkrqj/AR6gu8yY8/fpw1q0= github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4= github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk= github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= @@ -529,18 +537,18 @@ github.com/fortytw2/leaktest v1.3.0 h1:u8491cBMTQ8ft8aeV+adlcytMZylmA5nnwwkRZjI8 github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g= github.com/franela/goblin v0.0.0-20200105215937-c9ffbefa60db/go.mod h1:7dvUGVsVBjqR7JHJk0brhHOZYGmfBYOrK0ZhYMEtBr4= github.com/franela/goreq v0.0.0-20171204163338-bcd34c9993f8/go.mod h1:ZhphrRTfi2rbfLwlschooIH4+wKKDR4Pdxhh+TRoA20= -github.com/frankban/quicktest v1.14.3 h1:FJKSZTDHjyhriyC81FLQ0LY93eSai0ZyR/ZIkd3ZUKE= -github.com/frankban/quicktest v1.14.3/go.mod h1:mgiwOwqx65TmIk1wJ6Q7wvnVMocbUorkibMOrVTHZps= +github.com/frankban/quicktest v1.14.6 h1:7Xjx+VpznH+oBnejlPUj8oUpdxnVs4f8XU8WnHkI4W8= +github.com/frankban/quicktest v1.14.6/go.mod h1:4ptaffx2x8+WTWXmUCuVU6aPUX1/Mz7zb5vbUoiM6w0= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ= -github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4HY= -github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw= +github.com/fsnotify/fsnotify v1.7.0 h1:8JEhPFa5W2WU7YfeZzPNqzMP6Lwt7L2715Ggo0nosvA= +github.com/fsnotify/fsnotify v1.7.0/go.mod h1:40Bi/Hjc2AVfZrqy+aj+yEI+/bRxZnMJyTJwOpGvigM= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff h1:tY80oXqGNY4FhTFhk+o9oFHGINQ/+vhlm8HFzi6znCI= github.com/gballet/go-libpcsclite v0.0.0-20190607065134-2772fd86a8ff/go.mod h1:x7DCsMOv1taUwEWCzT4cmDeAkigA5/QCwUodaVOe8Ww= github.com/getkin/kin-openapi v0.53.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= github.com/getkin/kin-openapi v0.61.0/go.mod h1:7Yn5whZr5kJi6t+kShccXS8ae1APpYTW6yheSwk8Yi4= -github.com/getsentry/sentry-go v0.18.0 h1:MtBW5H9QgdcJabtZcuJG80BMOwaBpkRDZkxRkNC1sN0= -github.com/getsentry/sentry-go v0.18.0/go.mod h1:Kgon4Mby+FJ7ZWHFUAZgVaIa8sxHtnRJRLTXZr51aKQ= +github.com/getsentry/sentry-go v0.23.0 h1:dn+QRCeJv4pPt9OjVXiMcGIBIefaTJPw/h0bZWO05nE= +github.com/getsentry/sentry-go v0.23.0/go.mod h1:lc76E2QywIyW8WuBnwl8Lc4bkmQH4+w1gwTf25trprY= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= github.com/gin-contrib/sse v0.1.0 h1:Y/yl/+YNO8GZSjAhjMsSuLt29uWRFHdHYUb5lYOV9qE= github.com/gin-contrib/sse v0.1.0/go.mod h1:RHrZQHXnP2xjPF+u1gW/2HnVO7nvIa9PG3Gm+fLHvGI= @@ -552,9 +560,6 @@ github.com/glycerine/goconvey v0.0.0-20190410193231-58a59202ab31/go.mod h1:Ogl1T github.com/go-chi/chi/v5 v5.0.0/go.mod h1:BBug9lr0cqtdAhsu6R4AAdvufI0/XBzAQSsUqJpoZOs= github.com/go-errors/errors v1.4.2 h1:J6MZopCL4uSllY1OfXM374weqZFFItUbrImctkmUxIA= github.com/go-errors/errors v1.4.2/go.mod h1:sIVyrIiJhuEF+Pj9Ebtd6P/rEYROXFi3BopGUQ5a5Og= -github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= -github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/kit v0.9.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-kit/kit v0.10.0/go.mod h1:xUsJbQ/Fp4kEt7AFgCuvyX4a71u8h9jB8tj/ORgOZ7o= @@ -565,8 +570,8 @@ github.com/go-kit/log v0.2.1/go.mod h1:NwTd00d/i8cPZ3xOwwiv2PO5MOcx78fFErGNcVmBj github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A= -github.com/go-logfmt/logfmt v0.5.1 h1:otpy5pqBCBZ1ng9RQ0dPu4PN7ba75Y/aA+UpowDyNVA= -github.com/go-logfmt/logfmt v0.5.1/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= +github.com/go-logfmt/logfmt v0.6.0 h1:wGYYu3uicYdqXVgoYbvnkrPVXkuLM1p1ifugDMEdRi4= +github.com/go-logfmt/logfmt v0.6.0/go.mod h1:WYhtIu8zTZfxdn5+rREduYbwxfcBr/Vr6KEVveWlfTs= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= @@ -608,9 +613,10 @@ github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2 h1:ZpnhV/YsD2/4cESfV5+ github.com/godbus/dbus v0.0.0-20190726142602-4481cbc300e2/go.mod h1:bBOAhwG1umN6/6ZUMtDFBMQR8jRg9O75tm9K00oMsK4= github.com/godbus/dbus/v5 v5.0.4/go.mod h1:xhWf0FNVPg57R7Z0UbKHbJfkEywrmjJnf7w5xrFpKfA= github.com/gofrs/uuid v3.3.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRxnplIgP/c0N/04lM= -github.com/gogo/gateway v1.1.0 h1:u0SuhL9+Il+UbjM9VIE3ntfRujKbvVpFvNB4HbjeVQ0= -github.com/gogo/gateway v1.1.0/go.mod h1:S7rR8FRQyG3QFESeSv4l2WnsyzlCLG0CzBbUUo/mbic= github.com/gogo/googleapis v1.1.0/go.mod h1:gf4bu3Q80BeJ6H1S1vYPm8/ELATdvryBaNFGgqEef3s= +github.com/gogo/googleapis v1.4.1-0.20201022092350-68b0159b7869/go.mod h1:5YRNX2z1oM5gXdAkurHa942MDgEJyk02w4OecKY87+c= +github.com/gogo/googleapis v1.4.1 h1:1Yx4Myt7BxzvUr5ldGSbwYiZG6t9wGBZ+8/fX3Wvtq0= +github.com/gogo/googleapis v1.4.1/go.mod h1:2lpHqI5OcWCtVElxXnPt+s8oJvMpySlOyM6xDCrzib4= github.com/golang-jwt/jwt/v4 v4.3.0 h1:kHL1vqdqWNfATmA0FNMdmZNMyZI1U6O31X4rlIPoBog= github.com/golang-jwt/jwt/v4 v4.3.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg= github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k= @@ -664,9 +670,6 @@ github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ github.com/google/btree v1.1.2 h1:xf4v41cLI2Z6FxbKm+8Bu+m8ifhj15JuZ9sa0jZCMUU= github.com/google/btree v1.1.2/go.mod h1:qOPhT0dTNdNzV6Z/lhRX0YXUafgPLFUh+gZMl761Gm4= github.com/google/flatbuffers v1.11.0/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= -github.com/google/flatbuffers v1.12.1/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= -github.com/google/flatbuffers v2.0.8+incompatible h1:ivUb1cGomAB101ZM1T0nOiWz9pSrTMoa9+EiY7igmkM= -github.com/google/flatbuffers v2.0.8+incompatible/go.mod h1:1AeVuKshWv4vARoZatz6mlQ0JxURH0Kv5+zNeJKJCa8= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= @@ -707,7 +710,6 @@ github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hf github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM= github.com/google/pprof v0.0.0-20201023163331-3e6fc7fc9c4c/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20201203190320-1bf35d6f28c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= -github.com/google/pprof v0.0.0-20201218002935-b9804c9f04c2/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210122040257-d980be63207e/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210226084205-cbba55b83ad5/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= github.com/google/pprof v0.0.0-20210601050228-01bbb1931b22/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE= @@ -741,7 +743,6 @@ github.com/googleapis/gax-go/v2 v2.6.0/go.mod h1:1mjbznJAPHFpesgE5ucqfYEscaz5kMd github.com/googleapis/gax-go/v2 v2.12.2 h1:mhN09QQW1jEWeMF74zGR81R30z4VJzjZsfkUhuHF+DA= github.com/googleapis/gax-go/v2 v2.12.2/go.mod h1:61M8vcyyXR2kqKFxKrfA22jaA8JGF7Dc8App1U3H6jc= github.com/googleapis/go-type-adapters v1.0.0/go.mod h1:zHW75FOG2aur7gAO2B+MLby+cLsWGBF62rFAi7WjWO4= -github.com/googleapis/google-cloud-go-testing v0.0.0-20200911160855-bcd43fbb19e8/go.mod h1:dvDLG8qkwmyD9a/MJJN3XJcT3xFxOKAvTZGvuZmac9g= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= github.com/gorilla/handlers v1.5.1 h1:9lRY6j8DEeeBT10CvO9hGW0gmky0BprnvDI5vfhUHH4= @@ -762,7 +763,6 @@ github.com/grpc-ecosystem/go-grpc-middleware v1.2.2/go.mod h1:EaizFBKfUKtMIF5iaD github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 h1:+9834+KizmvFV7pXQGSXQTsaWhq2GjuNUt0aUU0YBYw= github.com/grpc-ecosystem/go-grpc-middleware v1.3.0/go.mod h1:z0ButlSOZa5vEBq9m2m2hlwIgKw+rp3sdCBRoJY+30Y= github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= -github.com/grpc-ecosystem/grpc-gateway v1.8.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.9.5/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/grpc-ecosystem/grpc-gateway v1.16.0 h1:gmcG1KaJ57LophUzW0Hy8NmPhnMZb4M0+kPpLofRdBo= github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw= @@ -782,8 +782,8 @@ github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtng github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= github.com/hashicorp/go-cleanhttp v0.5.2 h1:035FKYIWjmULyFRBKPs8TBQoi0x6d9G4xc9neXJWAZQ= github.com/hashicorp/go-cleanhttp v0.5.2/go.mod h1:kO/YDlP8L1346E6Sodw+PrpBSV4/SoxCXGY6BqNFT48= -github.com/hashicorp/go-getter v1.7.1 h1:SWiSWN/42qdpR0MdhaOc/bLR48PLuP1ZQtYLRlM69uY= -github.com/hashicorp/go-getter v1.7.1/go.mod h1:W7TalhMmbPmsSMdNjD0ZskARur/9GJ17cfHTRtXV744= +github.com/hashicorp/go-getter v1.7.5 h1:dT58k9hQ/vbxNMwoI5+xFYAJuv6152UNvdHokfI5wE4= +github.com/hashicorp/go-getter v1.7.5/go.mod h1:W7TalhMmbPmsSMdNjD0ZskARur/9GJ17cfHTRtXV744= github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= github.com/hashicorp/go-immutable-radix v1.3.1 h1:DKHmCUm2hRBK510BaiZlwvpD40f8bJFeZnpfm2KLowc= github.com/hashicorp/go-immutable-radix v1.3.1/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= @@ -812,14 +812,18 @@ github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO github.com/hashicorp/mdns v1.0.0/go.mod h1:tL+uN++7HEJ6SQLQ2/p+z2pH24WQKWjBPkE0mNTz8vQ= github.com/hashicorp/memberlist v0.1.3/go.mod h1:ajVTdAv/9Im8oMAAj5G31PhhMCZJV2pPBoIllUwCN7I= github.com/hashicorp/serf v0.8.2/go.mod h1:6hOLApaqBFA1NXqRQAsxw9QxuDEvNxSQRwA/JwenrHc= -github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3 h1:aSVUgRRRtOrZOC1fYmY9gV0e9z/Iu+xNVSASWjsuyGU= -github.com/hdevalence/ed25519consensus v0.0.0-20220222234857-c00d1f31bab3/go.mod h1:5PC6ZNPde8bBqU/ewGZig35+UIZtw9Ytxez8/q5ZyFE= +github.com/hdevalence/ed25519consensus v0.1.0 h1:jtBwzzcHuTmFrQN6xQZn6CQEO/V9f7HsjsjeEZ6auqU= +github.com/hdevalence/ed25519consensus v0.1.0/go.mod h1:w3BHWjwJbFU29IRHL1Iqkw3sus+7FctEyM4RqDxYNzo= github.com/holiman/bloomfilter/v2 v2.0.3 h1:73e0e/V0tCydx14a0SCYS/EWCxgwLZ18CZcZKVu0fao= github.com/holiman/bloomfilter/v2 v2.0.3/go.mod h1:zpoh+gs7qcpqrHr3dB55AMiJwo0iURXE7ZOP9L9hSkA= github.com/holiman/uint256 v1.2.0/go.mod h1:y4ga/t+u+Xwd7CpDgZESaRcWy0I7XMlTMA25ApIH5Jw= github.com/holiman/uint256 v1.2.2 h1:TXKcSGc2WaxPD2+bmzAsVthL4+pEN0YwXcL5qED83vk= github.com/holiman/uint256 v1.2.2/go.mod h1:SC8Ryt4n+UBbPbIBKaG9zbbDlp4jOru9xFZmPzLUTxw= github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/huandu/go-assert v1.1.5 h1:fjemmA7sSfYHJD7CUqs9qTwwfdNAx7/j2/ZlHXzNB3c= +github.com/huandu/go-assert v1.1.5/go.mod h1:yOLvuqZwmcHIC5rIzrBhT7D3Q9c3GFnd0JrPVhn/06U= +github.com/huandu/skiplist v1.2.0 h1:gox56QD77HzSC0w+Ws3MH3iie755GBJU1OER3h5VsYw= +github.com/huandu/skiplist v1.2.0/go.mod h1:7v3iFjLcSAzO4fN5B8dvebvo/qsfumiLiDXMrPiHF9w= github.com/hudl/fargo v1.3.0/go.mod h1:y3CKSmjA+wD2gak7sUSXTAoopbhU08POFhmITJgmKTg= github.com/huin/goupnp v1.0.3-0.20220313090229-ca81a64b4204/go.mod h1:ZxNlw5WqJj6wSsRK5+YfflQGXYfccj5VgQsMNixHM7Y= github.com/huin/goupnp v1.0.3 h1:N8No57ls+MnjlB+JPiCVSOyy/ot7MJTqlo7rn+NYSqQ= @@ -887,14 +891,13 @@ github.com/klauspost/compress v1.10.3/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYs github.com/klauspost/compress v1.11.7/go.mod h1:aoV0uJVorq1K+umq18yTdKaF57EivdYsUV+/s2qKfXs= github.com/klauspost/compress v1.12.3/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg= github.com/klauspost/compress v1.15.11/go.mod h1:QPwzmACJjUTFsnSHH934V6woptycfrDDJnH7hvFVbGM= -github.com/klauspost/compress v1.16.0 h1:iULayQNOReoYUe+1qtKOqw9CwJv3aNQu8ivo7lw1HU4= -github.com/klauspost/compress v1.16.0/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= +github.com/klauspost/compress v1.17.0 h1:Rnbp4K9EjcDuVuHtd0dgA4qNuv9yKDYKK1ulpJwgrqM= +github.com/klauspost/compress v1.17.0/go.mod h1:ntbaceVETuRiXiv4DpjP66DpAtAGkEQskQzEyD//IeE= github.com/klauspost/cpuid v0.0.0-20170728055534-ae7887de9fa5/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek= github.com/klauspost/crc32 v0.0.0-20161016154125-cb6bfca970f6/go.mod h1:+ZoRqAPRLkC4NPOvfYeR5KNOrY6TD+/sAC3HXPZgDYg= github.com/klauspost/pgzip v1.0.2-0.20170402124221-0bf5dcad4ada/go.mod h1:Ch1tH69qFZu15pkjo5kYi6mth2Zzwzt50oCQKQE9RUs= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= -github.com/kr/fs v0.1.0/go.mod h1:FFnZGqtBN9Gxj7eW1uZ42v5BccTP0vu6NEaFoC2HwRg= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= @@ -935,7 +938,6 @@ github.com/mattn/go-colorable v0.1.2/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVc github.com/mattn/go-colorable v0.1.7/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc= -github.com/mattn/go-colorable v0.1.12/go.mod h1:u5H1YNBxpqRaxsYJYSkiCWKzEfiAb1Gb520KVy5xxl4= github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA= github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg= github.com/mattn/go-isatty v0.0.3/go.mod h1:M+lRXTBqGeGNdLjl/ufCoiOlB5xdOkqRJdNxMWT7Zi4= @@ -945,8 +947,9 @@ github.com/mattn/go-isatty v0.0.9/go.mod h1:YNRxwqDuOph6SZLI9vUUz6OYw3QyUt7WiY2y github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU= github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-isatty v0.0.18 h1:DOKFKCQ7FNG2L1rbrmstDN4QVRdS89Nkh85u68Uwp98= -github.com/mattn/go-isatty v0.0.18/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mattn/go-isatty v0.0.19/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= +github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= +github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.3/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= github.com/mattn/go-runewidth v0.0.4/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzpuz5H//U1FU= @@ -1019,8 +1022,9 @@ github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6 github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk= -github.com/onsi/ginkgo v1.14.0 h1:2mOpI4JVVPBN+WQRa0WKH2eXR+Ey+uK4n7Zj0aYpIQA= github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY= +github.com/onsi/ginkgo v1.16.4 h1:29JGrr5oVBm5ulCWet69zQkzWipVXIol6ygQUe/EzNc= +github.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0= github.com/onsi/ginkgo/v2 v2.9.2 h1:BA2GMJOtfGAfagzYtrAlufIP0lq6QERkFmHLMLPwFSU= github.com/onsi/ginkgo/v2 v2.9.2/go.mod h1:WHcJJG2dIlcCqVfBAwUCrJxSPFb6v4azBwgxeMeDuts= github.com/onsi/gomega v1.4.1/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA= @@ -1054,8 +1058,8 @@ github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144T github.com/paulbellamy/ratecounter v0.2.0/go.mod h1:Hfx1hDpSGoqxkVVpBi/IlYD7kChlfo5C6hzIHwPqfFE= github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= -github.com/pelletier/go-toml/v2 v2.0.7 h1:muncTPStnKRos5dpVKULv2FVd4bMOhNePj9CjgDb8Us= -github.com/pelletier/go-toml/v2 v2.0.7/go.mod h1:eumQOmlWiOPt5WriQQqoM5y18pDHwha2N+QD+EUNTek= +github.com/pelletier/go-toml/v2 v2.1.0 h1:FnwAJ4oYMvbT/34k9zzHuZNrhlz48GB3/s6at6/MHO4= +github.com/pelletier/go-toml/v2 v2.1.0/go.mod h1:tJU2Z3ZkXwnxa4DPO899bsyIoywizdUvyaeZurnPPDc= github.com/performancecopilot/speed v3.0.0+incompatible/go.mod h1:/CLtqpZ5gBg1M9iaPbIdPPGyKcA8hKdoy6hAWba7Yac= github.com/peterh/liner v1.0.1-0.20180619022028-8c1271fcf47f/go.mod h1:xIteQHvHuaLYG9IFj6mSxM0fCKrs34IrEQUhOYuGPHc= github.com/peterh/liner v1.1.1-0.20190123174540-a2c9a5303de7/go.mod h1:CRroGNssyjTd/qIG2FyxByd2S8JEAZXBl4qUrZf8GS0= @@ -1063,7 +1067,6 @@ github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5/go.mod h1:jvVRKCr github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08 h1:hDSdbBuw3Lefr6R18ax0tZ2BJeNB3NehB3trOwYBsdU= github.com/petermattis/goid v0.0.0-20230317030725-371a4b8eda08/go.mod h1:pxMtw7cyUw6B2bRH0ZBANSPg+AoSud1I1iyJHI69jH4= github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= -github.com/philhofer/fwd v1.1.1/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= github.com/pierrec/lz4 v1.0.2-0.20190131084431-473cd7ce01a1/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pingcap/errors v0.11.4 h1:lFuQV/oaUMGcD2tqt+01ROSmJs75VG1ToEOkZIZ4nE4= @@ -1074,10 +1077,10 @@ github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINE github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4= github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= -github.com/pkg/sftp v1.13.1/go.mod h1:3HaPG6Dq1ILlpPZRO0HVMrsydcdLt6HRDccSgb87qRg= github.com/pkg/term v0.0.0-20180730021639-bffc007b7fd5/go.mod h1:eCbImbZ95eXtAUIbLAuAVnBnwf83mjf6QIVH8SHYwqQ= -github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U= +github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/posener/complete v1.1.1/go.mod h1:em0nMJCgc9GFtwrmVmEMR/ZL6WyhyjMBndrE9hABlRI= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829/go.mod h1:p2iRAGwDERtqlqzRXnrOVns+ignqQo//hLXqYxZYVNs= @@ -1120,8 +1123,6 @@ github.com/rakyll/statik v0.1.7/go.mod h1:AlZONWzMtEnMs7W4e/1LURLiI49pIMmp6V9Ung github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5XpJzTSTfLsJV/mx9Q9g7kxmchpfZyxgzM= github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= -github.com/regen-network/cosmos-proto v0.3.1 h1:rV7iM4SSFAagvy8RiyhiACbWEGotmqzywPxOvwMdxcg= -github.com/regen-network/cosmos-proto v0.3.1/go.mod h1:jO0sVX6a1B36nmE8C9xBFXpNwWejXC7QqCOnH3O0+YM= github.com/regen-network/protobuf v1.3.3-alpha.regen.1 h1:OHEc+q5iIAXpqiqFKeLpu5NwTIkVXUs48vFMwzqpqY4= github.com/regen-network/protobuf v1.3.3-alpha.regen.1/go.mod h1:2DjTFR1HhMQhiWC5sZ4OhQ3+NtdbZ6oBDKQwq5Ou+FI= github.com/retailnext/hllpp v1.0.1-0.20180308014038-101a6d2f8b52/go.mod h1:RDpi1RftBQPUCDRw6SmxeaREsAaRKnOclghuzp/WRzc= @@ -1133,20 +1134,25 @@ github.com/rjeczalik/notify v0.9.3/go.mod h1:gF3zSOrafR9DQEWSE8TjfI9NkooDxbyT4Ug github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.9.0 h1:73kH8U+JUqXU8lRuOHeVHaa/SZPifC7BkcraZVejAe8= github.com/rogpeppe/go-internal v1.9.0/go.mod h1:WtVeX8xhTBvf0smdhujwtBcq4Qrzq/fJaraNFVN+nFs= +github.com/rogpeppe/go-internal v1.11.0 h1:cWPaGQEPrBb5/AsnsZesgZZ9yb1OQ+GOISoDNXVBh4M= +github.com/rogpeppe/go-internal v1.11.0/go.mod h1:ddIwULY96R17DhadqLgMfk9H9tvdUzkipdSkR5nkCZA= github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU= github.com/rs/cors v1.9.0 h1:l9HGsTsHJcvW14Nk7J9KFz8bzeAWXn3CG6bgt7LsrAE= github.com/rs/cors v1.9.0/go.mod h1:XyqrcTp5zjWr1wsJ8PIRZssZ8b/WMcMf71DJnit4EMU= -github.com/rs/xid v1.4.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= -github.com/rs/zerolog v1.29.1 h1:cO+d60CHkknCbvzEWxP0S9K6KqyTjrCNUy1LdQLCGPc= -github.com/rs/zerolog v1.29.1/go.mod h1:Le6ESbR7hc+DP6Lt1THiV8CQSdkkNrd3R0XbEgp3ZBU= +github.com/rs/xid v1.5.0/go.mod h1:trrq9SKmegXys3aeAKXMUTdJsYXVwGY3RLcfgqegfbg= +github.com/rs/zerolog v1.32.0 h1:keLypqrlIjaFsbmJOBdB/qvyF8KEtCWHwobLp5l/mQ0= +github.com/rs/zerolog v1.32.0/go.mod h1:/7mN4D5sKwJLZQ2b/znpjC3/GQWY/xaDXUM0kKWRHss= github.com/russross/blackfriday v1.5.2 h1:HyvC0ARfnZBqnXwABFeSZHpKvJHJJfPz81GNueLj0oo= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/russross/blackfriday/v2 v2.1.0 h1:JIOH55/0cWyOuilr9/qlrm0BSXldqnqwMsf35Ld67mk= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f/go.mod h1:sm1tb6uqfes/u+d4ooFouqFdy9/2g9QGwK3SQygK0Ts= +github.com/sagikazarmark/locafero v0.4.0 h1:HApY1R9zGo4DBgr7dqsTH/JJxLTTsOt7u6keLGt6kNQ= +github.com/sagikazarmark/locafero v0.4.0/go.mod h1:Pe1W6UlPYUk/+wc/6KFhbORCfqzgYEpgQ3O5fPuL3H4= +github.com/sagikazarmark/slog-shim v0.1.0 h1:diDBnUNK9N/354PgrxMywXnAwEr1QZcOr6gto+ugjYE= +github.com/sagikazarmark/slog-shim v0.1.0/go.mod h1:SrcSrq8aKtyuqEI1uvTDTK1arOWRIczQRv+GVI1AkeQ= github.com/samuel/go-zookeeper v0.0.0-20190923202752-2cc03de413da/go.mod h1:gi+0XIa01GRL2eRQVjQkKGqKF3SF9vZR/HnPullcV2E= github.com/sasha-s/go-deadlock v0.3.1 h1:sqv7fDNShgjcaxkO0JNcOAlr8B9+cV5Ey/OB71efZx0= github.com/sasha-s/go-deadlock v0.3.1/go.mod h1:F73l+cr82YSh10GxyRI6qZiCgK64VaZjwesgfQ1/iLM= @@ -1168,29 +1174,29 @@ github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1 github.com/smartystreets/goconvey v1.6.4/go.mod h1:syvi0/a8iFYH4r/RixwvyeAJjdLS9QV7WQ/tjFTllLA= github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= github.com/sony/gobreaker v0.4.1/go.mod h1:ZKptC7FHNvhBz7dN2LGjPVBz2sZJmc0/PkyDJOjmxWY= +github.com/sourcegraph/conc v0.3.0 h1:OQTbbt6P72L20UqAkXXuLOj79LfEanQ+YQFNpLA9ySo= +github.com/sourcegraph/conc v0.3.0/go.mod h1:Sdozi7LEKbFPqYX2/J+iBAM6HpqSLTASQIKqDmF7Mt0= github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spaolacci/murmur3 v1.1.0 h1:7c1g84S4BPRrfL5Xrdp6fOJ206sU9y293DDHaoy0bLI= github.com/spaolacci/murmur3 v1.1.0/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= -github.com/spf13/afero v1.9.3 h1:41FoI0fD7OR7mGcKE/aOiLkGreyf8ifIOQmJANWogMk= -github.com/spf13/afero v1.9.3/go.mod h1:iUV7ddyEEZPO5gA3zD4fJt6iStLlL+Lg4m2cihcDf8Y= +github.com/spf13/afero v1.11.0 h1:WJQKhtpdm3v2IzqG8VMqrr6Rf3UYpEF239Jy9wNepM8= +github.com/spf13/afero v1.11.0/go.mod h1:GH9Y3pIexgf1MTIWtNGyogA5MwRIDXGUr+hbWNoBjkY= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cast v1.5.0 h1:rj3WzYc11XZaIZMPKmwP96zkFEnnAmV8s6XbB2aY32w= -github.com/spf13/cast v1.5.0/go.mod h1:SpXXQ5YoyJw6s3/6cMTQuxvgRl3PCJiyaX9p6b155UU= +github.com/spf13/cast v1.6.0 h1:GEiTHELF+vaR5dhz3VqZfFSzZjYbgeKDpBxQVS4GYJ0= +github.com/spf13/cast v1.6.0/go.mod h1:ancEpBxwJDODSW/UG4rDrAqiKolqNNh2DX3mk86cAdo= github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= github.com/spf13/cobra v1.8.0 h1:7aJaZx1B85qltLMc546zn58BxxfZdR/W22ej9CFoEf0= github.com/spf13/cobra v1.8.0/go.mod h1:WXLWApfZ71AjXPya3WOlMsY9yMs7YeiHhFVlvLyhcho= github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= -github.com/spf13/jwalterweatherman v1.1.0 h1:ue6voC5bR5F8YxI5S67j9i582FU4Qvo2bmqnqMYADFk= -github.com/spf13/jwalterweatherman v1.1.0/go.mod h1:aNWZUN0dPAAO/Ljvb5BEdw96iTZ0EXowPYD95IqWIGo= github.com/spf13/pflag v1.0.1/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA= github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg= github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= -github.com/spf13/viper v1.15.0 h1:js3yy885G8xwJa6iOISGFwd+qlUo5AvyXb7CiihdtiU= -github.com/spf13/viper v1.15.0/go.mod h1:fFcTBJxvhhzSJiZy8n+PeW6t8l+KeT/uTARa0jHOQLA= +github.com/spf13/viper v1.18.2 h1:LUXCnvUvSM6FXAsj6nnfc8Q2tp1dIgUfY9Kc8GsSOiQ= +github.com/spf13/viper v1.18.2/go.mod h1:EKmWIqdnk5lOcmR72yw6hS+8OPYcwD0jteitLMVB+yk= github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q= github.com/status-im/keycard-go v0.2.0 h1:QDLFswOQu1r5jsycloeQh3bVU8n/NatHHaZobtDnDzA= github.com/status-im/keycard-go v0.2.0/go.mod h1:wlp8ZLbsmrF6g6WjugPAx+IzoLrkdf9+mHxBEeo3Hbg= @@ -1213,18 +1219,17 @@ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= +github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= -github.com/subosito/gotenv v1.4.2 h1:X1TuBLAMDFbaTAChgCBLu3DU3UPyELpnF2jjJ2cz/S8= -github.com/subosito/gotenv v1.4.2/go.mod h1:ayKnFf/c6rvx/2iiLrJUk1e6plDbT3edrFNGqEflhK0= +github.com/subosito/gotenv v1.6.0 h1:9NlTDc1FTs4qu0DDq7AEtTPNw6SVm7uBMsUCUjABIf8= +github.com/subosito/gotenv v1.6.0/go.mod h1:Dk4QP5c2W3ibzajGcXpNraDfq2IrhjMIvMSWPKKo0FU= github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 h1:epCh84lMvA70Z7CTTCmYQn2CKbY8j86K7/FAIr141uY= github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7/go.mod h1:q4W45IWZaF22tdD+VEXcAWRA037jwmWEB5VWYORlTpc= github.com/tendermint/go-amino v0.16.0 h1:GyhmgQKvqF82e2oZeuMSp9JTN0N09emoSZlb2lyGa2E= github.com/tendermint/go-amino v0.16.0/go.mod h1:TQU0M1i/ImAo+tYpZi73AU3V/dKeCoMC9Sphe2ZwGME= -github.com/tendermint/tm-db v0.6.8-0.20220506192307-f628bb5dc95b h1:Y3ZPG6gdDCAV2sdGkD759ji/09GzaNu1X3qKTmZIbTo= -github.com/tendermint/tm-db v0.6.8-0.20220506192307-f628bb5dc95b/go.mod h1:ADqbS9NOSnBRK9R2RtYC61CdsHmVMD/yXAzcMuPexbU= -github.com/tidwall/btree v1.5.0 h1:iV0yVY/frd7r6qGBXfEYs7DH0gTDgrKTrDjS7xt/IyQ= -github.com/tidwall/btree v1.5.0/go.mod h1:LGm8L/DZjPLmeWGjv5kFrY8dL4uVhMmzmmLYmsObdKE= +github.com/tidwall/btree v1.6.0 h1:LDZfKfQIBHGHWSwckhXI0RPSXzlo+KYdjK7FWSqOzzg= +github.com/tidwall/btree v1.6.0/go.mod h1:twD9XRA5jj9VUQGELzDO4HPQTNJsoWWfYEL+EUQ2cKY= github.com/tidwall/gjson v1.12.1/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= github.com/tidwall/gjson v1.14.0/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= github.com/tidwall/gjson v1.14.2/go.mod h1:/wbyibRr2FHMks5tjHJ5F8dMZh3AcwJEMf5vlfC0lxk= @@ -1238,7 +1243,6 @@ github.com/tidwall/sjson v1.2.4/go.mod h1:098SZ494YoMWPmMO6ct4dcFnqxwj9r/gF0Etp1 github.com/tidwall/sjson v1.2.5 h1:kLy8mja+1c9jlljvWTlSazM7cKDRfJuR/bOJhcY5NcY= github.com/tidwall/sjson v1.2.5/go.mod h1:Fvgq9kS/6ociJEDnK0Fk1cpYF4FIW6ZF7LAe+6jwd28= github.com/tinylib/msgp v1.0.2/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= -github.com/tinylib/msgp v1.1.5/go.mod h1:eQsjooMTnV42mHu917E26IogZ2930nFyBQdofk10Udg= github.com/tklauser/go-sysconf v0.3.5/go.mod h1:MkWzOF4RMCshBAMXuhXJs64Rte09mITnppBXY/rYEFI= github.com/tklauser/go-sysconf v0.3.11 h1:89WgdJhk5SNwJfu+GKyYveZ4IaJ7xAkecBo+KdJV0CM= github.com/tklauser/go-sysconf v0.3.11/go.mod h1:GqXfhXY3kiPa0nAXPDIQIWzJbMCB7AmcWpGR8lSZfqI= @@ -1246,7 +1250,6 @@ github.com/tklauser/numcpus v0.2.2/go.mod h1:x3qojaO3uyYt0i56EW/VUYs7uBvdl2fkfZF github.com/tklauser/numcpus v0.6.0 h1:kebhY2Qt+3U6RNK7UqpYNA+tJ23IBEGKkB7JQBfDYms= github.com/tklauser/numcpus v0.6.0/go.mod h1:FEZLMke0lhOUG6w2JadTzp0a+Nl8PF/GFkQ5UVIcaL4= github.com/tmc/grpc-websocket-proxy v0.0.0-20170815181823-89b8d40f7ca8/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= -github.com/ttacon/chalk v0.0.0-20160626202418-22c06c80ed31/go.mod h1:onvgF043R+lC5RZ8IT9rBXDaEDnpnw/Cl+HFiw+v/7Q= github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= github.com/tyler-smith/go-bip39 v1.0.1-0.20181017060643-dbb3b84ba2ef/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= github.com/tyler-smith/go-bip39 v1.0.2/go.mod h1:sJ5fKU0s6JVwZjjcUEX2zFOnvq0ASQ2K9Zr6cf67kNs= @@ -1258,8 +1261,9 @@ github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljT github.com/ugorji/go/codec v1.1.7/go.mod h1:Ax+UKWsSmolVDwsd+7N3ZtXu+yMGCf907BLYF3GoBXY= github.com/ugorji/go/codec v1.2.7 h1:YPXUKf7fYbp/y8xloBqZOw2qaVggbfwMlI8WM3wZUJ0= github.com/ugorji/go/codec v1.2.7/go.mod h1:WGN1fab3R1fzQlVQTkfxVtIBhWDRqOviHU95kRgeqEY= -github.com/ulikunitz/xz v0.5.10 h1:t92gobL9l3HE202wg3rlk19F6X+JOxl9BBrCCMYEYd8= github.com/ulikunitz/xz v0.5.10/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= +github.com/ulikunitz/xz v0.5.11 h1:kpFauv27b6ynzBNT/Xy+1k+fK4WswhN/6PN5WhFAGw8= +github.com/ulikunitz/xz v0.5.11/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14= github.com/urfave/cli v1.20.0/go.mod h1:70zkFmudgCuE/ngEzBv17Jvp/497gISqfk5gWijbERA= github.com/urfave/cli v1.22.1 h1:+mkCCcOFKPnCmVYVcURKps1Xe+3zP90gSYGNfRkjoIY= github.com/urfave/cli v1.22.1/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= @@ -1323,6 +1327,8 @@ go.uber.org/mock v0.2.0 h1:TaP3xedm7JaAgScZO7tlvlKrqT0p7I6OsdGB5YNSMDU= go.uber.org/mock v0.2.0/go.mod h1:J0y0rp9L3xiff1+ZBfKxlC1fz2+aO16tw0tsDOixfuM= go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= go.uber.org/multierr v1.3.0/go.mod h1:VgVr7evmIr6uPjLBxg28wmKNXyqE9akIJ5XnfpiKl+4= +go.uber.org/multierr v1.10.0 h1:S0h4aNzvfcFsC3dRF1jLoaov7oRaKqRGC/pUEJ2yvPQ= +go.uber.org/multierr v1.10.0/go.mod h1:20+QtiLqy0Nd6FdQB9TLXag12DsQkrbs3htMFfDN80Y= go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee/go.mod h1:vJERXedbb3MVM5f9Ejo0C68/HhF8uaILCdgjnY+goOA= go.uber.org/zap v1.9.1/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= @@ -1346,31 +1352,14 @@ golang.org/x/crypto v0.0.0-20200728195943-123391ffb6de/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I= golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= -golang.org/x/crypto v0.0.0-20210421170649-83a5a9bb288b/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4= golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= +golang.org/x/crypto v0.1.0/go.mod h1:RecgLatLF4+eUMCP1PoPZQb+cVrJcOPbHkTkbkB9sbw= golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= -golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8= -golang.org/x/exp v0.0.0-20190829153037-c13cbed26979/go.mod h1:86+5VVa7VpoJ4kLfm080zCjGlMRFzhUhsZKEZO7MGek= -golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY= -golang.org/x/exp v0.0.0-20191129062945-2f5052295587/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20191227195350-da58074b4299/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200119233911-0405dc783f0a/go.mod h1:2RIsYlXP63K8oxa1u096TMicItID8zy7Y6sNkU49FU4= -golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EHIKF9dgMWnmCNThgcyBT1FY9mM= -golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU= -golang.org/x/exp v0.0.0-20200331195152-e8c3332aa8e5/go.mod h1:4M0jN8W1tt0AVLNr8HDosyJCDCDuyL9N9+3m7wDWgKw= -golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df h1:UA2aFVmmsIlefxMk29Dp2juaUSth8Pyn3Tq5Y5mJGME= -golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc= +golang.org/x/exp v0.0.0-20230711153332-06a737ee72cb h1:xIApU0ow1zwMa2uL1VDNeQlNVFTWMQxZUZCMDy0Q4Us= +golang.org/x/exp v0.0.0-20230711153332-06a737ee72cb/go.mod h1:FXUEEKJgO7OQYeo8N01OfiKP8RXMtf6e8aTskBGqWdc= golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs= -golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js= -golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -1383,20 +1372,18 @@ golang.org/x/lint v0.0.0-20200130185559-910be7a94367/go.mod h1:3xt1FjdF8hUf6vQPI golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= golang.org/x/lint v0.0.0-20210508222113-6edffad5e616/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY= -golang.org/x/mobile v0.0.0-20190312151609-d3739f865fa6/go.mod h1:z+o9i4GpDbdi3rU15maQ/Ox0txvL9dWGYEHz965HBQE= -golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= -golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY= golang.org/x/mod v0.1.1-0.20191105210325-c90efee705ee/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= -golang.org/x/mod v0.1.1-0.20191107180719-034126e5016b/go.mod h1:QqPTAvyqsEbceGzBzNggFXnrqF1CaUcvgkdR5Ot7KZg= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.1/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.4.2/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4= -golang.org/x/mod v0.11.0 h1:bUO06HqtnRcc/7l71XBe4WcqTZ+3AH1J59zWDDwLKgU= +golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI= golang.org/x/mod v0.11.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= +golang.org/x/mod v0.12.0 h1:rmsUpXtvNzj340zd98LZ4KntptpfRHwpFOHG188oHXc= +golang.org/x/mod v0.12.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs= golang.org/x/net v0.0.0-20180719180050-a680a1efc54d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= @@ -1440,7 +1427,6 @@ golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwY golang.org/x/net v0.0.0-20201031054903-ff519b6c9102/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201110031124-69a78807bb2b/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU= golang.org/x/net v0.0.0-20201209123823-ac852fbbde11/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= -golang.org/x/net v0.0.0-20201224014010-6772e930b67b/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210119194325-5f4716e94777/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg= @@ -1462,8 +1448,8 @@ golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug golang.org/x/net v0.0.0-20220909164309-bea034e7d591/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk= golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco= -golang.org/x/net v0.22.0 h1:9sGLhx7iRIHEiX0oAJ3MRZMUCElJgy7Br1nO+AMN3Tc= -golang.org/x/net v0.22.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= +golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs= +golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1520,7 +1506,6 @@ golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5h golang.org/x/sys v0.0.0-20190130150945-aca44879d564/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190422165155-953cdadca894/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190502145724-3ef323f4f1fd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1533,7 +1518,6 @@ golang.org/x/sys v0.0.0-20190813064441-fde4db37ae7a/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1570,7 +1554,6 @@ golang.org/x/sys v0.0.0-20210104204734-6f8348627aad/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210220050731-9a76102bfb43/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210225134936-a50acf3fe073/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210305230114-8fe3ee5dd75b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210315160823-c6e025ad8005/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210316164454-77fc1eacc6aa/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= @@ -1579,7 +1562,6 @@ golang.org/x/sys v0.0.0-20210324051608-47abb6519492/go.mod h1:h1NjWce9XRLGQEsW7w golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210420205809-ac73e9fd8988/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210514084401-e8d321eab015/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210603125802-9665404d3644/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -1592,7 +1574,6 @@ golang.org/x/sys v0.0.0-20210816183151-1e6c022a8912/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20210819135213-f52c844e1c1c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210823070655-63515b42dcdf/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20210908233432-aa78b53d3365/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211019181941-9d821ace8654/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211124211545-fe61309f8881/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20211210111614-af8b64212486/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -1600,6 +1581,8 @@ golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220209214540-3681064d5158/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20220315194320-039c03cc5b86/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220328115105-d36c6a25d886/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220412211240-33da011f77ad/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220502124256-b6088ccd6cba/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= @@ -1611,10 +1594,11 @@ golang.org/x/sys v0.0.0-20220624220833-87e55d714810/go.mod h1:oPkhp1MJrh7nUepCBc golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.0.0-20220908164124-27713097b956/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.0.0-20221010170243-090e33056c14/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= +golang.org/x/sys v0.12.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw= @@ -1651,7 +1635,6 @@ golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGm golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312151545-0bb0c0a6e846/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190328211700-ab21143f2384/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190425150028-36563e24a262/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= @@ -1660,9 +1643,7 @@ golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBn golang.org/x/tools v0.0.0-20190606124116-d0a3d012864b/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= golang.org/x/tools v0.0.0-20190628153133-6cdbf07be9d0/go.mod h1:/rFqwRUd4F7ZHNgwSSTFct+R/Kf4OFW1sUzUTQQTgfc= -golang.org/x/tools v0.0.0-20190816200558-6889da9d5479/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20190911174233-4f2ddba30aff/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= -golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191029041327-9cc4af7d6b2c/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191029190741-b9c20aec41a5/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= golang.org/x/tools v0.0.0-20191113191852-77e3bb0ad9e7/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo= @@ -1678,7 +1659,6 @@ golang.org/x/tools v0.0.0-20200117161641-43d50277825c/go.mod h1:TB2adYChydJhpapK golang.org/x/tools v0.0.0-20200122220014-bf1340f18c4a/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200204074204-1cc6d1ef6c74/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= -golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= golang.org/x/tools v0.0.0-20200227222343-706bc42d1f0d/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28= @@ -1694,13 +1674,11 @@ golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA= golang.org/x/tools v0.0.0-20200904185747-39188db58858/go.mod h1:Cj7w3i3Rnn0Xh82ur9kSqwfTHTeVxaDqrfMjpcNT6bE= -golang.org/x/tools v0.0.0-20201022035929-9cf592e881e9/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201110124207-079ba7bd75cd/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201201161351-ac6f37ff4c2a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20201208233053-a543418bbed2/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210105154028-b0ab187a4818/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= -golang.org/x/tools v0.0.0-20210108195828-e2f9c7f1fc8e/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA= golang.org/x/tools v0.1.0/go.mod h1:xkSsbof2nBLbhDlRMhhhyNLN/zl3eTqcnHD5viDpcZ0= golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.2/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= @@ -1708,8 +1686,9 @@ golang.org/x/tools v0.1.3/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.4/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk= golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc= -golang.org/x/tools v0.7.0 h1:W4OVu8VVOaIO0yzWMNdepAulS7YfoS3Zabrm8DOXXU4= -golang.org/x/tools v0.7.0/go.mod h1:4pg6aUX35JBAogB10C9AtvVL+qowtN4pT3CGSQex14s= +golang.org/x/tools v0.2.0/go.mod h1:y4OqIKeOV/fWJetJ8bXPU1sEVniLMIyDAZWeHdV+NTA= +golang.org/x/tools v0.13.0 h1:Iey4qkscZuv0VvIt8E0neZjtPVQFSc870HQ448QgEmQ= +golang.org/x/tools v0.13.0/go.mod h1:HvlwmtVNQAhOuCjW7xxvovg8wbNq7LwfXh/k7wXUl58= golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0= @@ -1831,10 +1810,8 @@ google.golang.org/genproto v0.0.0-20201109203340-2640f1f9cdfb/go.mod h1:FWY/as6D google.golang.org/genproto v0.0.0-20201201144952-b05cb90ed32e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201210142538-e3217bee35cc/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20201214200347-8c77b98c765d/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210108203827-ffc7fda8c3d7/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210126160654-44e461bb6506/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210222152913-aa3ee6e6a81c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= -google.golang.org/genproto v0.0.0-20210226172003-ab064af71705/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210303154014-9728d6b83eeb/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210310155132-4ce2db91004e/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= google.golang.org/genproto v0.0.0-20210319143718-93e7006c17a6/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no= @@ -1866,6 +1843,7 @@ google.golang.org/genproto v0.0.0-20220218161850-94dd64e39d7c/go.mod h1:kGP+zUP2 google.golang.org/genproto v0.0.0-20220222213610-43724f9ea8cf/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= google.golang.org/genproto v0.0.0-20220304144024-325a89244dc8/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= google.golang.org/genproto v0.0.0-20220310185008-1973136f34c6/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI= +google.golang.org/genproto v0.0.0-20220314164441-57ef72a4c106/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= google.golang.org/genproto v0.0.0-20220324131243-acbaeb5b85eb/go.mod h1:hAL49I2IFola2sVEjAn7MEwsja0xp51I0tlGAf9hz4E= google.golang.org/genproto v0.0.0-20220407144326-9054f6ed7bac/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= google.golang.org/genproto v0.0.0-20220413183235-5e96e2839df9/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo= @@ -1908,7 +1886,6 @@ google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 h1: google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237/go.mod h1:WtryC6hu0hhx87FDGxWCDptyssuo68sk10vYjF+T9fY= google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.19.1/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.0/go.mod h1:chYK+tFQF0nDUGJgXMSgLCQk3phJEuONr2DCgLDdAQM= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= @@ -2004,7 +1981,10 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= +gotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= +gotest.tools/v3 v3.5.1 h1:EENdUnS3pdur5nybKYIh2Vfgc8IUNBjxDPSjtiJcOzU= +gotest.tools/v3 v3.5.1/go.mod h1:isy3WKz7GK6uNw/sbHzfKBLvlvXwUyV06n6brMxxopU= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= @@ -2017,8 +1997,8 @@ honnef.co/go/tools v0.1.3/go.mod h1:NgwopIslSNH47DimFoV78dnkksY2EFtX0ajyb3K/las= nhooyr.io/websocket v1.8.6/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0= nhooyr.io/websocket v1.8.7 h1:usjR2uOr/zjjkVMy0lW+PPohFok7PCow5sDjLgX4P4g= nhooyr.io/websocket v1.8.7/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0= -pgregory.net/rapid v0.5.5 h1:jkgx1TjbQPD/feRoK+S/mXw9e1uj6WilpHrXJowi6oA= -pgregory.net/rapid v0.5.5/go.mod h1:PY5XlDGj0+V1FCq0o192FdRhpKHGTRIWBgqjDBTrq04= +pgregory.net/rapid v1.1.0 h1:CMa0sjHSru3puNx+J0MIAuiiEV4N0qj8/cMWGBBCsjw= +pgregory.net/rapid v1.1.0/go.mod h1:PY5XlDGj0+V1FCq0o192FdRhpKHGTRIWBgqjDBTrq04= rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8= rsc.io/pdf v0.1.1/go.mod h1:n8OzWcQ6Sp37PL01nO98y4iUCRdTGarVfzxY20ICaU4= rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0= diff --git a/ibctesting/bridging_fee_test.go b/ibctesting/bridging_fee_test.go index 757f01549..0c0487824 100644 --- a/ibctesting/bridging_fee_test.go +++ b/ibctesting/bridging_fee_test.go @@ -4,9 +4,9 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v6/testing" + "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v7/testing" "github.com/osmosis-labs/osmosis/v15/x/txfees" "github.com/stretchr/testify/suite" ) diff --git a/ibctesting/delayed_ack_test.go b/ibctesting/delayed_ack_test.go index d08400c5c..76147ed6a 100644 --- a/ibctesting/delayed_ack_test.go +++ b/ibctesting/delayed_ack_test.go @@ -7,9 +7,9 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v6/testing" + "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v7/testing" ) const ( diff --git a/ibctesting/eibc_test.go b/ibctesting/eibc_test.go index 83bc7efa4..d5e078e35 100644 --- a/ibctesting/eibc_test.go +++ b/ibctesting/eibc_test.go @@ -12,11 +12,11 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v6/testing" + "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v7/testing" "github.com/dymensionxyz/dymension/v3/app/apptesting" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" diff --git a/ibctesting/genesis_transfer_test.go b/ibctesting/genesis_transfer_test.go index b7b716350..d403e7519 100644 --- a/ibctesting/genesis_transfer_test.go +++ b/ibctesting/genesis_transfer_test.go @@ -5,7 +5,7 @@ import ( "cosmossdk.io/math" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/dymensionxyz/dymension/v3/x/rollapp/transfergenesis" rollapptypes "github.com/dymensionxyz/dymension/v3/x/rollapp/types" @@ -13,9 +13,9 @@ import ( "github.com/dymensionxyz/dymension/v3/app/apptesting" "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v6/testing" + "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v7/testing" ) type transferGenesisSuite struct { diff --git a/ibctesting/transfers_enabled_test.go b/ibctesting/transfers_enabled_test.go index 1bfc9d95c..9e1cde139 100644 --- a/ibctesting/transfers_enabled_test.go +++ b/ibctesting/transfers_enabled_test.go @@ -11,10 +11,10 @@ import ( "github.com/dymensionxyz/dymension/v3/app/apptesting" "github.com/stretchr/testify/suite" - "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - ibctesting "github.com/cosmos/ibc-go/v6/testing" - "github.com/cosmos/ibc-go/v6/testing/simapp" + "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v7/testing/simapp" ) type transfersEnabledSuite struct { diff --git a/ibctesting/utils_test.go b/ibctesting/utils_test.go index 827e1871f..32687e0f1 100644 --- a/ibctesting/utils_test.go +++ b/ibctesting/utils_test.go @@ -5,20 +5,20 @@ import ( "encoding/json" "testing" + cometbfttypes "github.com/cometbft/cometbft/types" "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - tmtypes "github.com/tendermint/tendermint/types" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" sdk "github.com/cosmos/cosmos-sdk/types" bankutil "github.com/cosmos/cosmos-sdk/x/bank/testutil" - "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - ibctesting "github.com/cosmos/ibc-go/v6/testing" - "github.com/cosmos/ibc-go/v6/testing/mock" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" + "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + ibctesting "github.com/cosmos/ibc-go/v7/testing" + "github.com/cosmos/ibc-go/v7/testing/mock" "github.com/dymensionxyz/dymension/v3/app" "github.com/dymensionxyz/dymension/v3/app/apptesting" @@ -37,6 +37,7 @@ var chainIDPrefix = "evmos_9000-" func init() { ibctesting.ChainIDPrefix = chainIDPrefix + ibctesting.ChainIDSuffix = "" ibctesting.DefaultTestingAppInit = func() (ibctesting.TestingApp, map[string]json.RawMessage) { return apptesting.SetupTestingApp() } @@ -267,18 +268,18 @@ func (s *utilSuite) newTestChainWithSingleValidator(t *testing.T, coord *ibctest senderAccs = append(senderAccs, senderAcc) - var validators []*tmtypes.Validator - signersByAddress := make(map[string]tmtypes.PrivValidator, 1) + var validators []*cometbfttypes.Validator + signersByAddress := make(map[string]cometbfttypes.PrivValidator, 1) - validators = append(validators, tmtypes.NewValidator(valPubKey, 1)) + validators = append(validators, cometbfttypes.NewValidator(valPubKey, 1)) signersByAddress[valPubKey.Address().String()] = valPrivKey - valSet := tmtypes.NewValidatorSet(validators) + valSet := cometbfttypes.NewValidatorSet(validators) app := ibctesting.SetupWithGenesisValSet(t, valSet, genAccs, chainID, sdk.DefaultPowerReduction, genBals...) // create current header and call begin block - header := tmproto.Header{ + header := cometbftproto.Header{ ChainID: chainID, Height: 1, Time: coord.CurrentTime.UTC(), diff --git a/proto/buf.gen.gogo.yaml b/proto/buf.gen.gogo.yaml index 8e845e171..9c8ba0a4b 100644 --- a/proto/buf.gen.gogo.yaml +++ b/proto/buf.gen.gogo.yaml @@ -2,7 +2,7 @@ version: v1 plugins: - name: gocosmos out: .. - opt: plugins=grpc,Mgoogle/protobuf/duration.proto=github.com/gogo/protobuf/types,Mgoogle/protobuf/struct.proto=github.com/gogo/protobuf/types,Mgoogle/protobuf/timestamp.proto=github.com/gogo/protobuf/types,Mgoogle/protobuf/wrappers.proto=github.com/gogo/protobuf/types,Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types,Mcosmos/orm/v1alpha1/orm.proto=github.com/cosmos/cosmos-sdk/api/cosmos/orm/v1alpha1,Mibc/core/channel/v1/channel.proto=github.com/cosmos/ibc-go/v6/modules/core/04-channel/types + opt: plugins=grpc,Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types - name: grpc-gateway out: .. opt: logtostderr=true,allow_colon_final_segments=true diff --git a/proto/buf.lock b/proto/buf.lock index 7ab91058a..a0e4fa27c 100644 --- a/proto/buf.lock +++ b/proto/buf.lock @@ -9,17 +9,18 @@ deps: - remote: buf.build owner: cosmos repository: cosmos-sdk - commit: 9e88ecdd390f419081b79a917958d0f9 + commit: 954f7b05f38440fc8250134b15adec47 + digest: shake256:2ab4404fd04a7d1d52df0e2d0f2d477a3d83ffd88d876957bf3fedfd702c8e52833d65b3ce1d89a3c5adf2aab512616b0e4f51d8463f07eda9a8a3317ee3ac54 - remote: buf.build owner: cosmos repository: gogo-proto - commit: bee5511075b7499da6178d9e4aaa628b + commit: 5e5b9fdd01804356895f8f79a6f1ddc1 digest: shake256:0b85da49e2e5f9ebc4806eae058e2f56096ff3b1c59d1fb7c190413dd15f45dd456f0b69ced9059341c80795d2b6c943de15b120a9e0308b499e43e4b5fc2952 - remote: buf.build owner: cosmos repository: ibc - commit: a930cbf9d19a41b1bde5a51c78d5e4cd - digest: shake256:492f04bf9b220ffda848a70ec1824fccaefbf94cefbd1a3cddce6920d54bf47b3b51218699b6edc2d710eb922c99baa4c31d75ebb494f08b01a376ef350d03fb + commit: fbb44f5ad3194450af479a615fa715d9 + digest: shake256:3fbf41c96089017ebf3b5143f78de0d531f604cb11da1bc98b2104eb6dd295b8a49f5f35c60b8389ba50bfa08959da905109324099e75ece9afd8e4087b14019 - remote: buf.build owner: googleapis repository: googleapis diff --git a/proto/buf.yaml b/proto/buf.yaml index 638e236cf..313c82ad0 100644 --- a/proto/buf.yaml +++ b/proto/buf.yaml @@ -1,11 +1,11 @@ version: v1 name: buf.build/dymensionxyz/dymension deps: - - buf.build/cosmos/cosmos-sdk - - buf.build/cosmos/cosmos-proto + - buf.build/cosmos/cosmos-sdk:v0.47.0 + - buf.build/cosmos/cosmos-proto:1935555c206d4afb9e94615dfd0fad31 - buf.build/cosmos/gogo-proto - - buf.build/cosmos/ibc:48efd8e99666d9206e61167c248fb384a7a21989 - - buf.build/googleapis/googleapis + - buf.build/cosmos/ibc:fbb44f5ad3194450af479a615fa715d9 + - buf.build/googleapis/googleapis:8d7204855ec14631a499bd7393ce1970 breaking: use: - FILE diff --git a/proto/dymension/common/rollapp_packet.proto b/proto/dymensionxyz/dymension/common/rollapp_packet.proto similarity index 93% rename from proto/dymension/common/rollapp_packet.proto rename to proto/dymensionxyz/dymension/common/rollapp_packet.proto index 8cf77193a..b8bfc1925 100644 --- a/proto/dymension/common/rollapp_packet.proto +++ b/proto/dymensionxyz/dymension/common/rollapp_packet.proto @@ -3,7 +3,7 @@ package dymensionxyz.dymension.common; import "gogoproto/gogo.proto"; import "ibc/core/channel/v1/channel.proto"; -import "dymension/common/status.proto"; +import "dymensionxyz/dymension/common/status.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/common/types"; diff --git a/proto/dymension/common/status.proto b/proto/dymensionxyz/dymension/common/status.proto similarity index 100% rename from proto/dymension/common/status.proto rename to proto/dymensionxyz/dymension/common/status.proto diff --git a/proto/dymension/delayedack/genesis.proto b/proto/dymensionxyz/dymension/delayedack/genesis.proto similarity index 81% rename from proto/dymension/delayedack/genesis.proto rename to proto/dymensionxyz/dymension/delayedack/genesis.proto index a22b5eba0..d2d921512 100644 --- a/proto/dymension/delayedack/genesis.proto +++ b/proto/dymensionxyz/dymension/delayedack/genesis.proto @@ -2,8 +2,8 @@ syntax = "proto3"; package dymensionxyz.dymension.delayedack; import "gogoproto/gogo.proto"; -import "dymension/delayedack/params.proto"; -import "dymension/common/rollapp_packet.proto"; +import "dymensionxyz/dymension/delayedack/params.proto"; +import "dymensionxyz/dymension/common/rollapp_packet.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/delayedack/types"; diff --git a/proto/dymension/delayedack/params.proto b/proto/dymensionxyz/dymension/delayedack/params.proto similarity index 100% rename from proto/dymension/delayedack/params.proto rename to proto/dymensionxyz/dymension/delayedack/params.proto diff --git a/proto/dymension/delayedack/query.proto b/proto/dymensionxyz/dymension/delayedack/query.proto similarity index 89% rename from proto/dymension/delayedack/query.proto rename to proto/dymensionxyz/dymension/delayedack/query.proto index c953fb78f..9e6de52bc 100644 --- a/proto/dymension/delayedack/query.proto +++ b/proto/dymensionxyz/dymension/delayedack/query.proto @@ -4,9 +4,9 @@ package dymensionxyz.dymension.delayedack; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "dymension/delayedack/params.proto"; -import "dymension/common/status.proto"; -import "dymension/common/rollapp_packet.proto"; +import "dymensionxyz/dymension/delayedack/params.proto"; +import "dymensionxyz/dymension/common/status.proto"; +import "dymensionxyz/dymension/common/rollapp_packet.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/delayedack/types"; diff --git a/proto/dymension/denommetadata/genesis.proto b/proto/dymensionxyz/dymension/denommetadata/genesis.proto similarity index 100% rename from proto/dymension/denommetadata/genesis.proto rename to proto/dymensionxyz/dymension/denommetadata/genesis.proto diff --git a/proto/dymension/denommetadata/gov_denommetadata.proto b/proto/dymensionxyz/dymension/denommetadata/gov_denommetadata.proto similarity index 100% rename from proto/dymension/denommetadata/gov_denommetadata.proto rename to proto/dymensionxyz/dymension/denommetadata/gov_denommetadata.proto diff --git a/proto/dymension/eibc/demand_order.proto b/proto/dymensionxyz/dymension/eibc/demand_order.proto similarity index 92% rename from proto/dymension/eibc/demand_order.proto rename to proto/dymensionxyz/dymension/eibc/demand_order.proto index 68767c2fc..dac9d926f 100644 --- a/proto/dymension/eibc/demand_order.proto +++ b/proto/dymensionxyz/dymension/eibc/demand_order.proto @@ -2,8 +2,8 @@ syntax = "proto3"; package dymensionxyz.dymension.eibc; import "gogoproto/gogo.proto"; -import "dymension/common/status.proto"; -import "dymension/common/rollapp_packet.proto"; +import "dymensionxyz/dymension/common/status.proto"; +import "dymensionxyz/dymension/common/rollapp_packet.proto"; import "cosmos/base/v1beta1/coin.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/eibc/types"; diff --git a/proto/dymension/eibc/genesis.proto b/proto/dymensionxyz/dymension/eibc/genesis.proto similarity index 77% rename from proto/dymension/eibc/genesis.proto rename to proto/dymensionxyz/dymension/eibc/genesis.proto index b84345a3a..842d587e3 100644 --- a/proto/dymension/eibc/genesis.proto +++ b/proto/dymensionxyz/dymension/eibc/genesis.proto @@ -2,8 +2,8 @@ syntax = "proto3"; package dymensionxyz.dymension.eibc; import "gogoproto/gogo.proto"; -import "dymension/eibc/params.proto"; -import "dymension/eibc/demand_order.proto"; +import "dymensionxyz/dymension/eibc/params.proto"; +import "dymensionxyz/dymension/eibc/demand_order.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/eibc/types"; diff --git a/proto/dymension/eibc/params.proto b/proto/dymensionxyz/dymension/eibc/params.proto similarity index 100% rename from proto/dymension/eibc/params.proto rename to proto/dymensionxyz/dymension/eibc/params.proto diff --git a/proto/dymension/eibc/query.proto b/proto/dymensionxyz/dymension/eibc/query.proto similarity index 92% rename from proto/dymension/eibc/query.proto rename to proto/dymensionxyz/dymension/eibc/query.proto index fcab1c2d5..bc334f8fd 100644 --- a/proto/dymension/eibc/query.proto +++ b/proto/dymensionxyz/dymension/eibc/query.proto @@ -4,10 +4,10 @@ package dymensionxyz.dymension.eibc; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "dymension/eibc/params.proto"; -import "dymension/eibc/demand_order.proto"; -import "dymension/common/status.proto"; -import "dymension/common/rollapp_packet.proto"; +import "dymensionxyz/dymension/eibc/params.proto"; +import "dymensionxyz/dymension/eibc/demand_order.proto"; +import "dymensionxyz/dymension/common/status.proto"; +import "dymensionxyz/dymension/common/rollapp_packet.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/eibc/types"; diff --git a/proto/dymension/eibc/tx.proto b/proto/dymensionxyz/dymension/eibc/tx.proto similarity index 100% rename from proto/dymension/eibc/tx.proto rename to proto/dymensionxyz/dymension/eibc/tx.proto diff --git a/proto/dymension/rollapp/block_descriptor.proto b/proto/dymensionxyz/dymension/rollapp/block_descriptor.proto similarity index 100% rename from proto/dymension/rollapp/block_descriptor.proto rename to proto/dymensionxyz/dymension/rollapp/block_descriptor.proto diff --git a/proto/dymension/rollapp/genesis.proto b/proto/dymensionxyz/dymension/rollapp/genesis.proto similarity index 79% rename from proto/dymension/rollapp/genesis.proto rename to proto/dymensionxyz/dymension/rollapp/genesis.proto index 77932e074..94f1a0c22 100644 --- a/proto/dymension/rollapp/genesis.proto +++ b/proto/dymensionxyz/dymension/rollapp/genesis.proto @@ -2,10 +2,10 @@ syntax = "proto3"; package dymensionxyz.dymension.rollapp; import "gogoproto/gogo.proto"; -import "dymension/rollapp/params.proto"; -import "dymension/rollapp/rollapp.proto"; -import "dymension/rollapp/state_info.proto"; -import "dymension/rollapp/genesis_transfer.proto"; +import "dymensionxyz/dymension/rollapp/params.proto"; +import "dymensionxyz/dymension/rollapp/rollapp.proto"; +import "dymensionxyz/dymension/rollapp/state_info.proto"; +import "dymensionxyz/dymension/rollapp/genesis_transfer.proto"; // this line is used by starport scaffolding # genesis/proto/import option go_package = "github.com/dymensionxyz/dymension/v3/x/rollapp/types"; diff --git a/proto/dymension/rollapp/genesis_transfer.proto b/proto/dymensionxyz/dymension/rollapp/genesis_transfer.proto similarity index 83% rename from proto/dymension/rollapp/genesis_transfer.proto rename to proto/dymensionxyz/dymension/rollapp/genesis_transfer.proto index 0f0a96117..86801348f 100644 --- a/proto/dymension/rollapp/genesis_transfer.proto +++ b/proto/dymensionxyz/dymension/rollapp/genesis_transfer.proto @@ -2,9 +2,9 @@ syntax = "proto3"; package dymensionxyz.dymension.rollapp; import "gogoproto/gogo.proto"; -import "dymension/rollapp/params.proto"; -import "dymension/rollapp/rollapp.proto"; -import "dymension/rollapp/state_info.proto"; +import "dymensionxyz/dymension/rollapp/params.proto"; +import "dymensionxyz/dymension/rollapp/rollapp.proto"; +import "dymensionxyz/dymension/rollapp/state_info.proto"; // this line is used by starport scaffolding # genesis/proto/import option go_package = "github.com/dymensionxyz/dymension/v3/x/rollapp/types"; diff --git a/proto/dymension/rollapp/params.proto b/proto/dymensionxyz/dymension/rollapp/params.proto similarity index 100% rename from proto/dymension/rollapp/params.proto rename to proto/dymensionxyz/dymension/rollapp/params.proto diff --git a/proto/dymension/rollapp/proposal.proto b/proto/dymensionxyz/dymension/rollapp/proposal.proto similarity index 100% rename from proto/dymension/rollapp/proposal.proto rename to proto/dymensionxyz/dymension/rollapp/proposal.proto diff --git a/proto/dymension/rollapp/query.proto b/proto/dymensionxyz/dymension/rollapp/query.proto similarity index 95% rename from proto/dymension/rollapp/query.proto rename to proto/dymensionxyz/dymension/rollapp/query.proto index 5352d0bd0..5f723f908 100644 --- a/proto/dymension/rollapp/query.proto +++ b/proto/dymensionxyz/dymension/rollapp/query.proto @@ -4,9 +4,9 @@ package dymensionxyz.dymension.rollapp; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "dymension/rollapp/params.proto"; -import "dymension/rollapp/rollapp.proto"; -import "dymension/rollapp/state_info.proto"; +import "dymensionxyz/dymension/rollapp/params.proto"; +import "dymensionxyz/dymension/rollapp/rollapp.proto"; +import "dymensionxyz/dymension/rollapp/state_info.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/rollapp/types"; diff --git a/proto/dymension/rollapp/rollapp.proto b/proto/dymensionxyz/dymension/rollapp/rollapp.proto similarity index 97% rename from proto/dymension/rollapp/rollapp.proto rename to proto/dymensionxyz/dymension/rollapp/rollapp.proto index 280bc12aa..38aa5e4dc 100644 --- a/proto/dymension/rollapp/rollapp.proto +++ b/proto/dymensionxyz/dymension/rollapp/rollapp.proto @@ -3,7 +3,7 @@ package dymensionxyz.dymension.rollapp; option go_package = "github.com/dymensionxyz/dymension/v3/x/rollapp/types"; import "gogoproto/gogo.proto"; -import "dymension/rollapp/state_info.proto"; +import "dymensionxyz/dymension/rollapp/state_info.proto"; import "cosmos/base/v1beta1/coin.proto"; // RollappGenesisState is a partial repr of the state the hub can expect the rollapp to be in upon genesis diff --git a/proto/dymension/rollapp/state_info.proto b/proto/dymensionxyz/dymension/rollapp/state_info.proto similarity index 96% rename from proto/dymension/rollapp/state_info.proto rename to proto/dymensionxyz/dymension/rollapp/state_info.proto index abe20b12f..189513b4c 100644 --- a/proto/dymension/rollapp/state_info.proto +++ b/proto/dymensionxyz/dymension/rollapp/state_info.proto @@ -5,8 +5,8 @@ option go_package = "github.com/dymensionxyz/dymension/v3/x/rollapp/types"; import "gogoproto/gogo.proto"; -import "dymension/rollapp/block_descriptor.proto"; -import "dymension/common/status.proto"; +import "dymensionxyz/dymension/rollapp/block_descriptor.proto"; +import "dymensionxyz/dymension/common/status.proto"; // StateInfoIndex is the data used for indexing and retrieving a StateInfo // it updated and saved with every UpdateState in StateInfo. diff --git a/proto/dymension/rollapp/tx.proto b/proto/dymensionxyz/dymension/rollapp/tx.proto similarity index 90% rename from proto/dymension/rollapp/tx.proto rename to proto/dymensionxyz/dymension/rollapp/tx.proto index 7f14e1869..ad03aebe1 100644 --- a/proto/dymension/rollapp/tx.proto +++ b/proto/dymensionxyz/dymension/rollapp/tx.proto @@ -2,8 +2,9 @@ syntax = "proto3"; package dymensionxyz.dymension.rollapp; // this line is used by starport scaffolding # proto/tx/import -import "dymension/rollapp/block_descriptor.proto"; -import "dymension/rollapp/rollapp.proto"; +import "cosmos/msg/v1/msg.proto"; +import "dymensionxyz/dymension/rollapp/block_descriptor.proto"; +import "dymensionxyz/dymension/rollapp/rollapp.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/rollapp/types"; @@ -17,6 +18,7 @@ service Msg { // MsgCreateRollapp creates a new rollapp chain on the hub. message MsgCreateRollapp { + option (cosmos.msg.v1.signer) = "creator"; // creator is the bech32-encoded address of the rollapp creator string creator = 1; // rollappId is the unique identifier of the rollapp chain. @@ -40,6 +42,7 @@ message MsgCreateRollappResponse { // MsgUpdateState updates a rollapp state with a block batch. // a block batch is a list of ordered blocks (by height) message MsgUpdateState { + option (cosmos.msg.v1.signer) = "creator"; // creator is the bech32-encoded address of the sequencer sending the update string creator = 1; // rollappId is the rollapp that the sequencer belongs to and asking to update diff --git a/proto/dymension/sequencer/description.proto b/proto/dymensionxyz/dymension/sequencer/description.proto similarity index 100% rename from proto/dymension/sequencer/description.proto rename to proto/dymensionxyz/dymension/sequencer/description.proto diff --git a/proto/dymension/sequencer/genesis.proto b/proto/dymensionxyz/dymension/sequencer/genesis.proto similarity index 81% rename from proto/dymension/sequencer/genesis.proto rename to proto/dymensionxyz/dymension/sequencer/genesis.proto index 21b4095b8..225ec35f1 100644 --- a/proto/dymension/sequencer/genesis.proto +++ b/proto/dymensionxyz/dymension/sequencer/genesis.proto @@ -2,8 +2,8 @@ syntax = "proto3"; package dymensionxyz.dymension.sequencer; import "gogoproto/gogo.proto"; -import "dymension/sequencer/params.proto"; -import "dymension/sequencer/sequencer.proto"; +import "dymensionxyz/dymension/sequencer/params.proto"; +import "dymensionxyz/dymension/sequencer/sequencer.proto"; // this line is used by starport scaffolding # genesis/proto/import option go_package = "github.com/dymensionxyz/dymension/v3/x/sequencer/types"; diff --git a/proto/dymension/sequencer/operating_status.proto b/proto/dymensionxyz/dymension/sequencer/operating_status.proto similarity index 100% rename from proto/dymension/sequencer/operating_status.proto rename to proto/dymensionxyz/dymension/sequencer/operating_status.proto diff --git a/proto/dymension/sequencer/params.proto b/proto/dymensionxyz/dymension/sequencer/params.proto similarity index 100% rename from proto/dymension/sequencer/params.proto rename to proto/dymensionxyz/dymension/sequencer/params.proto diff --git a/proto/dymension/sequencer/query.proto b/proto/dymensionxyz/dymension/sequencer/query.proto similarity index 93% rename from proto/dymension/sequencer/query.proto rename to proto/dymensionxyz/dymension/sequencer/query.proto index 4d92a05cf..8350e1c0a 100644 --- a/proto/dymension/sequencer/query.proto +++ b/proto/dymensionxyz/dymension/sequencer/query.proto @@ -4,10 +4,10 @@ package dymensionxyz.dymension.sequencer; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "dymension/sequencer/params.proto"; -import "dymension/sequencer/sequencer.proto"; +import "dymensionxyz/dymension/sequencer/params.proto"; +import "dymensionxyz/dymension/sequencer/sequencer.proto"; // this line is used by starport scaffolding # 1 -import "dymension/sequencer/operating_status.proto"; +import "dymensionxyz/dymension/sequencer/operating_status.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/sequencer/types"; diff --git a/proto/dymension/sequencer/sequencer.proto b/proto/dymensionxyz/dymension/sequencer/sequencer.proto similarity index 93% rename from proto/dymension/sequencer/sequencer.proto rename to proto/dymensionxyz/dymension/sequencer/sequencer.proto index cb0111189..da6deace9 100644 --- a/proto/dymension/sequencer/sequencer.proto +++ b/proto/dymensionxyz/dymension/sequencer/sequencer.proto @@ -2,8 +2,8 @@ syntax = "proto3"; package dymensionxyz.dymension.sequencer; option go_package = "github.com/dymensionxyz/dymension/v3/x/sequencer/types"; -import "dymension/sequencer/description.proto"; -import "dymension/sequencer/operating_status.proto"; +import "dymensionxyz/dymension/sequencer/description.proto"; +import "dymensionxyz/dymension/sequencer/operating_status.proto"; import "cosmos_proto/cosmos.proto"; import "google/protobuf/any.proto"; diff --git a/proto/dymension/sequencer/tx.proto b/proto/dymensionxyz/dymension/sequencer/tx.proto similarity index 95% rename from proto/dymension/sequencer/tx.proto rename to proto/dymensionxyz/dymension/sequencer/tx.proto index f3cc21aad..0666b9d6c 100644 --- a/proto/dymension/sequencer/tx.proto +++ b/proto/dymensionxyz/dymension/sequencer/tx.proto @@ -4,7 +4,7 @@ package dymensionxyz.dymension.sequencer; // this line is used by starport scaffolding # proto/tx/import -import "dymension/sequencer/description.proto"; +import "dymensionxyz/dymension/sequencer/description.proto"; import "google/protobuf/any.proto"; import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; @@ -25,7 +25,7 @@ service Msg { } // MsgCreateSequencer defines a SDK message for creating a new sequencer. message MsgCreateSequencer { - + option (cosmos.msg.v1.signer) = "creator"; // creator is the bech32-encoded address of the sequencer account which is the account that the message was sent from. string creator = 1; diff --git a/proto/dymension/streamer/distr_info.proto b/proto/dymensionxyz/dymension/streamer/distr_info.proto similarity index 100% rename from proto/dymension/streamer/distr_info.proto rename to proto/dymensionxyz/dymension/streamer/distr_info.proto diff --git a/proto/dymension/streamer/genesis.proto b/proto/dymensionxyz/dymension/streamer/genesis.proto similarity index 86% rename from proto/dymension/streamer/genesis.proto rename to proto/dymensionxyz/dymension/streamer/genesis.proto index 1d7fcf186..46793e9c7 100644 --- a/proto/dymension/streamer/genesis.proto +++ b/proto/dymensionxyz/dymension/streamer/genesis.proto @@ -3,8 +3,8 @@ package dymensionxyz.dymension.streamer; import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; -import "dymension/streamer/params.proto"; -import "dymension/streamer/stream.proto"; +import "dymensionxyz/dymension/streamer/params.proto"; +import "dymensionxyz/dymension/streamer/stream.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/streamer/types"; diff --git a/proto/dymension/streamer/gov_distribution.proto b/proto/dymensionxyz/dymension/streamer/gov_distribution.proto similarity index 97% rename from proto/dymension/streamer/gov_distribution.proto rename to proto/dymensionxyz/dymension/streamer/gov_distribution.proto index 4a1b2af1e..227ffbf9c 100644 --- a/proto/dymension/streamer/gov_distribution.proto +++ b/proto/dymensionxyz/dymension/streamer/gov_distribution.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package dymensionxyz.dymension.streamer; import "gogoproto/gogo.proto"; -import "dymension/streamer/distr_info.proto"; +import "dymensionxyz/dymension/streamer/distr_info.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/streamer/types"; diff --git a/proto/dymension/streamer/gov_stream.proto b/proto/dymensionxyz/dymension/streamer/gov_stream.proto similarity index 96% rename from proto/dymension/streamer/gov_stream.proto rename to proto/dymensionxyz/dymension/streamer/gov_stream.proto index eda9848c2..28b0db871 100644 --- a/proto/dymension/streamer/gov_stream.proto +++ b/proto/dymensionxyz/dymension/streamer/gov_stream.proto @@ -5,7 +5,7 @@ package dymensionxyz.dymension.streamer; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "google/protobuf/timestamp.proto"; -import "dymension/streamer/distr_info.proto"; +import "dymensionxyz/dymension/streamer/distr_info.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/streamer/types"; diff --git a/proto/dymension/streamer/params.proto b/proto/dymensionxyz/dymension/streamer/params.proto similarity index 100% rename from proto/dymension/streamer/params.proto rename to proto/dymensionxyz/dymension/streamer/params.proto diff --git a/proto/dymension/streamer/query.proto b/proto/dymensionxyz/dymension/streamer/query.proto similarity index 98% rename from proto/dymension/streamer/query.proto rename to proto/dymensionxyz/dymension/streamer/query.proto index 94229e1c4..298049a48 100644 --- a/proto/dymension/streamer/query.proto +++ b/proto/dymensionxyz/dymension/streamer/query.proto @@ -6,7 +6,7 @@ import "google/api/annotations.proto"; import "google/protobuf/duration.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "dymension/streamer/stream.proto"; +import "dymensionxyz/dymension/streamer/stream.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/streamer/types"; diff --git a/proto/dymension/streamer/stream.proto b/proto/dymensionxyz/dymension/streamer/stream.proto similarity index 96% rename from proto/dymension/streamer/stream.proto rename to proto/dymensionxyz/dymension/streamer/stream.proto index fea224af6..1151d4e9b 100644 --- a/proto/dymension/streamer/stream.proto +++ b/proto/dymensionxyz/dymension/streamer/stream.proto @@ -6,7 +6,7 @@ import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; import "cosmos/base/v1beta1/coin.proto"; -import "dymension/streamer/distr_info.proto"; +import "dymensionxyz/dymension/streamer/distr_info.proto"; option go_package = "github.com/dymensionxyz/dymension/v3/x/streamer/types"; diff --git a/simulation/simapp.go b/simulation/simapp.go index f1bb511cc..4d58920d3 100644 --- a/simulation/simapp.go +++ b/simulation/simapp.go @@ -4,9 +4,9 @@ import ( "math/rand" "github.com/cosmos/cosmos-sdk/baseapp" - "github.com/cosmos/cosmos-sdk/simapp/helpers" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" + simapp "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" + moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" "github.com/dymensionxyz/dymension/v3/simulation/types" @@ -66,7 +66,7 @@ func GenAndDeliverMsgWithRandFees( txCtx := simulation.OperationInput{ R: r, App: app, - TxGen: simappparams.MakeTestEncodingConfig().TxConfig, + TxGen: moduletestutil.MakeTestEncodingConfig().TxConfig, Cdc: nil, Msg: msg, MsgType: msgType, @@ -121,8 +121,8 @@ func GenAndDeliverTxWithRandFees(txCtx simulation.OperationInput) (simtypes.Oper func GenAndDeliverTx(txCtx simulation.OperationInput, fees sdk.Coins) (simtypes.OperationMsg, []simtypes.FutureOperation, error) { account := txCtx.AccountKeeper.GetAccount(txCtx.Context, txCtx.SimAccount.Address) - txGas := uint64(10 * helpers.DefaultGenTxGas) - tx, err := helpers.GenSignedMockTx( + txGas := uint64(10 * simapp.DefaultGenTxGas) + tx, err := simapp.GenSignedMockTx( txCtx.R, txCtx.TxGen, []sdk.Msg{txCtx.Msg}, diff --git a/simulation/simulation_test.go b/simulation/simulation_test.go index 914d03b7b..829713040 100644 --- a/simulation/simulation_test.go +++ b/simulation/simulation_test.go @@ -4,15 +4,16 @@ import ( "os" "testing" - "github.com/cosmos/cosmos-sdk/simapp" + simapp "github.com/cosmos/cosmos-sdk/testutil/sims" simulationtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" + simcli "github.com/cosmos/cosmos-sdk/x/simulation/client/cli" "github.com/dymensionxyz/dymension/v3/app" "github.com/stretchr/testify/require" ) func init() { - simapp.GetSimulatorFlags() + simcli.GetSimulatorFlags() } // BenchmarkSimulation run the chain simulation @@ -21,10 +22,12 @@ func init() { // Running as go benchmark test: // `go test -benchmem -run=^$ -bench ^BenchmarkSimulation ./app -NumBlocks=200 -BlockSize 50 -Commit=true -Verbose=true -Enabled=true` func BenchmarkSimulation(b *testing.B) { - simapp.FlagEnabledValue = true - simapp.FlagCommitValue = true + simcli.FlagEnabledValue = true + simcli.FlagCommitValue = true + config := simcli.NewConfigFromFlags() + config.ChainID = "simulation-app" - config, db, dir, logger, _, err := simapp.SetupSimulation("goleveldb-app-sim", "Simulation") + db, dir, logger, _, err := simapp.SetupSimulation(config, "goleveldb-app-sim", "Simulation", simcli.FlagEnabledValue, simcli.FlagEnabledValue) require.NoError(b, err, "simulation setup failed") b.Cleanup(func() { @@ -36,7 +39,7 @@ func BenchmarkSimulation(b *testing.B) { encoding := app.MakeEncodingConfig() - app := app.New( + dymdApp := app.New( logger, db, nil, @@ -52,17 +55,17 @@ func BenchmarkSimulation(b *testing.B) { _, simParams, simErr := simulation.SimulateFromSeed( b, os.Stdout, - app.BaseApp, - simapp.AppStateFn(app.AppCodec(), app.SimulationManager()), + dymdApp.BaseApp, + simapp.AppStateFn(dymdApp.AppCodec(), dymdApp.SimulationManager(), app.NewDefaultGenesisState(dymdApp.AppCodec())), simulationtypes.RandomAccounts, - simapp.SimulationOperations(app, app.AppCodec(), config), - app.ModuleAccountAddrs(), + simapp.SimulationOperations(dymdApp, dymdApp.AppCodec(), config), + dymdApp.ModuleAccountAddrs(), config, - app.AppCodec(), + dymdApp.AppCodec(), ) // export state and simParams before the simulation error is checked - err = simapp.CheckExportSimulation(app, config, simParams) + err = simapp.CheckExportSimulation(dymdApp, config, simParams) require.NoError(b, err) require.NoError(b, simErr) diff --git a/testutil/keeper/delayedack.go b/testutil/keeper/delayedack.go index 6d5c6b815..a284fa60e 100644 --- a/testutil/keeper/delayedack.go +++ b/testutil/keeper/delayedack.go @@ -3,6 +3,9 @@ package keeper import ( "testing" + cometbftdb "github.com/cometbft/cometbft-db" + "github.com/cometbft/cometbft/libs/log" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/store" @@ -10,15 +13,12 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" typesparams "github.com/cosmos/cosmos-sdk/x/params/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - connectiontypes "github.com/cosmos/ibc-go/v6/modules/core/03-connection/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v6/modules/core/exported" - ibctypes "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + connectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v7/modules/core/exported" + ibctypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" "github.com/stretchr/testify/require" - "github.com/tendermint/tendermint/libs/log" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - tmdb "github.com/tendermint/tm-db" "github.com/dymensionxyz/dymension/v3/x/delayedack/keeper" "github.com/dymensionxyz/dymension/v3/x/delayedack/types" @@ -115,7 +115,7 @@ func DelayedackKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { storeKey := sdk.NewKVStoreKey(types.StoreKey) memStoreKey := storetypes.NewMemoryStoreKey(types.MemStoreKey) - db := tmdb.NewMemDB() + db := cometbftdb.NewMemDB() stateStore := store.NewCommitMultiStore(db) stateStore.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, db) stateStore.MountStoreWithDB(memStoreKey, storetypes.StoreTypeMemory, nil) @@ -140,7 +140,7 @@ func DelayedackKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { nil, ) - ctx := sdk.NewContext(stateStore, tmproto.Header{}, false, log.NewNopLogger()) + ctx := sdk.NewContext(stateStore, cometbftproto.Header{}, false, log.NewNopLogger()) // Initialize params k.SetParams(ctx, types.DefaultParams()) diff --git a/testutil/keeper/eibc.go b/testutil/keeper/eibc.go index 21342d754..73382f353 100644 --- a/testutil/keeper/eibc.go +++ b/testutil/keeper/eibc.go @@ -3,6 +3,9 @@ package keeper import ( "testing" + cmetbftdb "github.com/cometbft/cometbft-db" + "github.com/cometbft/cometbft/libs/log" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/store" @@ -12,16 +15,13 @@ import ( "github.com/dymensionxyz/dymension/v3/x/eibc/keeper" "github.com/dymensionxyz/dymension/v3/x/eibc/types" "github.com/stretchr/testify/require" - "github.com/tendermint/tendermint/libs/log" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - tmdb "github.com/tendermint/tm-db" ) func EibcKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { storeKey := sdk.NewKVStoreKey(types.StoreKey) memStoreKey := storetypes.NewMemoryStoreKey(types.MemStoreKey) - db := tmdb.NewMemDB() + db := cmetbftdb.NewMemDB() stateStore := store.NewCommitMultiStore(db) stateStore.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, db) stateStore.MountStoreWithDB(memStoreKey, storetypes.StoreTypeMemory, nil) @@ -46,7 +46,7 @@ func EibcKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { nil, ) - ctx := sdk.NewContext(stateStore, tmproto.Header{}, false, log.NewNopLogger()) + ctx := sdk.NewContext(stateStore, cometbftproto.Header{}, false, log.NewNopLogger()) // Initialize params k.SetParams(ctx, types.DefaultParams()) diff --git a/testutil/keeper/rollapp.go b/testutil/keeper/rollapp.go index 129f0c240..142b2825b 100644 --- a/testutil/keeper/rollapp.go +++ b/testutil/keeper/rollapp.go @@ -13,17 +13,17 @@ import ( "github.com/dymensionxyz/dymension/v3/x/rollapp/keeper" "github.com/dymensionxyz/dymension/v3/x/rollapp/types" + cometbftdb "github.com/cometbft/cometbft-db" + "github.com/cometbft/cometbft/libs/log" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/stretchr/testify/require" - "github.com/tendermint/tendermint/libs/log" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - tmdb "github.com/tendermint/tm-db" ) func RollappKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { storeKey := sdk.NewKVStoreKey(types.StoreKey) memStoreKey := storetypes.NewMemoryStoreKey(types.MemStoreKey) - db := tmdb.NewMemDB() + db := cometbftdb.NewMemDB() stateStore := store.NewCommitMultiStore(db) stateStore.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, db) stateStore.MountStoreWithDB(memStoreKey, storetypes.StoreTypeMemory, nil) @@ -40,7 +40,7 @@ func RollappKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { ) k := keeper.NewKeeper(cdc, storeKey, paramsSubspace, nil, nil) - ctx := sdk.NewContext(stateStore, tmproto.Header{}, false, log.NewNopLogger()) + ctx := sdk.NewContext(stateStore, cometbftproto.Header{}, false, log.NewNopLogger()) // Initialize params k.SetParams(ctx, types.DefaultParams()) diff --git a/testutil/keeper/sequencer.go b/testutil/keeper/sequencer.go index 120033241..b76d1a238 100644 --- a/testutil/keeper/sequencer.go +++ b/testutil/keeper/sequencer.go @@ -3,6 +3,9 @@ package keeper import ( "testing" + cometbftdb "github.com/cometbft/cometbft-db" + "github.com/cometbft/cometbft/libs/log" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/store" @@ -12,16 +15,13 @@ import ( "github.com/dymensionxyz/dymension/v3/x/sequencer/keeper" "github.com/dymensionxyz/dymension/v3/x/sequencer/types" "github.com/stretchr/testify/require" - "github.com/tendermint/tendermint/libs/log" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - tmdb "github.com/tendermint/tm-db" ) func SequencerKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { storeKey := sdk.NewKVStoreKey(types.StoreKey) memStoreKey := storetypes.NewMemoryStoreKey(types.MemStoreKey) - db := tmdb.NewMemDB() + db := cometbftdb.NewMemDB() stateStore := store.NewCommitMultiStore(db) stateStore.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, db) stateStore.MountStoreWithDB(memStoreKey, storetypes.StoreTypeMemory, nil) @@ -45,7 +45,7 @@ func SequencerKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { nil, ) - ctx := sdk.NewContext(stateStore, tmproto.Header{}, false, log.NewNopLogger()) + ctx := sdk.NewContext(stateStore, cometbftproto.Header{}, false, log.NewNopLogger()) // Initialize params k.SetParams(ctx, types.DefaultParams()) diff --git a/testutil/keeper/streamer.go b/testutil/keeper/streamer.go index c0ae1c456..d8dd52839 100644 --- a/testutil/keeper/streamer.go +++ b/testutil/keeper/streamer.go @@ -3,6 +3,9 @@ package keeper import ( "testing" + cometbftdb "github.com/cometbft/cometbft-db" + "github.com/cometbft/cometbft/libs/log" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/store" @@ -12,16 +15,13 @@ import ( "github.com/dymensionxyz/dymension/v3/x/streamer/keeper" "github.com/dymensionxyz/dymension/v3/x/streamer/types" "github.com/stretchr/testify/require" - "github.com/tendermint/tendermint/libs/log" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - tmdb "github.com/tendermint/tm-db" ) func StreamerKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { storeKey := sdk.NewKVStoreKey(types.StoreKey) memStoreKey := storetypes.NewMemoryStoreKey(types.MemStoreKey) - db := tmdb.NewMemDB() + db := cometbftdb.NewMemDB() stateStore := store.NewCommitMultiStore(db) stateStore.MountStoreWithDB(storeKey, storetypes.StoreTypeIAVL, db) stateStore.MountStoreWithDB(memStoreKey, storetypes.StoreTypeMemory, nil) @@ -45,7 +45,7 @@ func StreamerKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { nil, ) - ctx := sdk.NewContext(stateStore, tmproto.Header{}, false, log.NewNopLogger()) + ctx := sdk.NewContext(stateStore, cometbftproto.Header{}, false, log.NewNopLogger()) // Initialize params k.SetParams(ctx, types.DefaultParams()) diff --git a/testutil/network/network.go b/testutil/network/network.go index f7e73206b..46bf0523e 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -5,14 +5,14 @@ import ( evmtypes "github.com/evmos/ethermint/x/evm/types" + "cosmossdk.io/simapp" + cometbftdb "github.com/cometbft/cometbft-db" "github.com/cosmos/cosmos-sdk/baseapp" - pruningtypes "github.com/cosmos/cosmos-sdk/pruning/types" servertypes "github.com/cosmos/cosmos-sdk/server/types" - "github.com/cosmos/cosmos-sdk/simapp" - + pruningtypes "github.com/cosmos/cosmos-sdk/store/pruning/types" "github.com/cosmos/cosmos-sdk/testutil/network" + "github.com/cosmos/cosmos-sdk/testutil/sims" "github.com/stretchr/testify/require" - tmdb "github.com/tendermint/tm-db" "github.com/dymensionxyz/dymension/v3/app" "github.com/dymensionxyz/dymension/v3/app/keepers" @@ -45,18 +45,18 @@ func New(t *testing.T, configs ...network.Config) *network.Network { // DefaultConfig will initialize config for the network with custom application, // genesis and single validator. All other parameters are inherited from cosmos-sdk/testutil/network.DefaultConfig func DefaultConfig() network.Config { - cfg := network.DefaultConfig() + cfg := network.DefaultConfig(simapp.NewTestNetworkFixture) encoding := app.MakeEncodingConfig() // FIXME: add rand tmrand.Uint64() to chainID cfg.ChainID = "dymension_1000-1" - cfg.AppConstructor = func(val network.Validator) servertypes.Application { + cfg.AppConstructor = func(val network.ValidatorI) servertypes.Application { return app.New( - val.Ctx.Logger, tmdb.NewMemDB(), nil, true, map[int64]bool{}, val.Ctx.Config.RootDir, 0, + val.GetCtx().Logger, cometbftdb.NewMemDB(), nil, true, map[int64]bool{}, val.GetCtx().Config.RootDir, 0, encoding, - simapp.EmptyAppOptions{}, - baseapp.SetPruning(pruningtypes.NewPruningOptionsFromString(val.AppConfig.Pruning)), - baseapp.SetMinGasPrices(val.AppConfig.MinGasPrices), + sims.EmptyAppOptions{}, + baseapp.SetPruning(pruningtypes.NewPruningOptionsFromString(val.GetAppConfig().Pruning)), + baseapp.SetMinGasPrices(val.GetAppConfig().MinGasPrices), ) } diff --git a/x/bridgingfee/ibc_module.go b/x/bridgingfee/ibc_module.go index ff439c3f5..5dbbc1e81 100644 --- a/x/bridgingfee/ibc_module.go +++ b/x/bridgingfee/ibc_module.go @@ -2,16 +2,16 @@ package bridgingfee import ( errorsmod "cosmossdk.io/errors" + "github.com/cometbft/cometbft/libs/log" sdk "github.com/cosmos/cosmos-sdk/types" - ibctransfer "github.com/cosmos/ibc-go/v6/modules/apps/transfer" - transferkeeper "github.com/cosmos/ibc-go/v6/modules/apps/transfer/keeper" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - "github.com/cosmos/ibc-go/v6/modules/core/exported" + ibctransfer "github.com/cosmos/ibc-go/v7/modules/apps/transfer" + transferkeeper "github.com/cosmos/ibc-go/v7/modules/apps/transfer/keeper" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + "github.com/cosmos/ibc-go/v7/modules/core/exported" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" delayedackkeeper "github.com/dymensionxyz/dymension/v3/x/delayedack/keeper" rollappkeeper "github.com/dymensionxyz/dymension/v3/x/rollapp/keeper" - "github.com/tendermint/tendermint/libs/log" ) const ( diff --git a/x/common/types/rollapp_packet.go b/x/common/types/rollapp_packet.go index 7e9e56ed3..e1267b1b5 100644 --- a/x/common/types/rollapp_packet.go +++ b/x/common/types/rollapp_packet.go @@ -5,7 +5,7 @@ import ( "strconv" sdk "github.com/cosmos/cosmos-sdk/types" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" ) func (r RollappPacket) LogString() string { diff --git a/x/common/types/rollapp_packet.pb.go b/x/common/types/rollapp_packet.pb.go index 4f2bb05c7..1d77b050b 100644 --- a/x/common/types/rollapp_packet.pb.go +++ b/x/common/types/rollapp_packet.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/common/rollapp_packet.proto +// source: dymensionxyz/dymension/common/rollapp_packet.proto package types import ( fmt "fmt" - types "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + types "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" io "io" math "math" math_bits "math/bits" @@ -52,7 +52,7 @@ func (x RollappPacket_Type) String() string { } func (RollappPacket_Type) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_6a233f90bb62f12a, []int{0, 0} + return fileDescriptor_febc8c0e69213bc2, []int{0, 0} } type RollappPacket struct { @@ -73,7 +73,7 @@ func (m *RollappPacket) Reset() { *m = RollappPacket{} } func (m *RollappPacket) String() string { return proto.CompactTextString(m) } func (*RollappPacket) ProtoMessage() {} func (*RollappPacket) Descriptor() ([]byte, []int) { - return fileDescriptor_6a233f90bb62f12a, []int{0} + return fileDescriptor_febc8c0e69213bc2, []int{0} } func (m *RollappPacket) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -171,41 +171,41 @@ func init() { } func init() { - proto.RegisterFile("dymension/common/rollapp_packet.proto", fileDescriptor_6a233f90bb62f12a) -} - -var fileDescriptor_6a233f90bb62f12a = []byte{ - // 466 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x52, 0x41, 0x6f, 0xd3, 0x30, - 0x14, 0xae, 0xb7, 0xae, 0xa5, 0xaf, 0x30, 0x2a, 0x6b, 0x9a, 0xac, 0xa1, 0x46, 0x61, 0xd2, 0xa4, - 0x9c, 0x1c, 0x75, 0xbd, 0x70, 0xe1, 0x00, 0x5b, 0x80, 0x0a, 0x2d, 0x9d, 0x42, 0xc6, 0x81, 0x4b, - 0x94, 0xa6, 0x5e, 0x1a, 0x2d, 0xb5, 0x23, 0xc7, 0x2b, 0x0b, 0xbf, 0x82, 0x9f, 0xc5, 0x71, 0x47, - 0x8e, 0xa8, 0xbd, 0xf0, 0x2f, 0x40, 0x71, 0x92, 0x31, 0x40, 0x02, 0x9f, 0xfc, 0xde, 0xf7, 0x7d, - 0xfe, 0xbe, 0xf7, 0x64, 0x38, 0x9a, 0x17, 0x4b, 0xc6, 0xf3, 0x44, 0x70, 0x3b, 0x12, 0xcb, 0xa5, - 0xe0, 0xb6, 0x14, 0x69, 0x1a, 0x66, 0x59, 0x90, 0x85, 0xd1, 0x15, 0x53, 0x34, 0x93, 0x42, 0x09, - 0x3c, 0xbc, 0xa3, 0xdd, 0x14, 0x9f, 0xe8, 0x5d, 0x41, 0x2b, 0xcd, 0xc1, 0x5e, 0x2c, 0x62, 0xa1, - 0x99, 0x76, 0x79, 0xab, 0x44, 0x07, 0x4f, 0x93, 0x59, 0x64, 0x47, 0x42, 0x32, 0x3b, 0x5a, 0x84, - 0x9c, 0xb3, 0xd4, 0x5e, 0x8d, 0x9a, 0x6b, 0x4d, 0x19, 0xfe, 0x65, 0x9f, 0xab, 0x50, 0x5d, 0xe7, - 0x15, 0x7c, 0xf8, 0x7d, 0x1b, 0x1e, 0x79, 0x55, 0x9e, 0x73, 0x1d, 0x07, 0x0f, 0x01, 0x9a, 0x80, - 0xc9, 0x9c, 0x20, 0x13, 0x59, 0x3d, 0xaf, 0x57, 0x77, 0x26, 0x73, 0x3c, 0x86, 0x4e, 0x95, 0x9b, - 0x6c, 0x99, 0xc8, 0xea, 0x1f, 0x3f, 0xa1, 0xc9, 0x2c, 0xa2, 0x65, 0x06, 0xda, 0x18, 0xaf, 0x46, - 0xb4, 0x7a, 0xcb, 0xab, 0xa9, 0xd8, 0x82, 0xc7, 0x61, 0x74, 0xc5, 0xc5, 0xc7, 0x94, 0xcd, 0x63, - 0xb6, 0x64, 0x5c, 0x91, 0x6d, 0x13, 0x59, 0x0f, 0xbd, 0x3f, 0xdb, 0xf8, 0x39, 0x74, 0xaa, 0x7c, - 0xa4, 0x6d, 0x22, 0x6b, 0xf7, 0xf8, 0x88, 0xfe, 0x73, 0x2f, 0xf4, 0x9d, 0x26, 0x7b, 0xb5, 0x08, - 0x9b, 0xd0, 0x3f, 0x97, 0x42, 0x5c, 0xbe, 0x61, 0x49, 0xbc, 0x50, 0x64, 0xc7, 0x44, 0x56, 0xdb, - 0xbb, 0xdf, 0xc2, 0x04, 0xba, 0x92, 0xa5, 0x61, 0xc1, 0x24, 0xe9, 0xe8, 0x08, 0x4d, 0x89, 0x1d, - 0x68, 0xab, 0x22, 0x63, 0xa4, 0xab, 0x8d, 0x47, 0xff, 0x31, 0xfe, 0x6d, 0x69, 0xd4, 0x2f, 0x32, - 0xe6, 0x69, 0x39, 0xde, 0x83, 0x1d, 0x26, 0xa5, 0x90, 0xe4, 0x81, 0x5e, 0x5d, 0x55, 0xe0, 0x67, - 0x40, 0x84, 0x4c, 0xe2, 0x84, 0x87, 0x69, 0xa0, 0x64, 0xc8, 0xf3, 0x4b, 0x26, 0x03, 0x15, 0xca, - 0x98, 0x29, 0xd2, 0xd3, 0xc4, 0xfd, 0x06, 0xf7, 0x6b, 0xd8, 0xd7, 0xe8, 0xe1, 0x6b, 0x68, 0x97, - 0xaf, 0xe3, 0x3e, 0x74, 0xa7, 0x6e, 0xe0, 0x39, 0x27, 0xef, 0x07, 0x2d, 0x0c, 0xd0, 0x99, 0xba, - 0xc1, 0x8b, 0x93, 0xb7, 0x03, 0x84, 0x77, 0x01, 0xa6, 0x6e, 0xe0, 0x4f, 0xce, 0x9c, 0xe9, 0x85, - 0x3f, 0xd8, 0xc2, 0xfb, 0xd0, 0xbb, 0x70, 0x4f, 0x9d, 0x57, 0x13, 0xd7, 0x39, 0x1d, 0xfc, 0x68, - 0x0e, 0x7a, 0x79, 0xf6, 0x65, 0x6d, 0xa0, 0xdb, 0xb5, 0x81, 0xbe, 0xad, 0x0d, 0xf4, 0x79, 0x63, - 0xb4, 0x6e, 0x37, 0x46, 0xeb, 0xeb, 0xc6, 0x68, 0x7d, 0x18, 0xc7, 0x89, 0x5a, 0x5c, 0xcf, 0xca, - 0xd1, 0xec, 0xfb, 0x53, 0xff, 0x2a, 0xec, 0xd5, 0xd8, 0xbe, 0x69, 0x3e, 0x50, 0x39, 0x66, 0x3e, - 0xeb, 0xe8, 0x0f, 0x34, 0xfe, 0x19, 0x00, 0x00, 0xff, 0xff, 0x21, 0xf5, 0xb7, 0xa1, 0xe0, 0x02, - 0x00, 0x00, + proto.RegisterFile("dymensionxyz/dymension/common/rollapp_packet.proto", fileDescriptor_febc8c0e69213bc2) +} + +var fileDescriptor_febc8c0e69213bc2 = []byte{ + // 469 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x41, 0x6f, 0xd3, 0x30, + 0x14, 0xc7, 0xeb, 0xad, 0x6b, 0xe9, 0x2b, 0x8c, 0xca, 0x9a, 0x26, 0x6b, 0x68, 0x51, 0x98, 0x84, + 0x14, 0x71, 0x70, 0xd4, 0xf6, 0xc2, 0x85, 0x03, 0x6c, 0x01, 0x2a, 0xb4, 0x74, 0x0a, 0x19, 0x07, + 0x2e, 0x51, 0x9a, 0x7a, 0x69, 0xb4, 0xd4, 0x8e, 0x1c, 0xaf, 0x2c, 0x7c, 0x0a, 0x3e, 0x16, 0xc7, + 0x1d, 0x39, 0xa2, 0xf6, 0xc2, 0xb7, 0x00, 0xc5, 0x49, 0xa6, 0x81, 0xc4, 0xf0, 0xc9, 0xef, 0xbd, + 0xff, 0xdf, 0xfe, 0xbd, 0xa7, 0x07, 0xa3, 0x79, 0xb1, 0x64, 0x3c, 0x4f, 0x04, 0xbf, 0x2e, 0xbe, + 0xd8, 0xb7, 0x81, 0x1d, 0x89, 0xe5, 0x52, 0x70, 0x5b, 0x8a, 0x34, 0x0d, 0xb3, 0x2c, 0xc8, 0xc2, + 0xe8, 0x92, 0x29, 0x9a, 0x49, 0xa1, 0x04, 0x3e, 0xbc, 0xeb, 0xa1, 0xb7, 0x01, 0xad, 0x3c, 0x07, + 0x7b, 0xb1, 0x88, 0x85, 0x56, 0xda, 0xe5, 0xad, 0x32, 0x1d, 0x3c, 0x4d, 0x66, 0x91, 0x1d, 0x09, + 0xc9, 0xec, 0x68, 0x11, 0x72, 0xce, 0x52, 0x7b, 0x35, 0x6c, 0xae, 0xb5, 0xe4, 0xf9, 0xfd, 0x2c, + 0xb9, 0x0a, 0xd5, 0x55, 0x5e, 0x69, 0x8f, 0x7e, 0x6e, 0xc3, 0x23, 0xaf, 0x82, 0x3b, 0xd3, 0x6c, + 0xf8, 0x10, 0xa0, 0xa1, 0x4d, 0xe6, 0x04, 0x99, 0xc8, 0xea, 0x79, 0xbd, 0x3a, 0x33, 0x99, 0xe3, + 0x31, 0x74, 0xaa, 0x26, 0xc8, 0x96, 0x89, 0xac, 0xfe, 0xe8, 0x09, 0x4d, 0x66, 0x11, 0x2d, 0x81, + 0x68, 0x43, 0xb1, 0x1a, 0xd2, 0xea, 0x2d, 0xaf, 0x96, 0x62, 0x0b, 0x1e, 0x87, 0xd1, 0x25, 0x17, + 0x9f, 0x53, 0x36, 0x8f, 0xd9, 0x92, 0x71, 0x45, 0xb6, 0x4d, 0x64, 0x3d, 0xf4, 0xfe, 0x4e, 0xe3, + 0x97, 0xd0, 0xa9, 0xf8, 0x48, 0xdb, 0x44, 0xd6, 0xee, 0xe8, 0x19, 0xbd, 0x77, 0x48, 0xf4, 0x83, + 0x16, 0x7b, 0xb5, 0x09, 0x9b, 0xd0, 0x3f, 0x93, 0x42, 0x5c, 0xbc, 0x63, 0x49, 0xbc, 0x50, 0x64, + 0xc7, 0x44, 0x56, 0xdb, 0xbb, 0x9b, 0xc2, 0x04, 0xba, 0x92, 0xa5, 0x61, 0xc1, 0x24, 0xe9, 0x68, + 0x84, 0x26, 0xc4, 0x0e, 0xb4, 0x55, 0x91, 0x31, 0xd2, 0xd5, 0x1f, 0x0f, 0xff, 0xf3, 0xf1, 0x1f, + 0x43, 0xa3, 0x7e, 0x91, 0x31, 0x4f, 0xdb, 0xf1, 0x1e, 0xec, 0x30, 0x29, 0x85, 0x24, 0x0f, 0xf4, + 0xe8, 0xaa, 0x00, 0xbf, 0x00, 0x22, 0x64, 0x12, 0x27, 0x3c, 0x4c, 0x03, 0x25, 0x43, 0x9e, 0x5f, + 0x30, 0x19, 0xa8, 0x50, 0xc6, 0x4c, 0x91, 0x9e, 0x16, 0xee, 0x37, 0x75, 0xbf, 0x2e, 0xfb, 0xba, + 0x7a, 0xf4, 0x16, 0xda, 0xe5, 0xeb, 0xb8, 0x0f, 0xdd, 0xa9, 0x1b, 0x78, 0xce, 0xf1, 0xc7, 0x41, + 0x0b, 0x03, 0x74, 0xa6, 0x6e, 0xf0, 0xea, 0xf8, 0xfd, 0x00, 0xe1, 0x5d, 0x80, 0xa9, 0x1b, 0xf8, + 0x93, 0x53, 0x67, 0x7a, 0xee, 0x0f, 0xb6, 0xf0, 0x3e, 0xf4, 0xce, 0xdd, 0x13, 0xe7, 0xcd, 0xc4, + 0x75, 0x4e, 0x06, 0xbf, 0x9a, 0x83, 0x5e, 0x9f, 0x7e, 0x5b, 0x1b, 0xe8, 0x66, 0x6d, 0xa0, 0x1f, + 0x6b, 0x03, 0x7d, 0xdd, 0x18, 0xad, 0x9b, 0x8d, 0xd1, 0xfa, 0xbe, 0x31, 0x5a, 0x9f, 0xc6, 0x71, + 0xa2, 0x16, 0x57, 0xb3, 0xb2, 0x35, 0xfb, 0x1f, 0xbb, 0xb3, 0x1a, 0xdb, 0xd7, 0xcd, 0x02, 0x95, + 0x6d, 0xe6, 0xb3, 0x8e, 0x5e, 0xa0, 0xf1, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd7, 0xcc, 0x6a, + 0x2e, 0xfa, 0x02, 0x00, 0x00, } func (m *RollappPacket) Marshal() (dAtA []byte, err error) { diff --git a/x/common/types/status.pb.go b/x/common/types/status.pb.go index ece5d8f41..dbf4fdfc2 100644 --- a/x/common/types/status.pb.go +++ b/x/common/types/status.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/common/status.proto +// source: dymensionxyz/dymension/common/status.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" math "math" ) @@ -46,27 +46,29 @@ func (x Status) String() string { } func (Status) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_cacbb2cb1a9e9699, []int{0} + return fileDescriptor_acfb62db52f6fda8, []int{0} } func init() { proto.RegisterEnum("dymensionxyz.dymension.common.Status", Status_name, Status_value) } -func init() { proto.RegisterFile("dymension/common/status.proto", fileDescriptor_cacbb2cb1a9e9699) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/common/status.proto", fileDescriptor_acfb62db52f6fda8) +} -var fileDescriptor_cacbb2cb1a9e9699 = []byte{ - // 189 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4d, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x4f, 0xce, 0xcf, 0xcd, 0xcd, 0xcf, 0xd3, 0x2f, 0x2e, 0x49, - 0x2c, 0x29, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x42, 0x48, 0x57, 0x54, 0x56, 0xe9, - 0xc1, 0x39, 0x7a, 0x10, 0xb5, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x95, 0xfa, 0x20, 0x16, - 0x44, 0x93, 0x96, 0x11, 0x17, 0x5b, 0x30, 0xd8, 0x10, 0x21, 0x6e, 0x2e, 0xf6, 0x00, 0x57, 0x3f, - 0x17, 0x4f, 0x3f, 0x77, 0x01, 0x06, 0x21, 0x5e, 0x2e, 0x4e, 0x37, 0x4f, 0x3f, 0x47, 0x1f, 0xcf, - 0x28, 0x57, 0x17, 0x01, 0x46, 0x21, 0x1e, 0x2e, 0x8e, 0x20, 0xd7, 0x30, 0xd7, 0xa0, 0x10, 0x57, - 0x17, 0x01, 0x66, 0x27, 0xdf, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, - 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x32, - 0x4e, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0x02, 0x59, 0xa9, 0x8f, 0xec, 0x1a, 0x04, 0x47, 0xbf, 0xcc, - 0x58, 0xbf, 0x02, 0xe6, 0xfc, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x4b, 0x8c, 0x01, - 0x01, 0x00, 0x00, 0xff, 0xff, 0xfb, 0x30, 0xcf, 0x33, 0xdf, 0x00, 0x00, 0x00, +var fileDescriptor_acfb62db52f6fda8 = []byte{ + // 190 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4a, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x93, 0xf3, 0x73, 0x73, + 0xf3, 0xf3, 0xf4, 0x8b, 0x4b, 0x12, 0x4b, 0x4a, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, + 0x64, 0x91, 0xd5, 0xea, 0xc1, 0x39, 0x7a, 0x10, 0xb5, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, + 0x95, 0xfa, 0x20, 0x16, 0x44, 0x93, 0x96, 0x11, 0x17, 0x5b, 0x30, 0xd8, 0x10, 0x21, 0x6e, 0x2e, + 0xf6, 0x00, 0x57, 0x3f, 0x17, 0x4f, 0x3f, 0x77, 0x01, 0x06, 0x21, 0x5e, 0x2e, 0x4e, 0x37, 0x4f, + 0x3f, 0x47, 0x1f, 0xcf, 0x28, 0x57, 0x17, 0x01, 0x46, 0x21, 0x1e, 0x2e, 0x8e, 0x20, 0xd7, 0x30, + 0xd7, 0xa0, 0x10, 0x57, 0x17, 0x01, 0x66, 0x27, 0xdf, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, + 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, + 0x96, 0x63, 0x88, 0x32, 0x4e, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0x02, 0x59, 0xa9, 0x8f, 0xc3, 0xe5, + 0x65, 0xc6, 0xfa, 0x15, 0x30, 0xe7, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x5d, 0x62, + 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x50, 0xdb, 0xd7, 0x0d, 0xec, 0x00, 0x00, 0x00, } diff --git a/x/delayedack/genesis_test.go b/x/delayedack/genesis_test.go index 93ba066bd..c0116213d 100644 --- a/x/delayedack/genesis_test.go +++ b/x/delayedack/genesis_test.go @@ -3,7 +3,7 @@ package delayedack_test import ( "testing" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" keepertest "github.com/dymensionxyz/dymension/v3/testutil/keeper" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" "github.com/dymensionxyz/dymension/v3/x/delayedack" diff --git a/x/delayedack/ibc_middleware.go b/x/delayedack/ibc_middleware.go index eddba5ebf..e9d5c8a1e 100644 --- a/x/delayedack/ibc_middleware.go +++ b/x/delayedack/ibc_middleware.go @@ -6,11 +6,11 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v6/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/tendermint/tendermint/libs/log" + "github.com/cometbft/cometbft/libs/log" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" "github.com/dymensionxyz/dymension/v3/x/delayedack/keeper" diff --git a/x/delayedack/keeper/finalize.go b/x/delayedack/keeper/finalize.go index 37d43b056..844c5bd57 100644 --- a/x/delayedack/keeper/finalize.go +++ b/x/delayedack/keeper/finalize.go @@ -3,17 +3,17 @@ package keeper import ( "fmt" - "github.com/cosmos/ibc-go/v6/modules/core/exported" + "github.com/cosmos/ibc-go/v7/modules/core/exported" sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" "github.com/dymensionxyz/dymension/v3/x/delayedack/types" + "github.com/cometbft/cometbft/libs/log" "github.com/osmosis-labs/osmosis/v15/osmoutils" - "github.com/tendermint/tendermint/libs/log" ) // FinalizeRollappPackets finalizes the packets for the given rollapp until the given height which is diff --git a/x/delayedack/keeper/fraud.go b/x/delayedack/keeper/fraud.go index 9a22500fb..74b26938c 100644 --- a/x/delayedack/keeper/fraud.go +++ b/x/delayedack/keeper/fraud.go @@ -4,7 +4,7 @@ import ( "github.com/dymensionxyz/dymension/v3/x/delayedack/types" sdk "github.com/cosmos/cosmos-sdk/types" - porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" ) diff --git a/x/delayedack/keeper/fraud_test.go b/x/delayedack/keeper/fraud_test.go index d57e75cf2..ae3555a28 100644 --- a/x/delayedack/keeper/fraud_test.go +++ b/x/delayedack/keeper/fraud_test.go @@ -1,8 +1,8 @@ package keeper_test import ( - ibctransfer "github.com/cosmos/ibc-go/v6/modules/apps/transfer" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + ibctransfer "github.com/cosmos/ibc-go/v7/modules/apps/transfer" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" damodule "github.com/dymensionxyz/dymension/v3/x/delayedack" diff --git a/x/delayedack/keeper/hooks_test.go b/x/delayedack/keeper/hooks_test.go index 447aa35cc..c9eea7a98 100644 --- a/x/delayedack/keeper/hooks_test.go +++ b/x/delayedack/keeper/hooks_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" "github.com/dymensionxyz/dymension/v3/x/delayedack/types" diff --git a/x/delayedack/keeper/invariants_test.go b/x/delayedack/keeper/invariants_test.go index 8dd627ba5..5453ac566 100644 --- a/x/delayedack/keeper/invariants_test.go +++ b/x/delayedack/keeper/invariants_test.go @@ -1,10 +1,10 @@ package keeper_test import ( - "github.com/tendermint/tendermint/libs/rand" + "github.com/cometbft/cometbft/libs/rand" - ibctransfer "github.com/cosmos/ibc-go/v6/modules/apps/transfer" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + ibctransfer "github.com/cosmos/ibc-go/v7/modules/apps/transfer" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" damodule "github.com/dymensionxyz/dymension/v3/x/delayedack" diff --git a/x/delayedack/keeper/keeper.go b/x/delayedack/keeper/keeper.go index d13273d32..db2e40a92 100644 --- a/x/delayedack/keeper/keeper.go +++ b/x/delayedack/keeper/keeper.go @@ -3,13 +3,13 @@ package keeper import ( "fmt" + "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - "github.com/tendermint/tendermint/libs/log" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" "github.com/dymensionxyz/dymension/v3/x/delayedack/types" rollapptypes "github.com/dymensionxyz/dymension/v3/x/rollapp/types" diff --git a/x/delayedack/keeper/keeper_test.go b/x/delayedack/keeper/keeper_test.go index 40153624e..6064992b0 100644 --- a/x/delayedack/keeper/keeper_test.go +++ b/x/delayedack/keeper/keeper_test.go @@ -5,8 +5,8 @@ import ( "github.com/dymensionxyz/dymension/v3/app/apptesting" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/stretchr/testify/suite" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" ) const ( @@ -23,7 +23,7 @@ func TestKeeperTestSuite(t *testing.T) { func (suite *DelayedAckTestSuite) SetupTest() { app := apptesting.Setup(suite.T(), false) - ctx := app.GetBaseApp().NewContext(false, tmproto.Header{}) + ctx := app.GetBaseApp().NewContext(false, cometbftproto.Header{}) suite.App = app suite.Ctx = ctx diff --git a/x/delayedack/keeper/rollapp_packet.go b/x/delayedack/keeper/rollapp_packet.go index 6434d5034..39fef48f6 100644 --- a/x/delayedack/keeper/rollapp_packet.go +++ b/x/delayedack/keeper/rollapp_packet.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" "github.com/dymensionxyz/dymension/v3/x/delayedack/types" diff --git a/x/delayedack/keeper/rollapp_packet_test.go b/x/delayedack/keeper/rollapp_packet_test.go index 4d02cb1f7..e62354b8e 100644 --- a/x/delayedack/keeper/rollapp_packet_test.go +++ b/x/delayedack/keeper/rollapp_packet_test.go @@ -2,7 +2,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" "github.com/dymensionxyz/dymension/v3/x/delayedack/types" diff --git a/x/delayedack/keeper/transfer.go b/x/delayedack/keeper/transfer.go index 2c50b8a42..6e8b59549 100644 --- a/x/delayedack/keeper/transfer.go +++ b/x/delayedack/keeper/transfer.go @@ -3,7 +3,7 @@ package keeper import ( "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" "github.com/dymensionxyz/dymension/v3/x/delayedack/types" rollapptypes "github.com/dymensionxyz/dymension/v3/x/rollapp/types" diff --git a/x/delayedack/module.go b/x/delayedack/module.go index 079ebe62a..569c7ddec 100644 --- a/x/delayedack/module.go +++ b/x/delayedack/module.go @@ -8,7 +8,7 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" + abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" @@ -103,17 +103,6 @@ func NewAppModule( } } -// Deprecated: use RegisterServices -func (am AppModule) Route() sdk.Route { return sdk.Route{} } - -// Deprecated: use RegisterServices -func (AppModule) QuerierRoute() string { return types.RouterKey } - -// Deprecated: use RegisterServices -func (am AppModule) LegacyQuerierHandler(_ *codec.LegacyAmino) sdk.Querier { - return nil -} - // RegisterServices registers a gRPC query service to respond to the module-specific gRPC queries func (am AppModule) RegisterServices(cfg module.Configurator) { types.RegisterQueryServer(cfg.QueryServer(), keeper.NewQuerier(am.keeper)) diff --git a/x/delayedack/proof_height_ante.go b/x/delayedack/proof_height_ante.go index 60b462131..b58d0ba45 100644 --- a/x/delayedack/proof_height_ante.go +++ b/x/delayedack/proof_height_ante.go @@ -3,8 +3,8 @@ package delayedack import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" delayedacktypes "github.com/dymensionxyz/dymension/v3/x/delayedack/types" diff --git a/x/delayedack/types/expected_keepers.go b/x/delayedack/types/expected_keepers.go index ee400ada1..bc70b8785 100644 --- a/x/delayedack/types/expected_keepers.go +++ b/x/delayedack/types/expected_keepers.go @@ -3,7 +3,7 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" "github.com/dymensionxyz/dymension/v3/x/rollapp/types" diff --git a/x/delayedack/types/genesis.pb.go b/x/delayedack/types/genesis.pb.go index 9acef1d0f..c3279ff58 100644 --- a/x/delayedack/types/genesis.pb.go +++ b/x/delayedack/types/genesis.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/delayedack/genesis.proto +// source: dymensionxyz/dymension/delayedack/genesis.proto package types import ( fmt "fmt" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" types "github.com/dymensionxyz/dymension/v3/x/common/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" @@ -36,7 +36,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_2c92ac7c69d987d1, []int{0} + return fileDescriptor_1d8c175b9e6478cc, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -84,28 +84,28 @@ func init() { } func init() { - proto.RegisterFile("dymension/delayedack/genesis.proto", fileDescriptor_2c92ac7c69d987d1) + proto.RegisterFile("dymensionxyz/dymension/delayedack/genesis.proto", fileDescriptor_1d8c175b9e6478cc) } -var fileDescriptor_2c92ac7c69d987d1 = []byte{ - // 263 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4a, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x4f, 0x49, 0xcd, 0x49, 0xac, 0x4c, 0x4d, 0x49, 0x4c, 0xce, - 0xd6, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x52, - 0x84, 0xab, 0xa9, 0xa8, 0xac, 0xd2, 0x83, 0x73, 0xf4, 0x10, 0x1a, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, - 0xf3, 0xc1, 0xaa, 0xf5, 0x41, 0x2c, 0x88, 0x46, 0x29, 0x45, 0xac, 0x86, 0x17, 0x24, 0x16, 0x25, - 0xe6, 0x42, 0xcd, 0x96, 0x52, 0x45, 0x28, 0x49, 0xce, 0xcf, 0xcd, 0xcd, 0xcf, 0xd3, 0x2f, 0xca, - 0xcf, 0xc9, 0x49, 0x2c, 0x28, 0x88, 0x2f, 0x48, 0x4c, 0xce, 0x4e, 0x2d, 0x81, 0x28, 0x53, 0xda, - 0xc2, 0xc8, 0xc5, 0xe3, 0x0e, 0x71, 0x54, 0x70, 0x49, 0x62, 0x49, 0xaa, 0x90, 0x3b, 0x17, 0x1b, - 0xc4, 0x1c, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x4d, 0x3d, 0x82, 0x8e, 0xd4, 0x0b, 0x00, - 0x6b, 0x70, 0x62, 0x39, 0x71, 0x4f, 0x9e, 0x21, 0x08, 0xaa, 0x5d, 0x28, 0x9a, 0x8b, 0x1f, 0xd5, - 0xc6, 0x62, 0x09, 0x26, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x1d, 0x5c, 0x26, 0x42, 0xdc, 0xa9, 0x17, - 0x04, 0xd1, 0x15, 0x00, 0xd6, 0x04, 0x35, 0x94, 0xaf, 0x08, 0x59, 0xb0, 0xd8, 0x29, 0xf0, 0xc4, - 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, - 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xcc, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, - 0x40, 0x86, 0xe9, 0x23, 0xdb, 0x83, 0xe0, 0xe8, 0x97, 0x19, 0xeb, 0x57, 0x20, 0x87, 0x5b, 0x49, - 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0x38, 0x40, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x2e, - 0x8a, 0x5b, 0xc5, 0xb9, 0x01, 0x00, 0x00, +var fileDescriptor_1d8c175b9e6478cc = []byte{ + // 262 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4f, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0x42, 0x70, 0xf4, 0x53, 0x52, 0x73, 0x12, 0x2b, + 0x53, 0x53, 0x12, 0x93, 0xb3, 0xf5, 0xd3, 0x53, 0xf3, 0x52, 0x8b, 0x33, 0x8b, 0xf5, 0x0a, 0x8a, + 0xf2, 0x4b, 0xf2, 0x85, 0x14, 0x91, 0x35, 0xe8, 0xc1, 0x39, 0x7a, 0x08, 0x0d, 0x52, 0x22, 0xe9, + 0xf9, 0xe9, 0xf9, 0x60, 0xd5, 0xfa, 0x20, 0x16, 0x44, 0xa3, 0x94, 0x1e, 0x61, 0x9b, 0x0a, 0x12, + 0x8b, 0x12, 0x73, 0xa1, 0x16, 0x49, 0x19, 0xe1, 0x50, 0x9f, 0x9c, 0x9f, 0x9b, 0x9b, 0x9f, 0xa7, + 0x5f, 0x94, 0x9f, 0x93, 0x93, 0x58, 0x50, 0x10, 0x5f, 0x90, 0x98, 0x9c, 0x9d, 0x5a, 0x02, 0xd1, + 0xa3, 0xb4, 0x85, 0x91, 0x8b, 0xc7, 0x1d, 0xe2, 0xdc, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x77, + 0x2e, 0x36, 0x88, 0xa1, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0x9a, 0x7a, 0x04, 0x9d, 0xaf, + 0x17, 0x00, 0xd6, 0xe0, 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0x54, 0xbb, 0x50, 0x34, 0x17, + 0x3f, 0xaa, 0x8d, 0xc5, 0x12, 0x4c, 0x0a, 0xcc, 0x1a, 0xdc, 0x46, 0x3a, 0xb8, 0x4c, 0x84, 0xb8, + 0x53, 0x2f, 0x08, 0xa2, 0x2b, 0x00, 0xac, 0x09, 0x6a, 0x28, 0x5f, 0x11, 0xb2, 0x60, 0xb1, 0x53, + 0xe0, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, + 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x99, 0xa7, 0x67, 0x96, 0x64, + 0x94, 0x26, 0x81, 0x0c, 0xc3, 0x15, 0x53, 0x65, 0xc6, 0xfa, 0x15, 0xc8, 0x81, 0x58, 0x52, 0x59, + 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x0e, 0x10, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x03, 0x19, + 0x8d, 0x31, 0xe0, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/delayedack/types/genesis_test.go b/x/delayedack/types/genesis_test.go index 5d78fbc99..e790631cd 100644 --- a/x/delayedack/types/genesis_test.go +++ b/x/delayedack/types/genesis_test.go @@ -4,8 +4,8 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - chantypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + chantypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/stretchr/testify/require" ctypes "github.com/dymensionxyz/dymension/v3/x/common/types" diff --git a/x/delayedack/types/params.pb.go b/x/delayedack/types/params.pb.go index 231c3f5d9..f80e14001 100644 --- a/x/delayedack/types/params.pb.go +++ b/x/delayedack/types/params.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/delayedack/params.proto +// source: dymensionxyz/dymension/delayedack/params.proto package types import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -41,7 +41,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_4a023ab5715cd34b, []int{0} + return fileDescriptor_9516cc08de197609, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,31 +88,33 @@ func init() { proto.RegisterType((*Params)(nil), "dymensionxyz.dymension.delayedack.Params") } -func init() { proto.RegisterFile("dymension/delayedack/params.proto", fileDescriptor_4a023ab5715cd34b) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/delayedack/params.proto", fileDescriptor_9516cc08de197609) +} -var fileDescriptor_4a023ab5715cd34b = []byte{ - // 332 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4c, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x4f, 0x49, 0xcd, 0x49, 0xac, 0x4c, 0x4d, 0x49, 0x4c, 0xce, - 0xd6, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x42, 0x28, - 0xa9, 0xa8, 0xac, 0xd2, 0x83, 0x73, 0xf4, 0x10, 0xea, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, - 0xaa, 0xf5, 0x41, 0x2c, 0x88, 0x46, 0xa5, 0x25, 0x4c, 0x5c, 0x6c, 0x01, 0x60, 0x93, 0x84, 0xdc, - 0xb8, 0x04, 0x52, 0x0b, 0xf2, 0x93, 0x33, 0xe2, 0x33, 0x53, 0x52, 0xf3, 0x4a, 0x32, 0xd3, 0x32, - 0x53, 0x8b, 0x24, 0x18, 0x15, 0x18, 0x35, 0x38, 0x9d, 0xa4, 0x3f, 0xdd, 0x93, 0x17, 0xaf, 0x4c, - 0xcc, 0xcd, 0xb1, 0x52, 0x42, 0x57, 0xa1, 0x14, 0xc4, 0x0f, 0x16, 0xf2, 0x84, 0x8b, 0x08, 0x65, - 0x70, 0xf1, 0x24, 0x15, 0x65, 0xa6, 0xa4, 0x67, 0xe6, 0xa5, 0xc7, 0xa7, 0xa5, 0xa6, 0x4a, 0x30, - 0x81, 0xcd, 0x70, 0x3d, 0x71, 0x4f, 0x9e, 0xe1, 0xd6, 0x3d, 0x79, 0xb5, 0xf4, 0xcc, 0x92, 0x8c, - 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xe4, 0xfc, 0xe2, 0xdc, 0xfc, 0x62, 0x28, 0xa5, 0x5b, - 0x9c, 0x92, 0xad, 0x5f, 0x52, 0x59, 0x90, 0x5a, 0xac, 0xe7, 0x92, 0x9a, 0xfc, 0xe9, 0x9e, 0xbc, - 0x30, 0xc4, 0x46, 0x64, 0xb3, 0x94, 0x82, 0xb8, 0x61, 0x5c, 0xb7, 0xd4, 0x54, 0xa1, 0x24, 0x2e, - 0xa9, 0x94, 0xd4, 0x9c, 0xd4, 0x92, 0xd4, 0xf8, 0x82, 0xc4, 0xe4, 0xec, 0xd4, 0x92, 0xe2, 0x78, - 0x88, 0xf3, 0x72, 0x32, 0x73, 0x33, 0x4b, 0x24, 0x98, 0x15, 0x18, 0x35, 0x58, 0x9d, 0x54, 0x3f, - 0xdd, 0x93, 0x57, 0x84, 0x98, 0x84, 0x5b, 0xad, 0x52, 0x90, 0x38, 0x44, 0x32, 0x00, 0x22, 0xe7, - 0x0a, 0x92, 0xf2, 0x01, 0xc9, 0x58, 0xb1, 0xcc, 0x58, 0x20, 0xcf, 0xe0, 0x14, 0x78, 0xe2, 0x91, - 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, - 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0xe6, 0x48, 0xfe, 0x41, 0x8e, 0x04, 0x04, 0x47, - 0xbf, 0xcc, 0x58, 0xbf, 0x02, 0x39, 0xe6, 0xc0, 0x9e, 0x4c, 0x62, 0x03, 0x47, 0x80, 0x31, 0x20, - 0x00, 0x00, 0xff, 0xff, 0x50, 0x87, 0x07, 0x2f, 0xde, 0x01, 0x00, 0x00, +var fileDescriptor_9516cc08de197609 = []byte{ + // 333 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4b, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x53, 0x52, 0x73, 0x12, + 0x2b, 0x53, 0x53, 0x12, 0x93, 0xb3, 0xf5, 0x0b, 0x12, 0x8b, 0x12, 0x73, 0x8b, 0xf5, 0x0a, 0x8a, + 0xf2, 0x4b, 0xf2, 0x85, 0x14, 0x91, 0xd5, 0x23, 0x34, 0xeb, 0x21, 0xd4, 0x4b, 0x89, 0xa4, 0xe7, + 0xa7, 0xe7, 0x83, 0x55, 0xeb, 0x83, 0x58, 0x10, 0x8d, 0x4a, 0x4b, 0x98, 0xb8, 0xd8, 0x02, 0xc0, + 0x26, 0x09, 0xb9, 0x71, 0x09, 0xa4, 0x16, 0xe4, 0x27, 0x67, 0xc4, 0x67, 0xa6, 0xa4, 0xe6, 0x95, + 0x64, 0xa6, 0x65, 0xa6, 0x16, 0x49, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x3a, 0x49, 0x7f, 0xba, 0x27, + 0x2f, 0x5e, 0x99, 0x98, 0x9b, 0x63, 0xa5, 0x84, 0xae, 0x42, 0x29, 0x88, 0x1f, 0x2c, 0xe4, 0x09, + 0x17, 0x11, 0xca, 0xe0, 0xe2, 0x49, 0x2a, 0xca, 0x4c, 0x49, 0xcf, 0xcc, 0x4b, 0x8f, 0x4f, 0x4b, + 0x4d, 0x95, 0x60, 0x02, 0x9b, 0xe1, 0x7a, 0xe2, 0x9e, 0x3c, 0xc3, 0xad, 0x7b, 0xf2, 0x6a, 0xe9, + 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xc9, 0xf9, 0xc5, 0xb9, 0xf9, 0xc5, + 0x50, 0x4a, 0xb7, 0x38, 0x25, 0x5b, 0xbf, 0xa4, 0xb2, 0x20, 0xb5, 0x58, 0xcf, 0x25, 0x35, 0xf9, + 0xd3, 0x3d, 0x79, 0x61, 0x88, 0x8d, 0xc8, 0x66, 0x29, 0x05, 0x71, 0xc3, 0xb8, 0x6e, 0xa9, 0xa9, + 0x42, 0x49, 0x5c, 0x52, 0x29, 0xa9, 0x39, 0xa9, 0x25, 0xa9, 0xf1, 0x05, 0x89, 0xc9, 0xd9, 0xa9, + 0x25, 0xc5, 0xf1, 0x10, 0xe7, 0xe5, 0x64, 0xe6, 0x66, 0x96, 0x48, 0x30, 0x2b, 0x30, 0x6a, 0xb0, + 0x3a, 0xa9, 0x7e, 0xba, 0x27, 0xaf, 0x08, 0x31, 0x09, 0xb7, 0x5a, 0xa5, 0x20, 0x71, 0x88, 0x64, + 0x00, 0x44, 0xce, 0x15, 0x24, 0xe5, 0x03, 0x92, 0xb1, 0x62, 0x99, 0xb1, 0x40, 0x9e, 0xc1, 0x29, + 0xf0, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, + 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xcc, 0x91, 0xfc, 0x83, 0x23, + 0xd2, 0xca, 0x8c, 0xf5, 0x2b, 0x90, 0x63, 0x0e, 0xec, 0xc9, 0x24, 0x36, 0x70, 0x04, 0x18, 0x03, + 0x02, 0x00, 0x00, 0xff, 0xff, 0xb8, 0x0c, 0xec, 0x8e, 0xeb, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/delayedack/types/proof_height_context.go b/x/delayedack/types/proof_height_context.go index 3b234427e..78fef60ae 100644 --- a/x/delayedack/types/proof_height_context.go +++ b/x/delayedack/types/proof_height_context.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" ) diff --git a/x/delayedack/types/query.pb.go b/x/delayedack/types/query.pb.go index a3a90f01f..68ac0bb55 100644 --- a/x/delayedack/types/query.pb.go +++ b/x/delayedack/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/delayedack/query.proto +// source: dymensionxyz/dymension/delayedack/query.proto package types @@ -7,10 +7,10 @@ import ( context "context" fmt "fmt" query "github.com/cosmos/cosmos-sdk/types/query" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" types "github.com/dymensionxyz/dymension/v3/x/common/types" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -39,7 +39,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_455c3259533734e9, []int{0} + return fileDescriptor_0d5f080aa12bfc36, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_455c3259533734e9, []int{1} + return fileDescriptor_0d5f080aa12bfc36, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -125,7 +125,7 @@ func (m *QueryRollappPacketsRequest) Reset() { *m = QueryRollappPacketsR func (m *QueryRollappPacketsRequest) String() string { return proto.CompactTextString(m) } func (*QueryRollappPacketsRequest) ProtoMessage() {} func (*QueryRollappPacketsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_455c3259533734e9, []int{2} + return fileDescriptor_0d5f080aa12bfc36, []int{2} } func (m *QueryRollappPacketsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -191,7 +191,7 @@ func (m *QueryRollappPacketListResponse) Reset() { *m = QueryRollappPack func (m *QueryRollappPacketListResponse) String() string { return proto.CompactTextString(m) } func (*QueryRollappPacketListResponse) ProtoMessage() {} func (*QueryRollappPacketListResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_455c3259533734e9, []int{3} + return fileDescriptor_0d5f080aa12bfc36, []int{3} } func (m *QueryRollappPacketListResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -241,45 +241,47 @@ func init() { proto.RegisterType((*QueryRollappPacketListResponse)(nil), "dymensionxyz.dymension.delayedack.QueryRollappPacketListResponse") } -func init() { proto.RegisterFile("dymension/delayedack/query.proto", fileDescriptor_455c3259533734e9) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/delayedack/query.proto", fileDescriptor_0d5f080aa12bfc36) +} -var fileDescriptor_455c3259533734e9 = []byte{ - // 549 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x41, 0x6b, 0x13, 0x41, - 0x18, 0xcd, 0x24, 0x31, 0xd0, 0x29, 0xf4, 0x30, 0xf6, 0xb0, 0x2c, 0x75, 0x4d, 0x17, 0xaa, 0xa9, - 0xca, 0x0c, 0x49, 0x51, 0x4f, 0x45, 0x5a, 0xd0, 0x20, 0x78, 0x48, 0x57, 0x4f, 0x3d, 0x28, 0x93, - 0x64, 0x58, 0x97, 0x66, 0x77, 0xa6, 0x3b, 0x93, 0xd2, 0xb5, 0xf4, 0xe2, 0xc9, 0x93, 0x08, 0xfe, - 0x0b, 0xff, 0x87, 0xd0, 0x63, 0xc1, 0x83, 0x9e, 0x44, 0x12, 0x7f, 0x88, 0xec, 0xcc, 0x26, 0xd9, - 0x98, 0xd6, 0x24, 0xde, 0x92, 0x99, 0xf7, 0xbe, 0xf7, 0xde, 0xf7, 0x7d, 0xb3, 0xb0, 0xda, 0x4d, - 0x42, 0x16, 0xc9, 0x80, 0x47, 0xa4, 0xcb, 0x7a, 0x34, 0x61, 0x5d, 0xda, 0x39, 0x22, 0xc7, 0x7d, - 0x16, 0x27, 0x58, 0xc4, 0x5c, 0x71, 0xb4, 0x39, 0x46, 0x9c, 0x26, 0xef, 0xf0, 0xf8, 0x0f, 0x9e, - 0xc0, 0xed, 0x75, 0x9f, 0xfb, 0x5c, 0xa3, 0x49, 0xfa, 0xcb, 0x10, 0xed, 0x0d, 0x9f, 0x73, 0xbf, - 0xc7, 0x08, 0x15, 0x01, 0xa1, 0x51, 0xc4, 0x15, 0x55, 0x01, 0x8f, 0x64, 0x76, 0x7b, 0xaf, 0xc3, - 0x65, 0xc8, 0x25, 0x69, 0x53, 0xc9, 0x8c, 0x1e, 0x39, 0xa9, 0xb7, 0x99, 0xa2, 0x75, 0x22, 0xa8, - 0x1f, 0x44, 0x1a, 0x9c, 0x61, 0x37, 0xaf, 0x34, 0x29, 0x68, 0x4c, 0xc3, 0x51, 0xb9, 0x5b, 0x13, - 0x48, 0x87, 0x87, 0x21, 0x8f, 0x88, 0x54, 0x54, 0xf5, 0x47, 0xd7, 0x5b, 0x33, 0xd7, 0x31, 0xef, - 0xf5, 0xa8, 0x10, 0x6f, 0x04, 0xed, 0x1c, 0x31, 0x65, 0x60, 0xee, 0x3a, 0x44, 0x07, 0xa9, 0x95, - 0x96, 0x2e, 0xed, 0xb1, 0xe3, 0x3e, 0x93, 0xca, 0x7d, 0x0d, 0x6f, 0x4e, 0x9d, 0x4a, 0xc1, 0x23, - 0xc9, 0x50, 0x13, 0x56, 0x8c, 0x05, 0x0b, 0x54, 0x41, 0x6d, 0xb5, 0xb1, 0x8d, 0xe7, 0x76, 0x0a, - 0x9b, 0x12, 0xfb, 0xe5, 0x8b, 0x9f, 0xb7, 0x0b, 0x5e, 0x46, 0x77, 0x3f, 0x14, 0xa1, 0xad, 0x05, - 0x3c, 0xe3, 0xa9, 0xa5, 0x2d, 0x8d, 0xe4, 0xd1, 0x06, 0x5c, 0xc9, 0xcc, 0x3e, 0xef, 0x6a, 0xa9, - 0x15, 0x6f, 0x72, 0x80, 0x76, 0x61, 0xc5, 0x24, 0xb5, 0x8a, 0x55, 0x50, 0x5b, 0x6b, 0x6c, 0x5d, - 0xe7, 0xc2, 0xe4, 0xc6, 0x2f, 0x35, 0xd8, 0xcb, 0x48, 0xe8, 0x29, 0x2c, 0xab, 0x44, 0x30, 0xab, - 0xa4, 0xc9, 0xf5, 0x39, 0xe4, 0x29, 0x83, 0xf8, 0x55, 0x22, 0x98, 0xa7, 0xe9, 0xe8, 0x19, 0x84, - 0x93, 0xa9, 0x59, 0x65, 0xdd, 0x8f, 0x3b, 0xd8, 0x8c, 0x18, 0xa7, 0x23, 0xc6, 0x66, 0xa5, 0xb2, - 0x11, 0xe3, 0x16, 0xf5, 0x59, 0x96, 0xcf, 0xcb, 0x31, 0xdd, 0xaf, 0x00, 0x3a, 0xb3, 0xad, 0x78, - 0x11, 0x48, 0x35, 0x6e, 0xfb, 0x21, 0x5c, 0x8b, 0xa7, 0xfa, 0x64, 0x81, 0x6a, 0xa9, 0xb6, 0xda, - 0x78, 0xb0, 0x8c, 0xf7, 0x6c, 0x02, 0x7f, 0x55, 0x42, 0xcd, 0xa9, 0x18, 0x45, 0x1d, 0xe3, 0xee, - 0xdc, 0x18, 0xc6, 0x58, 0x3e, 0x47, 0xe3, 0x63, 0x09, 0xde, 0xd0, 0x39, 0xd0, 0x17, 0x00, 0x2b, - 0x66, 0xea, 0xe8, 0xe1, 0x02, 0x0b, 0x32, 0xbb, 0x7e, 0xf6, 0xa3, 0x65, 0x69, 0xc6, 0x8f, 0x5b, - 0x7f, 0xff, 0xed, 0xf7, 0xe7, 0xe2, 0x7d, 0xb4, 0x4d, 0xf2, 0x7c, 0xf2, 0x8f, 0xb7, 0x84, 0xbe, - 0x03, 0x08, 0x9b, 0x4c, 0x8d, 0xda, 0xb1, 0xbb, 0xa8, 0xf2, 0x95, 0x8b, 0x6b, 0xef, 0xfd, 0x17, - 0x3d, 0x3f, 0x6c, 0xb7, 0xa9, 0x33, 0xec, 0xa1, 0x27, 0x0b, 0x65, 0xd0, 0xea, 0xe4, 0x6c, 0xfc, - 0x38, 0xce, 0xc9, 0x99, 0x59, 0xf3, 0xf3, 0xfd, 0x83, 0x8b, 0x81, 0x03, 0x2e, 0x07, 0x0e, 0xf8, - 0x35, 0x70, 0xc0, 0xa7, 0xa1, 0x53, 0xb8, 0x1c, 0x3a, 0x85, 0x1f, 0x43, 0xa7, 0x70, 0xf8, 0xd8, - 0x0f, 0xd4, 0xdb, 0x7e, 0x3b, 0x5d, 0x93, 0xeb, 0x44, 0x4e, 0x76, 0xc8, 0x69, 0x5e, 0x29, 0x5d, - 0x79, 0xd9, 0xae, 0xe8, 0x6f, 0xc6, 0xce, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x85, 0xd5, 0x3e, - 0xb3, 0x43, 0x05, 0x00, 0x00, +var fileDescriptor_0d5f080aa12bfc36 = []byte{ + // 547 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x4f, 0x6b, 0x13, 0x41, + 0x1c, 0xcd, 0x24, 0x31, 0xd0, 0x29, 0xf4, 0x30, 0xf6, 0x10, 0x96, 0xb2, 0xc6, 0x05, 0x35, 0xf5, + 0xcf, 0x0c, 0xd9, 0xa2, 0x9e, 0x8a, 0xb4, 0xa0, 0x41, 0xf0, 0x90, 0xae, 0x9e, 0x7a, 0x50, 0x26, + 0xc9, 0xb0, 0x2e, 0xcd, 0xee, 0x4c, 0x77, 0x26, 0xa5, 0x6b, 0xe9, 0xc5, 0x93, 0x27, 0x11, 0xfc, + 0x16, 0x7e, 0x0f, 0xa1, 0xc7, 0x82, 0x07, 0x3d, 0x89, 0x24, 0x7e, 0x10, 0xd9, 0x99, 0xcd, 0x66, + 0x63, 0x8d, 0x49, 0x7b, 0xcb, 0x6e, 0xde, 0x9b, 0xf7, 0xde, 0xef, 0xf7, 0x66, 0xe1, 0x83, 0x7e, + 0x12, 0xb2, 0x48, 0x06, 0x3c, 0x3a, 0x4e, 0xde, 0x91, 0xfc, 0x81, 0xf4, 0xd9, 0x80, 0x26, 0xac, + 0x4f, 0x7b, 0x07, 0xe4, 0x70, 0xc8, 0xe2, 0x04, 0x8b, 0x98, 0x2b, 0x8e, 0x6e, 0x16, 0xe1, 0x38, + 0x7f, 0xc0, 0x53, 0xb8, 0xb5, 0xee, 0x73, 0x9f, 0x6b, 0x34, 0x49, 0x7f, 0x19, 0xa2, 0xb5, 0xe1, + 0x73, 0xee, 0x0f, 0x18, 0xa1, 0x22, 0x20, 0x34, 0x8a, 0xb8, 0xa2, 0x2a, 0xe0, 0x91, 0xcc, 0xfe, + 0xbd, 0xdb, 0xe3, 0x32, 0xe4, 0x92, 0x74, 0xa9, 0x64, 0x46, 0x8f, 0x1c, 0xb5, 0xba, 0x4c, 0xd1, + 0x16, 0x11, 0xd4, 0x0f, 0x22, 0x0d, 0xce, 0xb0, 0x78, 0xb1, 0x63, 0x41, 0x63, 0x1a, 0xe6, 0x67, + 0xcf, 0xc1, 0xf7, 0x78, 0x18, 0xf2, 0x88, 0x48, 0x45, 0xd5, 0x70, 0x82, 0x75, 0xff, 0x8f, 0x8d, + 0xf9, 0x60, 0x40, 0x85, 0x78, 0x23, 0x68, 0xef, 0x80, 0x29, 0xc3, 0x71, 0xd6, 0x21, 0xda, 0x4b, + 0x1d, 0x77, 0xb4, 0xa8, 0xc7, 0x0e, 0x87, 0x4c, 0x2a, 0xe7, 0x35, 0xbc, 0x3e, 0xf3, 0x56, 0x0a, + 0x1e, 0x49, 0x86, 0xda, 0xb0, 0x66, 0xcc, 0xd5, 0x41, 0x03, 0x34, 0x57, 0xdd, 0x4d, 0xbc, 0x70, + 0xa0, 0xd8, 0x1c, 0xb1, 0x5b, 0x3d, 0xfb, 0x79, 0xa3, 0xe4, 0x65, 0x74, 0xe7, 0x43, 0x19, 0x5a, + 0x5a, 0xc0, 0x33, 0x9e, 0x3a, 0xda, 0xd2, 0x44, 0x1e, 0x6d, 0xc0, 0x95, 0xcc, 0xec, 0xf3, 0xbe, + 0x96, 0x5a, 0xf1, 0xa6, 0x2f, 0xd0, 0x36, 0xac, 0x99, 0xd8, 0xf5, 0x72, 0x03, 0x34, 0xd7, 0xdc, + 0x5b, 0xf3, 0x5c, 0x98, 0xdc, 0xf8, 0xa5, 0x06, 0x7b, 0x19, 0x09, 0x3d, 0x85, 0x55, 0x95, 0x08, + 0x56, 0xaf, 0x68, 0x72, 0x6b, 0x01, 0x79, 0xc6, 0x20, 0x7e, 0x95, 0x08, 0xe6, 0x69, 0x3a, 0x7a, + 0x06, 0xe1, 0x74, 0xb9, 0xf5, 0xaa, 0x9e, 0xc7, 0x6d, 0x6c, 0x9a, 0x80, 0xd3, 0x26, 0x60, 0xd3, + 0xbc, 0xac, 0x09, 0xb8, 0x43, 0x7d, 0x96, 0xe5, 0xf3, 0x0a, 0x4c, 0xe7, 0x2b, 0x80, 0xf6, 0xc5, + 0x51, 0xbc, 0x08, 0xa4, 0xca, 0xc7, 0xbe, 0x0f, 0xd7, 0xe2, 0x99, 0x39, 0xd5, 0x41, 0xa3, 0xd2, + 0x5c, 0x75, 0xef, 0x5f, 0xc6, 0x7b, 0xb6, 0x81, 0xbf, 0x4e, 0x42, 0xed, 0x99, 0x18, 0x65, 0x1d, + 0xe3, 0xce, 0xc2, 0x18, 0xc6, 0x58, 0x31, 0x87, 0xfb, 0xb1, 0x02, 0xaf, 0xe9, 0x1c, 0xe8, 0x0b, + 0x80, 0x35, 0xb3, 0x75, 0xf4, 0x70, 0x89, 0x82, 0x5c, 0xac, 0x9f, 0xf5, 0xe8, 0xb2, 0x34, 0xe3, + 0xc7, 0x69, 0xbd, 0xff, 0xf6, 0xfb, 0x73, 0xf9, 0x1e, 0xda, 0x24, 0xcb, 0xde, 0x32, 0xf4, 0x1d, + 0x40, 0xd8, 0x66, 0x6a, 0x32, 0x8e, 0xed, 0x65, 0x95, 0xff, 0x59, 0x5c, 0x6b, 0xe7, 0x4a, 0xf4, + 0xe2, 0xb2, 0x9d, 0xb6, 0xce, 0xb0, 0x83, 0x9e, 0x2c, 0x95, 0x41, 0xab, 0x93, 0x93, 0xfc, 0x72, + 0x9c, 0x92, 0x13, 0x53, 0xf3, 0xd3, 0xdd, 0xbd, 0xb3, 0x91, 0x0d, 0xce, 0x47, 0x36, 0xf8, 0x35, + 0xb2, 0xc1, 0xa7, 0xb1, 0x5d, 0x3a, 0x1f, 0xdb, 0xa5, 0x1f, 0x63, 0xbb, 0xb4, 0xff, 0xd8, 0x0f, + 0xd4, 0xdb, 0x61, 0x37, 0xad, 0xc9, 0x3c, 0x91, 0xa3, 0x2d, 0x72, 0x5c, 0x54, 0x4a, 0x2b, 0x2f, + 0xbb, 0x35, 0xfd, 0xcd, 0xd8, 0xfa, 0x13, 0x00, 0x00, 0xff, 0xff, 0xe3, 0xbb, 0xe9, 0x96, 0x77, + 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -399,7 +401,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "dymension/delayedack/query.proto", + Metadata: "dymensionxyz/dymension/delayedack/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/delayedack/types/query.pb.gw.go b/x/delayedack/types/query.pb.gw.go index 17035a789..29443f2bb 100644 --- a/x/delayedack/types/query.pb.gw.go +++ b/x/delayedack/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: dymension/delayedack/query.proto +// source: dymensionxyz/dymension/delayedack/query.proto /* Package types is a reverse proxy. diff --git a/x/delayedack/types/rollapp_packets_list_filter_test.go b/x/delayedack/types/rollapp_packets_list_filter_test.go index 66cb22af9..4e7b9ce5b 100644 --- a/x/delayedack/types/rollapp_packets_list_filter_test.go +++ b/x/delayedack/types/rollapp_packets_list_filter_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/stretchr/testify/require" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" diff --git a/x/denommetadata/client/cli/tx_create_denommetadata.go b/x/denommetadata/client/cli/tx_create_denommetadata.go index 42e4409c8..b04845b2e 100644 --- a/x/denommetadata/client/cli/tx_create_denommetadata.go +++ b/x/denommetadata/client/cli/tx_create_denommetadata.go @@ -52,7 +52,11 @@ func NewCmdSubmitCreateDenomMetadataProposal() *cobra.Command { return err } - txf := tx.NewFactoryCLI(clientCtx, cmd.Flags()).WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) + txfCli, err := tx.NewFactoryCLI(clientCtx, cmd.Flags()) + if err != nil { + return err + } + txf := txfCli.WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) return tx.GenerateOrBroadcastTxWithFactory(clientCtx, txf, msg) }, } diff --git a/x/denommetadata/client/cli/tx_update_denommetadata.go b/x/denommetadata/client/cli/tx_update_denommetadata.go index 7fab3767b..a79db07ae 100644 --- a/x/denommetadata/client/cli/tx_update_denommetadata.go +++ b/x/denommetadata/client/cli/tx_update_denommetadata.go @@ -52,7 +52,11 @@ func NewCmdSubmitUpdateDenomMetadataProposal() *cobra.Command { return err } - txf := tx.NewFactoryCLI(clientCtx, cmd.Flags()).WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) + txfCli, err := tx.NewFactoryCLI(clientCtx, cmd.Flags()) + if err != nil { + return err + } + txf := txfCli.WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) return tx.GenerateOrBroadcastTxWithFactory(clientCtx, txf, msg) }, } diff --git a/x/denommetadata/ibc_middleware.go b/x/denommetadata/ibc_middleware.go index b8fca9633..ec149c03c 100644 --- a/x/denommetadata/ibc_middleware.go +++ b/x/denommetadata/ibc_middleware.go @@ -7,11 +7,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v6/modules/core/exported" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v7/modules/core/exported" "github.com/dymensionxyz/gerr-cosmos/gerrc" "github.com/dymensionxyz/sdk-utils/utils/uibc" diff --git a/x/denommetadata/ibc_middleware_test.go b/x/denommetadata/ibc_middleware_test.go index 3a0b127ff..b9ed3e6ca 100644 --- a/x/denommetadata/ibc_middleware_test.go +++ b/x/denommetadata/ibc_middleware_test.go @@ -5,18 +5,18 @@ import ( "fmt" "testing" + cometbft "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" errortypes "github.com/cosmos/cosmos-sdk/types/errors" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v6/modules/core/exported" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v7/modules/core/exported" "github.com/dymensionxyz/gerr-cosmos/gerrc" "github.com/stretchr/testify/require" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" "github.com/dymensionxyz/dymension/v3/x/denommetadata" "github.com/dymensionxyz/dymension/v3/x/denommetadata/types" @@ -108,7 +108,7 @@ func TestIBCModule_OnRecvPacket(t *testing.T) { tt.rollappKeeper.packetData = packetData packetDataBytes := types.ModuleCdc.MustMarshalJSON(&packetData) packet := channeltypes.Packet{Data: packetDataBytes, SourcePort: "transfer", SourceChannel: "channel-0"} - got := im.OnRecvPacket(sdk.NewContext(nil, tmproto.Header{}, false, nil), packet, sdk.AccAddress{}) + got := im.OnRecvPacket(sdk.NewContext(nil, cometbft.Header{}, false, nil), packet, sdk.AccAddress{}) require.Equal(t, tt.wantAck, got) if !tt.wantAck.Success() { return diff --git a/x/denommetadata/keeper/keeper.go b/x/denommetadata/keeper/keeper.go index 8052c817b..1d4e37cf2 100644 --- a/x/denommetadata/keeper/keeper.go +++ b/x/denommetadata/keeper/keeper.go @@ -3,9 +3,9 @@ package keeper import ( "fmt" + "github.com/cometbft/cometbft/libs/log" sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/tendermint/tendermint/libs/log" "github.com/dymensionxyz/gerr-cosmos/gerrc" diff --git a/x/denommetadata/keeper/keeper_test.go b/x/denommetadata/keeper/keeper_test.go index 3e8f1f4d4..3d1d766fa 100644 --- a/x/denommetadata/keeper/keeper_test.go +++ b/x/denommetadata/keeper/keeper_test.go @@ -4,10 +4,10 @@ import ( "testing" errorsmod "cosmossdk.io/errors" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/dymensionxyz/gerr-cosmos/gerrc" "github.com/stretchr/testify/suite" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" "github.com/dymensionxyz/dymension/v3/app/apptesting" ) @@ -22,7 +22,7 @@ func TestKeeperTestSuite(t *testing.T) { func (suite *KeeperTestSuite) SetupTest() { app := apptesting.Setup(suite.T(), false) - ctx := app.GetBaseApp().NewContext(false, tmproto.Header{}) + ctx := app.GetBaseApp().NewContext(false, cometbftproto.Header{}) suite.App = app suite.Ctx = ctx diff --git a/x/denommetadata/module.go b/x/denommetadata/module.go index caf46f22c..8efa93ddd 100644 --- a/x/denommetadata/module.go +++ b/x/denommetadata/module.go @@ -2,12 +2,11 @@ package denommetadata import ( "encoding/json" - "fmt" + abci "github.com/cometbft/cometbft/abci/types" "github.com/gorilla/mux" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" @@ -115,21 +114,6 @@ func (am AppModule) Name() string { return am.AppModuleBasic.Name() } -// Route returns the module's message routing key. -func (am AppModule) Route() sdk.Route { - return sdk.Route{} -} - -// QuerierRoute returns the module's query routing key. -func (AppModule) QuerierRoute() string { return types.QuerierRoute } - -// LegacyQuerierHandler returns the incentive module's Querier. -func (am AppModule) LegacyQuerierHandler(legacyQuerierCdc *codec.LegacyAmino) sdk.Querier { - return func(sdk.Context, []string, abci.RequestQuery) ([]byte, error) { - return nil, fmt.Errorf("legacy querier not supported for the x/%s module", types.ModuleName) - } -} - // RegisterServices registers the module's services. func (am AppModule) RegisterServices(cfg module.Configurator) { } diff --git a/x/denommetadata/types/expected_keepers.go b/x/denommetadata/types/expected_keepers.go index 421edfe58..374281ce1 100644 --- a/x/denommetadata/types/expected_keepers.go +++ b/x/denommetadata/types/expected_keepers.go @@ -3,7 +3,6 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/bank/types" - rollapptypes "github.com/dymensionxyz/dymension/v3/x/rollapp/types" ) diff --git a/x/denommetadata/types/genesis.pb.go b/x/denommetadata/types/genesis.pb.go index 30b919bbd..df6e3aaa6 100644 --- a/x/denommetadata/types/genesis.pb.go +++ b/x/denommetadata/types/genesis.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/denommetadata/genesis.proto +// source: dymensionxyz/dymension/denommetadata/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -32,7 +32,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_3fbe3d48c38c9744, []int{0} + return fileDescriptor_c7643180fae6488f, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -66,21 +66,21 @@ func init() { } func init() { - proto.RegisterFile("dymension/denommetadata/genesis.proto", fileDescriptor_3fbe3d48c38c9744) + proto.RegisterFile("dymensionxyz/dymension/denommetadata/genesis.proto", fileDescriptor_c7643180fae6488f) } -var fileDescriptor_3fbe3d48c38c9744 = []byte{ +var fileDescriptor_c7643180fae6488f = []byte{ // 163 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4d, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x4f, 0x49, 0xcd, 0xcb, 0xcf, 0xcd, 0x4d, 0x2d, 0x49, 0x4c, - 0x49, 0x2c, 0x49, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, - 0xc9, 0x17, 0x52, 0x81, 0x2b, 0xab, 0xa8, 0xac, 0xd2, 0x83, 0x73, 0xf4, 0x50, 0xf4, 0x48, 0x89, - 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x35, 0xe8, 0x83, 0x58, 0x10, 0xbd, 0x4a, 0x7c, 0x5c, 0x3c, 0xee, - 0x10, 0xc3, 0x82, 0x4b, 0x12, 0x4b, 0x52, 0x9d, 0x42, 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, - 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, - 0x58, 0x8e, 0x21, 0xca, 0x2a, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, - 0xd9, 0x42, 0x04, 0x47, 0xbf, 0xcc, 0x58, 0xbf, 0x02, 0xcd, 0xa5, 0x25, 0x95, 0x05, 0xa9, 0xc5, - 0x49, 0x6c, 0x60, 0xcb, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x38, 0x72, 0xb3, 0x3a, 0xd1, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0x4a, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x53, 0x52, 0xf3, 0xf2, + 0x73, 0x73, 0x53, 0x4b, 0x12, 0x53, 0x12, 0x4b, 0x12, 0xf5, 0xd3, 0x53, 0xf3, 0x52, 0x8b, 0x33, + 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0x54, 0x90, 0xf5, 0xe8, 0xc1, 0x39, 0x7a, 0x28, + 0x7a, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x1a, 0xf4, 0x41, 0x2c, 0x88, 0x5e, 0x25, 0x3e, + 0x2e, 0x1e, 0x77, 0x88, 0x61, 0xc1, 0x25, 0x89, 0x25, 0xa9, 0x4e, 0x21, 0x27, 0x1e, 0xc9, 0x31, + 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, + 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0x65, 0x95, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, + 0x9f, 0xab, 0x8f, 0xc3, 0x91, 0x65, 0xc6, 0xfa, 0x15, 0x68, 0x2e, 0x2d, 0xa9, 0x2c, 0x48, 0x2d, + 0x4e, 0x62, 0x03, 0x5b, 0x66, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x66, 0xe8, 0x52, 0x69, 0xde, 0x00, 0x00, 0x00, } diff --git a/x/denommetadata/types/gov_denommetadata.pb.go b/x/denommetadata/types/gov_denommetadata.pb.go index 22411a900..25f730f92 100644 --- a/x/denommetadata/types/gov_denommetadata.pb.go +++ b/x/denommetadata/types/gov_denommetadata.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/denommetadata/gov_denommetadata.proto +// source: dymensionxyz/dymension/denommetadata/gov_denommetadata.proto package types import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/x/bank/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -33,7 +33,7 @@ type CreateDenomMetadataProposal struct { func (m *CreateDenomMetadataProposal) Reset() { *m = CreateDenomMetadataProposal{} } func (*CreateDenomMetadataProposal) ProtoMessage() {} func (*CreateDenomMetadataProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_ba1b4bedb498208a, []int{0} + return fileDescriptor_3545672cfaae5754, []int{0} } func (m *CreateDenomMetadataProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -71,7 +71,7 @@ type UpdateDenomMetadataProposal struct { func (m *UpdateDenomMetadataProposal) Reset() { *m = UpdateDenomMetadataProposal{} } func (*UpdateDenomMetadataProposal) ProtoMessage() {} func (*UpdateDenomMetadataProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_ba1b4bedb498208a, []int{1} + return fileDescriptor_3545672cfaae5754, []int{1} } func (m *UpdateDenomMetadataProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -106,30 +106,30 @@ func init() { } func init() { - proto.RegisterFile("dymension/denommetadata/gov_denommetadata.proto", fileDescriptor_ba1b4bedb498208a) + proto.RegisterFile("dymensionxyz/dymension/denommetadata/gov_denommetadata.proto", fileDescriptor_3545672cfaae5754) } -var fileDescriptor_ba1b4bedb498208a = []byte{ +var fileDescriptor_3545672cfaae5754 = []byte{ // 298 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4f, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x4f, 0x49, 0xcd, 0xcb, 0xcf, 0xcd, 0x4d, 0x2d, 0x49, 0x4c, - 0x49, 0x2c, 0x49, 0xd4, 0x4f, 0xcf, 0x2f, 0x8b, 0x47, 0x11, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x52, 0x81, 0x6b, 0xa8, 0xa8, 0xac, 0xd2, 0x83, 0x73, 0xf4, 0x50, 0xd4, 0x4a, 0x89, 0xa4, - 0xe7, 0xa7, 0xe7, 0x83, 0x35, 0xe8, 0x83, 0x58, 0x10, 0xbd, 0x52, 0x72, 0xc9, 0xf9, 0xc5, 0xb9, - 0xf9, 0xc5, 0xfa, 0x49, 0x89, 0x79, 0xd9, 0xfa, 0x65, 0x86, 0x49, 0xa9, 0x25, 0x89, 0x86, 0x60, - 0x0e, 0x44, 0x5e, 0x69, 0x15, 0x23, 0x97, 0xb4, 0x73, 0x51, 0x6a, 0x62, 0x49, 0xaa, 0x0b, 0xc8, - 0x34, 0x5f, 0xa8, 0x69, 0x01, 0x45, 0xf9, 0x05, 0xf9, 0xc5, 0x89, 0x39, 0x42, 0x22, 0x5c, 0xac, - 0x25, 0x99, 0x25, 0x39, 0xa9, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x41, 0x10, 0x8e, 0x90, 0x02, - 0x17, 0x77, 0x4a, 0x6a, 0x71, 0x72, 0x51, 0x66, 0x41, 0x49, 0x66, 0x7e, 0x9e, 0x04, 0x13, 0x58, - 0x0e, 0x59, 0x48, 0xc8, 0x93, 0x8b, 0xb7, 0x24, 0x3f, 0x3b, 0x35, 0x0f, 0x66, 0xa0, 0x04, 0xb3, - 0x02, 0xb3, 0x06, 0xb7, 0x91, 0xac, 0x1e, 0xc4, 0x3d, 0x7a, 0x60, 0x27, 0x40, 0xdd, 0xa3, 0x07, - 0x53, 0xe4, 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0xaa, 0x4e, 0x2b, 0x8e, 0x8e, 0x05, 0xf2, - 0x0c, 0x33, 0x16, 0xc8, 0x33, 0x80, 0x1d, 0x1b, 0x5a, 0x90, 0x32, 0x24, 0x1c, 0xeb, 0x14, 0x72, - 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, - 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x56, 0xe9, 0x99, 0x25, 0x19, 0xa5, - 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0xc8, 0x51, 0x8b, 0x94, 0x30, 0xca, 0x8c, 0xf5, 0x2b, 0xd0, - 0x52, 0x47, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0x38, 0xda, 0x8c, 0x01, 0x01, 0x00, 0x00, - 0xff, 0xff, 0xaf, 0xc0, 0x01, 0xd7, 0x45, 0x02, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xb2, 0x49, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x53, 0x52, 0xf3, 0xf2, + 0x73, 0x73, 0x53, 0x4b, 0x12, 0x53, 0x12, 0x4b, 0x12, 0xf5, 0xd3, 0xf3, 0xcb, 0xe2, 0x51, 0x44, + 0xf4, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0x54, 0x90, 0x75, 0xeb, 0xc1, 0x39, 0x7a, 0x28, 0x6a, + 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x1a, 0xf4, 0x41, 0x2c, 0x88, 0x5e, 0x29, 0xb9, 0xe4, + 0xfc, 0xe2, 0xdc, 0xfc, 0x62, 0xfd, 0xa4, 0xc4, 0xbc, 0x6c, 0xfd, 0x32, 0xc3, 0xa4, 0xd4, 0x92, + 0x44, 0x43, 0x30, 0x07, 0x22, 0xaf, 0xb4, 0x8a, 0x91, 0x4b, 0xda, 0xb9, 0x28, 0x35, 0xb1, 0x24, + 0xd5, 0x05, 0x64, 0x9a, 0x2f, 0xd4, 0xb4, 0x80, 0xa2, 0xfc, 0x82, 0xfc, 0xe2, 0xc4, 0x1c, 0x21, + 0x11, 0x2e, 0xd6, 0x92, 0xcc, 0x92, 0x9c, 0x54, 0x09, 0x46, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x08, + 0x47, 0x48, 0x81, 0x8b, 0x3b, 0x25, 0xb5, 0x38, 0xb9, 0x28, 0xb3, 0xa0, 0x24, 0x33, 0x3f, 0x4f, + 0x82, 0x09, 0x2c, 0x87, 0x2c, 0x24, 0xe4, 0xc9, 0xc5, 0x5b, 0x92, 0x9f, 0x9d, 0x9a, 0x07, 0x33, + 0x50, 0x82, 0x59, 0x81, 0x59, 0x83, 0xdb, 0x48, 0x56, 0x0f, 0xe2, 0x1e, 0x3d, 0xb0, 0x13, 0xa0, + 0xee, 0xd1, 0x83, 0x29, 0x72, 0x62, 0x39, 0x71, 0x4f, 0x9e, 0x21, 0x08, 0x55, 0xa7, 0x15, 0x47, + 0xc7, 0x02, 0x79, 0x86, 0x19, 0x0b, 0xe4, 0x19, 0xc0, 0x8e, 0x0d, 0x2d, 0x48, 0x19, 0x12, 0x8e, + 0x75, 0x0a, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, + 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xab, 0xf4, 0xcc, + 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x1c, 0x09, 0xa3, 0xcc, 0x58, 0xbf, 0x02, + 0x2d, 0x75, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0xa3, 0xcd, 0x18, 0x10, 0x00, 0x00, + 0xff, 0xff, 0xc3, 0x84, 0x79, 0xa5, 0x52, 0x02, 0x00, 0x00, } func (m *CreateDenomMetadataProposal) Marshal() (dAtA []byte, err error) { diff --git a/x/eibc/keeper/handler.go b/x/eibc/keeper/handler.go index 323db177f..2bbf0c480 100644 --- a/x/eibc/keeper/handler.go +++ b/x/eibc/keeper/handler.go @@ -4,8 +4,8 @@ import ( "fmt" sdk "github.com/cosmos/cosmos-sdk/types" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" dacktypes "github.com/dymensionxyz/dymension/v3/x/delayedack/types" "github.com/dymensionxyz/dymension/v3/x/eibc/types" diff --git a/x/eibc/keeper/handler_test.go b/x/eibc/keeper/handler_test.go index 828302f0f..f374e010a 100644 --- a/x/eibc/keeper/handler_test.go +++ b/x/eibc/keeper/handler_test.go @@ -2,8 +2,7 @@ package keeper_test import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" dacktypes "github.com/dymensionxyz/dymension/v3/x/delayedack/types" ) diff --git a/x/eibc/keeper/keeper.go b/x/eibc/keeper/keeper.go index dba086647..154be75a2 100644 --- a/x/eibc/keeper/keeper.go +++ b/x/eibc/keeper/keeper.go @@ -3,11 +3,11 @@ package keeper import ( "fmt" + "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/tendermint/tendermint/libs/log" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" diff --git a/x/eibc/keeper/keeper_test.go b/x/eibc/keeper/keeper_test.go index 69dabe3fc..4add4a809 100644 --- a/x/eibc/keeper/keeper_test.go +++ b/x/eibc/keeper/keeper_test.go @@ -7,13 +7,13 @@ import ( "github.com/dymensionxyz/dymension/v3/x/eibc/keeper" "github.com/dymensionxyz/dymension/v3/x/eibc/types" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/stretchr/testify/suite" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" ) @@ -64,7 +64,7 @@ func TestKeeperTestSuite(t *testing.T) { func (suite *KeeperTestSuite) SetupTest() { app := apptesting.Setup(suite.T(), false) - ctx := app.GetBaseApp().NewContext(false, tmproto.Header{}) + ctx := app.GetBaseApp().NewContext(false, cometbftproto.Header{}) queryHelper := baseapp.NewQueryServerTestHelper(ctx, app.InterfaceRegistry()) types.RegisterQueryServer(queryHelper, keeper.NewQuerier(app.EIBCKeeper)) queryClient := types.NewQueryClient(queryHelper) diff --git a/x/eibc/keeper/msg_server.go b/x/eibc/keeper/msg_server.go index 4d3c3a15e..08fe773ff 100644 --- a/x/eibc/keeper/msg_server.go +++ b/x/eibc/keeper/msg_server.go @@ -6,7 +6,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" "github.com/dymensionxyz/dymension/v3/x/eibc/types" diff --git a/x/eibc/module.go b/x/eibc/module.go index 1eff629f7..dae1df483 100644 --- a/x/eibc/module.go +++ b/x/eibc/module.go @@ -10,7 +10,7 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" + abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" @@ -111,17 +111,6 @@ func NewAppModule( } } -// Deprecated: use RegisterServices -func (am AppModule) Route() sdk.Route { return sdk.Route{} } - -// Deprecated: use RegisterServices -func (AppModule) QuerierRoute() string { return types.RouterKey } - -// Deprecated: use RegisterServices -func (am AppModule) LegacyQuerierHandler(_ *codec.LegacyAmino) sdk.Querier { - return nil -} - // RegisterServices registers a gRPC query service to respond to the module-specific gRPC queries func (am AppModule) RegisterServices(cfg module.Configurator) { types.RegisterMsgServer(cfg.MsgServer(), keeper.NewMsgServerImpl(am.keeper)) diff --git a/x/eibc/module_simulation.go b/x/eibc/module_simulation.go index a892f7c3b..66015123d 100644 --- a/x/eibc/module_simulation.go +++ b/x/eibc/module_simulation.go @@ -1,14 +1,12 @@ package eibc import ( - "math/rand" - "github.com/cosmos/cosmos-sdk/baseapp" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" + "github.com/dymensionxyz/dymension/v3/app/params" "github.com/dymensionxyz/dymension/v3/testutil/sample" eibcsimulation "github.com/dymensionxyz/dymension/v3/x/eibc/simulation" "github.com/dymensionxyz/dymension/v3/x/eibc/types" @@ -18,7 +16,7 @@ import ( var ( _ = sample.AccAddress _ = eibcsimulation.FindAccount - _ = simappparams.StakePerAccount + _ = params.StakePerAccount _ = simulation.MsgEntryKind _ = baseapp.Paramspace ) @@ -45,11 +43,6 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP return nil } -// RandomizedParams creates randomized param changes for the simulator -func (am AppModule) RandomizedParams(_ *rand.Rand) []simtypes.ParamChange { - return []simtypes.ParamChange{} -} - // RegisterStoreDecoder registers a decoder func (am AppModule) RegisterStoreDecoder(_ sdk.StoreDecoderRegistry) {} diff --git a/x/eibc/types/demand_order.go b/x/eibc/types/demand_order.go index 88fc9b532..ca3f0f36b 100644 --- a/x/eibc/types/demand_order.go +++ b/x/eibc/types/demand_order.go @@ -8,7 +8,7 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - ibctransfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" + ibctransfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" ) diff --git a/x/eibc/types/demand_order.pb.go b/x/eibc/types/demand_order.pb.go index 89814afba..808374523 100644 --- a/x/eibc/types/demand_order.pb.go +++ b/x/eibc/types/demand_order.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/eibc/demand_order.proto +// source: dymensionxyz/dymension/eibc/demand_order.proto package types @@ -7,9 +7,9 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" types1 "github.com/dymensionxyz/dymension/v3/x/common/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" @@ -49,7 +49,7 @@ func (m *DemandOrder) Reset() { *m = DemandOrder{} } func (m *DemandOrder) String() string { return proto.CompactTextString(m) } func (*DemandOrder) ProtoMessage() {} func (*DemandOrder) Descriptor() ([]byte, []int) { - return fileDescriptor_3808f42eed32f331, []int{0} + return fileDescriptor_2fc99140861fbacd, []int{0} } func (m *DemandOrder) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -145,39 +145,41 @@ func init() { proto.RegisterType((*DemandOrder)(nil), "dymensionxyz.dymension.eibc.DemandOrder") } -func init() { proto.RegisterFile("dymension/eibc/demand_order.proto", fileDescriptor_3808f42eed32f331) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/eibc/demand_order.proto", fileDescriptor_2fc99140861fbacd) +} -var fileDescriptor_3808f42eed32f331 = []byte{ - // 460 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0x41, 0x6f, 0xd3, 0x30, - 0x14, 0xc7, 0x9b, 0xb5, 0x1b, 0xab, 0x2b, 0x4d, 0x9b, 0x99, 0x90, 0x19, 0x2c, 0x2b, 0x48, 0x93, - 0x2a, 0x21, 0x6c, 0xba, 0x7d, 0x02, 0x06, 0x1c, 0x60, 0x07, 0x50, 0xe0, 0x04, 0x42, 0x95, 0x63, - 0xbf, 0x16, 0xab, 0x49, 0x1c, 0xd9, 0xee, 0xb4, 0xf0, 0x29, 0xf8, 0x0e, 0xdc, 0xf8, 0x24, 0x3b, - 0xee, 0xc8, 0x09, 0x50, 0xfb, 0x45, 0x50, 0xec, 0xac, 0x1d, 0x20, 0xc4, 0x85, 0x53, 0xe2, 0xf7, - 0xff, 0xbf, 0xf7, 0x7b, 0x79, 0x2f, 0x46, 0xf7, 0x64, 0x95, 0x43, 0x61, 0x95, 0x2e, 0x18, 0xa8, - 0x54, 0x30, 0x09, 0x39, 0x2f, 0xe4, 0x48, 0x1b, 0x09, 0x86, 0x96, 0x46, 0x3b, 0x8d, 0xef, 0x2c, - 0x2d, 0xe7, 0xd5, 0x47, 0xba, 0x3c, 0xd0, 0xda, 0xbf, 0xb7, 0x3b, 0xd1, 0x13, 0xed, 0x7d, 0xac, - 0x7e, 0x0b, 0x29, 0x7b, 0xfb, 0xab, 0xaa, 0x42, 0xe7, 0xb9, 0x2e, 0x98, 0x75, 0xdc, 0xcd, 0x6c, - 0x23, 0x1f, 0xfe, 0x21, 0x1b, 0x9d, 0x65, 0xbc, 0x2c, 0x47, 0x25, 0x17, 0x53, 0x70, 0x8d, 0x2d, - 0x16, 0xda, 0xe6, 0xda, 0xb2, 0x94, 0x5b, 0x60, 0x67, 0xc3, 0x14, 0x1c, 0x1f, 0x32, 0xa1, 0x55, - 0x11, 0xf4, 0xfb, 0x9f, 0x3b, 0xa8, 0xf7, 0xd4, 0xf7, 0xfb, 0xb2, 0x6e, 0x17, 0x6f, 0xa1, 0x35, - 0x25, 0x49, 0xd4, 0x8f, 0x06, 0xdd, 0x64, 0x4d, 0x49, 0x4c, 0xd1, 0x4d, 0x67, 0xb8, 0x98, 0xaa, - 0x62, 0xd2, 0x14, 0x1e, 0x4d, 0xa1, 0x22, 0x6b, 0xde, 0xb0, 0x73, 0x25, 0xbd, 0xf2, 0xca, 0x29, - 0x54, 0x98, 0xa3, 0xf5, 0xd2, 0x28, 0x01, 0xa4, 0xdd, 0x6f, 0x0f, 0x7a, 0x47, 0xb7, 0x69, 0xe0, - 0xd3, 0x9a, 0x4f, 0x1b, 0x3e, 0x7d, 0xa2, 0x55, 0x71, 0xf2, 0xe8, 0xe2, 0xdb, 0x41, 0xeb, 0xcb, - 0xf7, 0x83, 0xc1, 0x44, 0xb9, 0x0f, 0xb3, 0x94, 0x0a, 0x9d, 0xb3, 0xa6, 0xd9, 0xf0, 0x78, 0x68, - 0xe5, 0x94, 0xb9, 0xaa, 0x04, 0xeb, 0x13, 0x6c, 0x12, 0x2a, 0xe3, 0xf7, 0xa8, 0x3d, 0x06, 0x20, - 0x9d, 0xff, 0x0f, 0xa8, 0xeb, 0xe2, 0xbb, 0xa8, 0x6b, 0x40, 0xa8, 0x52, 0x41, 0xe1, 0xc8, 0xba, - 0xff, 0xce, 0x55, 0x00, 0xbf, 0x43, 0xb7, 0x7e, 0x9f, 0x47, 0x58, 0x0b, 0xd9, 0xec, 0x47, 0x83, - 0xad, 0xa3, 0x43, 0xfa, 0x97, 0x4d, 0x87, 0x25, 0xd1, 0xd7, 0xde, 0x9c, 0xec, 0xfe, 0x3a, 0xb9, - 0x10, 0xc5, 0xfb, 0x08, 0x5d, 0x2d, 0x51, 0x49, 0xd2, 0x6d, 0xd8, 0x21, 0xf2, 0x5c, 0xe2, 0x67, - 0xa8, 0x53, 0x77, 0x4b, 0x90, 0x27, 0x0d, 0xff, 0x41, 0x4a, 0x42, 0x5e, 0x00, 0xd0, 0x37, 0x55, - 0x09, 0x89, 0x4f, 0xc7, 0x0f, 0xd0, 0xce, 0x78, 0x96, 0x8d, 0x55, 0x96, 0x81, 0x19, 0x71, 0x29, - 0x0d, 0x58, 0x4b, 0x7a, 0x1e, 0xb6, 0xbd, 0x14, 0x1e, 0x87, 0xf8, 0x8b, 0xce, 0xe6, 0xc6, 0xf6, - 0x8d, 0x93, 0xd3, 0x8b, 0x79, 0x1c, 0x5d, 0xce, 0xe3, 0xe8, 0xc7, 0x3c, 0x8e, 0x3e, 0x2d, 0xe2, - 0xd6, 0xe5, 0x22, 0x6e, 0x7d, 0x5d, 0xc4, 0xad, 0xb7, 0xc3, 0x6b, 0xc3, 0xbd, 0xde, 0xcf, 0xea, - 0xc0, 0xce, 0x8e, 0xd9, 0x79, 0xb8, 0x18, 0x7e, 0xd6, 0xe9, 0x86, 0xff, 0xf3, 0x8e, 0x7f, 0x06, - 0x00, 0x00, 0xff, 0xff, 0xe5, 0x19, 0xf4, 0xc0, 0x37, 0x03, 0x00, 0x00, +var fileDescriptor_2fc99140861fbacd = []byte{ + // 461 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xcd, 0x6e, 0x13, 0x3d, + 0x14, 0x86, 0x33, 0x49, 0xda, 0xaf, 0x71, 0xa4, 0xaa, 0xf5, 0x57, 0x21, 0x53, 0x60, 0x1a, 0x21, + 0x21, 0x45, 0x20, 0x6c, 0x92, 0x5e, 0x01, 0x05, 0x16, 0xd0, 0x05, 0x68, 0x60, 0x05, 0x42, 0x91, + 0xc7, 0x3e, 0x09, 0x56, 0x66, 0xc6, 0x23, 0xdb, 0xa9, 0x3a, 0x5c, 0x05, 0xf7, 0xc0, 0x8e, 0x2b, + 0xe9, 0xb2, 0x4b, 0x56, 0x80, 0x92, 0x1b, 0x41, 0x63, 0x4f, 0x7f, 0x40, 0x0a, 0x6c, 0x58, 0xcd, + 0xcc, 0x39, 0xef, 0xeb, 0xc7, 0xe7, 0x67, 0x10, 0x95, 0x55, 0x0e, 0x85, 0x55, 0xba, 0x38, 0xad, + 0x3e, 0xb2, 0xcb, 0x0f, 0x06, 0x2a, 0x15, 0x4c, 0x42, 0xce, 0x0b, 0x39, 0xd1, 0x46, 0x82, 0xa1, + 0xa5, 0xd1, 0x4e, 0xe3, 0x5b, 0xd7, 0xf5, 0x57, 0x66, 0x5a, 0xeb, 0xf7, 0xf7, 0x66, 0x7a, 0xa6, + 0xbd, 0x8e, 0xd5, 0x6f, 0xc1, 0xb2, 0x7f, 0x7f, 0x0d, 0x42, 0xe8, 0x3c, 0xd7, 0x05, 0xb3, 0x8e, + 0xbb, 0x85, 0x6d, 0xb4, 0xe3, 0x3f, 0x6b, 0x8d, 0xce, 0x32, 0x5e, 0x96, 0x93, 0x92, 0x8b, 0x39, + 0xb8, 0xc6, 0x13, 0x0b, 0x6d, 0x73, 0x6d, 0x59, 0xca, 0x2d, 0xb0, 0x93, 0x51, 0x0a, 0x8e, 0x8f, + 0x98, 0xd0, 0xaa, 0x08, 0xf9, 0xbb, 0x9f, 0xbb, 0xa8, 0xff, 0xd4, 0x57, 0xf2, 0xb2, 0x2e, 0x04, + 0x6f, 0xa3, 0xb6, 0x92, 0x24, 0x1a, 0x44, 0xc3, 0x5e, 0xd2, 0x56, 0x12, 0x53, 0xf4, 0xbf, 0x33, + 0x5c, 0xcc, 0x55, 0x31, 0x6b, 0x0e, 0x9e, 0xcc, 0xa1, 0x22, 0x6d, 0x2f, 0xd8, 0xbd, 0x48, 0xbd, + 0xf2, 0x99, 0x63, 0xa8, 0x30, 0x47, 0x1b, 0xa5, 0x51, 0x02, 0x48, 0x67, 0xd0, 0x19, 0xf6, 0xc7, + 0x37, 0x69, 0xe0, 0xd3, 0x9a, 0x4f, 0x1b, 0x3e, 0x7d, 0xa2, 0x55, 0x71, 0xf4, 0xe8, 0xec, 0xdb, + 0x41, 0xeb, 0xcb, 0xf7, 0x83, 0xe1, 0x4c, 0xb9, 0x0f, 0x8b, 0x94, 0x0a, 0x9d, 0xb3, 0xe6, 0xb2, + 0xe1, 0xf1, 0xd0, 0xca, 0x39, 0x73, 0x55, 0x09, 0xd6, 0x1b, 0x6c, 0x12, 0x4e, 0xc6, 0xef, 0x51, + 0x67, 0x0a, 0x40, 0xba, 0xff, 0x1e, 0x50, 0x9f, 0x8b, 0x6f, 0xa3, 0x9e, 0x01, 0xa1, 0x4a, 0x05, + 0x85, 0x23, 0x1b, 0xbe, 0xce, 0xab, 0x00, 0x7e, 0x87, 0x6e, 0xfc, 0xde, 0x8f, 0x30, 0x23, 0xb2, + 0x35, 0x88, 0x86, 0xdb, 0xe3, 0x7b, 0x74, 0xcd, 0x0e, 0x84, 0x21, 0xd1, 0xd7, 0x5e, 0x9c, 0xec, + 0xfd, 0xda, 0xb9, 0x10, 0xc5, 0x77, 0x10, 0xba, 0x18, 0xa2, 0x92, 0xa4, 0xd7, 0xb0, 0x43, 0xe4, + 0xb9, 0xc4, 0xcf, 0x50, 0xb7, 0xbe, 0x2d, 0x41, 0x9e, 0x34, 0xfa, 0x0b, 0x29, 0x09, 0xbe, 0x00, + 0xa0, 0x6f, 0xaa, 0x12, 0x12, 0x6f, 0xc7, 0x0f, 0xd0, 0xee, 0x74, 0x91, 0x4d, 0x55, 0x96, 0x81, + 0x99, 0x70, 0x29, 0x0d, 0x58, 0x4b, 0xfa, 0x1e, 0xb6, 0x73, 0x99, 0x78, 0x1c, 0xe2, 0x2f, 0xba, + 0x5b, 0x9b, 0x3b, 0xff, 0x1d, 0x1d, 0x9f, 0x2d, 0xe3, 0xe8, 0x7c, 0x19, 0x47, 0x3f, 0x96, 0x71, + 0xf4, 0x69, 0x15, 0xb7, 0xce, 0x57, 0x71, 0xeb, 0xeb, 0x2a, 0x6e, 0xbd, 0x1d, 0x5d, 0x6b, 0xee, + 0x9a, 0xf5, 0x3c, 0x39, 0x64, 0xa7, 0xe1, 0x97, 0xf1, 0xbd, 0x4e, 0x37, 0xfd, 0xe6, 0x1d, 0xfe, + 0x0c, 0x00, 0x00, 0xff, 0xff, 0x5d, 0xab, 0x41, 0x60, 0x5e, 0x03, 0x00, 0x00, } func (m *DemandOrder) Marshal() (dAtA []byte, err error) { diff --git a/x/eibc/types/genesis.pb.go b/x/eibc/types/genesis.pb.go index c2deed63d..87b181adb 100644 --- a/x/eibc/types/genesis.pb.go +++ b/x/eibc/types/genesis.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/eibc/genesis.proto +// source: dymensionxyz/dymension/eibc/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -33,7 +33,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_7eebb2caf58028be, []int{0} + return fileDescriptor_cfd2504316b5c400, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,26 +80,28 @@ func init() { proto.RegisterType((*GenesisState)(nil), "dymensionxyz.dymension.eibc.GenesisState") } -func init() { proto.RegisterFile("dymension/eibc/genesis.proto", fileDescriptor_7eebb2caf58028be) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/eibc/genesis.proto", fileDescriptor_cfd2504316b5c400) +} -var fileDescriptor_7eebb2caf58028be = []byte{ - // 246 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x49, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x4f, 0xcd, 0x4c, 0x4a, 0xd6, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, - 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x86, 0xcb, 0x56, 0x54, 0x56, 0xe9, - 0xc1, 0x39, 0x7a, 0x20, 0xa5, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x75, 0xfa, 0x20, 0x16, - 0x44, 0x8b, 0x94, 0x34, 0x9a, 0x81, 0x05, 0x89, 0x45, 0x89, 0xb9, 0x50, 0xf3, 0xa4, 0x14, 0xd1, - 0x24, 0x53, 0x52, 0x73, 0x13, 0xf3, 0x52, 0xe2, 0xf3, 0x8b, 0x52, 0x52, 0x8b, 0x20, 0x4a, 0x94, - 0x96, 0x31, 0x72, 0xf1, 0xb8, 0x43, 0x1c, 0x11, 0x5c, 0x92, 0x58, 0x92, 0x2a, 0xe4, 0xc8, 0xc5, - 0x06, 0x31, 0x43, 0x82, 0x51, 0x81, 0x51, 0x83, 0xdb, 0x48, 0x59, 0x0f, 0x8f, 0xa3, 0xf4, 0x02, - 0xc0, 0x4a, 0x9d, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0x6a, 0x14, 0x0a, 0xe6, 0xe2, 0x45, - 0xb6, 0xa9, 0x58, 0x82, 0x49, 0x81, 0x59, 0x83, 0xdb, 0x48, 0x03, 0xaf, 0x49, 0x2e, 0x60, 0x1d, - 0xfe, 0x20, 0x0d, 0x50, 0xe3, 0x78, 0x52, 0x10, 0x42, 0xc5, 0x4e, 0xde, 0x27, 0x1e, 0xc9, 0x31, - 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, - 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0x65, 0x98, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, - 0x9f, 0xab, 0x8f, 0x6c, 0x03, 0x82, 0xa3, 0x5f, 0x66, 0xac, 0x5f, 0x01, 0x09, 0x82, 0x92, 0xca, - 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0xe7, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x45, 0x20, - 0xf6, 0x05, 0x8f, 0x01, 0x00, 0x00, +var fileDescriptor_cfd2504316b5c400 = []byte{ + // 247 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4c, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x53, 0x33, 0x93, 0x92, + 0xf5, 0xd3, 0x53, 0xf3, 0x52, 0x8b, 0x33, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xa4, + 0x91, 0x95, 0xea, 0xc1, 0x39, 0x7a, 0x20, 0xa5, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x75, + 0xfa, 0x20, 0x16, 0x44, 0x8b, 0x94, 0x06, 0x3e, 0xd3, 0x0b, 0x12, 0x8b, 0x12, 0x73, 0xa1, 0x86, + 0x4b, 0xe9, 0xe1, 0x53, 0x99, 0x92, 0x9a, 0x9b, 0x98, 0x97, 0x12, 0x9f, 0x5f, 0x94, 0x92, 0x5a, + 0x04, 0x51, 0xaf, 0xb4, 0x8c, 0x91, 0x8b, 0xc7, 0x1d, 0xe2, 0xbc, 0xe0, 0x92, 0xc4, 0x92, 0x54, + 0x21, 0x47, 0x2e, 0x36, 0x88, 0x81, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0xca, 0x7a, 0x78, + 0x9c, 0xab, 0x17, 0x00, 0x56, 0xea, 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0x54, 0xa3, 0x50, + 0x30, 0x17, 0x2f, 0xb2, 0x4d, 0xc5, 0x12, 0x4c, 0x0a, 0xcc, 0x1a, 0xdc, 0x46, 0x1a, 0x78, 0x4d, + 0x72, 0x01, 0xeb, 0xf0, 0x07, 0x69, 0x80, 0x1a, 0xc7, 0x93, 0x82, 0x10, 0x2a, 0x76, 0xf2, 0x3e, + 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, + 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xc3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, + 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x1c, 0xbe, 0x2f, 0x33, 0xd6, 0xaf, 0x80, 0x04, 0x41, 0x49, + 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0xf3, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6f, + 0xc3, 0xf5, 0xf7, 0xb6, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/eibc/types/params.pb.go b/x/eibc/types/params.pb.go index f8049f0db..a139e169f 100644 --- a/x/eibc/types/params.pb.go +++ b/x/eibc/types/params.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/eibc/params.proto +// source: dymensionxyz/dymension/eibc/params.proto package types import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -34,7 +34,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_8592d607d0403a37, []int{0} + return fileDescriptor_fa18b53f607a3f90, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -74,29 +74,31 @@ func init() { proto.RegisterType((*Params)(nil), "dymensionxyz.dymension.eibc.Params") } -func init() { proto.RegisterFile("dymension/eibc/params.proto", fileDescriptor_8592d607d0403a37) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/eibc/params.proto", fileDescriptor_fa18b53f607a3f90) +} -var fileDescriptor_8592d607d0403a37 = []byte{ - // 300 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4e, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x4f, 0xcd, 0x4c, 0x4a, 0xd6, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, - 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x42, 0x48, 0x56, 0x54, 0x56, 0xe9, 0xc1, 0x39, - 0x7a, 0x20, 0x95, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x75, 0xfa, 0x20, 0x16, 0x44, 0x8b, - 0xd2, 0x42, 0x26, 0x2e, 0xb6, 0x00, 0xb0, 0x19, 0x42, 0x6e, 0x5c, 0x02, 0xa9, 0x05, 0xf9, 0xc9, - 0x19, 0xf1, 0x99, 0x29, 0xa9, 0x79, 0x25, 0x99, 0x69, 0x99, 0xa9, 0x45, 0x12, 0x8c, 0x0a, 0x8c, - 0x1a, 0x9c, 0x4e, 0xd2, 0x9f, 0xee, 0xc9, 0x8b, 0x57, 0x26, 0xe6, 0xe6, 0x58, 0x29, 0xa1, 0xab, - 0x50, 0x0a, 0xe2, 0x07, 0x0b, 0x79, 0xc2, 0x45, 0x84, 0x52, 0xb9, 0xb8, 0x4b, 0x32, 0x73, 0x53, - 0xf3, 0x4b, 0x4b, 0xe2, 0xd3, 0x52, 0x53, 0x25, 0x98, 0xc0, 0x46, 0xb8, 0x9c, 0xb8, 0x27, 0xcf, - 0x70, 0xeb, 0x9e, 0xbc, 0x5a, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, - 0x72, 0x7e, 0x71, 0x6e, 0x7e, 0x31, 0x94, 0xd2, 0x2d, 0x4e, 0xc9, 0xd6, 0x2f, 0xa9, 0x2c, 0x48, - 0x2d, 0xd6, 0x73, 0x49, 0x4d, 0xfe, 0x74, 0x4f, 0x5e, 0x08, 0x62, 0x21, 0x92, 0x51, 0x4a, 0x41, - 0x5c, 0x50, 0x9e, 0x5b, 0x6a, 0xaa, 0x50, 0x12, 0x17, 0x57, 0x6a, 0x51, 0x51, 0x62, 0x72, 0x36, - 0xd8, 0x16, 0x66, 0xb0, 0x2d, 0xce, 0x24, 0xdb, 0x22, 0x08, 0xf5, 0x16, 0xdc, 0x24, 0xa5, 0x20, - 0x4e, 0x08, 0xc7, 0x2d, 0x35, 0xd5, 0x8a, 0x65, 0xc6, 0x02, 0x79, 0x06, 0x27, 0xef, 0x13, 0x8f, - 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, - 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x32, 0x44, 0xb2, 0x07, 0x39, 0xec, 0x11, 0x1c, - 0xfd, 0x32, 0x63, 0xfd, 0x0a, 0x48, 0x54, 0x81, 0xad, 0x4d, 0x62, 0x03, 0x87, 0xbb, 0x31, 0x20, - 0x00, 0x00, 0xff, 0xff, 0x0e, 0x65, 0xe4, 0x59, 0xc9, 0x01, 0x00, 0x00, +var fileDescriptor_fa18b53f607a3f90 = []byte{ + // 302 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x48, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x53, 0x33, 0x93, 0x92, + 0xf5, 0x0b, 0x12, 0x8b, 0x12, 0x73, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xa4, 0x91, + 0x55, 0xea, 0xc1, 0x39, 0x7a, 0x20, 0x95, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x75, 0xfa, + 0x20, 0x16, 0x44, 0x8b, 0xd2, 0x42, 0x26, 0x2e, 0xb6, 0x00, 0xb0, 0x19, 0x42, 0x6e, 0x5c, 0x02, + 0xa9, 0x05, 0xf9, 0xc9, 0x19, 0xf1, 0x99, 0x29, 0xa9, 0x79, 0x25, 0x99, 0x69, 0x99, 0xa9, 0x45, + 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x4e, 0xd2, 0x9f, 0xee, 0xc9, 0x8b, 0x57, 0x26, 0xe6, 0xe6, + 0x58, 0x29, 0xa1, 0xab, 0x50, 0x0a, 0xe2, 0x07, 0x0b, 0x79, 0xc2, 0x45, 0x84, 0x52, 0xb9, 0xb8, + 0x4b, 0x32, 0x73, 0x53, 0xf3, 0x4b, 0x4b, 0xe2, 0xd3, 0x52, 0x53, 0x25, 0x98, 0xc0, 0x46, 0xb8, + 0x9c, 0xb8, 0x27, 0xcf, 0x70, 0xeb, 0x9e, 0xbc, 0x5a, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, + 0x72, 0x7e, 0xae, 0x7e, 0x72, 0x7e, 0x71, 0x6e, 0x7e, 0x31, 0x94, 0xd2, 0x2d, 0x4e, 0xc9, 0xd6, + 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0xd6, 0x73, 0x49, 0x4d, 0xfe, 0x74, 0x4f, 0x5e, 0x08, 0x62, 0x21, + 0x92, 0x51, 0x4a, 0x41, 0x5c, 0x50, 0x9e, 0x5b, 0x6a, 0xaa, 0x50, 0x12, 0x17, 0x57, 0x6a, 0x51, + 0x51, 0x62, 0x72, 0x36, 0xd8, 0x16, 0x66, 0xb0, 0x2d, 0xce, 0x24, 0xdb, 0x22, 0x08, 0xf5, 0x16, + 0xdc, 0x24, 0xa5, 0x20, 0x4e, 0x08, 0xc7, 0x2d, 0x35, 0xd5, 0x8a, 0x65, 0xc6, 0x02, 0x79, 0x06, + 0x27, 0xef, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, + 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x32, 0x44, 0xb2, 0x07, + 0x47, 0x2c, 0x95, 0x19, 0xeb, 0x57, 0x40, 0xa2, 0x0a, 0x6c, 0x6d, 0x12, 0x1b, 0x38, 0xdc, 0x8d, + 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xdf, 0x58, 0x0e, 0xde, 0xd6, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/eibc/types/query.pb.go b/x/eibc/types/query.pb.go index aad3c5df0..6008389f3 100644 --- a/x/eibc/types/query.pb.go +++ b/x/eibc/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/eibc/query.proto +// source: dymensionxyz/dymension/eibc/query.proto package types @@ -7,10 +7,10 @@ import ( context "context" fmt "fmt" _ "github.com/cosmos/cosmos-sdk/types/query" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" types "github.com/dymensionxyz/dymension/v3/x/common/types" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -56,7 +56,7 @@ func (x FulfillmentState) String() string { } func (FulfillmentState) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_39216408ffc70aa8, []int{0} + return fileDescriptor_d85bfe71ceb5f8dc, []int{0} } // QueryParamsRequest is request type for the Query/Params RPC method. @@ -67,7 +67,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_39216408ffc70aa8, []int{0} + return fileDescriptor_d85bfe71ceb5f8dc, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -106,7 +106,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_39216408ffc70aa8, []int{1} + return fileDescriptor_d85bfe71ceb5f8dc, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -152,7 +152,7 @@ func (m *QueryGetDemandOrderRequest) Reset() { *m = QueryGetDemandOrderR func (m *QueryGetDemandOrderRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetDemandOrderRequest) ProtoMessage() {} func (*QueryGetDemandOrderRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_39216408ffc70aa8, []int{2} + return fileDescriptor_d85bfe71ceb5f8dc, []int{2} } func (m *QueryGetDemandOrderRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -212,7 +212,7 @@ func (m *QueryDemandOrdersByStatusRequest) Reset() { *m = QueryDemandOrd func (m *QueryDemandOrdersByStatusRequest) String() string { return proto.CompactTextString(m) } func (*QueryDemandOrdersByStatusRequest) ProtoMessage() {} func (*QueryDemandOrdersByStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_39216408ffc70aa8, []int{3} + return fileDescriptor_d85bfe71ceb5f8dc, []int{3} } func (m *QueryDemandOrdersByStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -307,7 +307,7 @@ func (m *QueryGetDemandOrderResponse) Reset() { *m = QueryGetDemandOrder func (m *QueryGetDemandOrderResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetDemandOrderResponse) ProtoMessage() {} func (*QueryGetDemandOrderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_39216408ffc70aa8, []int{4} + return fileDescriptor_d85bfe71ceb5f8dc, []int{4} } func (m *QueryGetDemandOrderResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -353,7 +353,7 @@ func (m *QueryDemandOrdersByStatusResponse) Reset() { *m = QueryDemandOr func (m *QueryDemandOrdersByStatusResponse) String() string { return proto.CompactTextString(m) } func (*QueryDemandOrdersByStatusResponse) ProtoMessage() {} func (*QueryDemandOrdersByStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_39216408ffc70aa8, []int{5} + return fileDescriptor_d85bfe71ceb5f8dc, []int{5} } func (m *QueryDemandOrdersByStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -399,55 +399,57 @@ func init() { proto.RegisterType((*QueryDemandOrdersByStatusResponse)(nil), "dymensionxyz.dymension.eibc.QueryDemandOrdersByStatusResponse") } -func init() { proto.RegisterFile("dymension/eibc/query.proto", fileDescriptor_39216408ffc70aa8) } - -var fileDescriptor_39216408ffc70aa8 = []byte{ - // 717 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcd, 0x4e, 0xdb, 0x4a, - 0x14, 0x8e, 0x43, 0x92, 0x7b, 0x33, 0xfc, 0xe5, 0xce, 0xcd, 0xc2, 0x0a, 0x90, 0x0b, 0x41, 0x48, - 0x88, 0xdb, 0x7a, 0x08, 0xa8, 0x3f, 0x52, 0x45, 0x25, 0xa2, 0x24, 0x55, 0x04, 0xa5, 0xd4, 0x2d, - 0x52, 0xc5, 0x06, 0x39, 0xf1, 0x90, 0x4e, 0x6b, 0x7b, 0x8c, 0x3d, 0x41, 0xb8, 0x88, 0x4d, 0xb7, - 0xdd, 0x54, 0xea, 0xa6, 0x4f, 0xd2, 0x55, 0x1f, 0x80, 0x25, 0x6a, 0x37, 0x5d, 0x55, 0x15, 0xf4, - 0x41, 0x2a, 0xcf, 0x4c, 0x88, 0x1b, 0x82, 0x81, 0xee, 0x7c, 0x7e, 0xbe, 0x73, 0xbe, 0xef, 0xf8, - 0xcc, 0x01, 0x05, 0x33, 0xb0, 0xb1, 0xe3, 0x13, 0xea, 0x20, 0x4c, 0x9a, 0x2d, 0xb4, 0xd7, 0xc1, - 0x5e, 0xa0, 0xb9, 0x1e, 0x65, 0x14, 0x4e, 0x9c, 0xc7, 0x0e, 0x82, 0x37, 0xda, 0xb9, 0xa1, 0x85, - 0x89, 0x85, 0x7c, 0x9b, 0xb6, 0x29, 0xcf, 0x43, 0xe1, 0x97, 0x80, 0x14, 0x26, 0xdb, 0x94, 0xb6, - 0x2d, 0x8c, 0x0c, 0x97, 0x20, 0xc3, 0x71, 0x28, 0x33, 0x18, 0xa1, 0x8e, 0x2f, 0xa3, 0x0b, 0x2d, - 0xea, 0xdb, 0xd4, 0x47, 0x4d, 0xc3, 0xc7, 0xa2, 0x13, 0xda, 0x2f, 0x37, 0x31, 0x33, 0xca, 0xc8, - 0x35, 0xda, 0xc4, 0xe1, 0xc9, 0x32, 0x77, 0xa2, 0x8f, 0x98, 0x6b, 0x78, 0x86, 0xdd, 0x2d, 0x34, - 0xd3, 0x17, 0x34, 0xb1, 0x6d, 0x38, 0xe6, 0x0e, 0xf5, 0x4c, 0xec, 0xc9, 0x94, 0xa9, 0x5e, 0x4a, - 0x8b, 0xda, 0x36, 0x75, 0x90, 0xcf, 0x0c, 0xd6, 0xe9, 0x56, 0x98, 0xbb, 0x10, 0xf6, 0xa8, 0x65, - 0x19, 0xae, 0xbb, 0xe3, 0x1a, 0xad, 0xd7, 0x98, 0x89, 0xb4, 0x52, 0x1e, 0xc0, 0xa7, 0x21, 0xcf, - 0x4d, 0xde, 0x5d, 0xc7, 0x7b, 0x1d, 0xec, 0xb3, 0xd2, 0x0b, 0xf0, 0xef, 0x6f, 0x5e, 0xdf, 0xa5, - 0x8e, 0x8f, 0xe1, 0x2a, 0xc8, 0x08, 0x96, 0xaa, 0x32, 0xad, 0xcc, 0x0f, 0x2f, 0xcd, 0x6a, 0x31, - 0x03, 0xd4, 0x04, 0xb8, 0x92, 0x3a, 0xfe, 0xfe, 0x5f, 0x42, 0x97, 0xc0, 0xd2, 0x2d, 0x50, 0xe0, - 0x95, 0x1f, 0x61, 0x56, 0xe5, 0x9a, 0x9e, 0x84, 0x92, 0x64, 0x5f, 0x38, 0x06, 0x92, 0xc4, 0xe4, - 0xc5, 0xb3, 0x7a, 0x92, 0x98, 0xa5, 0x77, 0x43, 0x60, 0x9a, 0xa7, 0x47, 0x72, 0xfd, 0x4a, 0xf0, - 0x8c, 0x0b, 0xed, 0x82, 0x56, 0x40, 0x46, 0x28, 0xe7, 0xc0, 0xb1, 0xa5, 0xb9, 0xcb, 0x58, 0x89, - 0x39, 0x68, 0x12, 0x2d, 0x41, 0xb0, 0x06, 0x52, 0x2c, 0x70, 0xb1, 0x9a, 0xe4, 0xe0, 0xf2, 0x15, - 0x60, 0x5d, 0x0c, 0x71, 0x53, 0xcc, 0xf0, 0x79, 0xe0, 0x62, 0x9d, 0xc3, 0xe1, 0x14, 0x00, 0xdd, - 0x01, 0x13, 0x53, 0x1d, 0xe2, 0x12, 0xb2, 0xd2, 0xd3, 0x30, 0x61, 0x1e, 0xa4, 0x2d, 0x62, 0x13, - 0xa6, 0xa6, 0xa6, 0x95, 0xf9, 0xb4, 0x2e, 0x0c, 0xb8, 0x0d, 0xfe, 0xd9, 0xed, 0x58, 0xbb, 0xc4, - 0xb2, 0x6c, 0xec, 0xb0, 0x9d, 0x90, 0x11, 0x56, 0xd3, 0x9c, 0xc8, 0xed, 0xd8, 0xd9, 0xd6, 0x7b, - 0xa8, 0x50, 0x0e, 0xd6, 0x73, 0xbb, 0x7d, 0x1e, 0x38, 0x09, 0xb2, 0xd2, 0x87, 0x3d, 0x35, 0x23, - 0xf8, 0x9c, 0x3b, 0x42, 0x3e, 0x26, 0x76, 0xa8, 0xad, 0xfe, 0xc5, 0x23, 0xc2, 0x08, 0x31, 0x1e, - 0x6e, 0x11, 0x97, 0x60, 0x87, 0xa9, 0x7f, 0x4b, 0x0d, 0x5d, 0x47, 0xe9, 0x15, 0x98, 0x18, 0xf8, - 0xef, 0xe4, 0x76, 0xac, 0x81, 0x91, 0xe8, 0x9a, 0xca, 0x1d, 0x99, 0x8f, 0xd5, 0x11, 0xad, 0x33, - 0x6c, 0xf6, 0x8c, 0x92, 0x07, 0x66, 0x62, 0x7e, 0xbc, 0xec, 0xf8, 0x18, 0x8c, 0x46, 0x3b, 0x86, - 0x0b, 0x30, 0x74, 0xa3, 0x96, 0x23, 0x91, 0x96, 0xfe, 0xc2, 0x2a, 0xc8, 0xf5, 0xcf, 0x15, 0x8e, - 0x82, 0xec, 0xd6, 0x46, 0xb5, 0x56, 0x6f, 0x6c, 0xd4, 0xaa, 0xb9, 0x44, 0x68, 0xd6, 0xb7, 0xd6, - 0xeb, 0x8d, 0xf5, 0xf5, 0x5a, 0x35, 0xa7, 0xc0, 0x71, 0x30, 0xbc, 0xb5, 0xd1, 0x73, 0x24, 0x97, - 0x3e, 0xa5, 0x40, 0x9a, 0xf3, 0x86, 0x1f, 0x15, 0x90, 0x11, 0x2f, 0x00, 0xa2, 0x58, 0x3e, 0x17, - 0x9f, 0x5f, 0x61, 0xf1, 0xfa, 0x00, 0x31, 0x89, 0xd2, 0xff, 0x6f, 0xbf, 0xfe, 0xfc, 0x90, 0x9c, - 0x83, 0xb3, 0x28, 0x8a, 0x44, 0x03, 0x4f, 0x0c, 0xfc, 0xac, 0x80, 0xf1, 0xc8, 0x14, 0x2a, 0x41, - 0xc3, 0x84, 0xf7, 0xae, 0x6e, 0x39, 0xf0, 0xc9, 0x16, 0xee, 0xdf, 0x1c, 0x28, 0x39, 0xdf, 0xe5, - 0x9c, 0x17, 0xa1, 0x16, 0xcb, 0x39, 0xfa, 0x83, 0xd1, 0x21, 0x31, 0x8f, 0xe0, 0x17, 0x05, 0xe4, - 0x07, 0xad, 0x05, 0x5c, 0xb9, 0x9a, 0x4a, 0xcc, 0x1d, 0x29, 0x3c, 0xfc, 0x53, 0xb8, 0xd4, 0xf3, - 0x80, 0xeb, 0xb9, 0x03, 0x97, 0xaf, 0xad, 0xc7, 0x47, 0x87, 0xe2, 0x08, 0x1d, 0x55, 0xd6, 0x8e, - 0x4f, 0x8b, 0xca, 0xc9, 0x69, 0x51, 0xf9, 0x71, 0x5a, 0x54, 0xde, 0x9f, 0x15, 0x13, 0x27, 0x67, - 0xc5, 0xc4, 0xb7, 0xb3, 0x62, 0x62, 0xbb, 0xdc, 0x26, 0xec, 0x65, 0xa7, 0x19, 0x1e, 0xa0, 0xcb, - 0x0a, 0xef, 0x2f, 0xa3, 0x03, 0x51, 0x3d, 0x3c, 0x45, 0x7e, 0x33, 0xc3, 0x6f, 0xfb, 0xf2, 0xaf, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x36, 0x18, 0x59, 0xa7, 0xfc, 0x06, 0x00, 0x00, +func init() { + proto.RegisterFile("dymensionxyz/dymension/eibc/query.proto", fileDescriptor_d85bfe71ceb5f8dc) +} + +var fileDescriptor_d85bfe71ceb5f8dc = []byte{ + // 714 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcf, 0x4f, 0x13, 0x4f, + 0x14, 0xef, 0x96, 0xb6, 0xdf, 0x6f, 0x87, 0x5f, 0x75, 0xec, 0x61, 0x53, 0xb0, 0x62, 0x09, 0xb1, + 0x41, 0xdd, 0xa1, 0x25, 0xfe, 0x48, 0x0c, 0x26, 0x34, 0x6d, 0x4d, 0x03, 0x22, 0xae, 0x92, 0x18, + 0x2e, 0x64, 0xdb, 0x1d, 0xea, 0xe8, 0xee, 0xce, 0xb2, 0x3b, 0x25, 0xac, 0x84, 0x8b, 0x57, 0x2f, + 0x26, 0x5e, 0xfc, 0x4b, 0x3c, 0xf9, 0x07, 0x70, 0x24, 0x7a, 0xf1, 0x64, 0x0c, 0xf8, 0x87, 0x98, + 0x9d, 0x99, 0xc2, 0x8a, 0xb0, 0x05, 0x6f, 0x7d, 0xaf, 0xef, 0xf3, 0xde, 0xe7, 0xf3, 0xd9, 0x37, + 0x0f, 0xdc, 0x34, 0x03, 0x1b, 0x3b, 0x3e, 0xa1, 0xce, 0x4e, 0xf0, 0x16, 0x1d, 0x07, 0x08, 0x93, + 0x76, 0x07, 0x6d, 0xf5, 0xb0, 0x17, 0x68, 0xae, 0x47, 0x19, 0x85, 0x13, 0xd1, 0x42, 0xed, 0x38, + 0xd0, 0xc2, 0xc2, 0x42, 0xbe, 0x4b, 0xbb, 0x94, 0xd7, 0xa1, 0xf0, 0x97, 0x80, 0x14, 0x26, 0xbb, + 0x94, 0x76, 0x2d, 0x8c, 0x0c, 0x97, 0x20, 0xc3, 0x71, 0x28, 0x33, 0x18, 0xa1, 0x8e, 0x2f, 0xff, + 0x9d, 0xed, 0x50, 0xdf, 0xa6, 0x3e, 0x6a, 0x1b, 0x3e, 0x16, 0x93, 0xd0, 0x76, 0xa5, 0x8d, 0x99, + 0x51, 0x41, 0xae, 0xd1, 0x25, 0x0e, 0x2f, 0x96, 0xb5, 0xe5, 0x38, 0x96, 0xae, 0xe1, 0x19, 0x76, + 0xbf, 0xab, 0x16, 0x57, 0x69, 0x62, 0xdb, 0x70, 0xcc, 0x0d, 0xea, 0x99, 0xd8, 0xeb, 0xb3, 0x38, + 0xa7, 0xbe, 0x43, 0x6d, 0x9b, 0x3a, 0xc8, 0x67, 0x06, 0xeb, 0xf5, 0x7b, 0x57, 0xe3, 0x6b, 0x3d, + 0x6a, 0x59, 0x86, 0xeb, 0x6e, 0xb8, 0x46, 0xe7, 0x0d, 0x66, 0x02, 0x53, 0xca, 0x03, 0xf8, 0x2c, + 0xd4, 0xb6, 0xca, 0x49, 0xea, 0x78, 0xab, 0x87, 0x7d, 0x56, 0x7a, 0x09, 0xae, 0xfe, 0x91, 0xf5, + 0x5d, 0xea, 0xf8, 0x18, 0x2e, 0x82, 0x8c, 0x10, 0xa3, 0x2a, 0x53, 0x4a, 0x79, 0xb8, 0x3a, 0xad, + 0xc5, 0x98, 0xae, 0x09, 0x70, 0x2d, 0xb5, 0xff, 0xe3, 0x7a, 0x42, 0x97, 0xc0, 0xd2, 0x6d, 0x50, + 0xe0, 0x9d, 0x1f, 0x63, 0x56, 0xe7, 0x6a, 0x9f, 0x86, 0x62, 0xe5, 0x5c, 0x38, 0x06, 0x92, 0xc4, + 0xe4, 0xcd, 0xb3, 0x7a, 0x92, 0x98, 0xa5, 0xf7, 0x43, 0x60, 0x8a, 0x97, 0x47, 0x6a, 0xfd, 0x5a, + 0xf0, 0x9c, 0xab, 0xee, 0x83, 0x16, 0x40, 0x46, 0xd8, 0xc0, 0x81, 0x63, 0xd5, 0x99, 0xf3, 0x58, + 0x09, 0x1f, 0x34, 0x89, 0x96, 0x20, 0xd8, 0x00, 0x29, 0x16, 0xb8, 0x58, 0x4d, 0x72, 0x70, 0x65, + 0x00, 0x58, 0x17, 0x26, 0xae, 0x0a, 0x0f, 0x5f, 0x04, 0x2e, 0xd6, 0x39, 0x1c, 0x5e, 0x03, 0xa0, + 0x6f, 0x30, 0x31, 0xd5, 0x21, 0x2e, 0x21, 0x2b, 0x33, 0x2d, 0x13, 0xe6, 0x41, 0xda, 0x22, 0x36, + 0x61, 0x6a, 0x6a, 0x4a, 0x29, 0xa7, 0x75, 0x11, 0xc0, 0x75, 0x70, 0x65, 0xb3, 0x67, 0x6d, 0x12, + 0xcb, 0xb2, 0xb1, 0xc3, 0x36, 0x42, 0x46, 0x58, 0x4d, 0x73, 0x22, 0x77, 0x62, 0xbd, 0x6d, 0x9e, + 0xa0, 0x42, 0x39, 0x58, 0xcf, 0x6d, 0x9e, 0xca, 0xc0, 0x49, 0x90, 0x95, 0x39, 0xec, 0xa9, 0x19, + 0xc1, 0xe7, 0x38, 0x11, 0xf2, 0x31, 0xb1, 0x43, 0x6d, 0xf5, 0x3f, 0xfe, 0x8f, 0x08, 0x42, 0x8c, + 0x87, 0x3b, 0xc4, 0x25, 0xd8, 0x61, 0xea, 0xff, 0x52, 0x43, 0x3f, 0x51, 0x7a, 0x0d, 0x26, 0xce, + 0xfc, 0x76, 0x72, 0x3b, 0x96, 0xc0, 0x48, 0x74, 0x81, 0xe5, 0x8e, 0x94, 0x63, 0x75, 0x44, 0xfb, + 0x0c, 0x9b, 0x27, 0x41, 0xc9, 0x03, 0x37, 0x62, 0x3e, 0xbc, 0x9c, 0xf8, 0x04, 0x8c, 0x46, 0x27, + 0x86, 0x0b, 0x30, 0x74, 0xa9, 0x91, 0x23, 0x91, 0x91, 0xfe, 0xec, 0x22, 0xc8, 0x9d, 0xf6, 0x15, + 0x8e, 0x82, 0xec, 0xda, 0x4a, 0xbd, 0xd1, 0x6c, 0xad, 0x34, 0xea, 0xb9, 0x44, 0x18, 0x36, 0xd7, + 0x96, 0x9b, 0xad, 0xe5, 0xe5, 0x46, 0x3d, 0xa7, 0xc0, 0x71, 0x30, 0xbc, 0xb6, 0x72, 0x92, 0x48, + 0x56, 0x3f, 0xa7, 0x40, 0x9a, 0xf3, 0x86, 0x9f, 0x14, 0x90, 0x11, 0x2f, 0x00, 0xa2, 0x58, 0x3e, + 0x7f, 0x3f, 0xbf, 0xc2, 0xdc, 0xc5, 0x01, 0xc2, 0x89, 0xd2, 0xad, 0x77, 0xdf, 0x7e, 0x7d, 0x4c, + 0xce, 0xc0, 0x69, 0x34, 0xf8, 0x12, 0xc1, 0x2f, 0x0a, 0x18, 0x8f, 0xb8, 0x50, 0x0b, 0x5a, 0x26, + 0xbc, 0x3f, 0x78, 0xe4, 0x99, 0x4f, 0xb6, 0xf0, 0xe0, 0xf2, 0x40, 0xc9, 0xf9, 0x1e, 0xe7, 0x3c, + 0x07, 0x35, 0x74, 0xd1, 0x9b, 0x88, 0x76, 0x89, 0xb9, 0x07, 0xbf, 0x2a, 0x20, 0x7f, 0xd6, 0x5a, + 0xc0, 0x85, 0xc1, 0x54, 0x62, 0xee, 0x48, 0xe1, 0xd1, 0xbf, 0xc2, 0xa5, 0x9e, 0x87, 0x5c, 0xcf, + 0x5d, 0x38, 0x7f, 0x61, 0x3d, 0x3e, 0xda, 0x15, 0x47, 0x68, 0xaf, 0xb6, 0xb4, 0x7f, 0x58, 0x54, + 0x0e, 0x0e, 0x8b, 0xca, 0xcf, 0xc3, 0xa2, 0xf2, 0xe1, 0xa8, 0x98, 0x38, 0x38, 0x2a, 0x26, 0xbe, + 0x1f, 0x15, 0x13, 0xeb, 0x95, 0x2e, 0x61, 0xaf, 0x7a, 0xed, 0xf0, 0x00, 0x9d, 0xd7, 0x78, 0x7b, + 0x1e, 0xed, 0x88, 0xee, 0xe1, 0x29, 0xf2, 0xdb, 0x19, 0x7e, 0xdb, 0xe7, 0x7f, 0x07, 0x00, 0x00, + 0xff, 0xff, 0xf2, 0x62, 0x5e, 0xac, 0x3d, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -605,7 +607,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "dymension/eibc/query.proto", + Metadata: "dymensionxyz/dymension/eibc/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/eibc/types/query.pb.gw.go b/x/eibc/types/query.pb.gw.go index e99aee2bd..d117f15d9 100644 --- a/x/eibc/types/query.pb.gw.go +++ b/x/eibc/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: dymension/eibc/query.proto +// source: dymensionxyz/dymension/eibc/query.proto /* Package types is a reverse proxy. diff --git a/x/eibc/types/tx.pb.go b/x/eibc/types/tx.pb.go index c01551433..7b7ca4586 100644 --- a/x/eibc/types/tx.pb.go +++ b/x/eibc/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/eibc/tx.proto +// source: dymensionxyz/dymension/eibc/tx.proto package types @@ -7,8 +7,8 @@ import ( context "context" fmt "fmt" _ "github.com/cosmos/cosmos-sdk/types/msgservice" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -42,7 +42,7 @@ func (m *MsgFulfillOrder) Reset() { *m = MsgFulfillOrder{} } func (m *MsgFulfillOrder) String() string { return proto.CompactTextString(m) } func (*MsgFulfillOrder) ProtoMessage() {} func (*MsgFulfillOrder) Descriptor() ([]byte, []int) { - return fileDescriptor_b6b186a723f445fa, []int{0} + return fileDescriptor_47537f11f512b254, []int{0} } func (m *MsgFulfillOrder) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -100,7 +100,7 @@ func (m *MsgFulfillOrderResponse) Reset() { *m = MsgFulfillOrderResponse func (m *MsgFulfillOrderResponse) String() string { return proto.CompactTextString(m) } func (*MsgFulfillOrderResponse) ProtoMessage() {} func (*MsgFulfillOrderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b6b186a723f445fa, []int{1} + return fileDescriptor_47537f11f512b254, []int{1} } func (m *MsgFulfillOrderResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -143,7 +143,7 @@ func (m *MsgUpdateDemandOrder) Reset() { *m = MsgUpdateDemandOrder{} } func (m *MsgUpdateDemandOrder) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDemandOrder) ProtoMessage() {} func (*MsgUpdateDemandOrder) Descriptor() ([]byte, []int) { - return fileDescriptor_b6b186a723f445fa, []int{2} + return fileDescriptor_47537f11f512b254, []int{2} } func (m *MsgUpdateDemandOrder) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -200,7 +200,7 @@ func (m *MsgUpdateDemandOrderResponse) Reset() { *m = MsgUpdateDemandOrd func (m *MsgUpdateDemandOrderResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateDemandOrderResponse) ProtoMessage() {} func (*MsgUpdateDemandOrderResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b6b186a723f445fa, []int{3} + return fileDescriptor_47537f11f512b254, []int{3} } func (m *MsgUpdateDemandOrderResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -236,34 +236,36 @@ func init() { proto.RegisterType((*MsgUpdateDemandOrderResponse)(nil), "dymensionxyz.dymension.eibc.MsgUpdateDemandOrderResponse") } -func init() { proto.RegisterFile("dymension/eibc/tx.proto", fileDescriptor_b6b186a723f445fa) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/eibc/tx.proto", fileDescriptor_47537f11f512b254) +} -var fileDescriptor_b6b186a723f445fa = []byte{ +var fileDescriptor_47537f11f512b254 = []byte{ // 374 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4f, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x4f, 0xcd, 0x4c, 0x4a, 0xd6, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, - 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x86, 0x4b, 0x54, 0x54, 0x56, 0xe9, 0xc1, 0x39, 0x7a, 0x20, 0x55, - 0x52, 0xe2, 0xc9, 0xf9, 0xc5, 0xb9, 0xf9, 0xc5, 0xfa, 0xb9, 0xc5, 0xe9, 0xfa, 0x65, 0x86, 0x20, - 0x0a, 0xa2, 0x4b, 0x69, 0x0a, 0x23, 0x17, 0xbf, 0x6f, 0x71, 0xba, 0x5b, 0x69, 0x4e, 0x5a, 0x66, - 0x4e, 0x8e, 0x7f, 0x51, 0x4a, 0x6a, 0x91, 0x90, 0x36, 0x97, 0x60, 0x1a, 0x84, 0x9f, 0x5a, 0x14, - 0x9f, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x19, 0x24, 0x00, - 0x97, 0x70, 0x84, 0x88, 0x0b, 0x49, 0x72, 0x71, 0xe4, 0x83, 0x74, 0xc5, 0x67, 0xa6, 0x48, 0x30, - 0x81, 0xd5, 0xb0, 0x83, 0xf9, 0x9e, 0x29, 0x42, 0x8a, 0x5c, 0x3c, 0xa9, 0x15, 0x05, 0xa9, 0xc9, - 0x25, 0xa9, 0x29, 0xf1, 0x69, 0xa9, 0xa9, 0x12, 0xcc, 0x60, 0x69, 0x6e, 0x98, 0x98, 0x5b, 0x6a, - 0xaa, 0x95, 0x58, 0xd3, 0xf3, 0x0d, 0x5a, 0x98, 0xb6, 0x29, 0x49, 0x72, 0x89, 0xa3, 0xb9, 0x2a, - 0x28, 0xb5, 0xb8, 0x20, 0x3f, 0xaf, 0x38, 0x55, 0xa9, 0x99, 0x91, 0x4b, 0xc4, 0xb7, 0x38, 0x3d, - 0xb4, 0x20, 0x25, 0xb1, 0x24, 0xd5, 0x25, 0x35, 0x37, 0x31, 0x2f, 0x05, 0xe2, 0x6c, 0x65, 0x2e, - 0xde, 0xfc, 0xf2, 0x3c, 0x0c, 0x27, 0xf3, 0x80, 0x05, 0x89, 0x70, 0xae, 0x38, 0x17, 0x7b, 0x5e, - 0x6a, 0x39, 0x92, 0x4b, 0xd9, 0xf2, 0x52, 0xcb, 0x41, 0x8e, 0x14, 0x02, 0x39, 0x12, 0xd5, 0x6c, - 0x25, 0x39, 0x2e, 0x19, 0x6c, 0x8e, 0x80, 0xb9, 0xd2, 0xa8, 0x91, 0x89, 0x8b, 0xd9, 0xb7, 0x38, - 0x5d, 0xa8, 0x84, 0x8b, 0x07, 0x25, 0x6c, 0x75, 0xf4, 0xf0, 0x44, 0x93, 0x1e, 0x9a, 0x9f, 0xa5, - 0x4c, 0x48, 0x51, 0x0d, 0x0f, 0x21, 0x06, 0xa1, 0x66, 0x46, 0x2e, 0x41, 0xcc, 0x00, 0x32, 0x24, - 0x64, 0x1a, 0x86, 0x16, 0x29, 0x4b, 0x92, 0xb5, 0x20, 0x5c, 0xe1, 0xe4, 0x7d, 0xe2, 0x91, 0x1c, - 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, - 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x86, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, - 0xf9, 0xb9, 0xfa, 0xc8, 0x16, 0x20, 0x38, 0xfa, 0x65, 0xc6, 0xfa, 0x15, 0xd0, 0x14, 0x5e, 0x59, - 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x4e, 0xaf, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x78, 0xda, - 0xcb, 0x74, 0x00, 0x03, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x49, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x53, 0x33, 0x93, 0x92, + 0xf5, 0x4b, 0x2a, 0xf4, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xa4, 0x91, 0x55, 0xe9, 0xc1, 0x39, + 0x7a, 0x20, 0x55, 0x52, 0xe2, 0xc9, 0xf9, 0xc5, 0xb9, 0xf9, 0xc5, 0xfa, 0xb9, 0xc5, 0xe9, 0xfa, + 0x65, 0x86, 0x20, 0x0a, 0xa2, 0x4b, 0x69, 0x0a, 0x23, 0x17, 0xbf, 0x6f, 0x71, 0xba, 0x5b, 0x69, + 0x4e, 0x5a, 0x66, 0x4e, 0x8e, 0x7f, 0x51, 0x4a, 0x6a, 0x91, 0x90, 0x36, 0x97, 0x60, 0x1a, 0x84, + 0x9f, 0x5a, 0x14, 0x9f, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, + 0x19, 0x24, 0x00, 0x97, 0x70, 0x84, 0x88, 0x0b, 0x49, 0x72, 0x71, 0xe4, 0x83, 0x74, 0xc5, 0x67, + 0xa6, 0x48, 0x30, 0x81, 0xd5, 0xb0, 0x83, 0xf9, 0x9e, 0x29, 0x42, 0x8a, 0x5c, 0x3c, 0xa9, 0x15, + 0x05, 0xa9, 0xc9, 0x25, 0xa9, 0x29, 0xf1, 0x69, 0xa9, 0xa9, 0x12, 0xcc, 0x60, 0x69, 0x6e, 0x98, + 0x98, 0x5b, 0x6a, 0xaa, 0x95, 0x58, 0xd3, 0xf3, 0x0d, 0x5a, 0x98, 0xb6, 0x29, 0x49, 0x72, 0x89, + 0xa3, 0xb9, 0x2a, 0x28, 0xb5, 0xb8, 0x20, 0x3f, 0xaf, 0x38, 0x55, 0xa9, 0x99, 0x91, 0x4b, 0xc4, + 0xb7, 0x38, 0x3d, 0xb4, 0x20, 0x25, 0xb1, 0x24, 0xd5, 0x25, 0x35, 0x37, 0x31, 0x2f, 0x05, 0xe2, + 0x6c, 0x65, 0x2e, 0xde, 0xfc, 0xf2, 0x3c, 0x0c, 0x27, 0xf3, 0x80, 0x05, 0x89, 0x70, 0xae, 0x38, + 0x17, 0x7b, 0x5e, 0x6a, 0x39, 0x92, 0x4b, 0xd9, 0xf2, 0x52, 0xcb, 0x41, 0x8e, 0x14, 0x02, 0x39, + 0x12, 0xd5, 0x6c, 0x25, 0x39, 0x2e, 0x19, 0x6c, 0x8e, 0x80, 0xb9, 0xd2, 0xa8, 0x91, 0x89, 0x8b, + 0xd9, 0xb7, 0x38, 0x5d, 0xa8, 0x84, 0x8b, 0x07, 0x25, 0x6c, 0x75, 0xf4, 0xf0, 0x44, 0x93, 0x1e, + 0x9a, 0x9f, 0xa5, 0x4c, 0x48, 0x51, 0x0d, 0x0f, 0x21, 0x06, 0xa1, 0x66, 0x46, 0x2e, 0x41, 0xcc, + 0x00, 0x32, 0x24, 0x64, 0x1a, 0x86, 0x16, 0x29, 0x4b, 0x92, 0xb5, 0x20, 0x5c, 0xe1, 0xe4, 0x7d, + 0xe2, 0x91, 0x1c, 0xe3, 0x85, 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, + 0x70, 0xe1, 0xb1, 0x1c, 0xc3, 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x86, 0xe9, 0x99, 0x25, 0x19, 0xa5, + 0x49, 0x7a, 0xc9, 0xf9, 0xb9, 0xfa, 0x38, 0x12, 0x77, 0x99, 0xb1, 0x7e, 0x05, 0x34, 0x85, 0x57, + 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0xd3, 0xab, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xc8, 0x69, + 0xa9, 0xa4, 0x0d, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -379,7 +381,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "dymension/eibc/tx.proto", + Metadata: "dymensionxyz/dymension/eibc/tx.proto", } func (m *MsgFulfillOrder) Marshal() (dAtA []byte, err error) { diff --git a/x/rollapp/client/cli/tx_submit_fraud_proposal.go b/x/rollapp/client/cli/tx_submit_fraud_proposal.go index 0cd301f4e..26a578003 100644 --- a/x/rollapp/client/cli/tx_submit_fraud_proposal.go +++ b/x/rollapp/client/cli/tx_submit_fraud_proposal.go @@ -47,7 +47,11 @@ func NewCmdSubmitFraudProposal() *cobra.Command { return err } - txf := tx.NewFactoryCLI(clientCtx, cmd.Flags()).WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) + txfCli, err := tx.NewFactoryCLI(clientCtx, cmd.Flags()) + if err != nil { + return err + } + txf := txfCli.WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) return tx.GenerateOrBroadcastTxWithFactory(clientCtx, txf, msg) }, } diff --git a/x/rollapp/keeper/authenticate_packet.go b/x/rollapp/keeper/authenticate_packet.go index f241b3e3c..df3dcea63 100644 --- a/x/rollapp/keeper/authenticate_packet.go +++ b/x/rollapp/keeper/authenticate_packet.go @@ -3,7 +3,7 @@ package keeper import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" "github.com/dymensionxyz/dymension/v3/x/rollapp/types" "github.com/dymensionxyz/gerr-cosmos/gerrc" uibc "github.com/dymensionxyz/sdk-utils/utils/uibc" diff --git a/x/rollapp/keeper/block_height_to_finalization_queue_test.go b/x/rollapp/keeper/block_height_to_finalization_queue_test.go index c76b3260b..b25855ed1 100644 --- a/x/rollapp/keeper/block_height_to_finalization_queue_test.go +++ b/x/rollapp/keeper/block_height_to_finalization_queue_test.go @@ -5,13 +5,13 @@ import ( "strconv" "testing" + abci "github.com/cometbft/cometbft/abci/types" sdk "github.com/cosmos/cosmos-sdk/types" keepertest "github.com/dymensionxyz/dymension/v3/testutil/keeper" "github.com/dymensionxyz/dymension/v3/testutil/nullify" "github.com/dymensionxyz/dymension/v3/x/rollapp/keeper" "github.com/dymensionxyz/dymension/v3/x/rollapp/types" "github.com/stretchr/testify/require" - abci "github.com/tendermint/tendermint/abci/types" ) // Prevent strconv unused error diff --git a/x/rollapp/keeper/fraud_handler.go b/x/rollapp/keeper/fraud_handler.go index b623fa28b..ae37a9850 100644 --- a/x/rollapp/keeper/fraud_handler.go +++ b/x/rollapp/keeper/fraud_handler.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - clienttypes "github.com/cosmos/ibc-go/v6/modules/core/02-client/types" - tmtypes "github.com/cosmos/ibc-go/v6/modules/light-clients/07-tendermint/types" + clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" + cometbfttypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" common "github.com/dymensionxyz/dymension/v3/x/common/types" "github.com/dymensionxyz/dymension/v3/x/rollapp/types" @@ -92,7 +92,7 @@ func (k Keeper) freezeClientState(ctx sdk.Context, clientId string) error { return errorsmod.Wrapf(types.ErrInvalidClientState, "client state for clientID %s not found", clientId) } - tmClientState, ok := clientState.(*tmtypes.ClientState) + tmClientState, ok := clientState.(*cometbfttypes.ClientState) if !ok { return errorsmod.Wrapf(types.ErrInvalidClientState, "client state with ID %s is not a tendermint client state", clientId) } diff --git a/x/rollapp/keeper/invariants_test.go b/x/rollapp/keeper/invariants_test.go index b94d5d6fb..d11853637 100644 --- a/x/rollapp/keeper/invariants_test.go +++ b/x/rollapp/keeper/invariants_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/tendermint/tendermint/libs/rand" + "github.com/cometbft/cometbft/libs/rand" commontypes "github.com/dymensionxyz/dymension/v3/x/common/types" "github.com/dymensionxyz/dymension/v3/x/rollapp/keeper" diff --git a/x/rollapp/keeper/keeper.go b/x/rollapp/keeper/keeper.go index c52088861..d8a291062 100644 --- a/x/rollapp/keeper/keeper.go +++ b/x/rollapp/keeper/keeper.go @@ -3,7 +3,7 @@ package keeper import ( "fmt" - "github.com/tendermint/tendermint/libs/log" + "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" diff --git a/x/rollapp/keeper/msg_server_create_rollapp_test.go b/x/rollapp/keeper/msg_server_create_rollapp_test.go index 4169f5f01..a496ac56f 100644 --- a/x/rollapp/keeper/msg_server_create_rollapp_test.go +++ b/x/rollapp/keeper/msg_server_create_rollapp_test.go @@ -3,7 +3,7 @@ package keeper_test import ( fmt "fmt" - "github.com/tendermint/tendermint/libs/rand" + "github.com/cometbft/cometbft/libs/rand" "github.com/dymensionxyz/dymension/v3/testutil/sample" "github.com/dymensionxyz/dymension/v3/x/rollapp/types" diff --git a/x/rollapp/keeper/msg_server_update_state_test.go b/x/rollapp/keeper/msg_server_update_state_test.go index 7ceafad35..65b9161ac 100644 --- a/x/rollapp/keeper/msg_server_update_state_test.go +++ b/x/rollapp/keeper/msg_server_update_state_test.go @@ -4,10 +4,10 @@ import ( "github.com/dymensionxyz/dymension/v3/x/rollapp/types" sequencertypes "github.com/dymensionxyz/dymension/v3/x/sequencer/types" + abci "github.com/cometbft/cometbft/abci/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" common "github.com/dymensionxyz/dymension/v3/x/common/types" - abci "github.com/tendermint/tendermint/abci/types" ) // TODO: refactor the tests to use test-cases diff --git a/x/rollapp/keeper/rollapp_suite_test.go b/x/rollapp/keeper/rollapp_suite_test.go index 1f206b155..858cb3c02 100644 --- a/x/rollapp/keeper/rollapp_suite_test.go +++ b/x/rollapp/keeper/rollapp_suite_test.go @@ -9,11 +9,12 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" "github.com/stretchr/testify/suite" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" "github.com/dymensionxyz/dymension/v3/app/apptesting" "github.com/dymensionxyz/dymension/v3/x/rollapp/keeper" "github.com/dymensionxyz/dymension/v3/x/rollapp/types" + + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" ) // Prevent strconv unused error @@ -50,10 +51,12 @@ type RollappTestSuite struct { func (suite *RollappTestSuite) SetupTest(deployerWhitelist ...types.DeployerParams) { app := apptesting.Setup(suite.T(), false) - ctx := app.GetBaseApp().NewContext(false, tmproto.Header{}) + ctx := app.GetBaseApp().NewContext(false, cometbftproto.Header{}) - app.AccountKeeper.SetParams(ctx, authtypes.DefaultParams()) - app.BankKeeper.SetParams(ctx, banktypes.DefaultParams()) + err := app.AccountKeeper.SetParams(ctx, authtypes.DefaultParams()) + suite.Require().NoError(err) + err = app.BankKeeper.SetParams(ctx, banktypes.DefaultParams()) + suite.Require().NoError(err) app.RollappKeeper.SetParams(ctx, types.NewParams(true, 2, deployerWhitelist)) rollappModuleAddress = app.AccountKeeper.GetModuleAddress(types.ModuleName).String() diff --git a/x/rollapp/module.go b/x/rollapp/module.go index 3cbca044d..582b466e4 100644 --- a/x/rollapp/module.go +++ b/x/rollapp/module.go @@ -11,7 +11,7 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" + abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" @@ -125,17 +125,6 @@ func (am AppModule) Name() string { return am.AppModuleBasic.Name() } -// Route returns the capability module's message routing key. -func (am AppModule) Route() sdk.Route { return sdk.Route{} } - -// QuerierRoute returns the capability module's query routing key. -func (AppModule) QuerierRoute() string { return types.QuerierRoute } - -// LegacyQuerierHandler returns the capability module's Querier. -func (am AppModule) LegacyQuerierHandler(legacyQuerierCdc *codec.LegacyAmino) sdk.Querier { - return nil -} - // RegisterServices registers a GRPC query service to respond to the // module-specific GRPC queries. func (am AppModule) RegisterServices(cfg module.Configurator) { diff --git a/x/rollapp/module_simulation.go b/x/rollapp/module_simulation.go index df863e76b..efedc6a80 100644 --- a/x/rollapp/module_simulation.go +++ b/x/rollapp/module_simulation.go @@ -1,15 +1,14 @@ package rollapp import ( - "fmt" "math/rand" "github.com/cosmos/cosmos-sdk/baseapp" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" + "github.com/dymensionxyz/dymension/v3/app/params" "github.com/dymensionxyz/dymension/v3/testutil/sample" rollappsimulation "github.com/dymensionxyz/dymension/v3/x/rollapp/simulation" "github.com/dymensionxyz/dymension/v3/x/rollapp/types" @@ -18,7 +17,7 @@ import ( // avoid unused import issue var ( _ = sample.AccAddress - _ = simappparams.StakePerAccount + _ = params.StakePerAccount _ = simulation.MsgEntryKind _ = baseapp.Paramspace ) @@ -55,24 +54,6 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP return nil } -// RandomizedParams creates randomized param changes for the simulator -func (am AppModule) RandomizedParams(r *rand.Rand) []simtypes.ParamChange { - _ = r - rollappParams := types.DefaultParams() - return []simtypes.ParamChange{ - simulation.NewSimParamChange(types.ModuleName, string(types.KeyDisputePeriodInBlocks), - func(r *rand.Rand) string { - return string(types.Amino.MustMarshalJSON(rollappParams.DisputePeriodInBlocks)) - }, - ), - simulation.NewSimParamChange(types.ModuleName, string(types.KeyDeployerWhitelist), - func(r *rand.Rand) string { - return fmt.Sprintf("%v", []string{}) - }, - ), - } -} - // RegisterStoreDecoder registers a decoder func (am AppModule) RegisterStoreDecoder(_ sdk.StoreDecoderRegistry) {} diff --git a/x/rollapp/transfergenesis/ante_decorator.go b/x/rollapp/transfergenesis/ante_decorator.go index 41e594547..543a9911b 100644 --- a/x/rollapp/transfergenesis/ante_decorator.go +++ b/x/rollapp/transfergenesis/ante_decorator.go @@ -6,7 +6,7 @@ import ( "github.com/dymensionxyz/gerr-cosmos/gerrc" "github.com/dymensionxyz/sdk-utils/utils/uibc" - transferTypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" + transferTypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" "github.com/dymensionxyz/dymension/v3/x/rollapp/types" ) diff --git a/x/rollapp/transfergenesis/ibc_module.go b/x/rollapp/transfergenesis/ibc_module.go index 2c2ea4ca1..5ec1ab244 100644 --- a/x/rollapp/transfergenesis/ibc_module.go +++ b/x/rollapp/transfergenesis/ibc_module.go @@ -12,17 +12,17 @@ import ( uibc "github.com/dymensionxyz/sdk-utils/utils/uibc" - "github.com/tendermint/tendermint/libs/log" + "github.com/cometbft/cometbft/libs/log" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v6/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v7/modules/core/exported" delayedackkeeper "github.com/dymensionxyz/dymension/v3/x/delayedack/keeper" rollappkeeper "github.com/dymensionxyz/dymension/v3/x/rollapp/keeper" diff --git a/x/rollapp/transfergenesis/ibc_module_canonical_channel_hack.go b/x/rollapp/transfergenesis/ibc_module_canonical_channel_hack.go index 769f11864..d0ade93c2 100644 --- a/x/rollapp/transfergenesis/ibc_module_canonical_channel_hack.go +++ b/x/rollapp/transfergenesis/ibc_module_canonical_channel_hack.go @@ -2,9 +2,9 @@ package transfergenesis import ( sdk "github.com/cosmos/cosmos-sdk/types" - channeltypes "github.com/cosmos/ibc-go/v6/modules/core/04-channel/types" - porttypes "github.com/cosmos/ibc-go/v6/modules/core/05-port/types" - "github.com/cosmos/ibc-go/v6/modules/core/exported" + channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" + porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" + "github.com/cosmos/ibc-go/v7/modules/core/exported" rollappkeeper "github.com/dymensionxyz/dymension/v3/x/rollapp/keeper" uibc "github.com/dymensionxyz/sdk-utils/utils/uibc" ) diff --git a/x/rollapp/types/block_descriptor.pb.go b/x/rollapp/types/block_descriptor.pb.go index 085d88421..5817dcf5c 100644 --- a/x/rollapp/types/block_descriptor.pb.go +++ b/x/rollapp/types/block_descriptor.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/rollapp/block_descriptor.proto +// source: dymensionxyz/dymension/rollapp/block_descriptor.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -35,7 +35,7 @@ func (m *BlockDescriptor) Reset() { *m = BlockDescriptor{} } func (m *BlockDescriptor) String() string { return proto.CompactTextString(m) } func (*BlockDescriptor) ProtoMessage() {} func (*BlockDescriptor) Descriptor() ([]byte, []int) { - return fileDescriptor_9e537259fa860c20, []int{0} + return fileDescriptor_6eb4c1d0c21c2e68, []int{0} } func (m *BlockDescriptor) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -87,7 +87,7 @@ func (m *BlockDescriptors) Reset() { *m = BlockDescriptors{} } func (m *BlockDescriptors) String() string { return proto.CompactTextString(m) } func (*BlockDescriptors) ProtoMessage() {} func (*BlockDescriptors) Descriptor() ([]byte, []int) { - return fileDescriptor_9e537259fa860c20, []int{1} + return fileDescriptor_6eb4c1d0c21c2e68, []int{1} } func (m *BlockDescriptors) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -129,26 +129,26 @@ func init() { } func init() { - proto.RegisterFile("dymension/rollapp/block_descriptor.proto", fileDescriptor_9e537259fa860c20) + proto.RegisterFile("dymensionxyz/dymension/rollapp/block_descriptor.proto", fileDescriptor_6eb4c1d0c21c2e68) } -var fileDescriptor_9e537259fa860c20 = []byte{ +var fileDescriptor_6eb4c1d0c21c2e68 = []byte{ // 243 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x48, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x2f, 0xca, 0xcf, 0xc9, 0x49, 0x2c, 0x28, 0xd0, 0x4f, 0xca, - 0xc9, 0x4f, 0xce, 0x8e, 0x4f, 0x49, 0x2d, 0x4e, 0x2e, 0xca, 0x2c, 0x28, 0xc9, 0x2f, 0xd2, 0x2b, - 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x83, 0xab, 0xac, 0xa8, 0xac, 0xd2, 0x83, 0x73, 0xf4, 0xa0, - 0xda, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x4a, 0xf5, 0x41, 0x2c, 0x88, 0x2e, 0x25, 0x77, - 0x2e, 0x7e, 0x27, 0x90, 0x79, 0x2e, 0x70, 0xe3, 0x84, 0xc4, 0xb8, 0xd8, 0x32, 0x52, 0x33, 0xd3, - 0x33, 0x4a, 0x24, 0x18, 0x15, 0x18, 0x35, 0x58, 0x82, 0xa0, 0x3c, 0x21, 0x19, 0x2e, 0xce, 0xe2, - 0x92, 0xc4, 0x92, 0xd4, 0xa0, 0xfc, 0xfc, 0x12, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x9e, 0x20, 0x84, - 0x80, 0x52, 0x24, 0x97, 0x00, 0x9a, 0x41, 0xc5, 0x42, 0xae, 0x5c, 0x4c, 0x4e, 0x2e, 0x12, 0x8c, - 0x0a, 0xcc, 0x1a, 0xdc, 0x46, 0xfa, 0x7a, 0xf8, 0xdd, 0xa7, 0x87, 0xa6, 0xdb, 0x89, 0xe5, 0xc4, - 0x3d, 0x79, 0x86, 0x20, 0x26, 0x27, 0x17, 0x27, 0xbf, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, - 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, - 0x96, 0x63, 0x88, 0x32, 0x49, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x47, - 0x36, 0x1e, 0xc1, 0xd1, 0x2f, 0x33, 0xd6, 0xaf, 0x80, 0x07, 0x5d, 0x49, 0x65, 0x41, 0x6a, 0x71, - 0x12, 0x1b, 0xd8, 0xeb, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x29, 0x7b, 0x0f, 0xc6, 0x5c, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0x4d, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x8b, 0xf2, 0x73, 0x72, + 0x12, 0x0b, 0x0a, 0xf4, 0x93, 0x72, 0xf2, 0x93, 0xb3, 0xe3, 0x53, 0x52, 0x8b, 0x93, 0x8b, 0x32, + 0x0b, 0x4a, 0xf2, 0x8b, 0xf4, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xe4, 0x90, 0xb5, 0xe9, 0xc1, + 0x39, 0x7a, 0x50, 0x6d, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0xa5, 0xfa, 0x20, 0x16, 0x44, + 0x97, 0x92, 0x3b, 0x17, 0xbf, 0x13, 0xc8, 0x3c, 0x17, 0xb8, 0x71, 0x42, 0x62, 0x5c, 0x6c, 0x19, + 0xa9, 0x99, 0xe9, 0x19, 0x25, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x2c, 0x41, 0x50, 0x9e, 0x90, 0x0c, + 0x17, 0x67, 0x71, 0x49, 0x62, 0x49, 0x6a, 0x50, 0x7e, 0x7e, 0x89, 0x04, 0x93, 0x02, 0xa3, 0x06, + 0x4f, 0x10, 0x42, 0x40, 0x29, 0x92, 0x4b, 0x00, 0xcd, 0xa0, 0x62, 0x21, 0x57, 0x2e, 0x26, 0x27, + 0x17, 0x09, 0x46, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x7d, 0x3d, 0xfc, 0xee, 0xd3, 0x43, 0xd3, 0xed, + 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0x93, 0x93, 0x8b, 0x93, 0xdf, 0x89, 0x47, 0x72, 0x8c, + 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, + 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x99, 0xa4, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, + 0xe7, 0xea, 0xe3, 0x08, 0xb5, 0x32, 0x63, 0xfd, 0x0a, 0x78, 0xd0, 0x95, 0x54, 0x16, 0xa4, 0x16, + 0x27, 0xb1, 0x81, 0xbd, 0x6e, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x40, 0x09, 0x0c, 0xda, 0x69, 0x01, 0x00, 0x00, } diff --git a/x/rollapp/types/expected_keepers.go b/x/rollapp/types/expected_keepers.go index 53bd0ad7f..3279dc73f 100644 --- a/x/rollapp/types/expected_keepers.go +++ b/x/rollapp/types/expected_keepers.go @@ -2,7 +2,7 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmos/ibc-go/v6/modules/core/exported" + "github.com/cosmos/ibc-go/v7/modules/core/exported" ) type IBCClientKeeper interface { diff --git a/x/rollapp/types/genesis.pb.go b/x/rollapp/types/genesis.pb.go index 715550a13..0672f80c2 100644 --- a/x/rollapp/types/genesis.pb.go +++ b/x/rollapp/types/genesis.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/rollapp/genesis.proto +// source: dymensionxyz/dymension/rollapp/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -37,7 +37,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_f4bf6d3c28914609, []int{0} + return fileDescriptor_b76890aebc09aa04, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -112,35 +112,37 @@ func init() { proto.RegisterType((*GenesisState)(nil), "dymensionxyz.dymension.rollapp.GenesisState") } -func init() { proto.RegisterFile("dymension/rollapp/genesis.proto", fileDescriptor_f4bf6d3c28914609) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/rollapp/genesis.proto", fileDescriptor_b76890aebc09aa04) +} -var fileDescriptor_f4bf6d3c28914609 = []byte{ - // 385 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x92, 0x3d, 0x4f, 0x3a, 0x31, - 0x1c, 0xc7, 0xef, 0xfe, 0x3c, 0x0c, 0xe5, 0xef, 0xd2, 0x38, 0x10, 0x12, 0x0b, 0x61, 0x50, 0x5c, - 0x7a, 0x09, 0x38, 0x3b, 0x10, 0xa3, 0x92, 0x18, 0x1f, 0x40, 0x17, 0x17, 0x52, 0xa0, 0x1c, 0x8d, - 0x47, 0x7b, 0xb9, 0x16, 0x03, 0x6c, 0xbe, 0x03, 0x07, 0x5f, 0x14, 0x23, 0xa3, 0x93, 0x31, 0xf0, - 0x46, 0x0c, 0xbd, 0x72, 0x62, 0x10, 0x8e, 0xc4, 0xe9, 0xae, 0xf9, 0x7d, 0x7e, 0x9f, 0xef, 0xb7, - 0x49, 0x41, 0xbe, 0x33, 0xea, 0x53, 0x2e, 0x99, 0xe0, 0x4e, 0x20, 0x3c, 0x8f, 0xf8, 0xbe, 0xe3, - 0x52, 0x4e, 0x25, 0x93, 0xd8, 0x0f, 0x84, 0x12, 0x10, 0x45, 0xc0, 0x70, 0x34, 0xc6, 0xd1, 0x01, - 0x1b, 0x3a, 0xb7, 0xef, 0x0a, 0x57, 0x68, 0xd4, 0x59, 0xfc, 0x85, 0x5b, 0x39, 0xb4, 0xae, 0xf5, - 0x49, 0x40, 0xfa, 0xc6, 0x9a, 0xfb, 0x25, 0xd6, 0x7c, 0x0d, 0x50, 0x5c, 0x07, 0xa4, 0x22, 0x8a, - 0x36, 0x19, 0xef, 0x2e, 0x43, 0x4a, 0x1b, 0xbb, 0x37, 0x55, 0x40, 0xb8, 0xec, 0xd2, 0x20, 0x24, - 0x8b, 0x2f, 0x29, 0xf0, 0xff, 0x22, 0x1c, 0x35, 0x16, 0x16, 0x78, 0x06, 0xd2, 0x61, 0x9f, 0xac, - 0x5d, 0xb0, 0x4b, 0x99, 0xf2, 0x21, 0xde, 0x7e, 0x4d, 0x7c, 0xab, 0xe9, 0x6a, 0x72, 0xf2, 0x91, - 0xb7, 0xea, 0x66, 0x17, 0xde, 0x80, 0x8c, 0x99, 0x5f, 0x31, 0xa9, 0xb2, 0xff, 0x0a, 0x89, 0x52, - 0xa6, 0x7c, 0x14, 0xa7, 0xaa, 0x87, 0x5f, 0xe3, 0x5a, 0x35, 0xc0, 0x07, 0xb0, 0xa7, 0x6f, 0x59, - 0xe3, 0x5d, 0xa1, 0x95, 0x09, 0xad, 0x3c, 0x8e, 0x53, 0x36, 0x96, 0x4b, 0x46, 0xfa, 0xd3, 0x02, - 0x7d, 0x90, 0xf5, 0x88, 0xa2, 0x52, 0x45, 0x5c, 0x8d, 0x77, 0xe8, 0x50, 0x27, 0x24, 0x75, 0x02, - 0xde, 0x39, 0x41, 0x6f, 0x9a, 0x98, 0x8d, 0x56, 0x38, 0x06, 0x07, 0xe1, 0xec, 0x9c, 0x71, 0xe2, - 0xb1, 0x31, 0xed, 0x18, 0x68, 0x19, 0x9b, 0xfa, 0x43, 0xec, 0x76, 0x35, 0x7c, 0xb3, 0x41, 0xb1, - 0xe5, 0x89, 0xf6, 0xd3, 0x25, 0x65, 0x6e, 0x4f, 0xdd, 0x0b, 0x03, 0x12, 0xc5, 0x04, 0xbf, 0x1b, - 0xd0, 0x01, 0xd5, 0x0d, 0xd2, 0xba, 0xc1, 0x69, 0x5c, 0x83, 0xea, 0x56, 0x93, 0x69, 0xb4, 0x43, - 0x5e, 0xf5, 0x7a, 0x32, 0x43, 0xf6, 0x74, 0x86, 0xec, 0xcf, 0x19, 0xb2, 0x5f, 0xe7, 0xc8, 0x9a, - 0xce, 0x91, 0xf5, 0x3e, 0x47, 0xd6, 0xe3, 0x89, 0xcb, 0x54, 0x6f, 0xd0, 0xc2, 0x6d, 0xd1, 0x77, - 0x56, 0xdb, 0x7c, 0x1f, 0x9c, 0xe7, 0x8a, 0x33, 0x8c, 0x1e, 0xb9, 0x1a, 0xf9, 0x54, 0xb6, 0xd2, - 0xfa, 0x69, 0x57, 0xbe, 0x02, 0x00, 0x00, 0xff, 0xff, 0xa4, 0x3a, 0xf7, 0xa0, 0xc2, 0x03, 0x00, - 0x00, +var fileDescriptor_b76890aebc09aa04 = []byte{ + // 388 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0x3f, 0x4f, 0x3a, 0x31, + 0x1c, 0xc6, 0xef, 0x7e, 0xfc, 0x19, 0xca, 0xcf, 0xa5, 0x71, 0x20, 0x24, 0x56, 0xc2, 0xa0, 0x18, + 0x4d, 0x2f, 0x01, 0x5d, 0x1d, 0x88, 0x51, 0x49, 0x8c, 0x7f, 0x40, 0x17, 0x17, 0x52, 0xa0, 0x1c, + 0x8d, 0x47, 0x7b, 0xb9, 0x16, 0x03, 0x6c, 0xbe, 0x03, 0x07, 0x5f, 0x14, 0x23, 0xa3, 0x93, 0x31, + 0xf0, 0x46, 0x0c, 0xbd, 0x72, 0xc1, 0x01, 0xee, 0x12, 0xa7, 0x5e, 0xf3, 0x7d, 0x9e, 0xcf, 0xf3, + 0xf4, 0xd2, 0x82, 0x93, 0xee, 0x78, 0x40, 0xb9, 0x64, 0x82, 0x8f, 0xc6, 0x13, 0x27, 0xda, 0x38, + 0x81, 0xf0, 0x3c, 0xe2, 0xfb, 0x8e, 0x4b, 0x39, 0x95, 0x4c, 0x62, 0x3f, 0x10, 0x4a, 0x40, 0xb4, + 0xae, 0xc6, 0xd1, 0x06, 0x1b, 0x75, 0x61, 0xd7, 0x15, 0xae, 0xd0, 0x52, 0x67, 0xf9, 0x15, 0xba, + 0x0a, 0xc7, 0x31, 0x19, 0x3e, 0x09, 0xc8, 0xc0, 0x44, 0x14, 0xe2, 0x0a, 0x99, 0xd5, 0xa8, 0x9d, + 0x18, 0xb5, 0x54, 0x44, 0xd1, 0x16, 0xe3, 0xbd, 0x55, 0x97, 0xb3, 0x64, 0xe7, 0x6d, 0xa9, 0x80, + 0x70, 0xd9, 0xa3, 0x41, 0x68, 0x2b, 0xbd, 0x65, 0xc0, 0xff, 0xab, 0x70, 0xd4, 0x5c, 0x22, 0xe1, + 0x05, 0xc8, 0x86, 0xb5, 0xf3, 0x76, 0xd1, 0x2e, 0xe7, 0x2a, 0x07, 0x78, 0xfb, 0xaf, 0xc1, 0xf7, + 0x5a, 0x5d, 0x4b, 0x4f, 0xbf, 0xf6, 0xad, 0x86, 0xf1, 0xc2, 0x3b, 0x90, 0x33, 0xf3, 0x1b, 0x26, + 0x55, 0xfe, 0x5f, 0x31, 0x55, 0xce, 0x55, 0x0e, 0xe3, 0x50, 0x8d, 0x70, 0x35, 0xac, 0x75, 0x02, + 0x7c, 0x02, 0x3b, 0xfa, 0xc8, 0x75, 0xde, 0x13, 0x1a, 0x99, 0xd2, 0xc8, 0xa3, 0x38, 0x64, 0x73, + 0x65, 0x32, 0xd0, 0xdf, 0x14, 0xe8, 0x83, 0xbc, 0x47, 0x14, 0x95, 0x2a, 0xd2, 0xd5, 0x79, 0x97, + 0x8e, 0x74, 0x42, 0x5a, 0x27, 0xe0, 0xc4, 0x09, 0xda, 0x69, 0x62, 0x36, 0x52, 0xe1, 0x04, 0xec, + 0x85, 0xb3, 0x4b, 0xc6, 0x89, 0xc7, 0x26, 0xb4, 0x6b, 0x44, 0xab, 0xd8, 0xcc, 0x1f, 0x62, 0xb7, + 0xa3, 0xe1, 0x87, 0x0d, 0x4a, 0x6d, 0x4f, 0x74, 0x5e, 0xae, 0x29, 0x73, 0xfb, 0xea, 0x51, 0x18, + 0x21, 0x51, 0x4c, 0xf0, 0x87, 0x21, 0x1d, 0x52, 0xdd, 0x20, 0xab, 0x1b, 0x9c, 0xc7, 0x35, 0xa8, + 0x6d, 0x25, 0x99, 0x46, 0x09, 0xf2, 0x6a, 0xb7, 0xd3, 0x39, 0xb2, 0x67, 0x73, 0x64, 0x7f, 0xcf, + 0x91, 0xfd, 0xbe, 0x40, 0xd6, 0x6c, 0x81, 0xac, 0xcf, 0x05, 0xb2, 0x9e, 0x4f, 0x5d, 0xa6, 0xfa, + 0xc3, 0x36, 0xee, 0x88, 0xc1, 0xa6, 0x07, 0xf1, 0x5a, 0x75, 0x46, 0xd1, 0x25, 0x57, 0x63, 0x9f, + 0xca, 0x76, 0x56, 0x5f, 0xed, 0xea, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7f, 0x77, 0x16, 0xb4, + 0x03, 0x04, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/rollapp/types/genesis_transfer.pb.go b/x/rollapp/types/genesis_transfer.pb.go index 687d3c360..1bf850601 100644 --- a/x/rollapp/types/genesis_transfer.pb.go +++ b/x/rollapp/types/genesis_transfer.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/rollapp/genesis_transfer.proto +// source: dymensionxyz/dymension/rollapp/genesis_transfer.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -37,7 +37,7 @@ func (m *GenesisTransfers) Reset() { *m = GenesisTransfers{} } func (m *GenesisTransfers) String() string { return proto.CompactTextString(m) } func (*GenesisTransfers) ProtoMessage() {} func (*GenesisTransfers) Descriptor() ([]byte, []int) { - return fileDescriptor_abbd5969075b03fa, []int{0} + return fileDescriptor_206b833d0e4f236a, []int{0} } func (m *GenesisTransfers) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -92,27 +92,27 @@ func init() { } func init() { - proto.RegisterFile("dymension/rollapp/genesis_transfer.proto", fileDescriptor_abbd5969075b03fa) + proto.RegisterFile("dymensionxyz/dymension/rollapp/genesis_transfer.proto", fileDescriptor_206b833d0e4f236a) } -var fileDescriptor_abbd5969075b03fa = []byte{ +var fileDescriptor_206b833d0e4f236a = []byte{ // 257 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x48, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x2f, 0xca, 0xcf, 0xc9, 0x49, 0x2c, 0x28, 0xd0, 0x4f, 0x4f, - 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0x8e, 0x2f, 0x29, 0x4a, 0xcc, 0x2b, 0x4e, 0x4b, 0x2d, 0xd2, 0x2b, - 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x83, 0xab, 0xac, 0xa8, 0xac, 0xd2, 0x83, 0x73, 0xf4, 0xa0, - 0xda, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x4a, 0xf5, 0x41, 0x2c, 0x88, 0x2e, 0x29, 0x39, - 0x4c, 0xf3, 0x0b, 0x12, 0x8b, 0x12, 0x73, 0x8b, 0xa1, 0xf2, 0xf2, 0x98, 0xf2, 0x50, 0x1a, 0xaa, - 0x40, 0x09, 0x53, 0x41, 0x71, 0x49, 0x62, 0x49, 0x6a, 0x7c, 0x66, 0x5e, 0x1a, 0xd4, 0x12, 0xa5, - 0x3c, 0x2e, 0x01, 0x77, 0x88, 0xa3, 0x43, 0xa0, 0x6e, 0x2e, 0x16, 0x92, 0xe1, 0xe2, 0x84, 0xaa, - 0xf7, 0x74, 0x91, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x42, 0x08, 0x08, 0x49, 0x71, 0x71, 0xe4, - 0x95, 0xe6, 0x86, 0xe4, 0x97, 0x24, 0xe6, 0x48, 0x30, 0x29, 0x30, 0x6a, 0xb0, 0x04, 0xc1, 0xf9, - 0x42, 0x0a, 0x5c, 0xdc, 0x79, 0xa5, 0xb9, 0x41, 0xa9, 0xc9, 0xa9, 0x99, 0x65, 0xa9, 0x29, 0x12, - 0xcc, 0x60, 0x69, 0x64, 0x21, 0x27, 0xbf, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, - 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, - 0x88, 0x32, 0x49, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x47, 0x0e, 0x2f, - 0x04, 0x47, 0xbf, 0xcc, 0x58, 0xbf, 0x02, 0xee, 0x95, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, - 0xb0, 0x37, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x28, 0x1c, 0x26, 0x98, 0x8d, 0x01, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0x4d, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x8b, 0xf2, 0x73, 0x72, + 0x12, 0x0b, 0x0a, 0xf4, 0xd3, 0x53, 0xf3, 0x52, 0x8b, 0x33, 0x8b, 0xe3, 0x4b, 0x8a, 0x12, 0xf3, + 0x8a, 0xd3, 0x52, 0x8b, 0xf4, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xe4, 0x90, 0xb5, 0xe9, 0xc1, + 0x39, 0x7a, 0x50, 0x6d, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0xa5, 0xfa, 0x20, 0x16, 0x44, + 0x97, 0x94, 0x36, 0x01, 0xcb, 0x0a, 0x12, 0x8b, 0x12, 0x73, 0x8b, 0xa1, 0x8a, 0x75, 0x08, 0x28, + 0x86, 0xd2, 0x50, 0xd5, 0xfa, 0x04, 0x54, 0x17, 0x97, 0x24, 0x96, 0xa4, 0xc6, 0x67, 0xe6, 0xa5, + 0x41, 0xdd, 0xa2, 0x94, 0xc7, 0x25, 0xe0, 0x0e, 0xf1, 0x5b, 0x08, 0xd4, 0x6b, 0xc5, 0x42, 0x32, + 0x5c, 0x9c, 0x50, 0xf5, 0x9e, 0x2e, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x41, 0x08, 0x01, 0x21, + 0x29, 0x2e, 0x8e, 0xbc, 0xd2, 0xdc, 0x90, 0xfc, 0x92, 0xc4, 0x1c, 0x09, 0x26, 0x05, 0x46, 0x0d, + 0x96, 0x20, 0x38, 0x5f, 0x48, 0x81, 0x8b, 0x3b, 0xaf, 0x34, 0x37, 0x28, 0x35, 0x39, 0x35, 0xb3, + 0x2c, 0x35, 0x45, 0x82, 0x19, 0x2c, 0x8d, 0x2c, 0xe4, 0xe4, 0x77, 0xe2, 0x91, 0x1c, 0xe3, 0x85, + 0x47, 0x72, 0x8c, 0x0f, 0x1e, 0xc9, 0x31, 0x4e, 0x78, 0x2c, 0xc7, 0x70, 0xe1, 0xb1, 0x1c, 0xc3, + 0x8d, 0xc7, 0x72, 0x0c, 0x51, 0x26, 0xe9, 0x99, 0x25, 0x19, 0xa5, 0x49, 0x7a, 0xc9, 0xf9, 0xb9, + 0xb8, 0x7c, 0x51, 0x66, 0xac, 0x5f, 0x01, 0xf7, 0x4a, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, + 0xd8, 0x1b, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xde, 0x6c, 0x08, 0x30, 0xc1, 0x01, 0x00, 0x00, } diff --git a/x/rollapp/types/params.pb.go b/x/rollapp/types/params.pb.go index 8f93b7861..50de44568 100644 --- a/x/rollapp/types/params.pb.go +++ b/x/rollapp/types/params.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/rollapp/params.proto +// source: dymensionxyz/dymension/rollapp/params.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -33,7 +33,7 @@ func (m *DeployerParams) Reset() { *m = DeployerParams{} } func (m *DeployerParams) String() string { return proto.CompactTextString(m) } func (*DeployerParams) ProtoMessage() {} func (*DeployerParams) Descriptor() ([]byte, []int) { - return fileDescriptor_8a5e294b0dff70d2, []int{0} + return fileDescriptor_75a44aa904ae1ba5, []int{0} } func (m *DeployerParams) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -85,7 +85,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_8a5e294b0dff70d2, []int{1} + return fileDescriptor_75a44aa904ae1ba5, []int{1} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -140,33 +140,35 @@ func init() { proto.RegisterType((*Params)(nil), "dymensionxyz.dymension.rollapp.Params") } -func init() { proto.RegisterFile("dymension/rollapp/params.proto", fileDescriptor_8a5e294b0dff70d2) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/rollapp/params.proto", fileDescriptor_75a44aa904ae1ba5) +} -var fileDescriptor_8a5e294b0dff70d2 = []byte{ - // 354 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x2f, 0xca, 0xcf, 0xc9, 0x49, 0x2c, 0x28, 0xd0, 0x2f, 0x48, - 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x42, 0xc8, 0x57, 0x54, 0x56, - 0xe9, 0xc1, 0x39, 0x7a, 0x50, 0xc5, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0xa5, 0xfa, 0x20, - 0x16, 0x44, 0x97, 0x92, 0x1d, 0x17, 0x9f, 0x4b, 0x6a, 0x41, 0x4e, 0x7e, 0x65, 0x6a, 0x51, 0x00, - 0xd8, 0x34, 0x21, 0x1d, 0x2e, 0xf6, 0xc4, 0x94, 0x94, 0xa2, 0xd4, 0xe2, 0x62, 0x09, 0x46, 0x05, - 0x46, 0x0d, 0x4e, 0x27, 0xa1, 0x4f, 0xf7, 0xe4, 0xf9, 0x2a, 0x13, 0x73, 0x73, 0xac, 0x94, 0xa0, - 0x12, 0x4a, 0x41, 0x30, 0x25, 0x4a, 0xdb, 0x99, 0xb8, 0xd8, 0xa0, 0x1a, 0x63, 0xb8, 0x24, 0x52, - 0x32, 0x8b, 0x0b, 0x4a, 0x4b, 0x52, 0xe3, 0x0b, 0x52, 0x8b, 0x32, 0xf3, 0x53, 0xe2, 0x33, 0xf3, - 0xe2, 0x93, 0x72, 0xf2, 0x93, 0xb3, 0x21, 0x26, 0xb1, 0x38, 0x29, 0x7f, 0xba, 0x27, 0x2f, 0x0f, - 0x31, 0x09, 0x97, 0x4a, 0xa5, 0x20, 0x51, 0xa8, 0x54, 0x00, 0x58, 0xc6, 0x33, 0xcf, 0x09, 0x2c, - 0x2e, 0xd4, 0xc0, 0xc8, 0x25, 0x94, 0x02, 0x75, 0x69, 0x7c, 0x79, 0x46, 0x66, 0x49, 0x6a, 0x4e, - 0x66, 0x71, 0x89, 0x04, 0x93, 0x02, 0xb3, 0x06, 0xb7, 0x91, 0x9e, 0x1e, 0x7e, 0xcf, 0xeb, 0xa1, - 0xfa, 0xd1, 0x49, 0xf1, 0xc4, 0x3d, 0x79, 0x86, 0x4f, 0xf7, 0xe4, 0x25, 0xa1, 0x8e, 0xc1, 0x30, - 0x57, 0x29, 0x48, 0x10, 0x26, 0x18, 0x0e, 0x13, 0x13, 0x72, 0xe3, 0x12, 0x80, 0x9a, 0x57, 0x1c, - 0x9f, 0x9a, 0x97, 0x98, 0x94, 0x93, 0x9a, 0x22, 0xc1, 0xac, 0xc0, 0xa8, 0xc1, 0xe1, 0x24, 0xfd, - 0xe9, 0x9e, 0xbc, 0x38, 0xc4, 0x2c, 0x74, 0x15, 0x4a, 0x41, 0xfc, 0x30, 0x21, 0x57, 0x88, 0x88, - 0x15, 0xcb, 0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0x7e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, - 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, - 0xc7, 0x10, 0x65, 0x92, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x8f, 0xec, - 0x2f, 0x04, 0x47, 0xbf, 0xcc, 0x58, 0xbf, 0x02, 0x9e, 0x0c, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, - 0xd8, 0xc0, 0x11, 0x6a, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x6e, 0x56, 0x35, 0x3d, 0x28, 0x02, - 0x00, 0x00, +var fileDescriptor_75a44aa904ae1ba5 = []byte{ + // 356 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4e, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x8b, 0xf2, 0x73, 0x72, + 0x12, 0x0b, 0x0a, 0xf4, 0x0b, 0x12, 0x8b, 0x12, 0x73, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, + 0x85, 0xe4, 0x90, 0x15, 0xeb, 0xc1, 0x39, 0x7a, 0x50, 0xc5, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, + 0x60, 0xa5, 0xfa, 0x20, 0x16, 0x44, 0x97, 0x92, 0x1d, 0x17, 0x9f, 0x4b, 0x6a, 0x41, 0x4e, 0x7e, + 0x65, 0x6a, 0x51, 0x00, 0xd8, 0x34, 0x21, 0x1d, 0x2e, 0xf6, 0xc4, 0x94, 0x94, 0xa2, 0xd4, 0xe2, + 0x62, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x4e, 0x27, 0xa1, 0x4f, 0xf7, 0xe4, 0xf9, 0x2a, 0x13, 0x73, + 0x73, 0xac, 0x94, 0xa0, 0x12, 0x4a, 0x41, 0x30, 0x25, 0x4a, 0xdb, 0x99, 0xb8, 0xd8, 0xa0, 0x1a, + 0x63, 0xb8, 0x24, 0x52, 0x32, 0x8b, 0x0b, 0x4a, 0x4b, 0x52, 0xe3, 0x0b, 0x52, 0x8b, 0x32, 0xf3, + 0x53, 0xe2, 0x33, 0xf3, 0xe2, 0x93, 0x72, 0xf2, 0x93, 0xb3, 0x21, 0x26, 0xb1, 0x38, 0x29, 0x7f, + 0xba, 0x27, 0x2f, 0x0f, 0x31, 0x09, 0x97, 0x4a, 0xa5, 0x20, 0x51, 0xa8, 0x54, 0x00, 0x58, 0xc6, + 0x33, 0xcf, 0x09, 0x2c, 0x2e, 0xd4, 0xc0, 0xc8, 0x25, 0x94, 0x02, 0x75, 0x69, 0x7c, 0x79, 0x46, + 0x66, 0x49, 0x6a, 0x4e, 0x66, 0x71, 0x89, 0x04, 0x93, 0x02, 0xb3, 0x06, 0xb7, 0x91, 0x9e, 0x1e, + 0x7e, 0xcf, 0xeb, 0xa1, 0xfa, 0xd1, 0x49, 0xf1, 0xc4, 0x3d, 0x79, 0x86, 0x4f, 0xf7, 0xe4, 0x25, + 0xa1, 0x8e, 0xc1, 0x30, 0x57, 0x29, 0x48, 0x10, 0x26, 0x18, 0x0e, 0x13, 0x13, 0x72, 0xe3, 0x12, + 0x80, 0x9a, 0x57, 0x1c, 0x9f, 0x9a, 0x97, 0x98, 0x94, 0x93, 0x9a, 0x22, 0xc1, 0xac, 0xc0, 0xa8, + 0xc1, 0xe1, 0x24, 0xfd, 0xe9, 0x9e, 0xbc, 0x38, 0xc4, 0x2c, 0x74, 0x15, 0x4a, 0x41, 0xfc, 0x30, + 0x21, 0x57, 0x88, 0x88, 0x15, 0xcb, 0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0x7e, 0x27, 0x1e, 0xc9, 0x31, + 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, + 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0x65, 0x92, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, + 0x9f, 0xab, 0x8f, 0x23, 0x05, 0x94, 0x19, 0xeb, 0x57, 0xc0, 0x93, 0x41, 0x49, 0x65, 0x41, 0x6a, + 0x71, 0x12, 0x1b, 0x38, 0x42, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x5e, 0x2d, 0x0c, 0x08, + 0x35, 0x02, 0x00, 0x00, } func (m *DeployerParams) Marshal() (dAtA []byte, err error) { diff --git a/x/rollapp/types/proposal.pb.go b/x/rollapp/types/proposal.pb.go index 8f06b0bca..6efdccbe9 100644 --- a/x/rollapp/types/proposal.pb.go +++ b/x/rollapp/types/proposal.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/rollapp/proposal.proto +// source: dymensionxyz/dymension/rollapp/proposal.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -39,7 +39,7 @@ type SubmitFraudProposal struct { func (m *SubmitFraudProposal) Reset() { *m = SubmitFraudProposal{} } func (*SubmitFraudProposal) ProtoMessage() {} func (*SubmitFraudProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_08eae7139ed79842, []int{0} + return fileDescriptor_23c44e927b26bbf5, []int{0} } func (m *SubmitFraudProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -72,31 +72,33 @@ func init() { proto.RegisterType((*SubmitFraudProposal)(nil), "dymensionxyz.dymension.rollapp.SubmitFraudProposal") } -func init() { proto.RegisterFile("dymension/rollapp/proposal.proto", fileDescriptor_08eae7139ed79842) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/rollapp/proposal.proto", fileDescriptor_23c44e927b26bbf5) +} -var fileDescriptor_08eae7139ed79842 = []byte{ - // 328 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x91, 0xbf, 0x4e, 0xeb, 0x30, - 0x18, 0xc5, 0xe3, 0xde, 0xb6, 0x52, 0x7d, 0x41, 0x02, 0xd3, 0x21, 0xaa, 0xc0, 0x8d, 0x3a, 0x55, - 0x42, 0x4a, 0x86, 0x32, 0x31, 0xf1, 0x47, 0x42, 0x74, 0x41, 0xa8, 0xdd, 0x58, 0xaa, 0x24, 0x36, - 0xa9, 0x25, 0x37, 0x36, 0xb6, 0x83, 0x5a, 0x9e, 0x80, 0x05, 0x89, 0x91, 0xb1, 0x8f, 0xc3, 0xd8, - 0x91, 0x11, 0xb5, 0x0b, 0x8f, 0x81, 0xe2, 0x84, 0x36, 0x9b, 0xcf, 0xf9, 0x7e, 0x3e, 0xb6, 0xce, - 0x07, 0x3d, 0xb2, 0x98, 0xd1, 0x54, 0x33, 0x91, 0x06, 0x4a, 0x70, 0x1e, 0x4a, 0x19, 0x48, 0x25, - 0xa4, 0xd0, 0x21, 0xf7, 0xa5, 0x12, 0x46, 0x20, 0xbc, 0x25, 0xe6, 0x8b, 0x17, 0x7f, 0x2b, 0xfc, - 0x12, 0xef, 0xb4, 0x13, 0x91, 0x08, 0x8b, 0x06, 0xf9, 0xa9, 0xb8, 0xd5, 0x7b, 0xab, 0xc1, 0xa3, - 0x71, 0x16, 0xcd, 0x98, 0xb9, 0x51, 0x61, 0x46, 0xee, 0xcb, 0x4c, 0xd4, 0x86, 0x0d, 0xc3, 0x0c, - 0xa7, 0x2e, 0xf0, 0x40, 0xbf, 0x35, 0x2a, 0x04, 0xf2, 0xe0, 0x7f, 0x42, 0x75, 0xac, 0x98, 0x34, - 0x4c, 0xa4, 0x6e, 0xcd, 0xce, 0xaa, 0x16, 0x3a, 0x81, 0xb0, 0x7c, 0x70, 0xc2, 0x88, 0xfb, 0xcf, - 0x02, 0xad, 0xd2, 0x19, 0x12, 0xd4, 0x83, 0xfb, 0x2c, 0x8a, 0x27, 0x31, 0x67, 0x34, 0x35, 0x39, - 0x51, 0x2f, 0x22, 0x58, 0x14, 0x5f, 0x5b, 0x6f, 0x48, 0xd0, 0x29, 0x3c, 0x7c, 0xcc, 0xff, 0x42, - 0x79, 0xce, 0x4c, 0x29, 0x4b, 0xa6, 0xc6, 0x6d, 0x78, 0xa0, 0x5f, 0x1f, 0x1d, 0xec, 0x06, 0xb7, - 0xd6, 0x47, 0x17, 0xf0, 0xb8, 0x02, 0x6b, 0xfa, 0x94, 0xd1, 0x34, 0xa6, 0x6a, 0x12, 0x12, 0xa2, - 0xa8, 0xd6, 0x6e, 0xd3, 0xe6, 0x77, 0x76, 0xcc, 0xf8, 0x0f, 0xb9, 0x2c, 0x88, 0xf3, 0xbd, 0xd7, - 0x65, 0xd7, 0xf9, 0x58, 0x76, 0x9d, 0x9f, 0x65, 0x17, 0x5c, 0xdd, 0x7d, 0xae, 0x31, 0x58, 0xad, - 0x31, 0xf8, 0x5e, 0x63, 0xf0, 0xbe, 0xc1, 0xce, 0x6a, 0x83, 0x9d, 0xaf, 0x0d, 0x76, 0x1e, 0xce, - 0x12, 0x66, 0xa6, 0x59, 0xe4, 0xc7, 0x62, 0x16, 0x54, 0xab, 0xde, 0x89, 0xe0, 0x79, 0x10, 0xcc, - 0xb7, 0xeb, 0x31, 0x0b, 0x49, 0x75, 0xd4, 0xb4, 0x35, 0x0f, 0x7e, 0x03, 0x00, 0x00, 0xff, 0xff, - 0x47, 0xb8, 0xb7, 0xe3, 0xc0, 0x01, 0x00, 0x00, +var fileDescriptor_23c44e927b26bbf5 = []byte{ + // 330 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0xbf, 0x4e, 0xeb, 0x30, + 0x18, 0xc5, 0xe3, 0xde, 0xb6, 0x52, 0x7d, 0x41, 0x02, 0xd3, 0x21, 0xaa, 0xc0, 0xad, 0x3a, 0x55, + 0x42, 0x24, 0x43, 0x99, 0x98, 0xf8, 0x23, 0x21, 0xba, 0x20, 0xd4, 0x6e, 0x2c, 0x55, 0x12, 0x9b, + 0xd4, 0x92, 0x1b, 0x1b, 0xdb, 0x41, 0x2d, 0x4f, 0xc0, 0x82, 0xc4, 0xc8, 0xd8, 0xc7, 0x61, 0xec, + 0xc8, 0x88, 0xda, 0x85, 0xc7, 0x40, 0x71, 0x42, 0x9b, 0x85, 0xcd, 0xe7, 0x7c, 0x3f, 0x1f, 0x5b, + 0xdf, 0x81, 0x27, 0x64, 0x3e, 0xa5, 0x89, 0x66, 0x22, 0x99, 0xcd, 0x9f, 0xfd, 0x8d, 0xf0, 0x95, + 0xe0, 0x3c, 0x90, 0xd2, 0x97, 0x4a, 0x48, 0xa1, 0x03, 0xee, 0x49, 0x25, 0x8c, 0x40, 0xb8, 0x8c, + 0x7b, 0x1b, 0xe1, 0x15, 0x78, 0xab, 0x19, 0x8b, 0x58, 0x58, 0xd4, 0xcf, 0x4e, 0xf9, 0xad, 0xee, + 0x6b, 0x05, 0x1e, 0x8c, 0xd2, 0x70, 0xca, 0xcc, 0xb5, 0x0a, 0x52, 0x72, 0x57, 0x64, 0xa2, 0x26, + 0xac, 0x19, 0x66, 0x38, 0x75, 0x41, 0x07, 0xf4, 0x1a, 0xc3, 0x5c, 0xa0, 0x0e, 0xfc, 0x4f, 0xa8, + 0x8e, 0x14, 0x93, 0x86, 0x89, 0xc4, 0xad, 0xd8, 0x59, 0xd9, 0x42, 0x47, 0x10, 0x16, 0x0f, 0x8e, + 0x19, 0x71, 0xff, 0x59, 0xa0, 0x51, 0x38, 0x03, 0x82, 0xba, 0x70, 0x97, 0x85, 0xd1, 0x38, 0xe2, + 0x8c, 0x26, 0x26, 0x23, 0xaa, 0x79, 0x04, 0x0b, 0xa3, 0x2b, 0xeb, 0x0d, 0x08, 0x3a, 0x86, 0xfb, + 0x0f, 0xd9, 0x5f, 0x28, 0xcf, 0x98, 0x09, 0x65, 0xf1, 0xc4, 0xb8, 0xb5, 0x0e, 0xe8, 0x55, 0x87, + 0x7b, 0xdb, 0xc1, 0x8d, 0xf5, 0xd1, 0x39, 0x3c, 0x2c, 0xc1, 0x9a, 0x3e, 0xa6, 0x34, 0x89, 0xa8, + 0x1a, 0x07, 0x84, 0x28, 0xaa, 0xb5, 0x5b, 0xb7, 0xf9, 0xad, 0x2d, 0x33, 0xfa, 0x45, 0x2e, 0x72, + 0xe2, 0x6c, 0xe7, 0x65, 0xd1, 0x76, 0xde, 0x17, 0x6d, 0xe7, 0x7b, 0xd1, 0x06, 0x97, 0xb7, 0x1f, + 0x2b, 0x0c, 0x96, 0x2b, 0x0c, 0xbe, 0x56, 0x18, 0xbc, 0xad, 0xb1, 0xb3, 0x5c, 0x63, 0xe7, 0x73, + 0x8d, 0x9d, 0xfb, 0xd3, 0x98, 0x99, 0x49, 0x1a, 0x7a, 0x91, 0x98, 0xfa, 0x7f, 0x34, 0xf3, 0xd4, + 0xf7, 0x67, 0x9b, 0x7a, 0xcc, 0x5c, 0x52, 0x1d, 0xd6, 0xed, 0x9a, 0xfb, 0x3f, 0x01, 0x00, 0x00, + 0xff, 0xff, 0x04, 0x60, 0x11, 0xe4, 0xcd, 0x01, 0x00, 0x00, } func (this *SubmitFraudProposal) Equal(that interface{}) bool { diff --git a/x/rollapp/types/query.pb.go b/x/rollapp/types/query.pb.go index 7bd7cadd8..9d9ff80e2 100644 --- a/x/rollapp/types/query.pb.go +++ b/x/rollapp/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/rollapp/query.proto +// source: dymensionxyz/dymension/rollapp/query.proto package types @@ -7,9 +7,9 @@ import ( context "context" fmt "fmt" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -38,7 +38,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{0} + return fileDescriptor_00a0238fb38306fa, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,7 +77,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{1} + return fileDescriptor_00a0238fb38306fa, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -121,7 +121,7 @@ func (m *QueryGetRollappRequest) Reset() { *m = QueryGetRollappRequest{} func (m *QueryGetRollappRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetRollappRequest) ProtoMessage() {} func (*QueryGetRollappRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{2} + return fileDescriptor_00a0238fb38306fa, []int{2} } func (m *QueryGetRollappRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -165,7 +165,7 @@ func (m *QueryGetRollappByEIP155Request) Reset() { *m = QueryGetRollappB func (m *QueryGetRollappByEIP155Request) String() string { return proto.CompactTextString(m) } func (*QueryGetRollappByEIP155Request) ProtoMessage() {} func (*QueryGetRollappByEIP155Request) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{3} + return fileDescriptor_00a0238fb38306fa, []int{3} } func (m *QueryGetRollappByEIP155Request) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -210,7 +210,7 @@ func (m *QueryGetLatestHeightRequest) Reset() { *m = QueryGetLatestHeigh func (m *QueryGetLatestHeightRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetLatestHeightRequest) ProtoMessage() {} func (*QueryGetLatestHeightRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{4} + return fileDescriptor_00a0238fb38306fa, []int{4} } func (m *QueryGetLatestHeightRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -261,7 +261,7 @@ func (m *QueryGetLatestHeightResponse) Reset() { *m = QueryGetLatestHeig func (m *QueryGetLatestHeightResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetLatestHeightResponse) ProtoMessage() {} func (*QueryGetLatestHeightResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{5} + return fileDescriptor_00a0238fb38306fa, []int{5} } func (m *QueryGetLatestHeightResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -306,7 +306,7 @@ func (m *QueryGetLatestStateIndexRequest) Reset() { *m = QueryGetLatestS func (m *QueryGetLatestStateIndexRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetLatestStateIndexRequest) ProtoMessage() {} func (*QueryGetLatestStateIndexRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{6} + return fileDescriptor_00a0238fb38306fa, []int{6} } func (m *QueryGetLatestStateIndexRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -357,7 +357,7 @@ func (m *QueryGetLatestStateIndexResponse) Reset() { *m = QueryGetLatest func (m *QueryGetLatestStateIndexResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetLatestStateIndexResponse) ProtoMessage() {} func (*QueryGetLatestStateIndexResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{7} + return fileDescriptor_00a0238fb38306fa, []int{7} } func (m *QueryGetLatestStateIndexResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -407,7 +407,7 @@ func (m *QueryGetRollappResponse) Reset() { *m = QueryGetRollappResponse func (m *QueryGetRollappResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetRollappResponse) ProtoMessage() {} func (*QueryGetRollappResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{8} + return fileDescriptor_00a0238fb38306fa, []int{8} } func (m *QueryGetRollappResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -479,7 +479,7 @@ func (m *QueryAllRollappRequest) Reset() { *m = QueryAllRollappRequest{} func (m *QueryAllRollappRequest) String() string { return proto.CompactTextString(m) } func (*QueryAllRollappRequest) ProtoMessage() {} func (*QueryAllRollappRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{9} + return fileDescriptor_00a0238fb38306fa, []int{9} } func (m *QueryAllRollappRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -524,7 +524,7 @@ func (m *QueryAllRollappResponse) Reset() { *m = QueryAllRollappResponse func (m *QueryAllRollappResponse) String() string { return proto.CompactTextString(m) } func (*QueryAllRollappResponse) ProtoMessage() {} func (*QueryAllRollappResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{10} + return fileDescriptor_00a0238fb38306fa, []int{10} } func (m *QueryAllRollappResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -578,7 +578,7 @@ func (m *QueryGetStateInfoRequest) Reset() { *m = QueryGetStateInfoReque func (m *QueryGetStateInfoRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetStateInfoRequest) ProtoMessage() {} func (*QueryGetStateInfoRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{11} + return fileDescriptor_00a0238fb38306fa, []int{11} } func (m *QueryGetStateInfoRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -643,7 +643,7 @@ func (m *QueryGetStateInfoResponse) Reset() { *m = QueryGetStateInfoResp func (m *QueryGetStateInfoResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetStateInfoResponse) ProtoMessage() {} func (*QueryGetStateInfoResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6816c5236b322a4f, []int{12} + return fileDescriptor_00a0238fb38306fa, []int{12} } func (m *QueryGetStateInfoResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -695,67 +695,69 @@ func init() { proto.RegisterType((*QueryGetStateInfoResponse)(nil), "dymensionxyz.dymension.rollapp.QueryGetStateInfoResponse") } -func init() { proto.RegisterFile("dymension/rollapp/query.proto", fileDescriptor_6816c5236b322a4f) } - -var fileDescriptor_6816c5236b322a4f = []byte{ - // 900 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x4d, 0x4f, 0x33, 0x55, - 0x14, 0xee, 0xd0, 0xd2, 0xd7, 0x1e, 0xdf, 0x44, 0x72, 0x45, 0x2c, 0x15, 0x07, 0x32, 0x0b, 0x3e, - 0x5c, 0xcc, 0xa4, 0x94, 0xf2, 0x11, 0x0c, 0x02, 0x51, 0x90, 0x44, 0x09, 0x0e, 0x6e, 0xc4, 0x18, - 0x9c, 0xd2, 0xcb, 0x30, 0x66, 0x3a, 0x33, 0x74, 0xa6, 0xa4, 0x85, 0xb0, 0x31, 0xc6, 0xb5, 0x89, - 0xbf, 0xc0, 0x3f, 0xe0, 0xc2, 0x8d, 0x3f, 0xc0, 0x0d, 0x0b, 0x17, 0x24, 0x26, 0xc6, 0x8d, 0xc6, - 0x80, 0x3f, 0xc4, 0xf4, 0xde, 0x33, 0xd3, 0xf9, 0x68, 0xed, 0xb4, 0x71, 0xd5, 0xce, 0xbd, 0xe7, - 0x79, 0xce, 0x73, 0xee, 0x39, 0xf7, 0x9c, 0x0b, 0x6f, 0xd7, 0x3b, 0x0d, 0x6a, 0xb9, 0x86, 0x6d, - 0x29, 0x4d, 0xdb, 0x34, 0x35, 0xc7, 0x51, 0xae, 0x5b, 0xb4, 0xd9, 0x91, 0x9d, 0xa6, 0xed, 0xd9, - 0x44, 0x0c, 0xb6, 0xdb, 0x9d, 0x5b, 0x39, 0xf8, 0x90, 0xd1, 0xb6, 0x34, 0xad, 0xdb, 0xba, 0xcd, - 0x4c, 0x95, 0xee, 0x3f, 0x8e, 0x2a, 0xcd, 0xe9, 0xb6, 0xad, 0x9b, 0x54, 0xd1, 0x1c, 0x43, 0xd1, - 0x2c, 0xcb, 0xf6, 0x34, 0xcf, 0xb0, 0x2d, 0x17, 0x77, 0xdf, 0xb9, 0xb0, 0xdd, 0x86, 0xed, 0x2a, - 0x35, 0xcd, 0xa5, 0xdc, 0x99, 0x72, 0x53, 0xae, 0x51, 0x4f, 0x2b, 0x2b, 0x8e, 0xa6, 0x1b, 0x16, - 0x33, 0x46, 0x5b, 0x31, 0x29, 0xcf, 0xd1, 0x9a, 0x5a, 0xc3, 0xe7, 0x9a, 0x4f, 0xee, 0xe3, 0x2f, - 0x1a, 0x48, 0x49, 0x03, 0xd7, 0xd3, 0x3c, 0x7a, 0x6e, 0x58, 0x97, 0x28, 0x57, 0x9a, 0x06, 0xf2, - 0x49, 0x57, 0xc6, 0x09, 0x63, 0x56, 0xe9, 0x75, 0x8b, 0xba, 0x9e, 0xf4, 0x39, 0xbc, 0x1e, 0x59, - 0x75, 0x1d, 0xdb, 0x72, 0x29, 0x79, 0x1f, 0xf2, 0x5c, 0x41, 0x51, 0x58, 0x10, 0x96, 0x5f, 0x5d, - 0x5d, 0x94, 0xff, 0xfb, 0x88, 0x64, 0x8e, 0xdf, 0xcf, 0x3d, 0xfc, 0x35, 0x9f, 0x51, 0x11, 0x2b, - 0xad, 0xc3, 0x0c, 0x23, 0x3f, 0xa4, 0x9e, 0xca, 0xed, 0xd0, 0x2d, 0x99, 0x83, 0x02, 0x22, 0x8f, - 0xea, 0xcc, 0x45, 0x41, 0xed, 0x2d, 0x48, 0x9b, 0x20, 0xc6, 0x70, 0xfb, 0x9d, 0x0f, 0x8e, 0x4e, - 0xca, 0xd5, 0xaa, 0x8f, 0x9f, 0x81, 0x3c, 0x35, 0x9c, 0x72, 0xb5, 0xca, 0xc0, 0x39, 0x15, 0xbf, - 0xa4, 0xcf, 0xe0, 0x2d, 0x1f, 0xf9, 0x91, 0xe6, 0x51, 0xd7, 0xfb, 0x90, 0x1a, 0xfa, 0x95, 0x97, - 0xca, 0x6d, 0x77, 0xf7, 0xd2, 0xb0, 0x34, 0xd3, 0xb8, 0xa5, 0xf5, 0xe2, 0xc4, 0x82, 0xb0, 0xfc, - 0x8a, 0xda, 0x5b, 0x90, 0xd6, 0x61, 0xae, 0x3f, 0x35, 0x1e, 0xd9, 0x0c, 0xe4, 0xaf, 0xd8, 0x8a, - 0x2f, 0x89, 0x7f, 0x49, 0x5f, 0xc0, 0x7c, 0x14, 0x77, 0xda, 0xcd, 0xcc, 0x91, 0x55, 0xa7, 0xed, - 0xff, 0x43, 0x56, 0x1b, 0x16, 0x06, 0xd3, 0xa3, 0xb4, 0x4f, 0x01, 0xdc, 0x60, 0x15, 0x33, 0x2a, - 0x0f, 0xcb, 0x28, 0xf2, 0x5c, 0xda, 0x0c, 0x85, 0x99, 0x0d, 0xf1, 0x48, 0xdf, 0x66, 0xe1, 0xcd, - 0x44, 0x7a, 0xd1, 0xe3, 0x21, 0xbc, 0x40, 0x1e, 0x74, 0xb7, 0x34, 0xcc, 0x9d, 0x9f, 0x68, 0xee, - 0xc7, 0x47, 0x93, 0x33, 0x98, 0x32, 0x63, 0x61, 0xb1, 0x33, 0x18, 0x39, 0x00, 0x35, 0xc1, 0x43, - 0x4c, 0x98, 0xe5, 0x6b, 0x07, 0xfe, 0x69, 0x86, 0x9c, 0x64, 0xc7, 0x72, 0x32, 0x98, 0x90, 0x48, - 0xf0, 0xd2, 0x0c, 0xd5, 0x4d, 0x31, 0xc7, 0xaa, 0x24, 0xb2, 0x46, 0xd6, 0xe0, 0x8d, 0x18, 0x01, - 0x1a, 0x4f, 0x32, 0xe3, 0xfe, 0x9b, 0xd2, 0x97, 0x78, 0xcd, 0xf6, 0x4c, 0x33, 0x76, 0xcd, 0x0e, - 0x00, 0x7a, 0xcd, 0x26, 0xb8, 0xca, 0xbc, 0x33, 0xc9, 0xdd, 0xce, 0x24, 0xf3, 0x36, 0x88, 0x9d, - 0x49, 0x3e, 0xd1, 0x74, 0x8a, 0x58, 0x35, 0x84, 0x94, 0x7e, 0x12, 0x30, 0xd5, 0x61, 0x17, 0x98, - 0xea, 0xe3, 0x70, 0xaa, 0xb3, 0x69, 0xce, 0x0c, 0x19, 0x4e, 0x5b, 0x8d, 0x86, 0xd6, 0xec, 0xc4, - 0x33, 0x7e, 0x18, 0xd1, 0x3c, 0x81, 0xd5, 0x33, 0x4c, 0x33, 0x17, 0x13, 0x11, 0xfd, 0x8d, 0x00, - 0x45, 0xbf, 0x3e, 0x83, 0x34, 0xa5, 0xbb, 0x72, 0xd3, 0x30, 0x69, 0x04, 0xa5, 0x96, 0x53, 0xf9, - 0x47, 0xe8, 0x86, 0x67, 0xc3, 0x37, 0x3c, 0x7a, 0x41, 0x73, 0xf1, 0x0b, 0xfa, 0x15, 0xcc, 0xf6, - 0x51, 0x81, 0x87, 0xf7, 0x31, 0x14, 0x5c, 0x7f, 0x11, 0xf3, 0xb3, 0x92, 0xba, 0xe4, 0xf0, 0xe4, - 0x7a, 0x0c, 0xab, 0xbf, 0x03, 0x4c, 0x32, 0x67, 0xe4, 0x07, 0x01, 0xf2, 0xbc, 0x27, 0x93, 0xd5, - 0x61, 0x84, 0xc9, 0xb1, 0x50, 0xaa, 0x8c, 0x84, 0xe1, 0xc1, 0x48, 0xf2, 0xd7, 0xbf, 0xfd, 0xf3, - 0xfd, 0xc4, 0x32, 0x59, 0x54, 0xc2, 0x60, 0x65, 0xd0, 0x70, 0x23, 0x3f, 0x0b, 0xf0, 0x02, 0x6b, - 0x81, 0xac, 0xa7, 0x72, 0x98, 0x18, 0x24, 0xa5, 0x8d, 0x91, 0x71, 0x28, 0x76, 0x9b, 0x89, 0xad, - 0x92, 0xca, 0x30, 0xb1, 0xfe, 0xef, 0x5d, 0x50, 0x1e, 0xf7, 0xe4, 0x17, 0x01, 0x5e, 0x8b, 0x4d, - 0x26, 0xb2, 0x33, 0xa2, 0x92, 0xd8, 0x48, 0x1b, 0x3f, 0x92, 0x0d, 0x16, 0x49, 0x99, 0x28, 0xc3, - 0x22, 0xe1, 0x33, 0x52, 0xb9, 0xe3, 0xbf, 0xf7, 0xe4, 0x47, 0x01, 0x00, 0xc9, 0xf6, 0x4c, 0x33, - 0x65, 0x0a, 0x12, 0x4d, 0x26, 0xa5, 0xf0, 0x64, 0xe7, 0x90, 0x14, 0x26, 0x7c, 0x85, 0x2c, 0xa5, - 0x4c, 0x01, 0xf9, 0x55, 0x80, 0x97, 0xe1, 0xd9, 0x4b, 0xb6, 0xd3, 0x9e, 0x59, 0x9f, 0xc7, 0x40, - 0xe9, 0xdd, 0xf1, 0xc0, 0x28, 0x7e, 0x8f, 0x89, 0xdf, 0x26, 0x5b, 0xc3, 0xc4, 0xf3, 0x9e, 0x7d, - 0xce, 0x7b, 0x45, 0xa4, 0x8a, 0xfe, 0x14, 0x60, 0x2a, 0x3e, 0xb3, 0xc9, 0x7b, 0xa3, 0xa9, 0x4a, - 0x3c, 0x26, 0x4a, 0xbb, 0xe3, 0x13, 0x60, 0x68, 0x07, 0x2c, 0xb4, 0x5d, 0xb2, 0x93, 0x32, 0x34, - 0xff, 0xa9, 0x59, 0xa7, 0xed, 0x48, 0x7c, 0x0f, 0x02, 0x14, 0x82, 0x66, 0x45, 0x36, 0xd3, 0xea, - 0x8a, 0xf7, 0xea, 0xd2, 0xd6, 0x18, 0xc8, 0x51, 0x43, 0xe9, 0x3d, 0x97, 0xc3, 0x21, 0x28, 0x77, - 0x2c, 0xaa, 0xfb, 0xfd, 0xe3, 0x87, 0x27, 0x51, 0x78, 0x7c, 0x12, 0x85, 0xbf, 0x9f, 0x44, 0xe1, - 0xbb, 0x67, 0x31, 0xf3, 0xf8, 0x2c, 0x66, 0xfe, 0x78, 0x16, 0x33, 0x67, 0x6b, 0xba, 0xe1, 0x5d, - 0xb5, 0x6a, 0xf2, 0x85, 0xdd, 0x18, 0xe4, 0xe3, 0xa6, 0xa2, 0xb4, 0x03, 0x47, 0x5e, 0xc7, 0xa1, - 0x6e, 0x2d, 0xcf, 0xde, 0xe4, 0x95, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x05, 0x4c, 0xda, 0x84, - 0x99, 0x0c, 0x00, 0x00, +func init() { + proto.RegisterFile("dymensionxyz/dymension/rollapp/query.proto", fileDescriptor_00a0238fb38306fa) +} + +var fileDescriptor_00a0238fb38306fa = []byte{ + // 904 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x4f, 0x6f, 0xe3, 0x44, + 0x14, 0x8f, 0x9b, 0x34, 0x4b, 0x1e, 0x2b, 0xb1, 0x1a, 0x4a, 0xc9, 0x86, 0xca, 0x5b, 0xf9, 0xb0, + 0xdb, 0x5d, 0x90, 0x47, 0x69, 0x36, 0xfd, 0xa3, 0xa2, 0xd2, 0x56, 0xd0, 0x52, 0x09, 0xaa, 0xe2, + 0x72, 0xa1, 0x08, 0x15, 0xa7, 0x99, 0xba, 0x46, 0x8e, 0xed, 0xc6, 0x4e, 0x95, 0xb4, 0xea, 0x05, + 0x21, 0xce, 0x48, 0x7c, 0x02, 0xbe, 0x00, 0x07, 0x2e, 0x7c, 0x00, 0x2e, 0x3d, 0x70, 0xa8, 0x84, + 0x84, 0xb8, 0x80, 0x50, 0xcb, 0x07, 0x41, 0x99, 0x79, 0x76, 0x6c, 0x27, 0xc5, 0x4e, 0xc4, 0x29, + 0x99, 0xf1, 0xfb, 0xbd, 0xdf, 0xef, 0xcd, 0x7b, 0xf3, 0xde, 0xc0, 0x8b, 0x66, 0xaf, 0xc5, 0x6c, + 0xcf, 0x74, 0xec, 0x6e, 0xef, 0x82, 0x86, 0x0b, 0xda, 0x76, 0x2c, 0x4b, 0x77, 0x5d, 0x7a, 0xd6, + 0x61, 0xed, 0x9e, 0xea, 0xb6, 0x1d, 0xdf, 0x21, 0x72, 0xd4, 0x56, 0x0d, 0x17, 0x2a, 0xda, 0x56, + 0x66, 0x0c, 0xc7, 0x70, 0xb8, 0x29, 0xed, 0xff, 0x13, 0xa8, 0xca, 0x9c, 0xe1, 0x38, 0x86, 0xc5, + 0xa8, 0xee, 0x9a, 0x54, 0xb7, 0x6d, 0xc7, 0xd7, 0x7d, 0xd3, 0xb1, 0x3d, 0xfc, 0xfa, 0xe2, 0xd8, + 0xf1, 0x5a, 0x8e, 0x47, 0x1b, 0xba, 0xc7, 0x04, 0x19, 0x3d, 0xaf, 0x36, 0x98, 0xaf, 0x57, 0xa9, + 0xab, 0x1b, 0xa6, 0xcd, 0x8d, 0xd1, 0xf6, 0xed, 0x14, 0xad, 0xae, 0xde, 0xd6, 0x5b, 0x81, 0xe3, + 0x77, 0x52, 0x8c, 0xf1, 0x17, 0xad, 0x69, 0x8a, 0xb5, 0xe7, 0xeb, 0x3e, 0x3b, 0x32, 0xed, 0x13, + 0x8c, 0x4a, 0x99, 0x01, 0xf2, 0x49, 0x5f, 0xed, 0x3e, 0xe7, 0xd4, 0xd8, 0x59, 0x87, 0x79, 0xbe, + 0xf2, 0x39, 0xbc, 0x1e, 0xdb, 0xf5, 0x5c, 0xc7, 0xf6, 0x18, 0x79, 0x1f, 0x8a, 0x42, 0x5b, 0x59, + 0x9a, 0x97, 0x16, 0x5e, 0x5d, 0x7c, 0xaa, 0xfe, 0xf7, 0x49, 0xaa, 0x02, 0xbf, 0x55, 0xb8, 0xfe, + 0xeb, 0x49, 0x4e, 0x43, 0xac, 0xb2, 0x04, 0xb3, 0xdc, 0xf9, 0x0e, 0xf3, 0x35, 0x61, 0x87, 0xb4, + 0x64, 0x0e, 0x4a, 0x88, 0xdc, 0x6d, 0x72, 0x8a, 0x92, 0x36, 0xd8, 0x50, 0x56, 0x40, 0x4e, 0xe0, + 0xb6, 0x7a, 0x1f, 0xec, 0xee, 0x57, 0xeb, 0xf5, 0x00, 0x3f, 0x0b, 0x45, 0x66, 0xba, 0xd5, 0x7a, + 0x9d, 0x83, 0x0b, 0x1a, 0xae, 0x94, 0xcf, 0xe0, 0xad, 0x00, 0xf9, 0x91, 0xee, 0x33, 0xcf, 0xff, + 0x90, 0x99, 0xc6, 0xa9, 0x9f, 0x89, 0xb6, 0xff, 0xf5, 0xc4, 0xb4, 0x75, 0xcb, 0xbc, 0x60, 0xcd, + 0xf2, 0xd4, 0xbc, 0xb4, 0xf0, 0x8a, 0x36, 0xd8, 0x50, 0x96, 0x60, 0x6e, 0xb4, 0x6b, 0x3c, 0xb2, + 0x59, 0x28, 0x9e, 0xf2, 0x9d, 0x40, 0x92, 0x58, 0x29, 0x5f, 0xc0, 0x93, 0x38, 0xee, 0xa0, 0x9f, + 0x99, 0x5d, 0xbb, 0xc9, 0xba, 0xff, 0x87, 0xac, 0x2e, 0xcc, 0xdf, 0xef, 0x1e, 0xa5, 0x7d, 0x0a, + 0xe0, 0x85, 0xbb, 0x98, 0x51, 0x35, 0x2d, 0xa3, 0xe8, 0xe7, 0xc4, 0xe1, 0x28, 0xcc, 0x6c, 0xc4, + 0x8f, 0xf2, 0x6d, 0x1e, 0xde, 0x1c, 0x4a, 0x2f, 0x32, 0xee, 0xc0, 0x03, 0xf4, 0x83, 0x74, 0xcf, + 0xd2, 0xe8, 0x82, 0x44, 0x0b, 0x9e, 0x00, 0x4d, 0x0e, 0xe1, 0x91, 0x95, 0x08, 0x8b, 0x9f, 0xc1, + 0xd8, 0x01, 0x68, 0x43, 0x7e, 0x88, 0x05, 0x8f, 0xc5, 0xde, 0x76, 0x70, 0x9a, 0x11, 0x92, 0xfc, + 0x44, 0x24, 0xf7, 0x3b, 0x24, 0x0a, 0x3c, 0xb4, 0x22, 0x75, 0x53, 0x2e, 0xf0, 0x2a, 0x89, 0xed, + 0x91, 0x97, 0xf0, 0x46, 0xc2, 0x01, 0x1a, 0x4f, 0x73, 0xe3, 0xd1, 0x1f, 0x95, 0x2f, 0xf1, 0x9a, + 0x6d, 0x5a, 0x56, 0xe2, 0x9a, 0x6d, 0x03, 0x0c, 0x7a, 0x52, 0x78, 0x95, 0x45, 0x03, 0x53, 0xfb, + 0x0d, 0x4c, 0x15, 0xdd, 0x12, 0x1b, 0x98, 0xba, 0xaf, 0x1b, 0x0c, 0xb1, 0x5a, 0x04, 0xa9, 0xfc, + 0x24, 0x61, 0xaa, 0xa3, 0x14, 0x98, 0xea, 0xbd, 0x68, 0xaa, 0xf3, 0x59, 0xce, 0x0c, 0x3d, 0x1c, + 0x74, 0x5a, 0x2d, 0xbd, 0xdd, 0x4b, 0x66, 0x7c, 0x27, 0xa6, 0x79, 0x0a, 0xab, 0x27, 0x4d, 0xb3, + 0x10, 0x13, 0x13, 0xfd, 0x8d, 0x04, 0xe5, 0xa0, 0x3e, 0xc3, 0x34, 0x65, 0xbb, 0x72, 0x33, 0x30, + 0x6d, 0x86, 0xa5, 0x56, 0xd0, 0xc4, 0x22, 0x72, 0xc3, 0xf3, 0xd1, 0x1b, 0x1e, 0xbf, 0xa0, 0x85, + 0xe4, 0x05, 0xfd, 0x0a, 0x1e, 0x8f, 0x50, 0x81, 0x87, 0xf7, 0x31, 0x94, 0xbc, 0x60, 0x13, 0xf3, + 0xf3, 0x3c, 0x73, 0xc9, 0xe1, 0xc9, 0x0d, 0x3c, 0x2c, 0xfe, 0x0e, 0x30, 0xcd, 0xc9, 0xc8, 0x0f, + 0x12, 0x14, 0x45, 0x4f, 0x26, 0x8b, 0x69, 0x0e, 0x87, 0xc7, 0x42, 0xa5, 0x36, 0x16, 0x46, 0x04, + 0xa3, 0xa8, 0x5f, 0xff, 0xf6, 0xcf, 0xf7, 0x53, 0x0b, 0xe4, 0x29, 0xcd, 0x34, 0xf6, 0xc8, 0xcf, + 0x12, 0x3c, 0xc0, 0x5a, 0x20, 0x4b, 0x99, 0x08, 0x87, 0x06, 0x49, 0x65, 0x79, 0x6c, 0x1c, 0x8a, + 0x5d, 0xe3, 0x62, 0xeb, 0xa4, 0x46, 0xb3, 0x8d, 0x5d, 0x7a, 0x19, 0x96, 0xc7, 0x15, 0xf9, 0x45, + 0x82, 0xd7, 0x12, 0x93, 0x89, 0xac, 0x8f, 0xa9, 0x24, 0x31, 0xd2, 0x26, 0x8f, 0x64, 0x99, 0x47, + 0x52, 0x25, 0x34, 0x2d, 0x12, 0x31, 0x23, 0xe9, 0xa5, 0xf8, 0xbd, 0x22, 0x3f, 0x4a, 0x00, 0xe8, + 0x6c, 0xd3, 0xb2, 0x32, 0xa6, 0x60, 0xa8, 0xc9, 0x64, 0x14, 0x3e, 0xdc, 0x39, 0x14, 0xca, 0x85, + 0x3f, 0x27, 0xcf, 0x32, 0xa6, 0x80, 0xfc, 0x2a, 0xc1, 0xc3, 0xe8, 0xec, 0x25, 0x6b, 0x59, 0xcf, + 0x6c, 0xc4, 0x63, 0xa0, 0xf2, 0xee, 0x64, 0x60, 0x14, 0xbf, 0xc9, 0xc5, 0xaf, 0x91, 0xd5, 0x34, + 0xf1, 0xa2, 0x67, 0x1f, 0x89, 0x5e, 0x11, 0xab, 0xa2, 0x3f, 0x25, 0x78, 0x94, 0x9c, 0xd9, 0xe4, + 0xbd, 0xf1, 0x54, 0x0d, 0x3d, 0x26, 0x2a, 0x1b, 0x93, 0x3b, 0xc0, 0xd0, 0xb6, 0x79, 0x68, 0x1b, + 0x64, 0x3d, 0x63, 0x68, 0xc1, 0x53, 0xb3, 0xc9, 0xba, 0xb1, 0xf8, 0xae, 0x25, 0x28, 0x85, 0xcd, + 0x8a, 0xac, 0x64, 0xd5, 0x95, 0xec, 0xd5, 0x95, 0xd5, 0x09, 0x90, 0xe3, 0x86, 0x32, 0x78, 0x2e, + 0x47, 0x43, 0xa0, 0x97, 0x3c, 0xaa, 0xab, 0xad, 0xbd, 0xeb, 0x5b, 0x59, 0xba, 0xb9, 0x95, 0xa5, + 0xbf, 0x6f, 0x65, 0xe9, 0xbb, 0x3b, 0x39, 0x77, 0x73, 0x27, 0xe7, 0xfe, 0xb8, 0x93, 0x73, 0x87, + 0x2f, 0x0d, 0xd3, 0x3f, 0xed, 0x34, 0xd4, 0x63, 0xa7, 0x75, 0x1f, 0xc7, 0x79, 0x8d, 0x76, 0x43, + 0x22, 0xbf, 0xe7, 0x32, 0xaf, 0x51, 0xe4, 0x6f, 0xf2, 0xda, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, + 0xf6, 0x20, 0x3a, 0x1b, 0xcd, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1065,7 +1067,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "dymension/rollapp/query.proto", + Metadata: "dymensionxyz/dymension/rollapp/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/rollapp/types/query.pb.gw.go b/x/rollapp/types/query.pb.gw.go index 190a21b4b..2e0fad094 100644 --- a/x/rollapp/types/query.pb.gw.go +++ b/x/rollapp/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: dymension/rollapp/query.proto +// source: dymensionxyz/dymension/rollapp/query.proto /* Package types is a reverse proxy. diff --git a/x/rollapp/types/rollapp.pb.go b/x/rollapp/types/rollapp.pb.go index 0b35b648b..3e7dd1354 100644 --- a/x/rollapp/types/rollapp.pb.go +++ b/x/rollapp/types/rollapp.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/rollapp/rollapp.proto +// source: dymensionxyz/dymension/rollapp/rollapp.proto package types import ( fmt "fmt" _ "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -38,7 +38,7 @@ func (m *RollappGenesisState) Reset() { *m = RollappGenesisState{} } func (m *RollappGenesisState) String() string { return proto.CompactTextString(m) } func (*RollappGenesisState) ProtoMessage() {} func (*RollappGenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_2c072320fdc0abd9, []int{0} + return fileDescriptor_d4ef2bec3aea5528, []int{0} } func (m *RollappGenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -104,7 +104,7 @@ func (m *Rollapp) Reset() { *m = Rollapp{} } func (m *Rollapp) String() string { return proto.CompactTextString(m) } func (*Rollapp) ProtoMessage() {} func (*Rollapp) Descriptor() ([]byte, []int) { - return fileDescriptor_2c072320fdc0abd9, []int{1} + return fileDescriptor_d4ef2bec3aea5528, []int{1} } func (m *Rollapp) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -211,7 +211,7 @@ func (m *RollappSummary) Reset() { *m = RollappSummary{} } func (m *RollappSummary) String() string { return proto.CompactTextString(m) } func (*RollappSummary) ProtoMessage() {} func (*RollappSummary) Descriptor() ([]byte, []int) { - return fileDescriptor_2c072320fdc0abd9, []int{2} + return fileDescriptor_d4ef2bec3aea5528, []int{2} } func (m *RollappSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -267,41 +267,43 @@ func init() { proto.RegisterType((*RollappSummary)(nil), "dymensionxyz.dymension.rollapp.RollappSummary") } -func init() { proto.RegisterFile("dymension/rollapp/rollapp.proto", fileDescriptor_2c072320fdc0abd9) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/rollapp/rollapp.proto", fileDescriptor_d4ef2bec3aea5528) +} -var fileDescriptor_2c072320fdc0abd9 = []byte{ +var fileDescriptor_d4ef2bec3aea5528 = []byte{ // 498 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0xcd, 0x6e, 0x13, 0x31, - 0x10, 0x8e, 0x9b, 0x90, 0x1f, 0x97, 0xa2, 0x60, 0x7e, 0x64, 0x2a, 0xd8, 0x46, 0x11, 0x87, 0x08, - 0xa4, 0x5d, 0xb5, 0xe9, 0x0b, 0x50, 0xf1, 0x97, 0x1e, 0x38, 0x6c, 0x6e, 0x3d, 0x10, 0x39, 0xeb, - 0xc9, 0xd6, 0xd2, 0xae, 0x1d, 0x6c, 0x27, 0x4a, 0x72, 0xe2, 0x11, 0x78, 0xac, 0x1e, 0x7b, 0xe4, - 0x84, 0x50, 0xf2, 0x12, 0x1c, 0xd1, 0x7a, 0x37, 0x69, 0x50, 0x0a, 0x95, 0x38, 0xed, 0xce, 0x37, - 0xf3, 0x7d, 0x33, 0xf3, 0x8d, 0x8c, 0x8f, 0xf8, 0x3c, 0x05, 0x69, 0x84, 0x92, 0x81, 0x56, 0x49, - 0xc2, 0xc6, 0xe3, 0xf5, 0xd7, 0x1f, 0x6b, 0x65, 0x15, 0xf1, 0x36, 0x05, 0xb3, 0xf9, 0xc2, 0xdf, - 0x04, 0x7e, 0x51, 0x75, 0xf8, 0x38, 0x56, 0xb1, 0x72, 0xa5, 0x41, 0xf6, 0x97, 0xb3, 0x0e, 0xdb, - 0xbb, 0xb2, 0xc6, 0x32, 0x0b, 0x03, 0x21, 0x47, 0xeb, 0x1a, 0x2f, 0x52, 0x26, 0x55, 0x26, 0x18, - 0x32, 0x03, 0xc1, 0xf4, 0x78, 0x08, 0x96, 0x1d, 0x07, 0x91, 0x12, 0x32, 0xcf, 0xb7, 0x3f, 0xe2, - 0x47, 0x61, 0xce, 0xfd, 0x00, 0x12, 0x8c, 0x30, 0xfd, 0x4c, 0x81, 0xbc, 0xc6, 0x0f, 0xad, 0x66, - 0xd2, 0x8c, 0x40, 0x9b, 0x01, 0x48, 0x36, 0x4c, 0x80, 0xd3, 0xbd, 0x16, 0xea, 0xd4, 0xc3, 0xe6, - 0x26, 0xf1, 0x2e, 0xc7, 0xcf, 0x2b, 0x75, 0xd4, 0xdc, 0x6b, 0x7f, 0x2d, 0xe3, 0x5a, 0x21, 0x45, - 0x9e, 0xe3, 0x46, 0x31, 0x51, 0x8f, 0x53, 0xd4, 0x42, 0x9d, 0x46, 0x78, 0x03, 0x10, 0x8a, 0x6b, - 0x91, 0x06, 0x66, 0x95, 0x76, 0x92, 0x8d, 0x70, 0x1d, 0x66, 0x99, 0x29, 0xe8, 0x6c, 0x23, 0x5a, - 0x6e, 0xa1, 0x4e, 0x25, 0x5c, 0x87, 0xe4, 0x25, 0x3e, 0x48, 0xd9, 0xac, 0x0f, 0x5f, 0x26, 0x20, - 0x23, 0xd0, 0x86, 0x56, 0x5c, 0xfe, 0x4f, 0x90, 0x9c, 0xe2, 0x27, 0x63, 0xd0, 0xa9, 0x30, 0x19, - 0x07, 0xf8, 0x1b, 0xce, 0x35, 0x18, 0x03, 0x86, 0xde, 0x6b, 0x95, 0x3b, 0x8d, 0xf0, 0xf6, 0x24, - 0xf9, 0x8c, 0x0f, 0xe2, 0x7c, 0xf9, 0x81, 0xf3, 0x8f, 0xd6, 0x5a, 0xa8, 0xb3, 0x7f, 0xd2, 0xf5, - 0xff, 0x7d, 0x15, 0xff, 0x16, 0xe3, 0xce, 0x2a, 0x57, 0x3f, 0x8e, 0x4a, 0xe1, 0xfd, 0x78, 0xdb, - 0xcc, 0x17, 0x18, 0x47, 0x97, 0x4c, 0x4a, 0x48, 0x06, 0x82, 0xd3, 0x7a, 0x6e, 0x47, 0x81, 0xf4, - 0x38, 0x79, 0x8a, 0xab, 0x23, 0xad, 0x16, 0x20, 0x69, 0xc3, 0x19, 0x5c, 0x44, 0xe4, 0x15, 0x6e, - 0x6a, 0x88, 0x85, 0xb1, 0xa0, 0x81, 0xbf, 0x05, 0xa9, 0x52, 0x43, 0xb1, 0xdb, 0x63, 0x07, 0x3f, - 0xaf, 0xd4, 0xab, 0xcd, 0x5a, 0xfb, 0x17, 0xc2, 0x0f, 0x8a, 0xa1, 0xfa, 0x93, 0x34, 0x65, 0x7a, - 0x7e, 0xc7, 0x25, 0x2e, 0x70, 0x33, 0x61, 0x16, 0x8c, 0x75, 0x83, 0xf6, 0x24, 0x87, 0x99, 0x3b, - 0xc9, 0xfe, 0x89, 0x7f, 0xd7, 0xf2, 0x05, 0x63, 0xa4, 0x1c, 0x2b, 0xdc, 0xd1, 0x21, 0x09, 0x7e, - 0x96, 0x63, 0xef, 0x85, 0x64, 0x89, 0x58, 0x00, 0xdf, 0x6a, 0x52, 0xfe, 0xaf, 0x26, 0x7f, 0x17, - 0x3c, 0xfb, 0x74, 0xb5, 0xf4, 0xd0, 0xf5, 0xd2, 0x43, 0x3f, 0x97, 0x1e, 0xfa, 0xb6, 0xf2, 0x4a, - 0xd7, 0x2b, 0xaf, 0xf4, 0x7d, 0xe5, 0x95, 0x2e, 0x4e, 0x63, 0x61, 0x2f, 0x27, 0x43, 0x3f, 0x52, - 0x69, 0xb0, 0xdd, 0xee, 0x26, 0x08, 0xa6, 0xdd, 0x60, 0xb6, 0x79, 0x42, 0x76, 0x3e, 0x06, 0x33, - 0xac, 0xba, 0xe7, 0xd1, 0xfd, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xcf, 0x3e, 0x28, 0x34, 0xbb, 0x03, + 0x10, 0x8e, 0x9b, 0x90, 0x1f, 0x97, 0xa2, 0x60, 0x7e, 0x64, 0x2a, 0x58, 0xa2, 0x88, 0x43, 0x04, + 0x68, 0x57, 0x6d, 0xfa, 0x02, 0x54, 0xfc, 0xa5, 0x07, 0x0e, 0x9b, 0x5b, 0x0f, 0x44, 0xce, 0x7a, + 0xb2, 0xb5, 0xb4, 0x6b, 0x07, 0xdb, 0x89, 0x92, 0x9c, 0x78, 0x04, 0x1e, 0xab, 0xc7, 0x1e, 0x39, + 0x21, 0x94, 0xbc, 0x04, 0x47, 0xb4, 0xde, 0x4d, 0x08, 0x6a, 0x4b, 0x24, 0x4e, 0xbb, 0xf3, 0x8d, + 0xbf, 0x6f, 0x66, 0xbe, 0xd1, 0xe0, 0xd7, 0x7c, 0x9e, 0x82, 0x34, 0x42, 0xc9, 0xd9, 0x7c, 0x11, + 0x6c, 0x82, 0x40, 0xab, 0x24, 0x61, 0xe3, 0xf1, 0xfa, 0xeb, 0x8f, 0xb5, 0xb2, 0x8a, 0x78, 0xdb, + 0xaf, 0xfd, 0x4d, 0xe0, 0x17, 0xaf, 0x0e, 0x1f, 0xc6, 0x2a, 0x56, 0xee, 0x69, 0x90, 0xfd, 0xe5, + 0xac, 0xc3, 0x60, 0x47, 0x0d, 0x63, 0x99, 0x85, 0x81, 0x90, 0xa3, 0x35, 0xc1, 0x8b, 0x94, 0x49, + 0x95, 0x09, 0x86, 0xcc, 0x40, 0x30, 0x3d, 0x1a, 0x82, 0x65, 0x47, 0x41, 0xa4, 0x84, 0xcc, 0xf3, + 0xed, 0x8f, 0xf8, 0x41, 0x98, 0x73, 0x3f, 0x80, 0x04, 0x23, 0x4c, 0x3f, 0x53, 0x20, 0xaf, 0xf0, + 0x7d, 0xab, 0x99, 0x34, 0x23, 0xd0, 0x66, 0x00, 0x92, 0x0d, 0x13, 0xe0, 0x74, 0xaf, 0x85, 0x3a, + 0xf5, 0xb0, 0xb9, 0x49, 0xbc, 0xcb, 0xf1, 0xb3, 0x4a, 0x1d, 0x35, 0xf7, 0xda, 0x5f, 0xcb, 0xb8, + 0x56, 0x48, 0x91, 0xa7, 0xb8, 0x51, 0x74, 0xd4, 0xe3, 0x14, 0xb5, 0x50, 0xa7, 0x11, 0xfe, 0x01, + 0x08, 0xc5, 0xb5, 0x48, 0x03, 0xb3, 0x4a, 0x3b, 0xc9, 0x46, 0xb8, 0x0e, 0xb3, 0xcc, 0x14, 0x74, + 0x36, 0x11, 0x2d, 0xb7, 0x50, 0xa7, 0x12, 0xae, 0x43, 0xf2, 0x02, 0x1f, 0xa4, 0x6c, 0xd6, 0x87, + 0x2f, 0x13, 0x90, 0x11, 0x68, 0x43, 0x2b, 0x2e, 0xff, 0x37, 0x48, 0x4e, 0xf0, 0xa3, 0x31, 0xe8, + 0x54, 0x98, 0x8c, 0x03, 0xfc, 0x0d, 0xe7, 0x1a, 0x8c, 0x01, 0x43, 0xef, 0xb4, 0xca, 0x9d, 0x46, + 0x78, 0x73, 0x92, 0x7c, 0xc6, 0x07, 0x71, 0x3e, 0xfc, 0xc0, 0xf9, 0x47, 0x6b, 0x2d, 0xd4, 0xd9, + 0x3f, 0xee, 0xfa, 0xff, 0x5e, 0x91, 0x7f, 0x83, 0x71, 0xa7, 0x95, 0xcb, 0x1f, 0xcf, 0x4b, 0xe1, + 0xdd, 0x78, 0xdb, 0xcc, 0x67, 0x18, 0x47, 0x17, 0x4c, 0x4a, 0x48, 0x06, 0x82, 0xd3, 0x7a, 0x6e, + 0x47, 0x81, 0xf4, 0x38, 0x79, 0x8c, 0xab, 0x23, 0xad, 0x16, 0x20, 0x69, 0xc3, 0x19, 0x5c, 0x44, + 0xe4, 0x25, 0x6e, 0x6a, 0x88, 0x85, 0xb1, 0xa0, 0x81, 0xbf, 0x05, 0xa9, 0x52, 0x43, 0xb1, 0x9b, + 0xe3, 0x1a, 0x7e, 0x56, 0xa9, 0x57, 0x9b, 0xb5, 0xf6, 0x2f, 0x84, 0xef, 0x15, 0x4d, 0xf5, 0x27, + 0x69, 0xca, 0xf4, 0x7c, 0xc7, 0x26, 0xce, 0x71, 0x33, 0x61, 0x16, 0x8c, 0x75, 0x8d, 0xf6, 0x24, + 0x87, 0x99, 0x5b, 0xc9, 0xfe, 0xb1, 0xbf, 0x6b, 0xf8, 0x82, 0x31, 0x52, 0x8e, 0x15, 0x5e, 0xd3, + 0x21, 0x09, 0x7e, 0x92, 0x63, 0xef, 0x85, 0x64, 0x89, 0x58, 0x00, 0xdf, 0x2a, 0x52, 0xfe, 0xaf, + 0x22, 0xb7, 0x0b, 0x9e, 0x7e, 0xba, 0x5c, 0x7a, 0xe8, 0x6a, 0xe9, 0xa1, 0x9f, 0x4b, 0x0f, 0x7d, + 0x5b, 0x79, 0xa5, 0xab, 0x95, 0x57, 0xfa, 0xbe, 0xf2, 0x4a, 0xe7, 0x27, 0xb1, 0xb0, 0x17, 0x93, + 0xa1, 0x1f, 0xa9, 0xf4, 0xb6, 0xeb, 0x99, 0x76, 0x83, 0xd9, 0xe6, 0x84, 0xec, 0x7c, 0x0c, 0x66, + 0x58, 0x75, 0xe7, 0xd1, 0xfd, 0x1d, 0x00, 0x00, 0xff, 0xff, 0xd8, 0xf3, 0x6f, 0x10, 0xd5, 0x03, 0x00, 0x00, } diff --git a/x/rollapp/types/state_info.pb.go b/x/rollapp/types/state_info.pb.go index 1438548e2..93622572a 100644 --- a/x/rollapp/types/state_info.pb.go +++ b/x/rollapp/types/state_info.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/rollapp/state_info.proto +// source: dymensionxyz/dymension/rollapp/state_info.proto package types import ( fmt "fmt" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" types "github.com/dymensionxyz/dymension/v3/x/common/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" io "io" math "math" math_bits "math/bits" @@ -43,7 +43,7 @@ func (m *StateInfoIndex) Reset() { *m = StateInfoIndex{} } func (m *StateInfoIndex) String() string { return proto.CompactTextString(m) } func (*StateInfoIndex) ProtoMessage() {} func (*StateInfoIndex) Descriptor() ([]byte, []int) { - return fileDescriptor_17fce0215a9cbbfb, []int{0} + return fileDescriptor_750f3a9f16533ec4, []int{0} } func (m *StateInfoIndex) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -114,7 +114,7 @@ func (m *StateInfo) Reset() { *m = StateInfo{} } func (m *StateInfo) String() string { return proto.CompactTextString(m) } func (*StateInfo) ProtoMessage() {} func (*StateInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_17fce0215a9cbbfb, []int{1} + return fileDescriptor_750f3a9f16533ec4, []int{1} } func (m *StateInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -221,7 +221,7 @@ func (m *StateInfoSummary) Reset() { *m = StateInfoSummary{} } func (m *StateInfoSummary) String() string { return proto.CompactTextString(m) } func (*StateInfoSummary) ProtoMessage() {} func (*StateInfoSummary) Descriptor() ([]byte, []int) { - return fileDescriptor_17fce0215a9cbbfb, []int{2} + return fileDescriptor_750f3a9f16533ec4, []int{2} } func (m *StateInfoSummary) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -284,7 +284,7 @@ func (m *BlockHeightToFinalizationQueue) Reset() { *m = BlockHeightToFin func (m *BlockHeightToFinalizationQueue) String() string { return proto.CompactTextString(m) } func (*BlockHeightToFinalizationQueue) ProtoMessage() {} func (*BlockHeightToFinalizationQueue) Descriptor() ([]byte, []int) { - return fileDescriptor_17fce0215a9cbbfb, []int{3} + return fileDescriptor_750f3a9f16533ec4, []int{3} } func (m *BlockHeightToFinalizationQueue) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -335,42 +335,42 @@ func init() { } func init() { - proto.RegisterFile("dymension/rollapp/state_info.proto", fileDescriptor_17fce0215a9cbbfb) + proto.RegisterFile("dymensionxyz/dymension/rollapp/state_info.proto", fileDescriptor_750f3a9f16533ec4) } -var fileDescriptor_17fce0215a9cbbfb = []byte{ - // 484 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x53, 0x4f, 0x8b, 0xd3, 0x40, - 0x1c, 0xed, 0x34, 0xdd, 0xae, 0x99, 0x85, 0xa2, 0xc3, 0x22, 0xc3, 0xa2, 0x31, 0x04, 0x94, 0x9e, - 0x12, 0xd9, 0xf5, 0xea, 0xc1, 0x52, 0x64, 0x7b, 0x11, 0xcd, 0x7a, 0x12, 0x61, 0x49, 0xd3, 0x69, - 0x3b, 0xd8, 0xcc, 0xc4, 0xf9, 0xb3, 0xb4, 0xfb, 0x29, 0xfc, 0x1c, 0xe2, 0x07, 0xd9, 0xe3, 0xde, - 0xf4, 0x24, 0xd2, 0x7e, 0x11, 0x99, 0x49, 0x4c, 0x76, 0xdb, 0xaa, 0x50, 0xd8, 0x5b, 0x7e, 0xbf, - 0x79, 0xef, 0xcd, 0xfb, 0xbd, 0x5f, 0x06, 0x06, 0xa3, 0x45, 0x46, 0x98, 0xa4, 0x9c, 0x45, 0x82, - 0xcf, 0x66, 0x49, 0x9e, 0x47, 0x52, 0x25, 0x8a, 0x9c, 0x53, 0x36, 0xe6, 0x61, 0x2e, 0xb8, 0xe2, - 0xc8, 0xab, 0x30, 0xf3, 0xc5, 0x65, 0x58, 0x15, 0x61, 0x49, 0x38, 0x3a, 0x9c, 0xf0, 0x09, 0xb7, - 0xd0, 0xc8, 0x7c, 0x15, 0xac, 0xa3, 0xee, 0xa6, 0xf2, 0x70, 0xc6, 0xd3, 0x4f, 0xe7, 0x23, 0x22, - 0x53, 0x41, 0x73, 0xc5, 0x45, 0x89, 0x7c, 0x5c, 0x23, 0x53, 0x9e, 0x65, 0x9c, 0x59, 0x0b, 0x5a, - 0x16, 0xc7, 0x41, 0x1f, 0x76, 0xce, 0x8c, 0xa5, 0x01, 0x1b, 0xf3, 0x01, 0x1b, 0x91, 0x39, 0x7a, - 0x04, 0xdd, 0x52, 0x72, 0x30, 0xc2, 0xc0, 0x07, 0x5d, 0x37, 0xae, 0x1b, 0xe8, 0x10, 0xee, 0x51, - 0x03, 0xc3, 0x4d, 0x1f, 0x74, 0x5b, 0x71, 0x51, 0x04, 0x5f, 0x1d, 0xe8, 0x56, 0x32, 0xe8, 0x23, - 0xec, 0xc8, 0x5b, 0x9a, 0x56, 0xe6, 0xe0, 0x38, 0x0c, 0xff, 0x3d, 0x6b, 0x78, 0xdb, 0x49, 0xaf, - 0x75, 0xf5, 0xf3, 0x49, 0x23, 0x5e, 0xd3, 0x32, 0xfe, 0x24, 0xf9, 0xac, 0x09, 0x4b, 0x89, 0xb0, - 0x2e, 0xdc, 0xb8, 0x6e, 0x20, 0x1f, 0x1e, 0x48, 0x95, 0x08, 0x75, 0x4a, 0xe8, 0x64, 0xaa, 0xb0, - 0x63, 0x5d, 0xde, 0x6c, 0x19, 0x3e, 0xd3, 0x59, 0xcf, 0xa4, 0x25, 0x71, 0xcb, 0x9e, 0xd7, 0x0d, - 0xf4, 0x10, 0xb6, 0xfb, 0xaf, 0xde, 0x26, 0x6a, 0x8a, 0xf7, 0xac, 0x74, 0x59, 0x21, 0x0c, 0xf7, - 0x2f, 0x88, 0x30, 0x6e, 0x71, 0xdb, 0x72, 0xfe, 0x94, 0xe8, 0x19, 0xec, 0xa4, 0x82, 0x24, 0x8a, - 0x72, 0x56, 0x5e, 0xba, 0x6f, 0x01, 0x6b, 0x5d, 0xf4, 0x12, 0xb6, 0x8b, 0xe4, 0xf1, 0x3d, 0x1f, - 0x74, 0x3b, 0xc7, 0x4f, 0xff, 0x96, 0x46, 0xb1, 0x26, 0x1b, 0x86, 0x96, 0x71, 0x49, 0x42, 0xa7, - 0xd0, 0xe9, 0xf5, 0x25, 0x76, 0x6d, 0x92, 0xcf, 0xff, 0x97, 0xa4, 0x9d, 0xa6, 0x5f, 0xfd, 0x0b, - 0xb2, 0xcc, 0xd2, 0x48, 0x04, 0xdf, 0x01, 0xbc, 0x5f, 0x25, 0x7d, 0xa6, 0xb3, 0x2c, 0x11, 0x8b, - 0x3b, 0xde, 0x59, 0x3d, 0x7b, 0x73, 0x97, 0xd9, 0x37, 0x23, 0x76, 0xb6, 0x45, 0x1c, 0x7c, 0x03, - 0xd0, 0xb3, 0x93, 0x17, 0xf5, 0x7b, 0xfe, 0x9a, 0xb2, 0x64, 0x46, 0x2f, 0x2d, 0xe6, 0x9d, 0x26, - 0x9a, 0x6c, 0x91, 0x02, 0x5b, 0xb7, 0x35, 0x84, 0x0f, 0xc6, 0xeb, 0x64, 0xdc, 0xf4, 0x9d, 0x9d, - 0x23, 0xd9, 0x94, 0xeb, 0xbd, 0xb9, 0x5a, 0x7a, 0xe0, 0x7a, 0xe9, 0x81, 0x5f, 0x4b, 0x0f, 0x7c, - 0x59, 0x79, 0x8d, 0xeb, 0x95, 0xd7, 0xf8, 0xb1, 0xf2, 0x1a, 0x1f, 0x5e, 0x4c, 0xa8, 0x9a, 0xea, - 0xa1, 0x89, 0x23, 0xba, 0x79, 0x59, 0x5d, 0x44, 0x17, 0x27, 0xd1, 0xbc, 0x7a, 0xfb, 0x6a, 0x91, - 0x13, 0x39, 0x6c, 0xdb, 0x27, 0x7d, 0xf2, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x62, 0xb7, 0xad, 0x29, - 0x77, 0x04, 0x00, 0x00, +var fileDescriptor_750f3a9f16533ec4 = []byte{ + // 487 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x94, 0x4f, 0x6b, 0x13, 0x41, + 0x18, 0xc6, 0x33, 0xd9, 0x34, 0x75, 0xa7, 0x10, 0x74, 0x28, 0x32, 0x14, 0x59, 0x97, 0x80, 0x12, + 0x3c, 0xec, 0x4a, 0xab, 0x47, 0x0f, 0x86, 0x20, 0xcd, 0x45, 0x74, 0xeb, 0x49, 0x84, 0xb2, 0xd9, + 0x4c, 0x92, 0xc1, 0xec, 0xcc, 0x3a, 0x7f, 0x4a, 0xb6, 0x9f, 0xc2, 0xcf, 0x21, 0x7e, 0x90, 0x1e, + 0x7b, 0xd3, 0x93, 0x48, 0xf2, 0x45, 0x64, 0x66, 0xd7, 0xdd, 0x36, 0x4d, 0x2c, 0x14, 0xbc, 0xe5, + 0x7d, 0xf3, 0x3e, 0xcf, 0x3c, 0xef, 0x6f, 0x92, 0x81, 0xe1, 0x38, 0x4f, 0x09, 0x93, 0x94, 0xb3, + 0x45, 0x7e, 0x5e, 0x17, 0xa1, 0xe0, 0xf3, 0x79, 0x9c, 0x65, 0xa1, 0x54, 0xb1, 0x22, 0xa7, 0x94, + 0x4d, 0x78, 0x90, 0x09, 0xae, 0x38, 0xf2, 0xae, 0x0a, 0x82, 0xaa, 0x08, 0x4a, 0xc1, 0xc1, 0xfe, + 0x94, 0x4f, 0xb9, 0x1d, 0x0d, 0xcd, 0xa7, 0x42, 0x75, 0xf0, 0xf2, 0x96, 0x63, 0x46, 0x73, 0x9e, + 0x7c, 0x3e, 0x1d, 0x13, 0x99, 0x08, 0x9a, 0x29, 0x2e, 0x4a, 0xd9, 0xb3, 0x2d, 0xb2, 0x84, 0xa7, + 0x29, 0x67, 0x36, 0x9c, 0x96, 0xc5, 0x6c, 0x77, 0x00, 0x3b, 0x27, 0x26, 0xec, 0x90, 0x4d, 0xf8, + 0x90, 0x8d, 0xc9, 0x02, 0x3d, 0x82, 0x6e, 0xe9, 0x3f, 0x1c, 0x63, 0xe0, 0x83, 0x9e, 0x1b, 0xd5, + 0x0d, 0xb4, 0x0f, 0x77, 0xa8, 0x19, 0xc3, 0x4d, 0x1f, 0xf4, 0x5a, 0x51, 0x51, 0x74, 0xbf, 0x39, + 0xd0, 0xad, 0x6c, 0xd0, 0x27, 0xd8, 0x91, 0xd7, 0x3c, 0xad, 0xcd, 0xde, 0x61, 0x10, 0xfc, 0x9b, + 0x42, 0x70, 0x3d, 0x49, 0xbf, 0x75, 0xf1, 0xeb, 0x71, 0x23, 0x5a, 0xf3, 0x32, 0xf9, 0x24, 0xf9, + 0xa2, 0x09, 0x4b, 0x88, 0xb0, 0x29, 0xdc, 0xa8, 0x6e, 0x20, 0x1f, 0xee, 0x49, 0x15, 0x0b, 0x75, + 0x4c, 0xe8, 0x74, 0xa6, 0xb0, 0x63, 0x53, 0x5e, 0x6d, 0x19, 0x3d, 0xd3, 0x69, 0xdf, 0xa0, 0x93, + 0xb8, 0x65, 0xbf, 0xaf, 0x1b, 0xe8, 0x21, 0x6c, 0x0f, 0x5e, 0xbf, 0x8b, 0xd5, 0x0c, 0xef, 0x58, + 0xeb, 0xb2, 0x42, 0x18, 0xee, 0x9e, 0x11, 0x61, 0xd2, 0xe2, 0xb6, 0xd5, 0xfc, 0x2d, 0xd1, 0x53, + 0xd8, 0x49, 0x04, 0x89, 0x15, 0xe5, 0xac, 0x3c, 0x74, 0xd7, 0x0e, 0xac, 0x75, 0xd1, 0x2b, 0xd8, + 0x2e, 0xc8, 0xe3, 0x7b, 0x3e, 0xe8, 0x75, 0x0e, 0x9f, 0x6c, 0xa3, 0x51, 0x5c, 0x93, 0x85, 0xa1, + 0x65, 0x54, 0x8a, 0xd0, 0x31, 0x74, 0xfa, 0x03, 0x89, 0x5d, 0x4b, 0xf2, 0xf9, 0x6d, 0x24, 0xed, + 0x36, 0x83, 0xea, 0x87, 0x21, 0x4b, 0x96, 0xc6, 0xa2, 0xfb, 0x03, 0xc0, 0xfb, 0x15, 0xe9, 0x13, + 0x9d, 0xa6, 0xb1, 0xc8, 0xff, 0xf3, 0x9d, 0xd5, 0xbb, 0x37, 0xef, 0xb2, 0xfb, 0x4d, 0xc4, 0xce, + 0x26, 0xc4, 0xdd, 0xef, 0x00, 0x7a, 0x76, 0xf3, 0xa2, 0xfe, 0xc0, 0xdf, 0x50, 0x16, 0xcf, 0xe9, + 0xb9, 0x9d, 0x79, 0xaf, 0x89, 0x26, 0x1b, 0xac, 0xc0, 0xc6, 0xdb, 0x1a, 0xc1, 0x07, 0x93, 0x75, + 0x31, 0x6e, 0xfa, 0xce, 0x9d, 0x91, 0xdc, 0xb4, 0xeb, 0xbf, 0xbd, 0x58, 0x7a, 0xe0, 0x72, 0xe9, + 0x81, 0xdf, 0x4b, 0x0f, 0x7c, 0x5d, 0x79, 0x8d, 0xcb, 0x95, 0xd7, 0xf8, 0xb9, 0xf2, 0x1a, 0x1f, + 0x5f, 0x4c, 0xa9, 0x9a, 0xe9, 0x91, 0xc1, 0xb1, 0xed, 0xa9, 0x39, 0x3b, 0x0a, 0x17, 0xd5, 0x43, + 0xa0, 0xf2, 0x8c, 0xc8, 0x51, 0xdb, 0xfe, 0xa5, 0x8f, 0xfe, 0x04, 0x00, 0x00, 0xff, 0xff, 0x96, + 0x45, 0xed, 0x08, 0x9e, 0x04, 0x00, 0x00, } func (m *StateInfoIndex) Marshal() (dAtA []byte, err error) { diff --git a/x/rollapp/types/transfer.go b/x/rollapp/types/transfer.go index 8febf394d..034eb430a 100644 --- a/x/rollapp/types/transfer.go +++ b/x/rollapp/types/transfer.go @@ -6,7 +6,7 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - transfertypes "github.com/cosmos/ibc-go/v6/modules/apps/transfer/types" + transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" ) type TransferData struct { diff --git a/x/rollapp/types/tx.pb.go b/x/rollapp/types/tx.pb.go index a24580394..3b572e5e2 100644 --- a/x/rollapp/types/tx.pb.go +++ b/x/rollapp/types/tx.pb.go @@ -1,14 +1,15 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/rollapp/tx.proto +// source: dymensionxyz/dymension/rollapp/tx.proto package types import ( context "context" fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/cosmos-sdk/types/msgservice" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" @@ -47,7 +48,7 @@ func (m *MsgCreateRollapp) Reset() { *m = MsgCreateRollapp{} } func (m *MsgCreateRollapp) String() string { return proto.CompactTextString(m) } func (*MsgCreateRollapp) ProtoMessage() {} func (*MsgCreateRollapp) Descriptor() ([]byte, []int) { - return fileDescriptor_935cc363af28220c, []int{0} + return fileDescriptor_1a86300fb8647ecb, []int{0} } func (m *MsgCreateRollapp) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -111,7 +112,7 @@ func (m *MsgCreateRollappResponse) Reset() { *m = MsgCreateRollappRespon func (m *MsgCreateRollappResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateRollappResponse) ProtoMessage() {} func (*MsgCreateRollappResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_935cc363af28220c, []int{1} + return fileDescriptor_1a86300fb8647ecb, []int{1} } func (m *MsgCreateRollappResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -165,7 +166,7 @@ func (m *MsgUpdateState) Reset() { *m = MsgUpdateState{} } func (m *MsgUpdateState) String() string { return proto.CompactTextString(m) } func (*MsgUpdateState) ProtoMessage() {} func (*MsgUpdateState) Descriptor() ([]byte, []int) { - return fileDescriptor_935cc363af28220c, []int{2} + return fileDescriptor_1a86300fb8647ecb, []int{2} } func (m *MsgUpdateState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -250,7 +251,7 @@ func (m *MsgUpdateStateResponse) Reset() { *m = MsgUpdateStateResponse{} func (m *MsgUpdateStateResponse) String() string { return proto.CompactTextString(m) } func (*MsgUpdateStateResponse) ProtoMessage() {} func (*MsgUpdateStateResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_935cc363af28220c, []int{3} + return fileDescriptor_1a86300fb8647ecb, []int{3} } func (m *MsgUpdateStateResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -286,40 +287,44 @@ func init() { proto.RegisterType((*MsgUpdateStateResponse)(nil), "dymensionxyz.dymension.rollapp.MsgUpdateStateResponse") } -func init() { proto.RegisterFile("dymension/rollapp/tx.proto", fileDescriptor_935cc363af28220c) } - -var fileDescriptor_935cc363af28220c = []byte{ - // 468 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0xce, 0x36, 0x26, 0x8d, 0x27, 0x2a, 0x8a, 0x56, 0x50, 0xad, 0x2c, 0xe4, 0x46, 0x11, 0x07, - 0x9f, 0x6c, 0xd4, 0x56, 0x88, 0x6b, 0x43, 0x0e, 0x25, 0x52, 0x10, 0x72, 0xc5, 0x85, 0x0b, 0x72, - 0xec, 0x91, 0x63, 0x11, 0x7b, 0xcd, 0xee, 0xa6, 0x4a, 0xe0, 0xca, 0x03, 0xf0, 0x38, 0x3c, 0x42, - 0x8f, 0x3d, 0x72, 0x42, 0x28, 0x79, 0x0a, 0x6e, 0x68, 0x1d, 0x3b, 0x3f, 0x2d, 0x02, 0xda, 0xd3, - 0xee, 0x7c, 0x33, 0xf3, 0xcd, 0xcc, 0x37, 0xbb, 0x60, 0x45, 0xf3, 0x14, 0x33, 0x99, 0xf0, 0xcc, - 0x13, 0x7c, 0x32, 0x09, 0xf2, 0xdc, 0x53, 0x33, 0x37, 0x17, 0x5c, 0x71, 0x6a, 0xaf, 0x7d, 0xb3, - 0xf9, 0x27, 0x77, 0x6d, 0xb8, 0x65, 0xa0, 0xe5, 0xdc, 0xce, 0x1d, 0x4d, 0x78, 0xf8, 0xe1, 0x7d, - 0x84, 0x32, 0x14, 0x49, 0xae, 0xb8, 0x58, 0x31, 0x59, 0x47, 0xb7, 0x23, 0xcb, 0xb3, 0x0c, 0x78, - 0x14, 0xf3, 0x98, 0x17, 0x57, 0x4f, 0xdf, 0x56, 0x68, 0xf7, 0x1b, 0x81, 0xf6, 0x50, 0xc6, 0x2f, - 0x05, 0x06, 0x0a, 0xfd, 0x55, 0x02, 0x65, 0xb0, 0x1f, 0x6a, 0x80, 0x0b, 0x46, 0x3a, 0xc4, 0x31, - 0xfd, 0xca, 0xa4, 0x4f, 0xc0, 0x2c, 0x59, 0x5f, 0x45, 0x6c, 0xaf, 0xf0, 0x6d, 0x00, 0xfa, 0x14, - 0x0e, 0xd2, 0x60, 0x76, 0x81, 0x1f, 0xa7, 0x98, 0x85, 0x28, 0x24, 0x6b, 0x74, 0x88, 0x63, 0xf8, - 0xbb, 0x20, 0x3d, 0x85, 0xc7, 0x39, 0x8a, 0x34, 0x91, 0xba, 0x59, 0x8c, 0xce, 0xa2, 0x48, 0xa0, - 0x94, 0x28, 0xd9, 0x7e, 0xa7, 0xee, 0x98, 0xfe, 0x9f, 0x9d, 0x03, 0xa3, 0xd9, 0x6c, 0x9b, 0x03, - 0xa3, 0x69, 0xb6, 0x61, 0x60, 0x34, 0xa1, 0xdd, 0xea, 0x5a, 0xc0, 0x6e, 0x76, 0xee, 0xa3, 0xcc, - 0x79, 0x26, 0xb1, 0xfb, 0x65, 0x0f, 0x1e, 0x0e, 0x65, 0xfc, 0x36, 0x8f, 0x02, 0x85, 0x17, 0x2a, - 0x50, 0x78, 0xef, 0xa1, 0x3a, 0xd0, 0x92, 0x2a, 0x10, 0xea, 0x1c, 0x93, 0x78, 0xac, 0x58, 0xbd, - 0x18, 0x69, 0x1b, 0xd2, 0xf9, 0xd9, 0x34, 0xed, 0xe9, 0xbd, 0x48, 0x66, 0x14, 0xfe, 0x0d, 0x40, - 0x0f, 0xa1, 0xd1, 0x3f, 0x7b, 0x13, 0xa8, 0x31, 0x7b, 0x50, 0x50, 0x97, 0x96, 0xee, 0xe7, 0x12, - 0x85, 0x1e, 0xb3, 0x94, 0xa9, 0x32, 0xe9, 0x39, 0xd4, 0x7b, 0x7d, 0x2d, 0x07, 0x71, 0x5a, 0xc7, - 0xcf, 0xdc, 0xbf, 0x3f, 0x11, 0xb7, 0x28, 0xd3, 0x5f, 0x3f, 0x07, 0xd9, 0x33, 0xae, 0x7e, 0x1c, - 0xd5, 0x7c, 0x4d, 0xd1, 0x65, 0x70, 0xb8, 0xab, 0x42, 0x25, 0xd0, 0xf1, 0x2f, 0x02, 0xf5, 0xa1, - 0x8c, 0xe9, 0x67, 0x38, 0xd8, 0xdd, 0xfd, 0x3f, 0xeb, 0xdd, 0xd4, 0xdc, 0x7a, 0x71, 0xd7, 0x8c, - 0xaa, 0x09, 0x3a, 0x85, 0xd6, 0xf6, 0x86, 0xdc, 0xff, 0x20, 0xda, 0x8a, 0xb7, 0x9e, 0xdf, 0x2d, - 0xbe, 0x2a, 0xdb, 0x7b, 0x7d, 0xb5, 0xb0, 0xc9, 0xf5, 0xc2, 0x26, 0x3f, 0x17, 0x36, 0xf9, 0xba, - 0xb4, 0x6b, 0xd7, 0x4b, 0xbb, 0xf6, 0x7d, 0x69, 0xd7, 0xde, 0x9d, 0xc6, 0x89, 0x1a, 0x4f, 0x47, - 0x6e, 0xc8, 0x53, 0x6f, 0x9b, 0x7b, 0x63, 0x78, 0x97, 0x27, 0xde, 0x6c, 0xf3, 0x8f, 0xe7, 0x39, - 0xca, 0x51, 0xa3, 0xf8, 0x4a, 0x27, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x48, 0xe5, 0xab, 0xac, - 0xe9, 0x03, 0x00, 0x00, +func init() { + proto.RegisterFile("dymensionxyz/dymension/rollapp/tx.proto", fileDescriptor_1a86300fb8647ecb) +} + +var fileDescriptor_1a86300fb8647ecb = []byte{ + // 500 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcf, 0x8b, 0xd3, 0x4e, + 0x14, 0x6f, 0xb6, 0xf9, 0x76, 0x9b, 0xe9, 0x77, 0xa5, 0x0c, 0xba, 0x0e, 0x41, 0x62, 0x29, 0x82, + 0x45, 0x24, 0xd1, 0xdd, 0x55, 0xc4, 0xdb, 0xd6, 0x1e, 0xd6, 0x42, 0x45, 0xb2, 0x78, 0xf1, 0x22, + 0x69, 0xf2, 0x48, 0x83, 0x4d, 0x26, 0xce, 0x9b, 0x96, 0x56, 0x6f, 0xfe, 0x05, 0xe2, 0x5f, 0xe2, + 0x5f, 0x21, 0x7b, 0xdc, 0xa3, 0x27, 0x91, 0xf6, 0xe0, 0xdf, 0xe0, 0x4d, 0x26, 0x4d, 0xfa, 0x63, + 0x51, 0xeb, 0x7a, 0x9a, 0x79, 0x9f, 0xf7, 0x3e, 0xef, 0xf7, 0x0c, 0xb9, 0x1d, 0x4c, 0x63, 0x48, + 0x30, 0xe2, 0xc9, 0x64, 0xfa, 0xd6, 0x59, 0x0a, 0x8e, 0xe0, 0xc3, 0xa1, 0x97, 0xa6, 0x8e, 0x9c, + 0xd8, 0xa9, 0xe0, 0x92, 0x53, 0x6b, 0xdd, 0xd0, 0x5e, 0x0a, 0x76, 0x6e, 0x68, 0x5e, 0xf7, 0x39, + 0xc6, 0x1c, 0x9d, 0x18, 0x43, 0x67, 0x7c, 0x5f, 0x1d, 0x0b, 0xa2, 0xf9, 0x60, 0x4b, 0x84, 0xfe, + 0x90, 0xfb, 0xaf, 0x5f, 0x05, 0x80, 0xbe, 0x88, 0x52, 0xc9, 0x45, 0x4e, 0xbb, 0xbb, 0x85, 0x96, + 0x9f, 0xb9, 0xf5, 0xd5, 0x90, 0x87, 0x3c, 0xbb, 0x3a, 0xea, 0xb6, 0x40, 0x9b, 0x9f, 0x35, 0x52, + 0xef, 0x61, 0xf8, 0x44, 0x80, 0x27, 0xc1, 0x5d, 0x10, 0x28, 0x23, 0xbb, 0xbe, 0x02, 0xb8, 0x60, + 0x5a, 0x43, 0x6b, 0x19, 0x6e, 0x21, 0xd2, 0x1b, 0xc4, 0xc8, 0xbd, 0x3e, 0x0d, 0xd8, 0x4e, 0xa6, + 0x5b, 0x01, 0xf4, 0x16, 0xd9, 0x8b, 0xbd, 0xc9, 0x29, 0xbc, 0x19, 0x41, 0xe2, 0x83, 0x40, 0x56, + 0x69, 0x68, 0x2d, 0xdd, 0xdd, 0x04, 0xe9, 0x11, 0xb9, 0x96, 0x82, 0x88, 0x23, 0x54, 0xc9, 0x42, + 0x70, 0x1c, 0x04, 0x02, 0x10, 0x01, 0xd9, 0x6e, 0xa3, 0xdc, 0x32, 0xdc, 0x5f, 0x2b, 0x1f, 0xff, + 0xff, 0xfe, 0xfb, 0xa7, 0x3b, 0x45, 0x1e, 0x5d, 0xbd, 0x5a, 0xad, 0x1b, 0x5d, 0xbd, 0x6a, 0xd4, + 0x49, 0x57, 0xaf, 0x92, 0x7a, 0xad, 0x69, 0x12, 0x76, 0xb1, 0x0e, 0x17, 0x30, 0xe5, 0x09, 0x42, + 0xf3, 0xe3, 0x0e, 0xb9, 0xd2, 0xc3, 0xf0, 0x45, 0x1a, 0x78, 0x12, 0x4e, 0xa5, 0x27, 0xe1, 0x9f, + 0x4b, 0x6c, 0x90, 0x1a, 0x4a, 0x4f, 0xc8, 0x13, 0x88, 0xc2, 0x81, 0x64, 0xe5, 0xac, 0xc0, 0x75, + 0x48, 0xf1, 0x93, 0x51, 0xdc, 0x56, 0x23, 0x43, 0xa6, 0x67, 0xfa, 0x15, 0x40, 0xf7, 0x49, 0xa5, + 0x73, 0xfc, 0xdc, 0x93, 0x03, 0xf6, 0x5f, 0xe6, 0x3a, 0x97, 0x54, 0x3e, 0x63, 0x10, 0xaa, 0xe8, + 0xbc, 0x69, 0x85, 0x48, 0x4f, 0x48, 0xb9, 0xdd, 0x51, 0xcd, 0xd1, 0x5a, 0xb5, 0x83, 0x7b, 0xf6, + 0x9f, 0x77, 0xcc, 0xce, 0xc2, 0x74, 0x96, 0x9b, 0x82, 0x6d, 0xfd, 0xec, 0xeb, 0xcd, 0x92, 0xab, + 0x5c, 0x6c, 0xb6, 0xb0, 0xc9, 0xc8, 0xfe, 0x66, 0x4f, 0x8a, 0x76, 0x1d, 0xfc, 0xd0, 0x48, 0xb9, + 0x87, 0x21, 0x7d, 0x47, 0xf6, 0x36, 0xf7, 0x62, 0x6b, 0xf4, 0x8b, 0x13, 0x30, 0x1f, 0x5d, 0x96, + 0x51, 0x24, 0x41, 0x47, 0xa4, 0xb6, 0x3e, 0x2f, 0xfb, 0x2f, 0x1c, 0xad, 0xd9, 0x9b, 0x0f, 0x2f, + 0x67, 0x5f, 0x84, 0x6d, 0x3f, 0x3b, 0x9b, 0x59, 0xda, 0xf9, 0xcc, 0xd2, 0xbe, 0xcd, 0x2c, 0xed, + 0xc3, 0xdc, 0x2a, 0x9d, 0xcf, 0xad, 0xd2, 0x97, 0xb9, 0x55, 0x7a, 0x79, 0x14, 0x46, 0x72, 0x30, + 0xea, 0xdb, 0x3e, 0x8f, 0x9d, 0xdf, 0x3c, 0xbc, 0xf1, 0xa1, 0x33, 0x59, 0x7d, 0x0b, 0xd3, 0x14, + 0xb0, 0x5f, 0xc9, 0x9e, 0xd9, 0xe1, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xab, 0x3e, 0x69, 0xe0, + 0x45, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -435,7 +440,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "dymension/rollapp/tx.proto", + Metadata: "dymensionxyz/dymension/rollapp/tx.proto", } func (m *MsgCreateRollapp) Marshal() (dAtA []byte, err error) { diff --git a/x/sequencer/keeper/keeper.go b/x/sequencer/keeper/keeper.go index 4d26b0374..181d96f07 100644 --- a/x/sequencer/keeper/keeper.go +++ b/x/sequencer/keeper/keeper.go @@ -3,7 +3,7 @@ package keeper import ( "fmt" - "github.com/tendermint/tendermint/libs/log" + "github.com/cometbft/cometbft/libs/log" storetypes "github.com/cosmos/cosmos-sdk/store/types" diff --git a/x/sequencer/keeper/sequencer_suite_test.go b/x/sequencer/keeper/sequencer_suite_test.go index 6816f8821..101223354 100644 --- a/x/sequencer/keeper/sequencer_suite_test.go +++ b/x/sequencer/keeper/sequencer_suite_test.go @@ -17,8 +17,8 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" - "github.com/tendermint/tendermint/libs/rand" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" + "github.com/cometbft/cometbft/libs/rand" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" ) type SequencerTestSuite struct { @@ -33,7 +33,7 @@ func TestSequencerKeeperTestSuite(t *testing.T) { func (suite *SequencerTestSuite) SetupTest() { app := apptesting.Setup(suite.T(), false) - ctx := app.GetBaseApp().NewContext(false, tmproto.Header{}) + ctx := app.GetBaseApp().NewContext(false, cometbftproto.Header{}) queryHelper := baseapp.NewQueryServerTestHelper(ctx, app.InterfaceRegistry()) types.RegisterQueryServer(queryHelper, app.SequencerKeeper) diff --git a/x/sequencer/module.go b/x/sequencer/module.go index 22ebeb93e..6b7d5546b 100644 --- a/x/sequencer/module.go +++ b/x/sequencer/module.go @@ -9,7 +9,7 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" + abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" @@ -123,17 +123,6 @@ func (am AppModule) Name() string { return am.AppModuleBasic.Name() } -// Route returns the capability module's message routing key. -func (am AppModule) Route() sdk.Route { return sdk.Route{} } - -// QuerierRoute returns the capability module's query routing key. -func (AppModule) QuerierRoute() string { return types.QuerierRoute } - -// LegacyQuerierHandler returns the capability module's Querier. -func (am AppModule) LegacyQuerierHandler(legacyQuerierCdc *codec.LegacyAmino) sdk.Querier { - return nil -} - // RegisterServices registers a GRPC query service to respond to the // module-specific GRPC queries. func (am AppModule) RegisterServices(cfg module.Configurator) { diff --git a/x/sequencer/module_simulation.go b/x/sequencer/module_simulation.go index c18c506e7..6ddb3ea84 100644 --- a/x/sequencer/module_simulation.go +++ b/x/sequencer/module_simulation.go @@ -4,11 +4,11 @@ import ( "math/rand" "github.com/cosmos/cosmos-sdk/baseapp" - simappparams "github.com/cosmos/cosmos-sdk/simapp/params" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" + "github.com/dymensionxyz/dymension/v3/app/params" "github.com/dymensionxyz/dymension/v3/testutil/sample" sequencersimulation "github.com/dymensionxyz/dymension/v3/x/sequencer/simulation" "github.com/dymensionxyz/dymension/v3/x/sequencer/types" @@ -17,7 +17,7 @@ import ( // avoid unused import issue var ( _ = sample.AccAddress - _ = simappparams.StakePerAccount + _ = params.StakePerAccount _ = simulation.MsgEntryKind _ = baseapp.Paramspace ) @@ -49,11 +49,6 @@ func (AppModule) ProposalContents(_ module.SimulationState) []simtypes.WeightedP return nil } -// RandomizedParams creates randomized param changes for the simulator -func (am AppModule) RandomizedParams(_ *rand.Rand) []simtypes.ParamChange { - return []simtypes.ParamChange{} -} - // RegisterStoreDecoder registers a decoder func (am AppModule) RegisterStoreDecoder(_ sdk.StoreDecoderRegistry) {} diff --git a/x/sequencer/types/description.pb.go b/x/sequencer/types/description.pb.go index 1d45971a9..ab8b77da1 100644 --- a/x/sequencer/types/description.pb.go +++ b/x/sequencer/types/description.pb.go @@ -1,11 +1,11 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/sequencer/description.proto +// source: dymensionxyz/dymension/sequencer/description.proto package types import ( fmt "fmt" - proto "github.com/gogo/protobuf/proto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -40,7 +40,7 @@ func (m *Description) Reset() { *m = Description{} } func (m *Description) String() string { return proto.CompactTextString(m) } func (*Description) ProtoMessage() {} func (*Description) Descriptor() ([]byte, []int) { - return fileDescriptor_91de4c32465eb7e7, []int{0} + return fileDescriptor_51488ae6fd653edd, []int{0} } func (m *Description) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -109,26 +109,26 @@ func init() { } func init() { - proto.RegisterFile("dymension/sequencer/description.proto", fileDescriptor_91de4c32465eb7e7) + proto.RegisterFile("dymensionxyz/dymension/sequencer/description.proto", fileDescriptor_51488ae6fd653edd) } -var fileDescriptor_91de4c32465eb7e7 = []byte{ - // 239 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4d, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x2f, 0x4e, 0x2d, 0x2c, 0x4d, 0xcd, 0x4b, 0x4e, 0x2d, 0xd2, - 0x4f, 0x49, 0x2d, 0x4e, 0x2e, 0xca, 0x2c, 0x28, 0xc9, 0xcc, 0xcf, 0xd3, 0x2b, 0x28, 0xca, 0x2f, - 0xc9, 0x17, 0x52, 0x80, 0x2b, 0xab, 0xa8, 0xac, 0xd2, 0x83, 0x73, 0xf4, 0xe0, 0x7a, 0x94, 0x16, - 0x32, 0x72, 0x71, 0xbb, 0x20, 0xf4, 0x09, 0x49, 0x70, 0xb1, 0xe7, 0xe6, 0xe7, 0x65, 0x66, 0xa7, - 0x16, 0x49, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x06, 0xc1, 0xb8, 0x42, 0x52, 0x5c, 0x1c, 0x99, 0x29, - 0xa9, 0x79, 0x25, 0x99, 0x25, 0x95, 0x12, 0x4c, 0x60, 0x29, 0x38, 0x1f, 0xa4, 0xab, 0x3c, 0x35, - 0xa9, 0x38, 0xb3, 0x24, 0x55, 0x82, 0x19, 0xa2, 0x0b, 0xca, 0x15, 0xd2, 0xe0, 0xe2, 0x2f, 0x4e, - 0x4d, 0x2e, 0x2d, 0xca, 0x2c, 0xa9, 0x74, 0xce, 0xcf, 0x2b, 0x49, 0x4c, 0x2e, 0x91, 0x60, 0x01, - 0xab, 0x40, 0x17, 0x06, 0x99, 0x91, 0x92, 0x5a, 0x92, 0x98, 0x99, 0x53, 0x2c, 0xc1, 0x0a, 0x31, - 0x03, 0xca, 0x75, 0x0a, 0x38, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, - 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xb3, - 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x64, 0xaf, 0x22, 0x38, 0xfa, - 0x65, 0xc6, 0xfa, 0x15, 0x48, 0x61, 0x54, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x0e, 0x1e, - 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x2d, 0xcd, 0xd6, 0xb4, 0x47, 0x01, 0x00, 0x00, +var fileDescriptor_51488ae6fd653edd = []byte{ + // 238 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x90, 0x3f, 0x4e, 0xc3, 0x30, + 0x14, 0x87, 0x63, 0xfe, 0x63, 0x06, 0xa4, 0x4c, 0x16, 0x83, 0x55, 0x31, 0x75, 0xb2, 0x25, 0x2a, + 0x71, 0x00, 0xe0, 0x00, 0x88, 0x91, 0xad, 0xb1, 0x9f, 0xe0, 0x09, 0x62, 0x07, 0xfb, 0x05, 0x6a, + 0x4e, 0xc1, 0x15, 0xb8, 0x0d, 0x63, 0x47, 0x46, 0x94, 0x5c, 0x04, 0x35, 0x2d, 0x26, 0x42, 0x62, + 0xfc, 0xec, 0xf7, 0xfd, 0x86, 0x8f, 0x9f, 0xd9, 0x54, 0x83, 0x8b, 0xe8, 0xdd, 0x22, 0xbd, 0xea, + 0x0c, 0x3a, 0xc2, 0x53, 0x0b, 0xce, 0x40, 0xd0, 0x16, 0xa2, 0x09, 0xd8, 0x10, 0x7a, 0xa7, 0x9a, + 0xe0, 0xc9, 0x97, 0x93, 0xb1, 0xa3, 0x32, 0xa8, 0xec, 0x9c, 0xbe, 0x33, 0x7e, 0x74, 0xf5, 0xeb, + 0x95, 0x82, 0xef, 0xd7, 0xde, 0xe1, 0x03, 0x04, 0xc1, 0x26, 0x6c, 0x7a, 0x78, 0xf3, 0x83, 0xe5, + 0x09, 0x3f, 0x40, 0x0b, 0x8e, 0x90, 0x92, 0xd8, 0x1a, 0xbe, 0x32, 0xaf, 0xac, 0x17, 0xa8, 0x22, + 0x12, 0x88, 0xed, 0xb5, 0xb5, 0xc1, 0x72, 0xca, 0x8f, 0x23, 0x98, 0x36, 0x20, 0xa5, 0x4b, 0xef, + 0x68, 0x6e, 0x48, 0xec, 0x0c, 0x17, 0x7f, 0x9f, 0x57, 0x1b, 0x16, 0x68, 0x8e, 0x8f, 0x51, 0xec, + 0xae, 0x37, 0x36, 0x78, 0x71, 0xfd, 0xd1, 0x49, 0xb6, 0xec, 0x24, 0xfb, 0xea, 0x24, 0x7b, 0xeb, + 0x65, 0xb1, 0xec, 0x65, 0xf1, 0xd9, 0xcb, 0xe2, 0xf6, 0xfc, 0x0e, 0xe9, 0xbe, 0xad, 0x94, 0xf1, + 0xb5, 0xfe, 0x27, 0xcf, 0xf3, 0x4c, 0x2f, 0x46, 0x8d, 0x28, 0x35, 0x10, 0xab, 0xbd, 0x21, 0xcf, + 0xec, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x78, 0x78, 0x2a, 0x5e, 0x54, 0x01, 0x00, 0x00, } func (m *Description) Marshal() (dAtA []byte, err error) { diff --git a/x/sequencer/types/genesis.pb.go b/x/sequencer/types/genesis.pb.go index 0f66c6f0d..6d5bb19e4 100644 --- a/x/sequencer/types/genesis.pb.go +++ b/x/sequencer/types/genesis.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/sequencer/genesis.proto +// source: dymensionxyz/dymension/sequencer/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -33,7 +33,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_52f5d9dc91070770, []int{0} + return fileDescriptor_3115db717b16c2af, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,25 +80,27 @@ func init() { proto.RegisterType((*GenesisState)(nil), "dymensionxyz.dymension.sequencer.GenesisState") } -func init() { proto.RegisterFile("dymension/sequencer/genesis.proto", fileDescriptor_52f5d9dc91070770) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/sequencer/genesis.proto", fileDescriptor_3115db717b16c2af) +} -var fileDescriptor_52f5d9dc91070770 = []byte{ +var fileDescriptor_3115db717b16c2af = []byte{ // 238 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4c, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x2f, 0x4e, 0x2d, 0x2c, 0x4d, 0xcd, 0x4b, 0x4e, 0x2d, 0xd2, - 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x52, 0x80, - 0x2b, 0xa9, 0xa8, 0xac, 0xd2, 0x83, 0x73, 0xf4, 0xe0, 0xea, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, - 0xc1, 0x8a, 0xf5, 0x41, 0x2c, 0x88, 0x3e, 0x29, 0x05, 0x6c, 0x46, 0x17, 0x24, 0x16, 0x25, 0xe6, - 0x42, 0x4d, 0x96, 0x52, 0xc6, 0xa6, 0x02, 0xce, 0x82, 0x28, 0x52, 0x5a, 0xcf, 0xc8, 0xc5, 0xe3, - 0x0e, 0x71, 0x50, 0x70, 0x49, 0x62, 0x49, 0xaa, 0x90, 0x1b, 0x17, 0x1b, 0xc4, 0x14, 0x09, 0x46, - 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x0d, 0x3d, 0x42, 0x0e, 0xd4, 0x0b, 0x00, 0xab, 0x77, 0x62, 0x39, - 0x71, 0x4f, 0x9e, 0x21, 0x08, 0xaa, 0x5b, 0x28, 0x9c, 0x8b, 0x17, 0xae, 0xc2, 0x27, 0xb3, 0xb8, - 0x44, 0x82, 0x49, 0x81, 0x59, 0x83, 0xdb, 0x48, 0x9b, 0xb0, 0x71, 0xc1, 0x30, 0x16, 0xd4, 0x44, - 0x54, 0x73, 0x9c, 0x02, 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, - 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x2c, - 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0xd9, 0x16, 0x04, 0x47, 0xbf, - 0xcc, 0x58, 0xbf, 0x02, 0x29, 0x34, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x41, 0x61, - 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x89, 0x5d, 0xad, 0x88, 0xae, 0x01, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4b, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x8b, 0x53, 0x0b, 0x4b, + 0x53, 0xf3, 0x92, 0x53, 0x8b, 0xf4, 0xd3, 0x53, 0xf3, 0x52, 0x8b, 0x33, 0x8b, 0xf5, 0x0a, 0x8a, + 0xf2, 0x4b, 0xf2, 0x85, 0x14, 0x90, 0xd5, 0x23, 0x34, 0xeb, 0xc1, 0xd5, 0x4b, 0x89, 0xa4, 0xe7, + 0xa7, 0xe7, 0x83, 0x15, 0xeb, 0x83, 0x58, 0x10, 0x7d, 0x52, 0xba, 0x04, 0xed, 0x29, 0x48, 0x2c, + 0x4a, 0xcc, 0x85, 0x5a, 0x23, 0x65, 0x40, 0x50, 0x39, 0x9c, 0x05, 0xd1, 0xa1, 0xb4, 0x9e, 0x91, + 0x8b, 0xc7, 0x1d, 0xe2, 0xd4, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x37, 0x2e, 0x36, 0x88, 0x91, + 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0x1a, 0x7a, 0x84, 0x9c, 0xae, 0x17, 0x00, 0x56, 0xef, + 0xc4, 0x72, 0xe2, 0x9e, 0x3c, 0x43, 0x10, 0x54, 0xb7, 0x50, 0x38, 0x17, 0x2f, 0x5c, 0x85, 0x4f, + 0x66, 0x71, 0x89, 0x04, 0x93, 0x02, 0xb3, 0x06, 0xb7, 0x91, 0x36, 0x61, 0xe3, 0x82, 0x61, 0x2c, + 0xa8, 0x89, 0xa8, 0xe6, 0x38, 0x05, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, + 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, + 0x94, 0x59, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0x8e, 0x80, 0x28, + 0x33, 0xd6, 0xaf, 0x40, 0x0a, 0x8d, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0x50, 0x18, + 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xae, 0x22, 0x5d, 0x00, 0xd5, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/sequencer/types/operating_status.pb.go b/x/sequencer/types/operating_status.pb.go index 376cbefd0..32ef95b49 100644 --- a/x/sequencer/types/operating_status.pb.go +++ b/x/sequencer/types/operating_status.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/sequencer/operating_status.proto +// source: dymensionxyz/dymension/sequencer/operating_status.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" math "math" ) @@ -50,7 +50,7 @@ func (x OperatingStatus) String() string { } func (OperatingStatus) EnumDescriptor() ([]byte, []int) { - return fileDescriptor_406c52b8df3dd90f, []int{0} + return fileDescriptor_4d19c29067c09de2, []int{0} } func init() { @@ -58,26 +58,26 @@ func init() { } func init() { - proto.RegisterFile("dymension/sequencer/operating_status.proto", fileDescriptor_406c52b8df3dd90f) + proto.RegisterFile("dymensionxyz/dymension/sequencer/operating_status.proto", fileDescriptor_4d19c29067c09de2) } -var fileDescriptor_406c52b8df3dd90f = []byte{ - // 259 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4a, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x2f, 0x4e, 0x2d, 0x2c, 0x4d, 0xcd, 0x4b, 0x4e, 0x2d, 0xd2, - 0xcf, 0x2f, 0x48, 0x2d, 0x4a, 0x2c, 0xc9, 0xcc, 0x4b, 0x8f, 0x2f, 0x2e, 0x49, 0x2c, 0x29, 0x2d, - 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x52, 0x80, 0xab, 0xad, 0xa8, 0xac, 0xd2, 0x83, 0x73, - 0xf4, 0xe0, 0x1a, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x8a, 0xf5, 0x41, 0x2c, 0x88, 0x3e, - 0xad, 0x39, 0x8c, 0x5c, 0xfc, 0xfe, 0x30, 0x23, 0x83, 0xc1, 0x26, 0x0a, 0x69, 0x73, 0x49, 0xfa, - 0x07, 0xb8, 0x06, 0x39, 0x86, 0x78, 0xfa, 0xb9, 0xc7, 0x07, 0x87, 0x38, 0x86, 0x84, 0x06, 0xc7, - 0x87, 0xfa, 0x39, 0xf9, 0xfb, 0xb9, 0xb8, 0xba, 0x08, 0x30, 0x48, 0xf1, 0x74, 0xcd, 0x55, 0xe0, - 0x08, 0xcd, 0x4b, 0xca, 0xcf, 0x4b, 0x49, 0x4d, 0x11, 0xd2, 0xe5, 0x92, 0xc2, 0xa1, 0xd8, 0xd3, - 0xcf, 0x5d, 0x80, 0x51, 0x8a, 0xb7, 0x6b, 0xae, 0x02, 0x27, 0x44, 0x75, 0x66, 0x5e, 0xba, 0x90, - 0x3a, 0x97, 0x38, 0x86, 0x72, 0xa8, 0xc9, 0x4c, 0x52, 0x5c, 0x5d, 0x73, 0x15, 0xd8, 0x9c, 0xc0, - 0xe6, 0x4a, 0xb1, 0x74, 0x2c, 0x96, 0x63, 0x70, 0x0a, 0x38, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, - 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, - 0x63, 0x39, 0x86, 0x28, 0xb3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, - 0x64, 0xbf, 0x23, 0x38, 0xfa, 0x65, 0xc6, 0xfa, 0x15, 0x48, 0x21, 0x57, 0x52, 0x59, 0x90, 0x5a, - 0x9c, 0xc4, 0x06, 0xf6, 0xb7, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xe6, 0x7a, 0x7d, 0xf3, 0x5d, - 0x01, 0x00, 0x00, +var fileDescriptor_4d19c29067c09de2 = []byte{ + // 260 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0x4f, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x8b, 0x53, 0x0b, 0x4b, + 0x53, 0xf3, 0x92, 0x53, 0x8b, 0xf4, 0xf3, 0x0b, 0x52, 0x8b, 0x12, 0x4b, 0x32, 0xf3, 0xd2, 0xe3, + 0x8b, 0x4b, 0x12, 0x4b, 0x4a, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0x14, 0x90, 0x35, + 0xea, 0xc1, 0x39, 0x7a, 0x70, 0x8d, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0xc5, 0xfa, 0x20, + 0x16, 0x44, 0x9f, 0xd6, 0x1c, 0x46, 0x2e, 0x7e, 0x7f, 0x98, 0x91, 0xc1, 0x60, 0x13, 0x85, 0xb4, + 0xb9, 0x24, 0xfd, 0x03, 0x5c, 0x83, 0x1c, 0x43, 0x3c, 0xfd, 0xdc, 0xe3, 0x83, 0x43, 0x1c, 0x43, + 0x42, 0x83, 0xe3, 0x43, 0xfd, 0x9c, 0xfc, 0xfd, 0x5c, 0x5c, 0x5d, 0x04, 0x18, 0xa4, 0x78, 0xba, + 0xe6, 0x2a, 0x70, 0x84, 0xe6, 0x25, 0xe5, 0xe7, 0xa5, 0xa4, 0xa6, 0x08, 0xe9, 0x72, 0x49, 0xe1, + 0x50, 0xec, 0xe9, 0xe7, 0x2e, 0xc0, 0x28, 0xc5, 0xdb, 0x35, 0x57, 0x81, 0x13, 0xa2, 0x3a, 0x33, + 0x2f, 0x5d, 0x48, 0x9d, 0x4b, 0x1c, 0x43, 0x39, 0xd4, 0x64, 0x26, 0x29, 0xae, 0xae, 0xb9, 0x0a, + 0x6c, 0x4e, 0x60, 0x73, 0xa5, 0x58, 0x3a, 0x16, 0xcb, 0x31, 0x38, 0x05, 0x9c, 0x78, 0x24, 0xc7, + 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, + 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x59, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, + 0x7e, 0xae, 0x3e, 0x8e, 0x40, 0x2b, 0x33, 0xd6, 0xaf, 0x40, 0x0a, 0xb9, 0x92, 0xca, 0x82, 0xd4, + 0xe2, 0x24, 0x36, 0xb0, 0xbf, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc4, 0x80, 0x47, 0x58, + 0x6a, 0x01, 0x00, 0x00, } diff --git a/x/sequencer/types/params.pb.go b/x/sequencer/types/params.pb.go index f8eed1e0a..fcc43eba4 100644 --- a/x/sequencer/types/params.pb.go +++ b/x/sequencer/types/params.pb.go @@ -1,15 +1,15 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/sequencer/params.proto +// source: dymensionxyz/dymension/sequencer/params.proto package types import ( fmt "fmt" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" - _ "github.com/gogo/protobuf/types" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" + _ "google.golang.org/protobuf/types/known/durationpb" io "io" math "math" math_bits "math/bits" @@ -38,7 +38,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_d06545e8924ecfea, []int{0} + return fileDescriptor_599b0eefba99ee26, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -85,30 +85,32 @@ func init() { proto.RegisterType((*Params)(nil), "dymensionxyz.dymension.sequencer.Params") } -func init() { proto.RegisterFile("dymension/sequencer/params.proto", fileDescriptor_d06545e8924ecfea) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/sequencer/params.proto", fileDescriptor_599b0eefba99ee26) +} -var fileDescriptor_d06545e8924ecfea = []byte{ - // 317 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x91, 0xbd, 0x4e, 0xf3, 0x30, - 0x14, 0x86, 0xe3, 0x6f, 0xe8, 0x57, 0x05, 0xc1, 0x10, 0x31, 0x94, 0x0e, 0x4e, 0xc5, 0xc4, 0x80, - 0x6c, 0x95, 0x4a, 0x0c, 0x8c, 0x81, 0x89, 0xa9, 0xaa, 0x98, 0x58, 0xaa, 0x38, 0x31, 0xc6, 0x12, - 0xf6, 0x09, 0xb1, 0x53, 0x35, 0x5c, 0x05, 0x63, 0xc7, 0x5e, 0x02, 0x97, 0xd1, 0xb1, 0x23, 0x53, - 0x41, 0xed, 0x82, 0xb8, 0x0a, 0x94, 0xdf, 0x76, 0xf3, 0xf1, 0x79, 0xdf, 0x47, 0x8f, 0x6c, 0x77, - 0x10, 0xe7, 0x8a, 0x6b, 0x23, 0x41, 0x53, 0xc3, 0x5f, 0x33, 0xae, 0x23, 0x9e, 0xd2, 0x24, 0x4c, - 0x43, 0x65, 0x48, 0x92, 0x82, 0x05, 0x6f, 0x9f, 0x98, 0xe7, 0x6f, 0xa4, 0x1d, 0x48, 0x1b, 0xef, - 0x9f, 0x0a, 0x10, 0x50, 0x86, 0x69, 0x71, 0xaa, 0x7a, 0x7d, 0x1c, 0x81, 0x51, 0x60, 0x28, 0x0b, - 0x0d, 0xa7, 0xb3, 0x21, 0xe3, 0x36, 0x1c, 0xd2, 0x08, 0xa4, 0x6e, 0xf6, 0x02, 0x40, 0xbc, 0x70, - 0x5a, 0x4e, 0x2c, 0x7b, 0xa2, 0x71, 0x96, 0x86, 0xb6, 0x20, 0x97, 0x37, 0xe7, 0x1f, 0xc8, 0xed, - 0x8c, 0x4b, 0x11, 0x6f, 0xec, 0x76, 0x95, 0xd4, 0x53, 0x06, 0x3a, 0xee, 0xa1, 0x01, 0xba, 0x38, - 0xba, 0x3a, 0x23, 0x15, 0x9d, 0x14, 0x74, 0x52, 0xd3, 0xc9, 0x2d, 0x48, 0x1d, 0xf4, 0x57, 0x1b, - 0xdf, 0xf9, 0xdd, 0xf8, 0x5e, 0x53, 0xb9, 0x04, 0x25, 0x2d, 0x57, 0x89, 0xcd, 0x27, 0xff, 0x95, - 0xd4, 0x01, 0xe8, 0xd8, 0xbb, 0x77, 0x4f, 0x32, 0x5d, 0x2c, 0xa5, 0x16, 0x53, 0x2b, 0x15, 0xef, - 0xfd, 0xab, 0xb9, 0x95, 0x15, 0x69, 0xac, 0xc8, 0x5d, 0x6d, 0x15, 0x74, 0x0b, 0xee, 0xe2, 0xcb, - 0x47, 0x93, 0xe3, 0xb6, 0xfa, 0x20, 0x15, 0xbf, 0xe9, 0x2e, 0x96, 0xbe, 0xf3, 0xb3, 0xf4, 0x51, - 0x30, 0x5e, 0x6d, 0x31, 0x5a, 0x6f, 0x31, 0xfa, 0xde, 0x62, 0xf4, 0xbe, 0xc3, 0xce, 0x7a, 0x87, - 0x9d, 0xcf, 0x1d, 0x76, 0x1e, 0xaf, 0x85, 0xb4, 0xcf, 0x19, 0x23, 0x11, 0x28, 0x7a, 0xf8, 0x9e, - 0xfb, 0x81, 0xce, 0x46, 0x74, 0x7e, 0xf0, 0x07, 0x36, 0x4f, 0xb8, 0x61, 0x9d, 0xd2, 0x63, 0xf4, - 0x17, 0x00, 0x00, 0xff, 0xff, 0xa6, 0xb5, 0x36, 0x51, 0xa7, 0x01, 0x00, 0x00, +var fileDescriptor_599b0eefba99ee26 = []byte{ + // 319 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0xbd, 0x4e, 0xf3, 0x30, + 0x14, 0x86, 0xe3, 0x6f, 0xe8, 0x57, 0x05, 0xc1, 0x10, 0x31, 0x94, 0x0e, 0x4e, 0xc5, 0xc4, 0x00, + 0xb6, 0x4a, 0x25, 0x06, 0xc6, 0xc0, 0xc4, 0x54, 0x55, 0x4c, 0x2c, 0x55, 0x9c, 0x18, 0x63, 0x09, + 0xfb, 0x84, 0xd8, 0xa9, 0x1a, 0xae, 0x82, 0xb1, 0x63, 0x2f, 0x81, 0xcb, 0xe8, 0xd8, 0x91, 0xa9, + 0xa0, 0x76, 0x41, 0x5c, 0x05, 0xca, 0xaf, 0xba, 0xb0, 0xf9, 0xf8, 0xbc, 0xef, 0xa3, 0x47, 0xb6, + 0x7b, 0x11, 0xe7, 0x8a, 0x6b, 0x23, 0x41, 0xcf, 0xf3, 0x57, 0xda, 0x0e, 0xd4, 0xf0, 0x97, 0x8c, + 0xeb, 0x88, 0xa7, 0x34, 0x09, 0xd3, 0x50, 0x19, 0x92, 0xa4, 0x60, 0xc1, 0x1b, 0xec, 0xc7, 0x49, + 0x3b, 0x90, 0x36, 0xde, 0x3f, 0x16, 0x20, 0xa0, 0x0c, 0xd3, 0xe2, 0x54, 0xf5, 0xfa, 0x38, 0x02, + 0xa3, 0xc0, 0x50, 0x16, 0x1a, 0x4e, 0x67, 0x43, 0xc6, 0x6d, 0x38, 0xa4, 0x11, 0x48, 0xdd, 0xec, + 0x05, 0x80, 0x78, 0xe6, 0xb4, 0x9c, 0x58, 0xf6, 0x48, 0xe3, 0x2c, 0x0d, 0x6d, 0x41, 0x2e, 0x6f, + 0x4e, 0xdf, 0x91, 0xdb, 0x19, 0x97, 0x22, 0xde, 0xd8, 0xed, 0x2a, 0xa9, 0xa7, 0x0c, 0x74, 0xdc, + 0x43, 0x03, 0x74, 0x76, 0x70, 0x79, 0x42, 0x2a, 0x3a, 0x29, 0xe8, 0xa4, 0xa6, 0x93, 0x1b, 0x90, + 0x3a, 0xe8, 0xaf, 0x36, 0xbe, 0xf3, 0xb3, 0xf1, 0xbd, 0xa6, 0x72, 0x0e, 0x4a, 0x5a, 0xae, 0x12, + 0x9b, 0x4f, 0xfe, 0x2b, 0xa9, 0x03, 0xd0, 0xb1, 0x77, 0xe7, 0x1e, 0x65, 0xba, 0x58, 0x4a, 0x2d, + 0xa6, 0x56, 0x2a, 0xde, 0xfb, 0x57, 0x73, 0x2b, 0x2b, 0xd2, 0x58, 0x91, 0xdb, 0xda, 0x2a, 0xe8, + 0x16, 0xdc, 0xc5, 0xa7, 0x8f, 0x26, 0x87, 0x6d, 0xf5, 0x5e, 0x2a, 0x7e, 0xdd, 0x5d, 0x2c, 0x7d, + 0xe7, 0x7b, 0xe9, 0xa3, 0x60, 0xbc, 0xda, 0x62, 0xb4, 0xde, 0x62, 0xf4, 0xb5, 0xc5, 0xe8, 0x6d, + 0x87, 0x9d, 0xf5, 0x0e, 0x3b, 0x1f, 0x3b, 0xec, 0x3c, 0x5c, 0x09, 0x69, 0x9f, 0x32, 0x46, 0x22, + 0x50, 0xf4, 0x8f, 0xe7, 0x9f, 0x8d, 0xe8, 0x7c, 0xef, 0x0f, 0x6c, 0x9e, 0x70, 0xc3, 0x3a, 0xa5, + 0xc7, 0xe8, 0x37, 0x00, 0x00, 0xff, 0xff, 0x31, 0xe8, 0xd5, 0xe4, 0xb4, 0x01, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { @@ -158,7 +160,7 @@ func (m *Params) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n1, err1 := github_com_gogo_protobuf_types.StdDurationMarshalTo(m.UnbondingTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdDuration(m.UnbondingTime):]) + n1, err1 := github_com_cosmos_gogoproto_types.StdDurationMarshalTo(m.UnbondingTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.UnbondingTime):]) if err1 != nil { return 0, err1 } @@ -198,7 +200,7 @@ func (m *Params) Size() (n int) { _ = l l = m.MinBond.Size() n += 1 + l + sovParams(uint64(l)) - l = github_com_gogo_protobuf_types.SizeOfStdDuration(m.UnbondingTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdDuration(m.UnbondingTime) n += 1 + l + sovParams(uint64(l)) return n } @@ -300,7 +302,7 @@ func (m *Params) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdDurationUnmarshal(&m.UnbondingTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdDurationUnmarshal(&m.UnbondingTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/sequencer/types/query.pb.go b/x/sequencer/types/query.pb.go index 431da9a8a..42c21522b 100644 --- a/x/sequencer/types/query.pb.go +++ b/x/sequencer/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/sequencer/query.proto +// source: dymensionxyz/dymension/sequencer/query.proto package types @@ -7,9 +7,9 @@ import ( context "context" fmt "fmt" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -38,7 +38,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d09222b66a78a447, []int{0} + return fileDescriptor_c6af1252721903a2, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,7 +77,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d09222b66a78a447, []int{1} + return fileDescriptor_c6af1252721903a2, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -121,7 +121,7 @@ func (m *QueryGetSequencerRequest) Reset() { *m = QueryGetSequencerReque func (m *QueryGetSequencerRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetSequencerRequest) ProtoMessage() {} func (*QueryGetSequencerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d09222b66a78a447, []int{2} + return fileDescriptor_c6af1252721903a2, []int{2} } func (m *QueryGetSequencerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -165,7 +165,7 @@ func (m *QueryGetSequencerResponse) Reset() { *m = QueryGetSequencerResp func (m *QueryGetSequencerResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetSequencerResponse) ProtoMessage() {} func (*QueryGetSequencerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d09222b66a78a447, []int{3} + return fileDescriptor_c6af1252721903a2, []int{3} } func (m *QueryGetSequencerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -209,7 +209,7 @@ func (m *QuerySequencersRequest) Reset() { *m = QuerySequencersRequest{} func (m *QuerySequencersRequest) String() string { return proto.CompactTextString(m) } func (*QuerySequencersRequest) ProtoMessage() {} func (*QuerySequencersRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d09222b66a78a447, []int{4} + return fileDescriptor_c6af1252721903a2, []int{4} } func (m *QuerySequencersRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -254,7 +254,7 @@ func (m *QuerySequencersResponse) Reset() { *m = QuerySequencersResponse func (m *QuerySequencersResponse) String() string { return proto.CompactTextString(m) } func (*QuerySequencersResponse) ProtoMessage() {} func (*QuerySequencersResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d09222b66a78a447, []int{5} + return fileDescriptor_c6af1252721903a2, []int{5} } func (m *QuerySequencersResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -305,7 +305,7 @@ func (m *QueryGetSequencersByRollappRequest) Reset() { *m = QueryGetSequ func (m *QueryGetSequencersByRollappRequest) String() string { return proto.CompactTextString(m) } func (*QueryGetSequencersByRollappRequest) ProtoMessage() {} func (*QueryGetSequencersByRollappRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d09222b66a78a447, []int{6} + return fileDescriptor_c6af1252721903a2, []int{6} } func (m *QueryGetSequencersByRollappRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -349,7 +349,7 @@ func (m *QueryGetSequencersByRollappResponse) Reset() { *m = QueryGetSeq func (m *QueryGetSequencersByRollappResponse) String() string { return proto.CompactTextString(m) } func (*QueryGetSequencersByRollappResponse) ProtoMessage() {} func (*QueryGetSequencersByRollappResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d09222b66a78a447, []int{7} + return fileDescriptor_c6af1252721903a2, []int{7} } func (m *QueryGetSequencersByRollappResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -398,7 +398,7 @@ func (m *QueryGetSequencersByRollappByStatusRequest) String() string { } func (*QueryGetSequencersByRollappByStatusRequest) ProtoMessage() {} func (*QueryGetSequencersByRollappByStatusRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_d09222b66a78a447, []int{8} + return fileDescriptor_c6af1252721903a2, []int{8} } func (m *QueryGetSequencersByRollappByStatusRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -453,7 +453,7 @@ func (m *QueryGetSequencersByRollappByStatusResponse) String() string { } func (*QueryGetSequencersByRollappByStatusResponse) ProtoMessage() {} func (*QueryGetSequencersByRollappByStatusResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_d09222b66a78a447, []int{9} + return fileDescriptor_c6af1252721903a2, []int{9} } func (m *QueryGetSequencersByRollappByStatusResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -502,54 +502,56 @@ func init() { proto.RegisterType((*QueryGetSequencersByRollappByStatusResponse)(nil), "dymensionxyz.dymension.sequencer.QueryGetSequencersByRollappByStatusResponse") } -func init() { proto.RegisterFile("dymension/sequencer/query.proto", fileDescriptor_d09222b66a78a447) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/sequencer/query.proto", fileDescriptor_c6af1252721903a2) +} -var fileDescriptor_d09222b66a78a447 = []byte{ +var fileDescriptor_c6af1252721903a2 = []byte{ // 695 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x4f, 0x4f, 0x13, 0x41, - 0x14, 0xef, 0xa0, 0x36, 0xf6, 0x99, 0x18, 0x33, 0x10, 0xc5, 0x95, 0x14, 0xb2, 0x24, 0x4a, 0x4a, - 0xdc, 0x11, 0x50, 0xe3, 0x9f, 0xc4, 0x68, 0x95, 0x12, 0x22, 0x0a, 0x14, 0x4f, 0x26, 0x06, 0xa7, - 0x74, 0xb2, 0x36, 0x69, 0x77, 0x96, 0x9d, 0x2d, 0x61, 0x25, 0x24, 0xc6, 0x4f, 0x40, 0x62, 0xfc, - 0x0c, 0x7e, 0x02, 0x3d, 0x7a, 0xe6, 0xe0, 0x81, 0xc4, 0x8b, 0x27, 0x63, 0xc0, 0xbb, 0x5f, 0xc1, - 0x74, 0x66, 0xba, 0x2d, 0xec, 0xc2, 0xb6, 0x05, 0x6e, 0xd3, 0xe9, 0x7b, 0xbf, 0xdf, 0xef, 0xfd, - 0xde, 0xbc, 0x97, 0x85, 0xe1, 0x72, 0x50, 0x63, 0x8e, 0xa8, 0x70, 0x87, 0x08, 0xb6, 0x5a, 0x67, - 0xce, 0x0a, 0xf3, 0xc8, 0x6a, 0x9d, 0x79, 0x81, 0xe5, 0x7a, 0xdc, 0xe7, 0x78, 0x24, 0x0c, 0x58, - 0x0f, 0xde, 0x5b, 0xe1, 0x0f, 0x2b, 0x8c, 0x36, 0x06, 0x6c, 0x6e, 0x73, 0x19, 0x4c, 0x1a, 0x27, - 0x95, 0x67, 0x0c, 0xd9, 0x9c, 0xdb, 0x55, 0x46, 0xa8, 0x5b, 0x21, 0xd4, 0x71, 0xb8, 0x4f, 0xfd, - 0x0a, 0x77, 0x84, 0xfe, 0x37, 0xb7, 0xc2, 0x45, 0x8d, 0x0b, 0x52, 0xa2, 0x82, 0x29, 0x3a, 0xb2, - 0x36, 0x51, 0x62, 0x3e, 0x9d, 0x20, 0x2e, 0xb5, 0x2b, 0x8e, 0x0c, 0xd6, 0xb1, 0x23, 0x71, 0x12, - 0x5d, 0xea, 0xd1, 0x5a, 0x13, 0x6d, 0x34, 0x2e, 0x22, 0x3c, 0x35, 0x29, 0xe3, 0x82, 0xb8, 0xcb, - 0x3c, 0xea, 0x57, 0x1c, 0x7b, 0x59, 0xf8, 0xd4, 0xaf, 0x6b, 0x40, 0x73, 0x00, 0xf0, 0x62, 0x43, - 0xd4, 0x82, 0x64, 0x29, 0x36, 0xc2, 0x85, 0x6f, 0xbe, 0x81, 0xfe, 0x7d, 0xb7, 0xc2, 0xe5, 0x8e, - 0x60, 0xb8, 0x00, 0x69, 0xa5, 0x66, 0x10, 0x8d, 0xa0, 0xb1, 0x0b, 0x93, 0x63, 0x56, 0x92, 0x65, - 0x96, 0x42, 0xc8, 0x9f, 0xdd, 0xfe, 0x3d, 0x9c, 0x2a, 0xea, 0x6c, 0xb3, 0x00, 0x83, 0x12, 0x7e, - 0x86, 0xf9, 0x4b, 0xcd, 0x48, 0x4d, 0x8d, 0x73, 0x70, 0x29, 0xcc, 0x7e, 0x52, 0x2e, 0x7b, 0x4c, - 0x28, 0xb6, 0x4c, 0x31, 0x72, 0x6f, 0x56, 0xe1, 0x6a, 0x0c, 0x8e, 0x16, 0x3b, 0x0f, 0x99, 0x30, - 0x41, 0xeb, 0x1d, 0x4f, 0xd6, 0x1b, 0xe2, 0x68, 0xc9, 0x2d, 0x0c, 0xf3, 0x2d, 0x5c, 0x96, 0x6c, - 0x61, 0x48, 0xd3, 0x2e, 0x5c, 0x00, 0x68, 0xf5, 0x52, 0x73, 0x5d, 0xb7, 0x54, 0xe3, 0xad, 0x46, - 0xe3, 0x2d, 0xf5, 0xce, 0x74, 0xe3, 0xad, 0x05, 0x6a, 0x33, 0x9d, 0x5b, 0x6c, 0xcb, 0x34, 0xbf, - 0x22, 0xb8, 0x12, 0xa1, 0xd0, 0xe5, 0x2c, 0x02, 0x84, 0x52, 0x1a, 0x8e, 0x9c, 0xe9, 0xad, 0x9e, - 0x36, 0x10, 0x3c, 0xb3, 0x4f, 0x76, 0x9f, 0x94, 0x7d, 0x23, 0x51, 0xb6, 0xd2, 0xb3, 0x4f, 0x77, - 0x1e, 0xcc, 0x48, 0x1f, 0x44, 0x3e, 0x28, 0xf2, 0x6a, 0x95, 0xba, 0x6e, 0xd3, 0xa5, 0x21, 0xc8, - 0x78, 0xea, 0x66, 0xb6, 0xac, 0x5b, 0xda, 0xba, 0x30, 0xd7, 0x61, 0xf4, 0x48, 0x8c, 0x53, 0xb3, - 0xc1, 0xfc, 0x8c, 0x20, 0x77, 0x04, 0x75, 0x3e, 0x58, 0x92, 0x03, 0xd3, 0x51, 0x19, 0x78, 0x16, - 0xd2, 0x6a, 0xbe, 0xa4, 0x9f, 0x17, 0x27, 0x27, 0x92, 0xb5, 0xcd, 0x37, 0x27, 0x53, 0xf3, 0x68, - 0x00, 0xf3, 0x03, 0x82, 0xf1, 0x8e, 0x74, 0x9d, 0x9a, 0x35, 0x93, 0xdf, 0xcf, 0xc3, 0x39, 0x29, - 0x01, 0x7f, 0x41, 0x90, 0x56, 0xb3, 0x8c, 0x6f, 0x27, 0x63, 0x46, 0x57, 0x8a, 0x71, 0xa7, 0xcb, - 0x2c, 0x55, 0x94, 0x79, 0xeb, 0xe3, 0xcf, 0xbf, 0x9f, 0xfa, 0x72, 0x78, 0x8c, 0xb4, 0xa7, 0x93, - 0xc3, 0x17, 0x25, 0xfe, 0x81, 0x20, 0x13, 0xd6, 0x84, 0x1f, 0x74, 0x48, 0x1b, 0xb3, 0x8a, 0x8c, - 0x87, 0x3d, 0xe5, 0x6a, 0xe1, 0x05, 0x29, 0xfc, 0x31, 0x7e, 0x94, 0x2c, 0xbc, 0x75, 0xda, 0x38, - 0xb8, 0xe2, 0x36, 0xf1, 0x37, 0x04, 0xd0, 0xea, 0x3e, 0xbe, 0xd7, 0xa1, 0xa6, 0xc8, 0x92, 0x32, - 0xee, 0xf7, 0x90, 0xa9, 0x6b, 0x99, 0x92, 0xb5, 0xdc, 0xc4, 0xe3, 0x5d, 0xd4, 0x82, 0xff, 0x21, - 0xe8, 0x8f, 0x79, 0xb6, 0xf8, 0x59, 0x0f, 0xae, 0x46, 0x96, 0x89, 0x31, 0x7d, 0x4c, 0x14, 0x5d, - 0xd9, 0x73, 0x59, 0xd9, 0x34, 0x7e, 0xda, 0x45, 0x65, 0x62, 0xb9, 0x14, 0x2c, 0xeb, 0x89, 0x27, - 0x1b, 0xe1, 0xe8, 0x6f, 0xe2, 0xad, 0x3e, 0xb8, 0x76, 0xc4, 0xa0, 0xe2, 0xb9, 0x63, 0x69, 0x3e, - 0xb0, 0x87, 0x8c, 0x17, 0x27, 0x84, 0xa6, 0x9d, 0x78, 0x25, 0x9d, 0x78, 0x89, 0xe7, 0x4e, 0xc0, - 0x09, 0xb2, 0xa1, 0x56, 0xd8, 0x66, 0x7e, 0x61, 0x7b, 0x37, 0x8b, 0x76, 0x76, 0xb3, 0xe8, 0xcf, - 0x6e, 0x16, 0x6d, 0xed, 0x65, 0x53, 0x3b, 0x7b, 0xd9, 0xd4, 0xaf, 0xbd, 0x6c, 0xea, 0xf5, 0x5d, - 0xbb, 0xe2, 0xbf, 0xab, 0x97, 0xac, 0x15, 0x5e, 0x3b, 0x8c, 0x71, 0x6d, 0x8a, 0xac, 0xb7, 0xd1, - 0xfa, 0x81, 0xcb, 0x44, 0x29, 0x2d, 0xbf, 0x5b, 0xa6, 0xfe, 0x07, 0x00, 0x00, 0xff, 0xff, 0xac, - 0xb1, 0x9d, 0x0e, 0xcf, 0x09, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x56, 0x4d, 0x4f, 0x13, 0x4f, + 0x18, 0xef, 0xf0, 0xff, 0xdb, 0xd8, 0xc7, 0xc4, 0x98, 0x81, 0x28, 0xae, 0xa4, 0x92, 0x35, 0x51, + 0x52, 0x64, 0x87, 0x17, 0xdf, 0x4d, 0x8c, 0x56, 0x29, 0x21, 0xa2, 0x40, 0xf1, 0x64, 0x62, 0x70, + 0x4a, 0x27, 0xeb, 0x26, 0xed, 0xce, 0xb2, 0xb3, 0x25, 0xac, 0x84, 0xc4, 0xf8, 0x09, 0x48, 0x8c, + 0x9f, 0xc1, 0x4f, 0xa0, 0x47, 0xcf, 0x1c, 0x3c, 0x90, 0x78, 0xf1, 0x64, 0x0c, 0x78, 0xf7, 0x2b, + 0x98, 0xce, 0x4c, 0xb7, 0x85, 0x45, 0x76, 0x29, 0x70, 0xeb, 0x0e, 0xcf, 0xf3, 0x7b, 0x9b, 0x79, + 0x9e, 0x00, 0xd7, 0xab, 0x61, 0x9d, 0xb9, 0xc2, 0xe1, 0xee, 0x6a, 0xf8, 0x96, 0x44, 0x1f, 0x44, + 0xb0, 0xe5, 0x06, 0x73, 0x97, 0x98, 0x4f, 0x96, 0x1b, 0xcc, 0x0f, 0x2d, 0xcf, 0xe7, 0x01, 0xc7, + 0x83, 0x9d, 0xd5, 0x56, 0xf4, 0x61, 0x45, 0xd5, 0x46, 0x9f, 0xcd, 0x6d, 0x2e, 0x8b, 0x49, 0xf3, + 0x97, 0xea, 0x33, 0x06, 0x6c, 0xce, 0xed, 0x1a, 0x23, 0xd4, 0x73, 0x08, 0x75, 0x5d, 0x1e, 0xd0, + 0xc0, 0xe1, 0xae, 0xd0, 0x7f, 0x2d, 0x2c, 0x71, 0x51, 0xe7, 0x82, 0x54, 0xa8, 0x60, 0x8a, 0x8e, + 0xac, 0x8c, 0x55, 0x58, 0x40, 0xc7, 0x88, 0x47, 0x6d, 0xc7, 0x95, 0xc5, 0xba, 0x76, 0x24, 0x51, + 0xaf, 0x47, 0x7d, 0x5a, 0x6f, 0x41, 0x8f, 0x26, 0x96, 0x47, 0xbf, 0x74, 0xc7, 0xed, 0xc4, 0x0e, + 0xee, 0x31, 0x9f, 0x06, 0x8e, 0x6b, 0x2f, 0x8a, 0x80, 0x06, 0x0d, 0x4d, 0x65, 0xf6, 0x01, 0x9e, + 0x6f, 0x6a, 0x9f, 0x93, 0xfc, 0xe5, 0x66, 0xb9, 0x08, 0xcc, 0x57, 0xd0, 0xbb, 0xeb, 0x54, 0x78, + 0xdc, 0x15, 0x0c, 0x97, 0x20, 0xab, 0x74, 0xf6, 0xa3, 0x41, 0x34, 0x74, 0x66, 0x7c, 0xc8, 0x4a, + 0x4a, 0xd6, 0x52, 0x08, 0xc5, 0xff, 0x37, 0x7f, 0x5e, 0xce, 0x94, 0x75, 0xb7, 0x59, 0x82, 0x7e, + 0x09, 0x3f, 0xc5, 0x82, 0x85, 0x56, 0xa5, 0xa6, 0xc6, 0x05, 0x38, 0x17, 0x75, 0x3f, 0xaa, 0x56, + 0x7d, 0x26, 0x14, 0x5b, 0xae, 0x1c, 0x3b, 0x37, 0x6b, 0x70, 0x71, 0x1f, 0x1c, 0x2d, 0x76, 0x16, + 0x72, 0x51, 0x83, 0xd6, 0x3b, 0x9c, 0xac, 0x37, 0xc2, 0xd1, 0x92, 0xdb, 0x18, 0xe6, 0x6b, 0x38, + 0x2f, 0xd9, 0xa2, 0x92, 0x56, 0x5c, 0xb8, 0x04, 0xd0, 0xbe, 0x72, 0xcd, 0x75, 0xd5, 0x52, 0xef, + 0xc3, 0x6a, 0xbe, 0x0f, 0x4b, 0x3d, 0x47, 0xfd, 0x3e, 0xac, 0x39, 0x6a, 0x33, 0xdd, 0x5b, 0xee, + 0xe8, 0x34, 0x3f, 0x23, 0xb8, 0x10, 0xa3, 0xd0, 0x76, 0xe6, 0x01, 0x22, 0x29, 0xcd, 0x44, 0xfe, + 0xeb, 0xce, 0x4f, 0x07, 0x08, 0x9e, 0xda, 0x25, 0xbb, 0x47, 0xca, 0xbe, 0x96, 0x28, 0x5b, 0xe9, + 0xd9, 0xa5, 0xbb, 0x08, 0x66, 0xec, 0x1e, 0x44, 0x31, 0x2c, 0xf3, 0x5a, 0x8d, 0x7a, 0x5e, 0x2b, + 0xa5, 0x01, 0xc8, 0xf9, 0xea, 0x64, 0xba, 0xaa, 0xaf, 0xb4, 0x7d, 0x60, 0xae, 0xc2, 0x95, 0x03, + 0x31, 0x4e, 0x2c, 0x06, 0xf3, 0x23, 0x82, 0xc2, 0x01, 0xd4, 0xc5, 0x70, 0x41, 0x0e, 0x4c, 0x2a, + 0x1b, 0x78, 0x1a, 0xb2, 0x6a, 0xbe, 0x64, 0x9e, 0x67, 0xc7, 0xc7, 0x92, 0xb5, 0xcd, 0xb6, 0x26, + 0x53, 0xf3, 0x68, 0x00, 0xf3, 0x1d, 0x82, 0xe1, 0x54, 0xba, 0x4e, 0x2c, 0x9a, 0xf1, 0xaf, 0xa7, + 0xe1, 0x94, 0x94, 0x80, 0x3f, 0x21, 0xc8, 0xaa, 0x59, 0xc6, 0x37, 0x92, 0x31, 0xe3, 0x2b, 0xc5, + 0xb8, 0x79, 0xc8, 0x2e, 0x65, 0xca, 0x1c, 0x7d, 0xff, 0xfd, 0xf7, 0x87, 0x9e, 0x02, 0x1e, 0x22, + 0x29, 0x57, 0x28, 0xfe, 0x86, 0x20, 0x17, 0x79, 0xc2, 0xf7, 0x52, 0xd2, 0xee, 0xb3, 0x8a, 0x8c, + 0xfb, 0x5d, 0xf5, 0x6a, 0xe1, 0x25, 0x29, 0xfc, 0x21, 0x7e, 0x40, 0xd2, 0x2f, 0x73, 0xb2, 0xb6, + 0x77, 0xc5, 0xad, 0xe3, 0x2f, 0x08, 0xa0, 0x7d, 0xfb, 0xf8, 0x4e, 0x4a, 0x4d, 0xb1, 0x25, 0x65, + 0xdc, 0xed, 0xa2, 0x53, 0x7b, 0x99, 0x90, 0x5e, 0x46, 0xf0, 0xf0, 0x21, 0xbc, 0xe0, 0x3f, 0x08, + 0x7a, 0xf7, 0x79, 0xb6, 0xf8, 0x49, 0x17, 0xa9, 0xc6, 0x96, 0x89, 0x31, 0x79, 0x44, 0x14, 0xed, + 0xec, 0xa9, 0x74, 0x36, 0x89, 0x1f, 0x1f, 0xc2, 0x99, 0x58, 0xac, 0x84, 0x8b, 0x7a, 0xe2, 0xc9, + 0x5a, 0x34, 0xfa, 0xeb, 0x78, 0xa3, 0x07, 0x2e, 0x1d, 0x30, 0xa8, 0x78, 0xe6, 0x48, 0x9a, 0xf7, + 0xec, 0x21, 0xe3, 0xd9, 0x31, 0xa1, 0xe9, 0x24, 0x5e, 0xc8, 0x24, 0x9e, 0xe3, 0x99, 0x63, 0x48, + 0x82, 0xac, 0xa9, 0x15, 0xb6, 0x5e, 0x9c, 0xdb, 0xdc, 0xce, 0xa3, 0xad, 0xed, 0x3c, 0xfa, 0xb5, + 0x9d, 0x47, 0x1b, 0x3b, 0xf9, 0xcc, 0xd6, 0x4e, 0x3e, 0xf3, 0x63, 0x27, 0x9f, 0x79, 0x79, 0xcb, + 0x76, 0x82, 0x37, 0x8d, 0x8a, 0xb5, 0xc4, 0xeb, 0xff, 0x62, 0x5c, 0x99, 0x20, 0xab, 0x1d, 0xb4, + 0x41, 0xe8, 0x31, 0x51, 0xc9, 0xca, 0xff, 0x5b, 0x26, 0xfe, 0x06, 0x00, 0x00, 0xff, 0xff, 0x31, + 0x06, 0xc4, 0x66, 0x03, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -783,7 +785,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "dymension/sequencer/query.proto", + Metadata: "dymensionxyz/dymension/sequencer/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/sequencer/types/query.pb.gw.go b/x/sequencer/types/query.pb.gw.go index 129ff94c7..5a825bb4f 100644 --- a/x/sequencer/types/query.pb.gw.go +++ b/x/sequencer/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: dymension/sequencer/query.proto +// source: dymensionxyz/dymension/sequencer/query.proto /* Package types is a reverse proxy. diff --git a/x/sequencer/types/sequencer.go b/x/sequencer/types/sequencer.go index 2cf0a5d6b..dfeae08c9 100644 --- a/x/sequencer/types/sequencer.go +++ b/x/sequencer/types/sequencer.go @@ -1,11 +1,11 @@ package types import ( + cometbfttypes "github.com/cometbft/cometbft/types" "github.com/cosmos/cosmos-sdk/codec" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec" cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" - tmtypes "github.com/tendermint/tendermint/types" ) func (seq Sequencer) IsBonded() bool { @@ -38,7 +38,7 @@ func (seq Sequencer) GetDymintPubKeyHash() ([]byte, error) { // Create a new tmValidator with fixed voting power of 1 // TODO: Make sure the voting power is a param coming from hub and // not being set independently in dymint and hub - tmValidator := tmtypes.NewValidator(tmPubKey, 1) - tmValidatorSet := tmtypes.NewValidatorSet([]*tmtypes.Validator{tmValidator}) + tmValidator := cometbfttypes.NewValidator(tmPubKey, 1) + tmValidatorSet := cometbfttypes.NewValidatorSet([]*cometbfttypes.Validator{tmValidator}) return tmValidatorSet.Hash(), nil } diff --git a/x/sequencer/types/sequencer.pb.go b/x/sequencer/types/sequencer.pb.go index 92207bef4..a6c392c3b 100644 --- a/x/sequencer/types/sequencer.pb.go +++ b/x/sequencer/types/sequencer.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/sequencer/sequencer.proto +// source: dymensionxyz/dymension/sequencer/sequencer.proto package types @@ -10,10 +10,10 @@ import ( github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types1 "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" - _ "github.com/gogo/protobuf/types" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" + _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" math_bits "math/bits" @@ -61,7 +61,7 @@ func (m *Sequencer) Reset() { *m = Sequencer{} } func (m *Sequencer) String() string { return proto.CompactTextString(m) } func (*Sequencer) ProtoMessage() {} func (*Sequencer) Descriptor() ([]byte, []int) { - return fileDescriptor_17d99b644bf09274, []int{0} + return fileDescriptor_997b8663a5fc0f58, []int{0} } func (m *Sequencer) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -165,46 +165,46 @@ func init() { } func init() { - proto.RegisterFile("dymension/sequencer/sequencer.proto", fileDescriptor_17d99b644bf09274) + proto.RegisterFile("dymensionxyz/dymension/sequencer/sequencer.proto", fileDescriptor_997b8663a5fc0f58) } -var fileDescriptor_17d99b644bf09274 = []byte{ - // 547 bytes of a gzipped FileDescriptorProto +var fileDescriptor_997b8663a5fc0f58 = []byte{ + // 545 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x53, 0x4f, 0x6f, 0xd3, 0x30, - 0x14, 0x6f, 0x68, 0x29, 0xad, 0x8b, 0x60, 0xb2, 0x2a, 0xf0, 0x2a, 0x94, 0x46, 0x20, 0xa4, 0x30, - 0xa9, 0x36, 0xed, 0x24, 0xee, 0x2b, 0x20, 0x31, 0x71, 0x60, 0xca, 0xe0, 0xc2, 0xa5, 0xca, 0x1f, - 0x93, 0x86, 0x35, 0x76, 0x88, 0x9d, 0x6a, 0xe1, 0x53, 0xec, 0x73, 0x70, 0xe6, 0x43, 0x4c, 0x9c, - 0x76, 0x42, 0x9c, 0x18, 0x6a, 0xbf, 0x08, 0x8a, 0xe3, 0xa4, 0x85, 0x4d, 0xda, 0x29, 0xfe, 0xbd, - 0xf7, 0x7e, 0x3f, 0xff, 0xfc, 0xde, 0x0b, 0x78, 0x12, 0xe4, 0x31, 0x65, 0x22, 0xe2, 0x8c, 0x08, - 0xfa, 0x25, 0xa3, 0xcc, 0xa7, 0xe9, 0xe6, 0x84, 0x93, 0x94, 0x4b, 0x0e, 0xad, 0xba, 0xe8, 0x34, - 0xff, 0x8a, 0x6b, 0x80, 0xeb, 0xba, 0xc1, 0xd3, 0xeb, 0x64, 0x02, 0x2a, 0xfc, 0x34, 0x4a, 0x64, - 0x51, 0xaa, 0x84, 0x06, 0x7b, 0xd7, 0x95, 0xf1, 0x84, 0xa6, 0xae, 0x8c, 0x58, 0x38, 0x13, 0xd2, - 0x95, 0x99, 0xd0, 0xb5, 0xbb, 0x3e, 0x17, 0x31, 0x17, 0x33, 0x85, 0x48, 0x09, 0xaa, 0x54, 0xc8, - 0x79, 0xb8, 0xa0, 0x44, 0x21, 0x2f, 0xfb, 0x44, 0x5c, 0x96, 0xeb, 0x54, 0x3f, 0xe4, 0x21, 0x2f, - 0x29, 0xc5, 0x49, 0x47, 0x87, 0xff, 0x13, 0x64, 0x14, 0x53, 0x21, 0xdd, 0x38, 0xd1, 0x05, 0x66, - 0xa9, 0x4f, 0x3c, 0x57, 0x50, 0xb2, 0x1c, 0x7b, 0x54, 0xba, 0x63, 0xe2, 0xf3, 0xa8, 0x32, 0xfe, - 0x50, 0xe7, 0x63, 0x11, 0x92, 0xe5, 0xb8, 0xf8, 0x94, 0x89, 0xc7, 0x3f, 0x5b, 0xa0, 0x7b, 0x5c, - 0x3d, 0x05, 0xee, 0x81, 0x9d, 0xfa, 0x5d, 0x07, 0x41, 0x90, 0x52, 0x21, 0x90, 0x61, 0x19, 0x76, - 0xd7, 0xb9, 0x12, 0x87, 0x0e, 0xb8, 0x1b, 0xe4, 0x71, 0xc4, 0xe4, 0x51, 0xe6, 0xbd, 0xa5, 0x39, - 0xba, 0x65, 0x19, 0x76, 0x6f, 0xd2, 0xc7, 0xa5, 0x55, 0x5c, 0x59, 0xc5, 0x07, 0x2c, 0x9f, 0xa2, - 0x1f, 0xdf, 0x47, 0x7d, 0xdd, 0x02, 0x3f, 0xcd, 0x13, 0xc9, 0x71, 0xc9, 0x72, 0xfe, 0xd1, 0x80, - 0x8f, 0x40, 0x37, 0xe5, 0x8b, 0x85, 0x9b, 0x24, 0x87, 0x01, 0x6a, 0xaa, 0x8b, 0x37, 0x01, 0xf8, - 0x01, 0xf4, 0xb6, 0x46, 0x82, 0x5a, 0xea, 0xc2, 0x11, 0xbe, 0x69, 0xb8, 0xf8, 0xd5, 0x86, 0x34, - 0x6d, 0x9d, 0xff, 0x1e, 0x36, 0x9c, 0x6d, 0x1d, 0xf8, 0x00, 0xb4, 0x3f, 0xbb, 0xd1, 0x82, 0x06, - 0xe8, 0xb6, 0x65, 0xd8, 0x1d, 0x47, 0x23, 0x38, 0x00, 0x9d, 0x24, 0xe5, 0x09, 0x17, 0x34, 0x45, - 0x6d, 0x95, 0xa9, 0x31, 0x3c, 0x04, 0xed, 0x72, 0xd8, 0xe8, 0x8e, 0x65, 0xd8, 0xf7, 0x26, 0xe3, - 0x9b, 0x5d, 0xbc, 0xab, 0xd6, 0xe4, 0x58, 0x11, 0x1d, 0x2d, 0x00, 0x7d, 0xd0, 0x96, 0xfc, 0x84, - 0x32, 0x81, 0x3a, 0x56, 0xd3, 0xee, 0x4d, 0x76, 0xb1, 0x6e, 0x54, 0x31, 0x4b, 0xac, 0x67, 0x89, - 0x5f, 0xf2, 0x88, 0x4d, 0x9f, 0x17, 0xe6, 0xbf, 0x5d, 0x0e, 0xed, 0x30, 0x92, 0xf3, 0xcc, 0xc3, - 0x3e, 0x8f, 0xf5, 0x62, 0xe9, 0xcf, 0x48, 0x04, 0x27, 0x44, 0xe6, 0x09, 0x15, 0x8a, 0x20, 0x1c, - 0x2d, 0x0d, 0x9f, 0x81, 0x9d, 0x8c, 0x79, 0x9c, 0x05, 0xc5, 0x9a, 0xce, 0x69, 0x14, 0xce, 0x25, - 0xea, 0x5a, 0x86, 0xdd, 0x74, 0xee, 0xd7, 0xf1, 0x37, 0x2a, 0x0c, 0x5f, 0x83, 0x5e, 0x19, 0x9a, - 0x15, 0x4b, 0x86, 0x80, 0xea, 0xf2, 0xe0, 0xca, 0x58, 0xdf, 0x57, 0x1b, 0x38, 0xed, 0x14, 0xae, - 0xce, 0x2e, 0x87, 0x86, 0x03, 0x4a, 0x62, 0x91, 0x9a, 0x1e, 0x9d, 0xaf, 0x4c, 0xe3, 0x62, 0x65, - 0x1a, 0x7f, 0x56, 0xa6, 0x71, 0xb6, 0x36, 0x1b, 0x17, 0x6b, 0xb3, 0xf1, 0x6b, 0x6d, 0x36, 0x3e, - 0xbe, 0xd8, 0x72, 0xbf, 0xdd, 0xb5, 0x0d, 0x20, 0xcb, 0x7d, 0x72, 0xba, 0xf5, 0x87, 0xa9, 0x17, - 0x79, 0x6d, 0x75, 0xf7, 0xfe, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xac, 0x7e, 0x51, 0x94, 0xf3, - 0x03, 0x00, 0x00, + 0x14, 0x6f, 0x68, 0x29, 0xad, 0x8b, 0x60, 0xb2, 0x2a, 0xf0, 0x2a, 0x94, 0x46, 0x9c, 0x02, 0x52, + 0xed, 0xb5, 0x93, 0xe0, 0xbc, 0x02, 0x12, 0x13, 0x07, 0xa6, 0x0c, 0x2e, 0x5c, 0xaa, 0xfc, 0x31, + 0x69, 0x58, 0x63, 0x87, 0xd8, 0xa9, 0x16, 0x3e, 0xc5, 0x3e, 0x07, 0x67, 0x3e, 0xc4, 0xc4, 0x69, + 0x27, 0xc4, 0x89, 0xa1, 0xf6, 0x8b, 0xa0, 0x38, 0x4e, 0x5a, 0x98, 0x50, 0x4f, 0xf6, 0xef, 0x3d, + 0xff, 0x7e, 0x7e, 0xcf, 0xbf, 0x67, 0x70, 0x10, 0xe4, 0x31, 0x65, 0x22, 0xe2, 0xec, 0x3c, 0xff, + 0x42, 0x6a, 0x40, 0x04, 0xfd, 0x9c, 0x51, 0xe6, 0xd3, 0x74, 0xb3, 0xc3, 0x49, 0xca, 0x25, 0x87, + 0xd6, 0x36, 0x03, 0xd7, 0x00, 0xd7, 0xe7, 0x06, 0x93, 0x9d, 0x9a, 0x01, 0x15, 0x7e, 0x1a, 0x25, + 0xb2, 0xe0, 0x29, 0xd5, 0xc1, 0xf3, 0x9d, 0x1c, 0x9e, 0xd0, 0xd4, 0x95, 0x11, 0x0b, 0x67, 0x42, + 0xba, 0x32, 0x13, 0x9a, 0xb8, 0xef, 0x73, 0x11, 0x73, 0x31, 0x53, 0x88, 0x94, 0xa0, 0x4a, 0x85, + 0x9c, 0x87, 0x0b, 0x4a, 0x14, 0xf2, 0xb2, 0x8f, 0xc4, 0x65, 0xb9, 0x4e, 0xf5, 0x43, 0x1e, 0xf2, + 0x92, 0x52, 0xec, 0x74, 0x74, 0xf8, 0x2f, 0x41, 0x46, 0x31, 0x15, 0xd2, 0x8d, 0x13, 0x7d, 0xc0, + 0x2c, 0xf5, 0x89, 0xe7, 0x0a, 0x4a, 0x96, 0x63, 0x8f, 0x4a, 0x77, 0x4c, 0x7c, 0x1e, 0x55, 0x5d, + 0x3c, 0xd4, 0xf9, 0x58, 0x84, 0x64, 0x39, 0x2e, 0x96, 0x32, 0xf1, 0xf8, 0x47, 0x0b, 0x74, 0x4f, + 0xab, 0x56, 0xe0, 0x53, 0xb0, 0x57, 0xf7, 0x75, 0x14, 0x04, 0x29, 0x15, 0x02, 0x19, 0x96, 0x61, + 0x77, 0x9d, 0x1b, 0x71, 0xe8, 0x80, 0xbb, 0x41, 0x1e, 0x47, 0x4c, 0x9e, 0x64, 0xde, 0x1b, 0x9a, + 0xa3, 0x5b, 0x96, 0x61, 0xf7, 0x26, 0x7d, 0x5c, 0x96, 0x8a, 0xab, 0x52, 0xf1, 0x11, 0xcb, 0xa7, + 0xe8, 0xfb, 0xb7, 0x51, 0x5f, 0x3f, 0x81, 0x9f, 0xe6, 0x89, 0xe4, 0xb8, 0x64, 0x39, 0x7f, 0x69, + 0xc0, 0x47, 0xa0, 0x9b, 0xf2, 0xc5, 0xc2, 0x4d, 0x92, 0xe3, 0x00, 0x35, 0xd5, 0xc5, 0x9b, 0x00, + 0x7c, 0x0f, 0x7a, 0x5b, 0xfe, 0xa0, 0x96, 0xba, 0x70, 0x84, 0x77, 0xd9, 0x8e, 0x5f, 0x6e, 0x48, + 0xd3, 0xd6, 0xe5, 0xaf, 0x61, 0xc3, 0xd9, 0xd6, 0x81, 0x0f, 0x40, 0xfb, 0x93, 0x1b, 0x2d, 0x68, + 0x80, 0x6e, 0x5b, 0x86, 0xdd, 0x71, 0x34, 0x82, 0x03, 0xd0, 0x49, 0x52, 0x9e, 0x70, 0x41, 0x53, + 0xd4, 0x56, 0x99, 0x1a, 0xc3, 0x63, 0xd0, 0x2e, 0xcd, 0x46, 0x77, 0x2c, 0xc3, 0xbe, 0x37, 0x19, + 0xef, 0xae, 0xe2, 0x6d, 0x35, 0x26, 0xa7, 0x8a, 0xe8, 0x68, 0x01, 0xe8, 0x83, 0xb6, 0xe4, 0x67, + 0x94, 0x09, 0xd4, 0xb1, 0x9a, 0x76, 0x6f, 0xb2, 0x8f, 0xf5, 0x43, 0x15, 0x5e, 0x62, 0xed, 0x25, + 0x7e, 0xc1, 0x23, 0x36, 0x3d, 0x28, 0x8a, 0xff, 0x7a, 0x3d, 0xb4, 0xc3, 0x48, 0xce, 0x33, 0x0f, + 0xfb, 0x3c, 0xd6, 0x83, 0xa5, 0x97, 0x91, 0x08, 0xce, 0x88, 0xcc, 0x13, 0x2a, 0x14, 0x41, 0x38, + 0x5a, 0x1a, 0x3e, 0x01, 0x7b, 0x19, 0xf3, 0x38, 0x0b, 0x8a, 0x31, 0x9d, 0xd3, 0x28, 0x9c, 0x4b, + 0xd4, 0xb5, 0x0c, 0xbb, 0xe9, 0xdc, 0xaf, 0xe3, 0xaf, 0x55, 0x18, 0xbe, 0x02, 0xbd, 0x32, 0x34, + 0x2b, 0x86, 0x0c, 0x01, 0xf5, 0xca, 0x83, 0x1b, 0xb6, 0xbe, 0xab, 0x26, 0x70, 0xda, 0x29, 0xaa, + 0xba, 0xb8, 0x1e, 0x1a, 0x0e, 0x28, 0x89, 0x45, 0x6a, 0x7a, 0x72, 0xb9, 0x32, 0x8d, 0xab, 0x95, + 0x69, 0xfc, 0x5e, 0x99, 0xc6, 0xc5, 0xda, 0x6c, 0x5c, 0xad, 0xcd, 0xc6, 0xcf, 0xb5, 0xd9, 0xf8, + 0xf0, 0x6c, 0xab, 0xfa, 0xff, 0x7c, 0xae, 0xe5, 0x21, 0x39, 0xdf, 0xfa, 0x61, 0xaa, 0x23, 0xaf, + 0xad, 0xee, 0x3e, 0xfc, 0x13, 0x00, 0x00, 0xff, 0xff, 0x7b, 0xb4, 0x65, 0x96, 0x1a, 0x04, 0x00, + 0x00, } func (m *Sequencer) Marshal() (dAtA []byte, err error) { @@ -227,7 +227,7 @@ func (m *Sequencer) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n1, err1 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.UnbondTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.UnbondTime):]) + n1, err1 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.UnbondTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.UnbondTime):]) if err1 != nil { return 0, err1 } @@ -367,7 +367,7 @@ func (m *Sequencer) Size() (n int) { if m.UnbondingHeight != 0 { n += 1 + sovSequencer(uint64(m.UnbondingHeight)) } - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.UnbondTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.UnbondTime) n += 1 + l + sovSequencer(uint64(l)) return n } @@ -681,7 +681,7 @@ func (m *Sequencer) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.UnbondTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.UnbondTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/sequencer/types/tx.pb.go b/x/sequencer/types/tx.pb.go index 1cf09e0db..b512e947d 100644 --- a/x/sequencer/types/tx.pb.go +++ b/x/sequencer/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/sequencer/tx.proto +// source: dymensionxyz/dymension/sequencer/tx.proto package types @@ -10,14 +10,14 @@ import ( types "github.com/cosmos/cosmos-sdk/codec/types" types1 "github.com/cosmos/cosmos-sdk/types" _ "github.com/cosmos/cosmos-sdk/types/msgservice" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" - _ "github.com/gogo/protobuf/types" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" math_bits "math/bits" @@ -53,7 +53,7 @@ func (m *MsgCreateSequencer) Reset() { *m = MsgCreateSequencer{} } func (m *MsgCreateSequencer) String() string { return proto.CompactTextString(m) } func (*MsgCreateSequencer) ProtoMessage() {} func (*MsgCreateSequencer) Descriptor() ([]byte, []int) { - return fileDescriptor_26d679aa996065f1, []int{0} + return fileDescriptor_02cdd6b9ffa005b4, []int{0} } func (m *MsgCreateSequencer) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -124,7 +124,7 @@ func (m *MsgCreateSequencerResponse) Reset() { *m = MsgCreateSequencerRe func (m *MsgCreateSequencerResponse) String() string { return proto.CompactTextString(m) } func (*MsgCreateSequencerResponse) ProtoMessage() {} func (*MsgCreateSequencerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_26d679aa996065f1, []int{1} + return fileDescriptor_02cdd6b9ffa005b4, []int{1} } func (m *MsgCreateSequencerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -163,7 +163,7 @@ func (m *MsgUnbond) Reset() { *m = MsgUnbond{} } func (m *MsgUnbond) String() string { return proto.CompactTextString(m) } func (*MsgUnbond) ProtoMessage() {} func (*MsgUnbond) Descriptor() ([]byte, []int) { - return fileDescriptor_26d679aa996065f1, []int{2} + return fileDescriptor_02cdd6b9ffa005b4, []int{2} } func (m *MsgUnbond) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -208,7 +208,7 @@ func (m *MsgUnbondResponse) Reset() { *m = MsgUnbondResponse{} } func (m *MsgUnbondResponse) String() string { return proto.CompactTextString(m) } func (*MsgUnbondResponse) ProtoMessage() {} func (*MsgUnbondResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_26d679aa996065f1, []int{3} + return fileDescriptor_02cdd6b9ffa005b4, []int{3} } func (m *MsgUnbondResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -251,45 +251,47 @@ func init() { proto.RegisterType((*MsgUnbondResponse)(nil), "dymensionxyz.dymension.sequencer.MsgUnbondResponse") } -func init() { proto.RegisterFile("dymension/sequencer/tx.proto", fileDescriptor_26d679aa996065f1) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/sequencer/tx.proto", fileDescriptor_02cdd6b9ffa005b4) +} -var fileDescriptor_26d679aa996065f1 = []byte{ - // 548 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0x4d, 0x6b, 0x13, 0x4f, - 0x18, 0xcf, 0xb6, 0xf9, 0xf7, 0x6f, 0x26, 0x62, 0x75, 0x08, 0xb8, 0x5d, 0xc2, 0x26, 0x04, 0x84, - 0xa2, 0x74, 0x86, 0x24, 0xe2, 0x41, 0xbc, 0x34, 0xf5, 0x22, 0x12, 0xa8, 0x5b, 0x7b, 0xf1, 0x52, - 0xf6, 0x65, 0x1c, 0x57, 0xb2, 0x33, 0xeb, 0xce, 0x24, 0x64, 0x3d, 0x0a, 0xde, 0xfb, 0x11, 0xfc, - 0x00, 0x1e, 0x3c, 0xf8, 0x21, 0x8a, 0xa7, 0xe2, 0xc9, 0x93, 0x4a, 0x72, 0xd0, 0xaf, 0xe0, 0x4d, - 0x66, 0x77, 0x67, 0x13, 0x13, 0xa1, 0xea, 0x29, 0x79, 0x9e, 0xe7, 0xf7, 0x32, 0xcf, 0x6f, 0x86, - 0x05, 0xcd, 0x20, 0x8d, 0x08, 0x13, 0x21, 0x67, 0x58, 0x90, 0x17, 0x63, 0xc2, 0x7c, 0x92, 0x60, - 0x39, 0x45, 0x71, 0xc2, 0x25, 0x87, 0xed, 0x72, 0x3a, 0x4d, 0x5f, 0xa2, 0xb2, 0x40, 0x25, 0xd4, - 0xba, 0xf1, 0x3b, 0x7e, 0x40, 0x84, 0x9f, 0x84, 0xb1, 0x54, 0xd0, 0x4c, 0xc8, 0xda, 0xa1, 0x9c, - 0xd3, 0x11, 0xc1, 0x59, 0xe5, 0x8d, 0x9f, 0x62, 0x97, 0xa5, 0x7a, 0xe4, 0x73, 0x11, 0x71, 0x71, - 0x92, 0x55, 0x38, 0x2f, 0x8a, 0x51, 0x83, 0x72, 0xca, 0xf3, 0xbe, 0xfa, 0x57, 0x74, 0xed, 0x1c, - 0x83, 0x3d, 0x57, 0x10, 0x3c, 0xe9, 0x7a, 0x44, 0xba, 0x5d, 0xec, 0xf3, 0x50, 0x7b, 0xb5, 0x56, - 0xbd, 0x64, 0x18, 0x11, 0x21, 0xdd, 0x28, 0x2e, 0x00, 0xd7, 0x0b, 0x81, 0x48, 0x50, 0x3c, 0xe9, - 0xaa, 0x9f, 0x7c, 0xd0, 0x79, 0xbb, 0x01, 0xe0, 0x50, 0xd0, 0x83, 0x84, 0xb8, 0x92, 0x1c, 0xe9, - 0x75, 0xa0, 0x09, 0xfe, 0xf7, 0x55, 0x8b, 0x27, 0xa6, 0xd1, 0x36, 0x76, 0x6b, 0x8e, 0x2e, 0xa1, - 0x03, 0x2e, 0x07, 0x69, 0x14, 0x32, 0x79, 0x38, 0xf6, 0x1e, 0x92, 0xd4, 0xdc, 0x68, 0x1b, 0xbb, - 0xf5, 0x5e, 0x03, 0xe5, 0x27, 0x40, 0xfa, 0x04, 0x68, 0x9f, 0xa5, 0x03, 0xf3, 0xc3, 0xfb, 0xbd, - 0x46, 0xb1, 0x9e, 0x9f, 0xa4, 0xb1, 0xe4, 0x28, 0x67, 0x39, 0xbf, 0x68, 0xc0, 0x26, 0xa8, 0x25, - 0x7c, 0x34, 0x72, 0xe3, 0xf8, 0x41, 0x60, 0x6e, 0x66, 0x7e, 0x8b, 0x06, 0x3c, 0x06, 0xf5, 0xa5, - 0x74, 0xcd, 0x6a, 0x66, 0xb8, 0x87, 0x2e, 0xba, 0x27, 0x74, 0x7f, 0x41, 0x1a, 0x54, 0xcf, 0x3e, - 0xb7, 0x2a, 0xce, 0xb2, 0x0e, 0xec, 0x83, 0xaa, 0xc7, 0x59, 0x60, 0xfe, 0x97, 0xe9, 0xed, 0xa0, - 0xe2, 0x9c, 0x2a, 0x62, 0x54, 0x44, 0x8c, 0x0e, 0x78, 0xa8, 0xb9, 0x19, 0xb8, 0xd3, 0x04, 0xd6, - 0x7a, 0x5a, 0x0e, 0x11, 0x31, 0x67, 0x82, 0x74, 0x1e, 0x81, 0xda, 0x50, 0xd0, 0x63, 0xa6, 0xa0, - 0xb0, 0xb7, 0x12, 0xe1, 0xc0, 0xfc, 0xb8, 0x48, 0x63, 0x3f, 0x08, 0x12, 0x22, 0xc4, 0x91, 0x4c, - 0x42, 0x46, 0xcb, 0x70, 0xef, 0x5e, 0xfd, 0xfe, 0xa6, 0x55, 0x79, 0xf5, 0xed, 0xdd, 0x4d, 0xdd, - 0xe9, 0x78, 0xe0, 0x5a, 0x29, 0xa9, 0x7d, 0xe0, 0x10, 0x6c, 0xfb, 0x3c, 0x8a, 0x47, 0x44, 0x2d, - 0x72, 0xa2, 0xee, 0x3a, 0xb3, 0xa8, 0xf7, 0xac, 0xb5, 0x6b, 0x78, 0xac, 0x1f, 0xc2, 0xe0, 0x92, - 0x5a, 0xe3, 0xf4, 0x4b, 0xcb, 0x70, 0xae, 0x2c, 0xc8, 0x6a, 0xdc, 0xfb, 0x61, 0x80, 0xcd, 0xa1, - 0xa0, 0xf0, 0xb5, 0x01, 0xb6, 0x57, 0x1f, 0xc2, 0xed, 0x8b, 0x73, 0x5e, 0x0f, 0xc4, 0xba, 0xf7, - 0x2f, 0xac, 0x72, 0xbd, 0xe7, 0x60, 0xab, 0xc8, 0xf0, 0xd6, 0x1f, 0xe9, 0xe4, 0x60, 0xab, 0xff, - 0x17, 0x60, 0xed, 0x35, 0x38, 0x3c, 0x9b, 0xd9, 0xc6, 0xf9, 0xcc, 0x36, 0xbe, 0xce, 0x6c, 0xe3, - 0x74, 0x6e, 0x57, 0xce, 0xe7, 0x76, 0xe5, 0xd3, 0xdc, 0xae, 0x3c, 0xb9, 0x43, 0x43, 0xf9, 0x6c, - 0xec, 0x21, 0x9f, 0x47, 0x78, 0x59, 0x78, 0x51, 0xe0, 0x49, 0x1f, 0x4f, 0x97, 0xbf, 0x21, 0x69, - 0x4c, 0x84, 0xb7, 0x95, 0x65, 0xdf, 0xff, 0x19, 0x00, 0x00, 0xff, 0xff, 0xd0, 0x2c, 0x71, 0xaf, - 0x67, 0x04, 0x00, 0x00, +var fileDescriptor_02cdd6b9ffa005b4 = []byte{ + // 551 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xbf, 0x6e, 0xd3, 0x40, + 0x18, 0x8f, 0xdb, 0x50, 0xc8, 0xa5, 0xa2, 0x60, 0x45, 0xc2, 0xb5, 0x2a, 0x27, 0xca, 0x54, 0x40, + 0xbd, 0x53, 0x12, 0xc4, 0x50, 0xb1, 0xd4, 0x65, 0x41, 0x28, 0x52, 0x71, 0xe9, 0xc2, 0x52, 0xf9, + 0xcf, 0x71, 0x18, 0xc5, 0x77, 0xc6, 0x77, 0x89, 0x62, 0x46, 0x24, 0xf6, 0x3e, 0x02, 0x8f, 0xc0, + 0xc0, 0xc4, 0x13, 0x54, 0x4c, 0x15, 0x13, 0x13, 0xa0, 0x64, 0x80, 0x57, 0x60, 0x43, 0x67, 0xfb, + 0x9c, 0x34, 0x11, 0x0a, 0x30, 0x25, 0xdf, 0xf7, 0xfd, 0xfe, 0xdc, 0xf7, 0x3b, 0xeb, 0xc0, 0xed, + 0x20, 0x8d, 0x30, 0xe5, 0x21, 0xa3, 0xe3, 0xf4, 0x35, 0x2a, 0x0b, 0xc4, 0xf1, 0xab, 0x21, 0xa6, + 0x3e, 0x4e, 0x90, 0x18, 0xc3, 0x38, 0x61, 0x82, 0xe9, 0xad, 0x79, 0x28, 0x2c, 0x0b, 0x58, 0x42, + 0xcd, 0xee, 0x4a, 0xb1, 0x00, 0x73, 0x3f, 0x09, 0x63, 0x21, 0x79, 0x99, 0xaa, 0xb9, 0x4d, 0x18, + 0x23, 0x03, 0x8c, 0xb2, 0xca, 0x1b, 0x3e, 0x47, 0x2e, 0x4d, 0xd5, 0xc8, 0x67, 0x3c, 0x62, 0xfc, + 0x34, 0xab, 0x50, 0x5e, 0x14, 0xa3, 0x06, 0x61, 0x84, 0xe5, 0x7d, 0xf9, 0xaf, 0xe8, 0x5a, 0x39, + 0x06, 0x79, 0x2e, 0xc7, 0x68, 0xd4, 0xf1, 0xb0, 0x70, 0x3b, 0xc8, 0x67, 0xa1, 0xf2, 0x6a, 0x2e, + 0x7a, 0x89, 0x30, 0xc2, 0x5c, 0xb8, 0x51, 0x5c, 0x00, 0x6e, 0x15, 0x02, 0x11, 0x27, 0x68, 0xd4, + 0x91, 0x3f, 0xf9, 0xa0, 0xfd, 0x71, 0x0d, 0xe8, 0x7d, 0x4e, 0x0e, 0x13, 0xec, 0x0a, 0x7c, 0xac, + 0xd6, 0xd1, 0x0d, 0x70, 0xd5, 0x97, 0x2d, 0x96, 0x18, 0x5a, 0x4b, 0xdb, 0xad, 0x39, 0xaa, 0xd4, + 0x1d, 0xb0, 0x19, 0xa4, 0x51, 0x48, 0xc5, 0xd1, 0xd0, 0x7b, 0x8c, 0x53, 0x63, 0xad, 0xa5, 0xed, + 0xd6, 0xbb, 0x0d, 0x98, 0x9f, 0x00, 0xaa, 0x13, 0xc0, 0x03, 0x9a, 0xda, 0xc6, 0xa7, 0x0f, 0x7b, + 0x8d, 0x62, 0x3d, 0x3f, 0x49, 0x63, 0xc1, 0x60, 0xce, 0x72, 0x2e, 0x69, 0xe8, 0x3b, 0xa0, 0x96, + 0xb0, 0xc1, 0xc0, 0x8d, 0xe3, 0x47, 0x81, 0xb1, 0x9e, 0xf9, 0xcd, 0x1a, 0xfa, 0x09, 0xa8, 0xcf, + 0xa5, 0x6b, 0x54, 0x33, 0xc3, 0x3d, 0xb8, 0xea, 0xd2, 0xe0, 0xc3, 0x19, 0xc9, 0xae, 0x9e, 0x7f, + 0x6d, 0x56, 0x9c, 0x79, 0x1d, 0xbd, 0x07, 0xaa, 0x1e, 0xa3, 0x81, 0x71, 0x25, 0xd3, 0xdb, 0x86, + 0xc5, 0x39, 0x65, 0xc4, 0xb0, 0x88, 0x18, 0x1e, 0xb2, 0x50, 0x71, 0x33, 0xf0, 0xfe, 0xe6, 0x9b, + 0x1f, 0xef, 0xef, 0xa8, 0x2c, 0xda, 0x3b, 0xc0, 0x5c, 0xce, 0xce, 0xc1, 0x3c, 0x66, 0x94, 0xe3, + 0xf6, 0x13, 0x50, 0xeb, 0x73, 0x72, 0x42, 0x25, 0x51, 0xef, 0x2e, 0x04, 0x6a, 0x1b, 0x9f, 0x67, + 0xd9, 0x1c, 0x04, 0x41, 0x82, 0x39, 0x3f, 0x16, 0x49, 0x48, 0x49, 0x19, 0xf5, 0xfe, 0x8d, 0x9f, + 0xef, 0x9a, 0x95, 0x4b, 0x86, 0x1e, 0xb8, 0x59, 0x4a, 0x2a, 0x1f, 0xbd, 0x0f, 0xb6, 0x7c, 0x16, + 0xc5, 0x03, 0x2c, 0xd7, 0x3a, 0x95, 0x37, 0x9f, 0x59, 0xd4, 0xbb, 0xe6, 0xd2, 0xa5, 0x3c, 0x55, + 0x9f, 0x85, 0x7d, 0x4d, 0x2e, 0x75, 0xf6, 0xad, 0xa9, 0x39, 0xd7, 0x67, 0x64, 0x39, 0xee, 0xfe, + 0xd2, 0xc0, 0x7a, 0x9f, 0x13, 0xfd, 0xad, 0x06, 0xb6, 0x16, 0x3f, 0x8b, 0x7b, 0xab, 0x53, 0x5f, + 0x0e, 0xc4, 0x7c, 0xf0, 0x3f, 0xac, 0x72, 0xbd, 0x97, 0x60, 0xa3, 0xc8, 0xf0, 0xee, 0x5f, 0xe9, + 0xe4, 0x60, 0xb3, 0xf7, 0x0f, 0x60, 0xe5, 0x65, 0x1f, 0x9d, 0x4f, 0x2c, 0xed, 0x62, 0x62, 0x69, + 0xdf, 0x27, 0x96, 0x76, 0x36, 0xb5, 0x2a, 0x17, 0x53, 0xab, 0xf2, 0x65, 0x6a, 0x55, 0x9e, 0xdd, + 0x27, 0xa1, 0x78, 0x31, 0xf4, 0xa0, 0xcf, 0x22, 0xf4, 0x87, 0xc7, 0x60, 0xd4, 0x43, 0xe3, 0xf9, + 0xe7, 0x25, 0x8d, 0x31, 0xf7, 0x36, 0xb2, 0xec, 0x7b, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x08, + 0xb3, 0x2c, 0x00, 0x8f, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -409,7 +411,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "dymension/sequencer/tx.proto", + Metadata: "dymensionxyz/dymension/sequencer/tx.proto", } func (m *MsgCreateSequencer) Marshal() (dAtA []byte, err error) { @@ -554,7 +556,7 @@ func (m *MsgUnbondResponse) MarshalToSizedBuffer(dAtA []byte) (int, error) { _ = i var l int _ = l - n4, err4 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.CompletionTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.CompletionTime):]) + n4, err4 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.CompletionTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CompletionTime):]) if err4 != nil { return 0, err4 } @@ -629,7 +631,7 @@ func (m *MsgUnbondResponse) Size() (n int) { } var l int _ = l - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.CompletionTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.CompletionTime) n += 1 + l + sovTx(uint64(l)) return n } @@ -1046,7 +1048,7 @@ func (m *MsgUnbondResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.CompletionTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.CompletionTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/streamer/client/cli/query_test.go b/x/streamer/client/cli/query_test.go index 51467592e..6f9f5ae7e 100644 --- a/x/streamer/client/cli/query_test.go +++ b/x/streamer/client/cli/query_test.go @@ -6,10 +6,12 @@ import ( "time" "cosmossdk.io/math" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" + "github.com/cosmos/cosmos-sdk/baseapp" "github.com/stretchr/testify/suite" + "github.com/dymensionxyz/dymension/v3/app/apptesting" "github.com/dymensionxyz/dymension/v3/x/streamer/types" - "github.com/osmosis-labs/osmosis/v15/app/apptesting" lockuptypes "github.com/osmosis-labs/osmosis/v15/x/lockup/types" sdk "github.com/cosmos/cosmos-sdk/types" @@ -45,10 +47,14 @@ func (suite *QueryTestSuite) CreateDefaultStream(coins sdk.Coins) (uint64, *type } func (suite *QueryTestSuite) SetupSuite() { - suite.Setup() + suite.App = apptesting.Setup(suite.T(), false) + suite.Ctx = suite.App.BaseApp.NewContext(false, cometbftproto.Header{Height: 1, ChainID: "dymension_100-1", Time: time.Now().UTC()}) streamerCoins := sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(2500)), sdk.NewCoin("udym", sdk.NewInt(2500))) suite.FundModuleAcc(types.ModuleName, streamerCoins) - suite.queryClient = types.NewQueryClient(suite.QueryHelper) + suite.queryClient = types.NewQueryClient(&baseapp.QueryServiceTestHelper{ + GRPCQueryRouter: suite.App.GRPCQueryRouter(), + Ctx: suite.Ctx, + }) err := suite.CreateGauge() suite.Require().NoError(err) @@ -101,7 +107,11 @@ func (s *QueryTestSuite) TestQueriesNeverAlterState() { s.Run(tc.name, func() { s.SetupSuite() s.CreateDefaultStream(sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(2500)))) - err := s.QueryHelper.Invoke(gocontext.Background(), tc.query, tc.input, tc.output) + queryHelper := &baseapp.QueryServiceTestHelper{ + GRPCQueryRouter: s.App.GRPCQueryRouter(), + Ctx: s.Ctx, + } + err := queryHelper.Invoke(gocontext.Background(), tc.query, tc.input, tc.output) s.Require().NoError(err) s.StateNotAltered() }) diff --git a/x/streamer/client/cli/tx_create_stream.go b/x/streamer/client/cli/tx_create_stream.go index c65cbf931..63e1dd264 100644 --- a/x/streamer/client/cli/tx_create_stream.go +++ b/x/streamer/client/cli/tx_create_stream.go @@ -75,7 +75,11 @@ func NewCmdSubmitCreateStreamProposal() *cobra.Command { return err } - txf := tx.NewFactoryCLI(clientCtx, cmd.Flags()).WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) + txfCli, err := tx.NewFactoryCLI(clientCtx, cmd.Flags()) + if err != nil { + return err + } + txf := txfCli.WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) return tx.GenerateOrBroadcastTxWithFactory(clientCtx, txf, msg) }, } diff --git a/x/streamer/client/cli/tx_replace_distribution.go b/x/streamer/client/cli/tx_replace_distribution.go index 90ce6f424..7b616d207 100644 --- a/x/streamer/client/cli/tx_replace_distribution.go +++ b/x/streamer/client/cli/tx_replace_distribution.go @@ -46,7 +46,11 @@ func NewCmdSubmitReplaceStreamDistributionProposal() *cobra.Command { return err } - txf := tx.NewFactoryCLI(clientCtx, cmd.Flags()).WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) + txfCli, err := tx.NewFactoryCLI(clientCtx, cmd.Flags()) + if err != nil { + return err + } + txf := txfCli.WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) return tx.GenerateOrBroadcastTxWithFactory(clientCtx, txf, msg) }, } diff --git a/x/streamer/client/cli/tx_terminate_stream.go b/x/streamer/client/cli/tx_terminate_stream.go index d75e0e434..4a1fd428a 100644 --- a/x/streamer/client/cli/tx_terminate_stream.go +++ b/x/streamer/client/cli/tx_terminate_stream.go @@ -42,7 +42,11 @@ func NewCmdSubmitTerminateStreamProposal() *cobra.Command { return err } - txf := tx.NewFactoryCLI(clientCtx, cmd.Flags()).WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) + txfCli, err := tx.NewFactoryCLI(clientCtx, cmd.Flags()) + if err != nil { + return err + } + txf := txfCli.WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) return tx.GenerateOrBroadcastTxWithFactory(clientCtx, txf, msg) }, } diff --git a/x/streamer/client/cli/tx_update_distribution.go b/x/streamer/client/cli/tx_update_distribution.go index 56b29d28f..9a8fc5b72 100644 --- a/x/streamer/client/cli/tx_update_distribution.go +++ b/x/streamer/client/cli/tx_update_distribution.go @@ -46,7 +46,11 @@ func NewCmdSubmitUpdateStreamDistributionProposal() *cobra.Command { return err } - txf := tx.NewFactoryCLI(clientCtx, cmd.Flags()).WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) + txfCli, err := tx.NewFactoryCLI(clientCtx, cmd.Flags()) + if err != nil { + return err + } + txf := txfCli.WithTxConfig(clientCtx.TxConfig).WithAccountRetriever(clientCtx.AccountRetriever) return tx.GenerateOrBroadcastTxWithFactory(clientCtx, txf, msg) }, } diff --git a/x/streamer/keeper/distribute_test.go b/x/streamer/keeper/distribute_test.go index a9d04ba0b..589587b15 100644 --- a/x/streamer/keeper/distribute_test.go +++ b/x/streamer/keeper/distribute_test.go @@ -97,7 +97,7 @@ func (suite *KeeperTestSuite) TestGetModuleToDistributeCoins() { // check that the sum of coins yet to be distributed is nil coins := suite.App.StreamerKeeper.GetModuleToDistributeCoins(suite.Ctx) - suite.Require().Equal(coins, sdk.Coins(nil)) + suite.Require().Equal(coins, sdk.Coins{}) // setup a stream streamCoins := sdk.Coins{sdk.NewInt64Coin("stake", 600000)} diff --git a/x/streamer/keeper/distributed_coins.go b/x/streamer/keeper/distributed_coins.go index 30b03ca30..d9b91df67 100644 --- a/x/streamer/keeper/distributed_coins.go +++ b/x/streamer/keeper/distributed_coins.go @@ -1,9 +1,9 @@ package keeper import ( + db "github.com/cometbft/cometbft-db" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/dymensionxyz/dymension/v3/x/streamer/types" - db "github.com/tendermint/tm-db" ) // GetModuleToDistributeCoins returns sum of coins yet to be distributed for all of the module. diff --git a/x/streamer/keeper/genesis_test.go b/x/streamer/keeper/genesis_test.go index eb2f9be33..5a05a9202 100644 --- a/x/streamer/keeper/genesis_test.go +++ b/x/streamer/keeper/genesis_test.go @@ -5,10 +5,10 @@ import ( "time" "cosmossdk.io/math" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" sdk "github.com/cosmos/cosmos-sdk/types" lockuptypes "github.com/osmosis-labs/osmosis/v15/x/lockup/types" "github.com/stretchr/testify/require" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" "github.com/dymensionxyz/dymension/v3/app/apptesting" @@ -21,7 +21,7 @@ func TestStreamerExportGenesis(t *testing.T) { // export genesis using default configurations // ensure resulting genesis params match default params app := apptesting.Setup(t, false) - ctx := app.BaseApp.NewContext(false, tmproto.Header{}) + ctx := app.BaseApp.NewContext(false, cometbftproto.Header{}) genesis := app.StreamerKeeper.ExportGenesis(ctx) require.Equal(t, genesis.Params, types.DefaultGenesis().Params) require.Len(t, genesis.Streams, 0) @@ -79,7 +79,7 @@ func TestStreamerExportGenesis(t *testing.T) { // TestStreamerInitGenesis takes a genesis state and tests initializing that genesis for the streamer module. func TestStreamerInitGenesis(t *testing.T) { app := apptesting.Setup(t, false) - ctx := app.BaseApp.NewContext(false, tmproto.Header{}) + ctx := app.BaseApp.NewContext(false, cometbftproto.Header{}) // checks that the default genesis parameters pass validation validateGenesis := types.DefaultGenesis().Params.Validate() @@ -131,7 +131,7 @@ func TestStreamerInitGenesis(t *testing.T) { func TestStreamerOrder(t *testing.T) { app := apptesting.Setup(t, false) - ctx := app.BaseApp.NewContext(false, tmproto.Header{}).WithBlockTime(time.Now()) + ctx := app.BaseApp.NewContext(false, cometbftproto.Header{}).WithBlockTime(time.Now()) // checks that the default genesis parameters pass validation validateGenesis := types.DefaultGenesis().Params.Validate() diff --git a/x/streamer/keeper/grpc_query_test.go b/x/streamer/keeper/grpc_query_test.go index b0964ceb3..688ab7ca4 100644 --- a/x/streamer/keeper/grpc_query_test.go +++ b/x/streamer/keeper/grpc_query_test.go @@ -183,7 +183,7 @@ func (suite *KeeperTestSuite) TestGRPCToDistributeCoins() { // ensure initially querying to distribute coins returns no coins res, err := suite.querier.ModuleToDistributeCoins(sdk.WrapSDKContext(suite.Ctx), &types.ModuleToDistributeCoinsRequest{}) suite.Require().NoError(err) - suite.Require().Equal(res.Coins, sdk.Coins(nil)) + suite.Require().Equal(res.Coins, sdk.Coins{}) // setup a non perpetual stream coins := sdk.Coins{sdk.NewInt64Coin("stake", 300000)} diff --git a/x/streamer/keeper/iterator.go b/x/streamer/keeper/iterator.go index d28b7caa1..e0ee9c8bc 100644 --- a/x/streamer/keeper/iterator.go +++ b/x/streamer/keeper/iterator.go @@ -3,8 +3,8 @@ package keeper import ( "encoding/json" + db "github.com/cometbft/cometbft-db" "github.com/dymensionxyz/dymension/v3/x/streamer/types" - db "github.com/tendermint/tm-db" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/streamer/keeper/keeper.go b/x/streamer/keeper/keeper.go index ee2a6639c..4f93e0c5f 100644 --- a/x/streamer/keeper/keeper.go +++ b/x/streamer/keeper/keeper.go @@ -4,9 +4,9 @@ import ( "fmt" "time" + "github.com/cometbft/cometbft/libs/log" "github.com/osmosis-labs/osmosis/v15/osmoutils" epochstypes "github.com/osmosis-labs/osmosis/v15/x/epochs/types" - "github.com/tendermint/tendermint/libs/log" "github.com/dymensionxyz/dymension/v3/x/streamer/types" diff --git a/x/streamer/keeper/store.go b/x/streamer/keeper/store.go index cdc7a40d9..a70e81328 100644 --- a/x/streamer/keeper/store.go +++ b/x/streamer/keeper/store.go @@ -4,8 +4,8 @@ import ( "encoding/json" "fmt" + "github.com/cosmos/gogoproto/proto" "github.com/dymensionxyz/dymension/v3/x/streamer/types" - "github.com/gogo/protobuf/proto" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/streamer/keeper/stream.go b/x/streamer/keeper/stream.go index bde5cd13d..b0a4013a8 100644 --- a/x/streamer/keeper/stream.go +++ b/x/streamer/keeper/stream.go @@ -4,7 +4,7 @@ import ( "fmt" "sort" - "github.com/gogo/protobuf/proto" + "github.com/cosmos/gogoproto/proto" "github.com/dymensionxyz/dymension/v3/x/streamer/types" diff --git a/x/streamer/keeper/suite_test.go b/x/streamer/keeper/suite_test.go index 4a2a60cb4..919cb5e53 100644 --- a/x/streamer/keeper/suite_test.go +++ b/x/streamer/keeper/suite_test.go @@ -5,14 +5,15 @@ import ( "time" "cosmossdk.io/math" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/dymensionxyz/dymension/v3/x/streamer/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" + "github.com/dymensionxyz/dymension/v3/app/apptesting" keeper "github.com/dymensionxyz/dymension/v3/x/streamer/keeper" - "github.com/osmosis-labs/osmosis/v15/app/apptesting" lockuptypes "github.com/osmosis-labs/osmosis/v15/x/lockup/types" ) @@ -34,7 +35,8 @@ type KeeperTestSuite struct { // SetupTest sets streamer parameters from the suite's context func (suite *KeeperTestSuite) SetupTest() { - suite.Setup() + suite.App = apptesting.Setup(suite.T(), false) + suite.Ctx = suite.App.BaseApp.NewContext(false, cometbftproto.Header{Height: 1, ChainID: "dymension_100-1", Time: time.Now().UTC()}) streamerCoins := sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(2500000)), sdk.NewCoin("udym", sdk.NewInt(2500000))) suite.FundModuleAcc(types.ModuleName, streamerCoins) suite.querier = keeper.NewQuerier(suite.App.StreamerKeeper) diff --git a/x/streamer/module.go b/x/streamer/module.go index 0cee14f79..de8d65ce8 100644 --- a/x/streamer/module.go +++ b/x/streamer/module.go @@ -5,10 +5,10 @@ import ( "encoding/json" "fmt" + abci "github.com/cometbft/cometbft/abci/types" "github.com/gorilla/mux" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - abci "github.com/tendermint/tendermint/abci/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" @@ -123,21 +123,6 @@ func (am AppModule) Name() string { return am.AppModuleBasic.Name() } -// Route returns the module's message routing key. -func (am AppModule) Route() sdk.Route { - return sdk.Route{} -} - -// QuerierRoute returns the module's query routing key. -func (AppModule) QuerierRoute() string { return types.QuerierRoute } - -// LegacyQuerierHandler returns the incentive module's Querier. -func (am AppModule) LegacyQuerierHandler(legacyQuerierCdc *codec.LegacyAmino) sdk.Querier { - return func(sdk.Context, []string, abci.RequestQuery) ([]byte, error) { - return nil, fmt.Errorf("legacy querier not supported for the x/%s module", types.ModuleName) - } -} - // RegisterServices registers the module's services. func (am AppModule) RegisterServices(cfg module.Configurator) { types.RegisterQueryServer(cfg.QueryServer(), keeper.NewQuerier(am.keeper)) diff --git a/x/streamer/types/distr_info.pb.go b/x/streamer/types/distr_info.pb.go index 1ec58d488..fa1fbb7c0 100644 --- a/x/streamer/types/distr_info.pb.go +++ b/x/streamer/types/distr_info.pb.go @@ -1,14 +1,14 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/streamer/distr_info.proto +// source: dymensionxyz/dymension/streamer/distr_info.proto package types import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" - _ "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + _ "google.golang.org/protobuf/types/known/durationpb" io "io" math "math" math_bits "math/bits" @@ -34,7 +34,7 @@ func (m *DistrInfo) Reset() { *m = DistrInfo{} } func (m *DistrInfo) String() string { return proto.CompactTextString(m) } func (*DistrInfo) ProtoMessage() {} func (*DistrInfo) Descriptor() ([]byte, []int) { - return fileDescriptor_0cb1b180a8359f9b, []int{0} + return fileDescriptor_53071932ae804659, []int{0} } func (m *DistrInfo) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -79,7 +79,7 @@ func (m *DistrRecord) Reset() { *m = DistrRecord{} } func (m *DistrRecord) String() string { return proto.CompactTextString(m) } func (*DistrRecord) ProtoMessage() {} func (*DistrRecord) Descriptor() ([]byte, []int) { - return fileDescriptor_0cb1b180a8359f9b, []int{1} + return fileDescriptor_53071932ae804659, []int{1} } func (m *DistrRecord) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -121,34 +121,34 @@ func init() { } func init() { - proto.RegisterFile("dymension/streamer/distr_info.proto", fileDescriptor_0cb1b180a8359f9b) + proto.RegisterFile("dymensionxyz/dymension/streamer/distr_info.proto", fileDescriptor_53071932ae804659) } -var fileDescriptor_0cb1b180a8359f9b = []byte{ - // 356 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4e, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x2f, 0x2e, 0x29, 0x4a, 0x4d, 0xcc, 0x4d, 0x2d, 0xd2, 0x4f, - 0xc9, 0x2c, 0x2e, 0x29, 0x8a, 0xcf, 0xcc, 0x4b, 0xcb, 0xd7, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, - 0x92, 0x87, 0x2b, 0xaa, 0xa8, 0xac, 0xd2, 0x83, 0x73, 0xf4, 0x60, 0x3a, 0xa4, 0x44, 0xd2, 0xf3, - 0xd3, 0xf3, 0xc1, 0x6a, 0xf5, 0x41, 0x2c, 0x88, 0x36, 0x29, 0xb9, 0xf4, 0xfc, 0xfc, 0xf4, 0x9c, - 0x54, 0x7d, 0x30, 0x2f, 0xa9, 0x34, 0x4d, 0x3f, 0xa5, 0xb4, 0x28, 0xb1, 0x04, 0xa4, 0x11, 0x2c, - 0xa2, 0x74, 0x98, 0x91, 0x8b, 0xd3, 0x05, 0x64, 0x97, 0x67, 0x5e, 0x5a, 0xbe, 0x50, 0x06, 0x17, - 0x4f, 0x49, 0x7e, 0x49, 0x62, 0x4e, 0x7c, 0x79, 0x6a, 0x66, 0x7a, 0x46, 0x89, 0x04, 0xa3, 0x02, - 0xa3, 0x06, 0xa7, 0x93, 0xeb, 0x89, 0x7b, 0xf2, 0x0c, 0xb7, 0xee, 0xc9, 0xab, 0xa5, 0x67, 0x96, - 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x27, 0xe7, 0x17, 0xe7, 0xe6, 0x17, 0x43, 0x29, - 0xdd, 0xe2, 0x94, 0x6c, 0xfd, 0x92, 0xca, 0x82, 0xd4, 0x62, 0x3d, 0xcf, 0xbc, 0x92, 0x4f, 0xf7, - 0xe4, 0x85, 0x2b, 0x13, 0x73, 0x73, 0xac, 0x94, 0x90, 0xcd, 0x52, 0x0a, 0xe2, 0x06, 0x73, 0xc3, - 0xc1, 0x3c, 0x21, 0x1f, 0x2e, 0xf6, 0xa2, 0xd4, 0xe4, 0xfc, 0xa2, 0x94, 0x62, 0x09, 0x26, 0x05, - 0x66, 0x0d, 0x6e, 0x23, 0x1d, 0x3d, 0x02, 0x1e, 0xd4, 0x03, 0x3b, 0x33, 0x08, 0xac, 0xc9, 0x89, - 0x05, 0xe4, 0xa4, 0x20, 0x98, 0x11, 0x4a, 0xdd, 0x8c, 0x5c, 0xdc, 0x48, 0xd2, 0x42, 0x7a, 0x5c, - 0x1c, 0xe9, 0x89, 0xa5, 0xe9, 0xa9, 0xf1, 0x99, 0x29, 0x60, 0x3f, 0xb0, 0x38, 0x09, 0x7f, 0xba, - 0x27, 0xcf, 0x0f, 0x71, 0x15, 0x4c, 0x46, 0x29, 0x88, 0x1d, 0xcc, 0xf4, 0x4c, 0x11, 0x72, 0xe3, - 0x62, 0x83, 0xfa, 0x98, 0x09, 0xec, 0x63, 0x3d, 0xd2, 0x7c, 0x1c, 0x04, 0xd5, 0x6d, 0xc5, 0xf2, - 0x62, 0x81, 0x3c, 0xa3, 0x93, 0xff, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, - 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, - 0x99, 0x22, 0x99, 0x87, 0xec, 0x5d, 0x04, 0x47, 0xbf, 0xcc, 0x58, 0xbf, 0x02, 0x91, 0x0c, 0xc0, - 0x56, 0x24, 0xb1, 0x81, 0xe3, 0xca, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x5b, 0x73, 0x89, 0x43, - 0x29, 0x02, 0x00, 0x00, +var fileDescriptor_53071932ae804659 = []byte{ + // 357 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0x48, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x8b, 0x4b, 0x8a, 0x52, + 0x13, 0x73, 0x53, 0x8b, 0xf4, 0x53, 0x32, 0x8b, 0x4b, 0x8a, 0xe2, 0x33, 0xf3, 0xd2, 0xf2, 0xf5, + 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xe4, 0x91, 0x75, 0xe8, 0xc1, 0x39, 0x7a, 0x30, 0x1d, 0x52, + 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0xb5, 0xfa, 0x20, 0x16, 0x44, 0x9b, 0x94, 0x5c, 0x7a, 0x7e, + 0x7e, 0x7a, 0x4e, 0xaa, 0x3e, 0x98, 0x97, 0x54, 0x9a, 0xa6, 0x9f, 0x52, 0x5a, 0x94, 0x58, 0x02, + 0xd2, 0x08, 0x16, 0x51, 0x3a, 0xcc, 0xc8, 0xc5, 0xe9, 0x02, 0xb2, 0xcb, 0x33, 0x2f, 0x2d, 0x5f, + 0x28, 0x83, 0x8b, 0xa7, 0x24, 0xbf, 0x24, 0x31, 0x27, 0xbe, 0x3c, 0x35, 0x33, 0x3d, 0xa3, 0x44, + 0x82, 0x51, 0x81, 0x51, 0x83, 0xd3, 0xc9, 0xf5, 0xc4, 0x3d, 0x79, 0x86, 0x5b, 0xf7, 0xe4, 0xd5, + 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x93, 0xf3, 0x8b, 0x73, 0xf3, + 0x8b, 0xa1, 0x94, 0x6e, 0x71, 0x4a, 0xb6, 0x7e, 0x49, 0x65, 0x41, 0x6a, 0xb1, 0x9e, 0x67, 0x5e, + 0xc9, 0xa7, 0x7b, 0xf2, 0xc2, 0x95, 0x89, 0xb9, 0x39, 0x56, 0x4a, 0xc8, 0x66, 0x29, 0x05, 0x71, + 0x83, 0xb9, 0xe1, 0x60, 0x9e, 0x90, 0x0f, 0x17, 0x7b, 0x51, 0x6a, 0x72, 0x7e, 0x51, 0x4a, 0xb1, + 0x04, 0x93, 0x02, 0xb3, 0x06, 0xb7, 0x91, 0x8e, 0x1e, 0x01, 0x0f, 0xea, 0x81, 0x9d, 0x19, 0x04, + 0xd6, 0xe4, 0xc4, 0x02, 0x72, 0x52, 0x10, 0xcc, 0x08, 0xa5, 0x6e, 0x46, 0x2e, 0x6e, 0x24, 0x69, + 0x21, 0x3d, 0x2e, 0x8e, 0xf4, 0xc4, 0xd2, 0xf4, 0xd4, 0xf8, 0xcc, 0x14, 0xb0, 0x1f, 0x58, 0x9c, + 0x84, 0x3f, 0xdd, 0x93, 0xe7, 0x87, 0xb8, 0x0a, 0x26, 0xa3, 0x14, 0xc4, 0x0e, 0x66, 0x7a, 0xa6, + 0x08, 0xb9, 0x71, 0xb1, 0x41, 0x7d, 0xcc, 0x04, 0xf6, 0xb1, 0x1e, 0x69, 0x3e, 0x0e, 0x82, 0xea, + 0xb6, 0x62, 0x79, 0xb1, 0x40, 0x9e, 0xd1, 0xc9, 0xff, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, + 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, + 0xe5, 0x18, 0xa2, 0x4c, 0x91, 0xcc, 0xc3, 0x91, 0x02, 0xca, 0x8c, 0xf5, 0x2b, 0x10, 0xc9, 0x00, + 0x6c, 0x45, 0x12, 0x1b, 0x38, 0xae, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x0d, 0x2e, 0x62, + 0x6a, 0x36, 0x02, 0x00, 0x00, } func (this *DistrRecord) Equal(that interface{}) bool { diff --git a/x/streamer/types/genesis.pb.go b/x/streamer/types/genesis.pb.go index 128ee44a3..b9d0c65d8 100644 --- a/x/streamer/types/genesis.pb.go +++ b/x/streamer/types/genesis.pb.go @@ -1,13 +1,13 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/streamer/genesis.proto +// source: dymensionxyz/dymension/streamer/genesis.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" - _ "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + _ "google.golang.org/protobuf/types/known/durationpb" io "io" math "math" math_bits "math/bits" @@ -40,7 +40,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_4bce5e482260879a, []int{0} + return fileDescriptor_29bb00b957b5a0f5, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -94,28 +94,30 @@ func init() { proto.RegisterType((*GenesisState)(nil), "dymensionxyz.dymension.streamer.GenesisState") } -func init() { proto.RegisterFile("dymension/streamer/genesis.proto", fileDescriptor_4bce5e482260879a) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/streamer/genesis.proto", fileDescriptor_29bb00b957b5a0f5) +} -var fileDescriptor_4bce5e482260879a = []byte{ - // 277 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x48, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x2f, 0x2e, 0x29, 0x4a, 0x4d, 0xcc, 0x4d, 0x2d, 0xd2, 0x4f, - 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x87, 0xab, - 0xa8, 0xa8, 0xac, 0xd2, 0x83, 0x73, 0xf4, 0x60, 0xca, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, - 0x6a, 0xf5, 0x41, 0x2c, 0x88, 0x36, 0x29, 0xb9, 0xf4, 0xfc, 0xfc, 0xf4, 0x9c, 0x54, 0x7d, 0x30, - 0x2f, 0xa9, 0x34, 0x4d, 0x3f, 0xa5, 0xb4, 0x28, 0xb1, 0x04, 0xa4, 0x11, 0x22, 0x2f, 0x8f, 0xc5, - 0xe2, 0x82, 0xc4, 0xa2, 0xc4, 0xdc, 0x62, 0x3c, 0x0a, 0x20, 0x0c, 0x88, 0x02, 0xa5, 0x23, 0x8c, - 0x5c, 0x3c, 0xee, 0x10, 0xa7, 0x06, 0x97, 0x24, 0x96, 0xa4, 0x0a, 0xb9, 0x72, 0xb1, 0x41, 0x4c, - 0x90, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x52, 0xd7, 0x23, 0xe0, 0x74, 0xbd, 0x00, 0xb0, 0x72, - 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0xa0, 0x9a, 0x85, 0xdc, 0xb9, 0xd8, 0x21, 0x0a, 0x8a, - 0x25, 0x98, 0x14, 0x98, 0x89, 0x32, 0x27, 0x18, 0xcc, 0x80, 0x9a, 0x03, 0xd3, 0x2d, 0xa4, 0xc2, - 0xc5, 0x97, 0x93, 0x58, 0x5c, 0x12, 0x0f, 0xe1, 0xc7, 0x67, 0xa6, 0x48, 0x30, 0x2b, 0x30, 0x6a, - 0xb0, 0x04, 0xf1, 0x80, 0x44, 0x21, 0x5a, 0x3c, 0x53, 0x9c, 0xfc, 0x4f, 0x3c, 0x92, 0x63, 0xbc, - 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, - 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x34, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, - 0x57, 0x1f, 0xd9, 0x05, 0x08, 0x8e, 0x7e, 0x99, 0xb1, 0x7e, 0x05, 0x22, 0x78, 0x4a, 0x2a, 0x0b, - 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xc1, 0x63, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x70, 0xa4, 0xa0, - 0x5a, 0xdb, 0x01, 0x00, 0x00, +var fileDescriptor_29bb00b957b5a0f5 = []byte{ + // 278 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4d, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x8b, 0x4b, 0x8a, 0x52, + 0x13, 0x73, 0x53, 0x8b, 0xf4, 0xd3, 0x53, 0xf3, 0x52, 0x8b, 0x33, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, + 0x4b, 0xf2, 0x85, 0xe4, 0x91, 0x95, 0xeb, 0xc1, 0x39, 0x7a, 0x30, 0xe5, 0x52, 0x22, 0xe9, 0xf9, + 0xe9, 0xf9, 0x60, 0xb5, 0xfa, 0x20, 0x16, 0x44, 0x9b, 0x94, 0x5c, 0x7a, 0x7e, 0x7e, 0x7a, 0x4e, + 0xaa, 0x3e, 0x98, 0x97, 0x54, 0x9a, 0xa6, 0x9f, 0x52, 0x5a, 0x94, 0x58, 0x02, 0xd2, 0x08, 0x91, + 0xd7, 0x21, 0xe4, 0x8a, 0x82, 0xc4, 0xa2, 0xc4, 0xdc, 0x62, 0x62, 0x55, 0x43, 0x18, 0x10, 0xd5, + 0x4a, 0x47, 0x18, 0xb9, 0x78, 0xdc, 0x21, 0x9e, 0x08, 0x2e, 0x49, 0x2c, 0x49, 0x15, 0x72, 0xe5, + 0x62, 0x83, 0x18, 0x27, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x6d, 0xa4, 0xae, 0x47, 0xc0, 0x53, 0x7a, + 0x01, 0x60, 0xe5, 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, 0x04, 0x41, 0x35, 0x0b, 0xb9, 0x73, 0xb1, + 0x43, 0x14, 0x14, 0x4b, 0x30, 0x29, 0x30, 0x13, 0x65, 0x4e, 0x30, 0x98, 0x01, 0x35, 0x07, 0xa6, + 0x5b, 0x48, 0x85, 0x8b, 0x2f, 0x27, 0xb1, 0xb8, 0x24, 0x1e, 0xc2, 0x8f, 0xcf, 0x4c, 0x91, 0x60, + 0x56, 0x60, 0xd4, 0x60, 0x09, 0xe2, 0x01, 0x89, 0x42, 0xb4, 0x78, 0xa6, 0x38, 0xf9, 0x9f, 0x78, + 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, + 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x69, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, + 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0x8e, 0x90, 0x29, 0x33, 0xd6, 0xaf, 0x40, 0x04, 0x4f, 0x49, 0x65, + 0x41, 0x6a, 0x71, 0x12, 0x1b, 0x38, 0x78, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x9e, 0x84, + 0x7f, 0x68, 0x02, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/streamer/types/gov_distribution.pb.go b/x/streamer/types/gov_distribution.pb.go index 4288ce8d6..c0f8bbcdc 100644 --- a/x/streamer/types/gov_distribution.pb.go +++ b/x/streamer/types/gov_distribution.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/streamer/gov_distribution.proto +// source: dymensionxyz/dymension/streamer/gov_distribution.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -38,7 +38,7 @@ type ReplaceStreamDistributionProposal struct { func (m *ReplaceStreamDistributionProposal) Reset() { *m = ReplaceStreamDistributionProposal{} } func (*ReplaceStreamDistributionProposal) ProtoMessage() {} func (*ReplaceStreamDistributionProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_94cda0fab7fe81ad, []int{0} + return fileDescriptor_d36b11731d97e0fe, []int{0} } func (m *ReplaceStreamDistributionProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -84,7 +84,7 @@ type UpdateStreamDistributionProposal struct { func (m *UpdateStreamDistributionProposal) Reset() { *m = UpdateStreamDistributionProposal{} } func (*UpdateStreamDistributionProposal) ProtoMessage() {} func (*UpdateStreamDistributionProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_94cda0fab7fe81ad, []int{1} + return fileDescriptor_d36b11731d97e0fe, []int{1} } func (m *UpdateStreamDistributionProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -119,31 +119,31 @@ func init() { } func init() { - proto.RegisterFile("dymension/streamer/gov_distribution.proto", fileDescriptor_94cda0fab7fe81ad) + proto.RegisterFile("dymensionxyz/dymension/streamer/gov_distribution.proto", fileDescriptor_d36b11731d97e0fe) } -var fileDescriptor_94cda0fab7fe81ad = []byte{ - // 317 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4c, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x2f, 0x2e, 0x29, 0x4a, 0x4d, 0xcc, 0x4d, 0x2d, 0xd2, 0x4f, - 0xcf, 0x2f, 0x8b, 0x4f, 0xc9, 0x2c, 0x2e, 0x29, 0xca, 0x4c, 0x2a, 0x2d, 0xc9, 0xcc, 0xcf, 0xd3, - 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x87, 0x2b, 0xad, 0xa8, 0xac, 0xd2, 0x83, 0x73, 0xf4, - 0x60, 0xfa, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x6a, 0xf5, 0x41, 0x2c, 0x88, 0x36, 0x29, - 0x65, 0x2c, 0x36, 0x80, 0x4d, 0x8f, 0xcf, 0xcc, 0x4b, 0x83, 0x2a, 0x52, 0xba, 0xc2, 0xc8, 0xa5, - 0x18, 0x94, 0x5a, 0x90, 0x93, 0x98, 0x9c, 0x1a, 0x0c, 0x56, 0xe4, 0x82, 0x64, 0x7f, 0x40, 0x51, - 0x7e, 0x41, 0x7e, 0x71, 0x62, 0x8e, 0x90, 0x08, 0x17, 0x6b, 0x49, 0x66, 0x49, 0x4e, 0xaa, 0x04, - 0xa3, 0x02, 0xa3, 0x06, 0x67, 0x10, 0x84, 0x23, 0xa4, 0xc0, 0xc5, 0x9d, 0x92, 0x5a, 0x9c, 0x5c, - 0x94, 0x59, 0x00, 0x52, 0x2c, 0xc1, 0x04, 0x96, 0x43, 0x16, 0x12, 0x92, 0xe6, 0xe2, 0x84, 0x58, - 0x1d, 0x9f, 0x99, 0x22, 0xc1, 0xac, 0xc0, 0xa8, 0xc1, 0x12, 0xc4, 0x01, 0x11, 0xf0, 0x4c, 0x11, - 0xf2, 0xe1, 0x62, 0x2f, 0x4a, 0x4d, 0xce, 0x2f, 0x4a, 0x29, 0x96, 0x60, 0x51, 0x60, 0xd6, 0xe0, - 0x36, 0xd2, 0xd1, 0x23, 0xe0, 0x51, 0x3d, 0xb0, 0xe3, 0x82, 0xc0, 0x9a, 0x9c, 0x58, 0x4e, 0xdc, - 0x93, 0x67, 0x08, 0x82, 0x19, 0x61, 0xc5, 0xd3, 0xb1, 0x40, 0x9e, 0x61, 0xc6, 0x02, 0x79, 0x86, - 0x17, 0x0b, 0xe4, 0x19, 0x95, 0x2e, 0x33, 0x72, 0x29, 0x84, 0x16, 0xa4, 0x24, 0x96, 0x0c, 0x27, - 0x5f, 0x39, 0xf9, 0x9f, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, - 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x69, 0x7a, - 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xb2, 0x75, 0x08, 0x8e, 0x7e, 0x99, - 0xb1, 0x7e, 0x05, 0x22, 0x21, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x13, 0x81, 0x31, - 0x20, 0x00, 0x00, 0xff, 0xff, 0xb6, 0x12, 0x70, 0x25, 0x8d, 0x02, 0x00, 0x00, +var fileDescriptor_d36b11731d97e0fe = []byte{ + // 318 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0x4b, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x8b, 0x4b, 0x8a, 0x52, + 0x13, 0x73, 0x53, 0x8b, 0xf4, 0xd3, 0xf3, 0xcb, 0xe2, 0x53, 0x32, 0x8b, 0x4b, 0x8a, 0x32, 0x93, + 0x4a, 0x4b, 0x32, 0xf3, 0xf3, 0xf4, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xe4, 0x91, 0xf5, 0xe9, + 0xc1, 0x39, 0x7a, 0x30, 0x7d, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0xb5, 0xfa, 0x20, 0x16, + 0x44, 0x9b, 0x94, 0x01, 0x21, 0xeb, 0xc0, 0x56, 0xc5, 0x67, 0xe6, 0xa5, 0x41, 0x75, 0x28, 0x5d, + 0x61, 0xe4, 0x52, 0x0c, 0x4a, 0x2d, 0xc8, 0x49, 0x4c, 0x4e, 0x0d, 0x06, 0x2b, 0x72, 0x41, 0x72, + 0x4c, 0x40, 0x51, 0x7e, 0x41, 0x7e, 0x71, 0x62, 0x8e, 0x90, 0x08, 0x17, 0x6b, 0x49, 0x66, 0x49, + 0x4e, 0xaa, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x67, 0x10, 0x84, 0x23, 0xa4, 0xc0, 0xc5, 0x9d, 0x92, + 0x5a, 0x9c, 0x5c, 0x94, 0x59, 0x00, 0x52, 0x2c, 0xc1, 0x04, 0x96, 0x43, 0x16, 0x12, 0x92, 0xe6, + 0xe2, 0x84, 0x58, 0x1d, 0x9f, 0x99, 0x22, 0xc1, 0xac, 0xc0, 0xa8, 0xc1, 0x12, 0xc4, 0x01, 0x11, + 0xf0, 0x4c, 0x11, 0xf2, 0xe1, 0x62, 0x2f, 0x4a, 0x4d, 0xce, 0x2f, 0x4a, 0x29, 0x96, 0x60, 0x51, + 0x60, 0xd6, 0xe0, 0x36, 0xd2, 0xd1, 0x23, 0xe0, 0x6b, 0x3d, 0xb0, 0xe3, 0x82, 0xc0, 0x9a, 0x9c, + 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0x19, 0x61, 0xc5, 0xd3, 0xb1, 0x40, 0x9e, 0x61, 0xc6, + 0x02, 0x79, 0x86, 0x17, 0x0b, 0xe4, 0x19, 0x95, 0x2e, 0x33, 0x72, 0x29, 0x84, 0x16, 0xa4, 0x24, + 0x96, 0x0c, 0x27, 0x5f, 0x39, 0xf9, 0x9f, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, + 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, + 0x94, 0x69, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0x8e, 0x34, 0x50, + 0x66, 0xac, 0x5f, 0x81, 0x48, 0x08, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, 0x44, 0x60, + 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x28, 0x0b, 0x27, 0x24, 0xa7, 0x02, 0x00, 0x00, } func (this *ReplaceStreamDistributionProposal) Equal(that interface{}) bool { diff --git a/x/streamer/types/gov_stream.pb.go b/x/streamer/types/gov_stream.pb.go index fc8ebc2d9..12bc3010e 100644 --- a/x/streamer/types/gov_stream.pb.go +++ b/x/streamer/types/gov_stream.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/streamer/gov_stream.proto +// source: dymensionxyz/dymension/streamer/gov_stream.proto package types @@ -7,10 +7,10 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" - _ "github.com/gogo/protobuf/types" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" + _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" math_bits "math/bits" @@ -46,7 +46,7 @@ type CreateStreamProposal struct { func (m *CreateStreamProposal) Reset() { *m = CreateStreamProposal{} } func (*CreateStreamProposal) ProtoMessage() {} func (*CreateStreamProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_262baf3a8fd3b272, []int{0} + return fileDescriptor_22fc20cc95fcf0b9, []int{0} } func (m *CreateStreamProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -84,7 +84,7 @@ type TerminateStreamProposal struct { func (m *TerminateStreamProposal) Reset() { *m = TerminateStreamProposal{} } func (*TerminateStreamProposal) ProtoMessage() {} func (*TerminateStreamProposal) Descriptor() ([]byte, []int) { - return fileDescriptor_262baf3a8fd3b272, []int{1} + return fileDescriptor_22fc20cc95fcf0b9, []int{1} } func (m *TerminateStreamProposal) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -119,45 +119,45 @@ func init() { } func init() { - proto.RegisterFile("dymension/streamer/gov_stream.proto", fileDescriptor_262baf3a8fd3b272) + proto.RegisterFile("dymensionxyz/dymension/streamer/gov_stream.proto", fileDescriptor_22fc20cc95fcf0b9) } -var fileDescriptor_262baf3a8fd3b272 = []byte{ - // 542 bytes of a gzipped FileDescriptorProto +var fileDescriptor_22fc20cc95fcf0b9 = []byte{ + // 543 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x52, 0xbf, 0x6f, 0xd3, 0x40, - 0x14, 0xb6, 0x69, 0x52, 0xc8, 0x85, 0x01, 0x4c, 0x00, 0x13, 0xc0, 0x0e, 0x61, 0xc9, 0x00, 0x77, - 0xb4, 0x15, 0x4b, 0xc7, 0x14, 0x86, 0x4e, 0xad, 0x4c, 0xa4, 0x4a, 0x2c, 0xd6, 0xd9, 0xbe, 0xb8, - 0x27, 0x62, 0x3f, 0xeb, 0xee, 0x12, 0x35, 0x88, 0x3f, 0x00, 0x31, 0x75, 0x64, 0xcc, 0xcc, 0x5f, - 0xd2, 0xb1, 0x23, 0x53, 0x8a, 0x92, 0x85, 0xb9, 0x7f, 0x01, 0xf2, 0x5d, 0x7e, 0x21, 0x55, 0x62, - 0x61, 0xb2, 0xdf, 0x7b, 0xdf, 0xf7, 0xbd, 0xd3, 0xf7, 0x3d, 0xf4, 0x32, 0x19, 0x67, 0x2c, 0x97, - 0x1c, 0x72, 0x22, 0x95, 0x60, 0x34, 0x63, 0x82, 0xa4, 0x30, 0x0a, 0x4d, 0x81, 0x0b, 0x01, 0x0a, - 0x1c, 0x7f, 0x05, 0x3a, 0x1b, 0x7f, 0xc6, 0xab, 0x02, 0x2f, 0x19, 0xcd, 0x46, 0x0a, 0x29, 0x68, - 0x2c, 0x29, 0xff, 0x0c, 0xad, 0xe9, 0xc5, 0x20, 0x33, 0x90, 0x24, 0xa2, 0x92, 0x91, 0xd1, 0x4e, - 0xc4, 0x14, 0xdd, 0x21, 0x31, 0xf0, 0x7c, 0x31, 0xf7, 0x53, 0x80, 0x74, 0xc0, 0x88, 0xae, 0xa2, - 0x61, 0x9f, 0x28, 0x9e, 0x31, 0xa9, 0x68, 0x56, 0x2c, 0x00, 0x37, 0x3d, 0x2e, 0xe1, 0x52, 0x89, - 0x90, 0xe7, 0xfd, 0xc5, 0x96, 0xf6, 0xb7, 0x0a, 0x6a, 0x1c, 0x08, 0x46, 0x15, 0xfb, 0xa0, 0x31, - 0xc7, 0x02, 0x0a, 0x90, 0x74, 0xe0, 0x34, 0x50, 0x55, 0x71, 0x35, 0x60, 0xae, 0xdd, 0xb2, 0x3b, - 0xb5, 0xc0, 0x14, 0x4e, 0x0b, 0xd5, 0x13, 0x26, 0x63, 0xc1, 0x0b, 0xc5, 0x21, 0x77, 0x6f, 0xe9, - 0xd9, 0x66, 0xcb, 0xe9, 0xa3, 0x87, 0x7a, 0x09, 0x8f, 0x86, 0x8a, 0x85, 0x0a, 0x42, 0xc1, 0x62, - 0x10, 0x89, 0x74, 0xb7, 0x5a, 0x5b, 0x9d, 0xfa, 0xee, 0x2b, 0xfc, 0x0f, 0x37, 0xf0, 0xbb, 0x92, - 0x1d, 0x68, 0x52, 0xb7, 0x72, 0x31, 0xf5, 0xad, 0xe0, 0xc1, 0x5a, 0xb0, 0x07, 0x66, 0x22, 0x1d, - 0x8a, 0xaa, 0xa5, 0x19, 0xd2, 0xad, 0x68, 0xdd, 0x27, 0xd8, 0xd8, 0x85, 0x4b, 0xbb, 0xf0, 0xc2, - 0x2e, 0x7c, 0x00, 0x3c, 0xef, 0xbe, 0x29, 0x45, 0x7e, 0x5c, 0xf9, 0x9d, 0x94, 0xab, 0xd3, 0x61, - 0x84, 0x63, 0xc8, 0xc8, 0xc2, 0x5b, 0xf3, 0x79, 0x2d, 0x93, 0x4f, 0x44, 0x8d, 0x0b, 0x26, 0x35, - 0x41, 0x06, 0x46, 0xd9, 0x39, 0x41, 0x48, 0x2a, 0x2a, 0x54, 0x58, 0x3a, 0xeb, 0x56, 0x5b, 0x76, - 0xa7, 0xbe, 0xdb, 0xc4, 0xc6, 0x76, 0xbc, 0xb4, 0x1d, 0xf7, 0x96, 0xb6, 0x77, 0x9f, 0x95, 0x8b, - 0xae, 0xa7, 0xfe, 0xbd, 0x31, 0xcd, 0x06, 0xfb, 0xed, 0x55, 0x1e, 0xed, 0xf3, 0x2b, 0xdf, 0x0e, - 0x6a, 0x5a, 0xab, 0x44, 0x3b, 0x27, 0xe8, 0x91, 0x09, 0x82, 0x15, 0x10, 0x9f, 0x86, 0x3c, 0x61, - 0xb9, 0xe2, 0x7d, 0xce, 0x84, 0xbb, 0x5d, 0x1a, 0xda, 0x7d, 0x71, 0x3d, 0xf5, 0x9f, 0x1b, 0x91, - 0x9b, 0x71, 0xed, 0xa0, 0xa1, 0x07, 0xef, 0xcb, 0xfe, 0xe1, 0xaa, 0xed, 0x10, 0xd4, 0xc8, 0x87, - 0x99, 0x81, 0xcb, 0xb0, 0xa0, 0x3c, 0x09, 0x61, 0xc4, 0x84, 0x7b, 0xbb, 0x65, 0x77, 0x2a, 0xc1, - 0xfd, 0x7c, 0x98, 0x69, 0x86, 0x3c, 0xa6, 0x3c, 0x39, 0x1a, 0x31, 0xb1, 0x7f, 0xf7, 0xeb, 0xc4, - 0xb7, 0xbe, 0x4f, 0x7c, 0xeb, 0xf7, 0xc4, 0xb7, 0xdb, 0x5f, 0xd0, 0xe3, 0x1e, 0x13, 0x19, 0xcf, - 0xff, 0xdf, 0x39, 0x3c, 0x45, 0x35, 0x93, 0x6c, 0xc8, 0x13, 0xb7, 0xa2, 0x9f, 0x71, 0xc7, 0x34, - 0x0e, 0x93, 0xbf, 0xb7, 0x77, 0x8f, 0x2e, 0x66, 0x9e, 0x7d, 0x39, 0xf3, 0xec, 0x5f, 0x33, 0xcf, - 0x3e, 0x9f, 0x7b, 0xd6, 0xe5, 0xdc, 0xb3, 0x7e, 0xce, 0x3d, 0xeb, 0xe3, 0xdb, 0x8d, 0xe4, 0x36, - 0xcf, 0x67, 0x5d, 0x90, 0xd1, 0x1e, 0x39, 0x5b, 0x9f, 0xb9, 0x0e, 0x33, 0xda, 0xd6, 0x19, 0xed, - 0xfd, 0x09, 0x00, 0x00, 0xff, 0xff, 0x15, 0xf1, 0xf4, 0xa4, 0xa6, 0x03, 0x00, 0x00, + 0x14, 0xb6, 0x69, 0x52, 0xc8, 0x85, 0x01, 0x4c, 0x00, 0x13, 0xc0, 0x0e, 0x99, 0x32, 0xc0, 0x5d, + 0x7f, 0x88, 0xa5, 0x63, 0x0a, 0x43, 0xa7, 0x56, 0x26, 0x52, 0x25, 0x16, 0xeb, 0x6c, 0x5f, 0xdc, + 0x13, 0xb1, 0x9f, 0x75, 0x77, 0x89, 0x1a, 0xc4, 0x1f, 0x80, 0x98, 0x3a, 0x32, 0x66, 0xe6, 0x2f, + 0xe9, 0xd8, 0x91, 0x29, 0x45, 0xc9, 0xc2, 0xdc, 0xbf, 0x00, 0xf9, 0x2e, 0x49, 0x83, 0x04, 0xea, + 0xd2, 0xc9, 0x7e, 0xef, 0x7d, 0xdf, 0xf7, 0x4e, 0xdf, 0xf7, 0xd0, 0x56, 0x32, 0xce, 0x58, 0x2e, + 0x39, 0xe4, 0xa7, 0xe3, 0xcf, 0x64, 0x55, 0x10, 0xa9, 0x04, 0xa3, 0x19, 0x13, 0x24, 0x85, 0x51, + 0x68, 0x0a, 0x5c, 0x08, 0x50, 0xe0, 0xf8, 0xeb, 0x0c, 0xbc, 0x2a, 0xf0, 0x92, 0xd1, 0x6c, 0xa4, + 0x90, 0x82, 0xc6, 0x92, 0xf2, 0xcf, 0xd0, 0x9a, 0x5e, 0x0c, 0x32, 0x03, 0x49, 0x22, 0x2a, 0x19, + 0x19, 0x6d, 0x47, 0x4c, 0xd1, 0x6d, 0x12, 0x03, 0xcf, 0x17, 0x73, 0x3f, 0x05, 0x48, 0x07, 0x8c, + 0xe8, 0x2a, 0x1a, 0xf6, 0x89, 0xe2, 0x19, 0x93, 0x8a, 0x66, 0xc5, 0x02, 0x70, 0xe3, 0x4b, 0x13, + 0x2e, 0x95, 0x08, 0x79, 0xde, 0x5f, 0xac, 0x6c, 0x7f, 0xab, 0xa0, 0xc6, 0xbe, 0x60, 0x54, 0xb1, + 0x0f, 0x1a, 0x73, 0x24, 0xa0, 0x00, 0x49, 0x07, 0x4e, 0x03, 0x55, 0x15, 0x57, 0x03, 0xe6, 0xda, + 0x2d, 0xbb, 0x53, 0x0b, 0x4c, 0xe1, 0xb4, 0x50, 0x3d, 0x61, 0x32, 0x16, 0xbc, 0x50, 0x1c, 0x72, + 0xf7, 0x8e, 0x9e, 0xad, 0xb7, 0x9c, 0x3e, 0x7a, 0xac, 0x97, 0xf0, 0x68, 0xa8, 0x58, 0xa8, 0x20, + 0x14, 0x2c, 0x06, 0x91, 0x48, 0x77, 0xa3, 0xb5, 0xd1, 0xa9, 0xef, 0xbc, 0xc6, 0x37, 0x58, 0x83, + 0xdf, 0x95, 0xec, 0x40, 0x93, 0xba, 0x95, 0xf3, 0xa9, 0x6f, 0x05, 0x8f, 0xae, 0x05, 0x7b, 0x60, + 0x26, 0xd2, 0xa1, 0xa8, 0x5a, 0x3a, 0x23, 0xdd, 0x8a, 0xd6, 0x7d, 0x86, 0x8d, 0x77, 0xb8, 0xf4, + 0x0e, 0x2f, 0xbc, 0xc3, 0xfb, 0xc0, 0xf3, 0xee, 0x56, 0x29, 0xf2, 0xe3, 0xd2, 0xef, 0xa4, 0x5c, + 0x9d, 0x0c, 0x23, 0x1c, 0x43, 0x46, 0x16, 0x46, 0x9b, 0xcf, 0x1b, 0x99, 0x7c, 0x22, 0x6a, 0x5c, + 0x30, 0xa9, 0x09, 0x32, 0x30, 0xca, 0xce, 0x31, 0x42, 0x52, 0x51, 0xa1, 0xc2, 0xd2, 0x66, 0xb7, + 0xda, 0xb2, 0x3b, 0xf5, 0x9d, 0x26, 0x36, 0x19, 0xe0, 0x65, 0x06, 0xb8, 0xb7, 0xcc, 0xa0, 0xfb, + 0xa2, 0x5c, 0x74, 0x35, 0xf5, 0x1f, 0x8c, 0x69, 0x36, 0xd8, 0x6b, 0xaf, 0xc2, 0x69, 0x9f, 0x5d, + 0xfa, 0x76, 0x50, 0xd3, 0x5a, 0x25, 0xda, 0x39, 0x46, 0x4f, 0x4c, 0x10, 0xac, 0x80, 0xf8, 0x24, + 0xe4, 0x09, 0xcb, 0x15, 0xef, 0x73, 0x26, 0xdc, 0xcd, 0xd2, 0xd0, 0xee, 0xab, 0xab, 0xa9, 0xff, + 0xd2, 0x88, 0xfc, 0x1b, 0xd7, 0x0e, 0x1a, 0x7a, 0xf0, 0xbe, 0xec, 0x1f, 0xac, 0xda, 0x0e, 0x41, + 0x8d, 0x7c, 0x98, 0x19, 0xb8, 0x0c, 0x0b, 0xca, 0x93, 0x10, 0x46, 0x4c, 0xb8, 0x77, 0x5b, 0x76, + 0xa7, 0x12, 0x3c, 0xcc, 0x87, 0x99, 0x66, 0xc8, 0x23, 0xca, 0x93, 0xc3, 0x11, 0x13, 0x7b, 0xf7, + 0xbf, 0x4e, 0x7c, 0xeb, 0xfb, 0xc4, 0xb7, 0x7e, 0x4f, 0x7c, 0xbb, 0xfd, 0x05, 0x3d, 0xed, 0x31, + 0x91, 0xf1, 0xfc, 0xf6, 0xce, 0xe1, 0x39, 0xaa, 0x99, 0x64, 0x43, 0x9e, 0xb8, 0x15, 0xfd, 0x8c, + 0x7b, 0xa6, 0x71, 0x90, 0xfc, 0xbd, 0xbd, 0x7b, 0x78, 0x3e, 0xf3, 0xec, 0x8b, 0x99, 0x67, 0xff, + 0x9a, 0x79, 0xf6, 0xd9, 0xdc, 0xb3, 0x2e, 0xe6, 0x9e, 0xf5, 0x73, 0xee, 0x59, 0x1f, 0xdf, 0xae, + 0x25, 0xf7, 0x9f, 0x0b, 0x1f, 0xed, 0x92, 0xd3, 0xeb, 0x33, 0xd7, 0x61, 0x46, 0x9b, 0x3a, 0xa3, + 0xdd, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xd1, 0xfc, 0x16, 0x60, 0xc0, 0x03, 0x00, 0x00, } func (this *CreateStreamProposal) Equal(that interface{}) bool { @@ -274,7 +274,7 @@ func (m *CreateStreamProposal) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x32 } - n1, err1 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.StartTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.StartTime):]) + n1, err1 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.StartTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.StartTime):]) if err1 != nil { return 0, err1 } @@ -406,7 +406,7 @@ func (m *CreateStreamProposal) Size() (n int) { n += 1 + l + sovGovStream(uint64(l)) } } - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.StartTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.StartTime) n += 1 + l + sovGovStream(uint64(l)) l = len(m.DistrEpochIdentifier) if l > 0 { @@ -634,7 +634,7 @@ func (m *CreateStreamProposal) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.StartTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.StartTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/streamer/types/params.pb.go b/x/streamer/types/params.pb.go index bf77bf9f9..d91c3fd75 100644 --- a/x/streamer/types/params.pb.go +++ b/x/streamer/types/params.pb.go @@ -1,12 +1,12 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/streamer/params.proto +// source: dymensionxyz/dymension/streamer/params.proto package types import ( fmt "fmt" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" io "io" math "math" math_bits "math/bits" @@ -31,7 +31,7 @@ func (m *Params) Reset() { *m = Params{} } func (m *Params) String() string { return proto.CompactTextString(m) } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_d38f7dac47a04ceb, []int{0} + return fileDescriptor_aeb7e6340b70fcc4, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -64,20 +64,22 @@ func init() { proto.RegisterType((*Params)(nil), "dymensionxyz.dymension.streamer.Params") } -func init() { proto.RegisterFile("dymension/streamer/params.proto", fileDescriptor_d38f7dac47a04ceb) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/streamer/params.proto", fileDescriptor_aeb7e6340b70fcc4) +} -var fileDescriptor_d38f7dac47a04ceb = []byte{ - // 151 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4f, 0xa9, 0xcc, 0x4d, - 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xd3, 0x2f, 0x2e, 0x29, 0x4a, 0x4d, 0xcc, 0x4d, 0x2d, 0xd2, 0x2f, - 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x42, 0x28, 0xa8, 0xa8, - 0xac, 0xd2, 0x83, 0x73, 0xf4, 0x60, 0xaa, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x6a, 0xf5, - 0x41, 0x2c, 0x88, 0x36, 0x25, 0x0e, 0x2e, 0xb6, 0x00, 0xb0, 0x31, 0x4e, 0xfe, 0x27, 0x1e, 0xc9, - 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, - 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0x65, 0x9a, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, - 0x9c, 0x9f, 0xab, 0x8f, 0x6c, 0x0b, 0x82, 0xa3, 0x5f, 0x66, 0xac, 0x5f, 0x81, 0x70, 0x58, 0x49, - 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x06, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf7, - 0xad, 0xb6, 0x06, 0xbb, 0x00, 0x00, 0x00, +var fileDescriptor_aeb7e6340b70fcc4 = []byte{ + // 152 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x49, 0xa9, 0xcc, 0x4d, + 0xcd, 0x2b, 0xce, 0xcc, 0xcf, 0xab, 0xa8, 0xac, 0xd2, 0x87, 0x73, 0xf4, 0x8b, 0x4b, 0x8a, 0x52, + 0x13, 0x73, 0x53, 0x8b, 0xf4, 0x0b, 0x12, 0x8b, 0x12, 0x73, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, + 0xf2, 0x85, 0xe4, 0x91, 0x55, 0xeb, 0xc1, 0x39, 0x7a, 0x30, 0xd5, 0x52, 0x22, 0xe9, 0xf9, 0xe9, + 0xf9, 0x60, 0xb5, 0xfa, 0x20, 0x16, 0x44, 0x9b, 0x12, 0x07, 0x17, 0x5b, 0x00, 0xd8, 0x18, 0x27, + 0xff, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, + 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x32, 0x4d, 0xcf, 0x2c, 0xc9, + 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0xc7, 0xe1, 0xa6, 0x32, 0x63, 0xfd, 0x0a, 0x84, 0xc3, + 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x36, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, + 0xf8, 0xb1, 0x1f, 0x37, 0xc8, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/streamer/types/query.pb.go b/x/streamer/types/query.pb.go index 6ae99aadc..e1f752ebd 100644 --- a/x/streamer/types/query.pb.go +++ b/x/streamer/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/streamer/query.proto +// source: dymensionxyz/dymension/streamer/query.proto package types @@ -9,14 +9,14 @@ import ( github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" query "github.com/cosmos/cosmos-sdk/types/query" - _ "github.com/gogo/protobuf/gogoproto" - grpc1 "github.com/gogo/protobuf/grpc" - proto "github.com/gogo/protobuf/proto" - _ "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + grpc1 "github.com/cosmos/gogoproto/grpc" + proto "github.com/cosmos/gogoproto/proto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + _ "google.golang.org/protobuf/types/known/durationpb" io "io" math "math" math_bits "math/bits" @@ -40,7 +40,7 @@ func (m *ModuleToDistributeCoinsRequest) Reset() { *m = ModuleToDistribu func (m *ModuleToDistributeCoinsRequest) String() string { return proto.CompactTextString(m) } func (*ModuleToDistributeCoinsRequest) ProtoMessage() {} func (*ModuleToDistributeCoinsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_c9c3279da5f3c595, []int{0} + return fileDescriptor_c65f82d7b21eb3c7, []int{0} } func (m *ModuleToDistributeCoinsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ func (m *ModuleToDistributeCoinsResponse) Reset() { *m = ModuleToDistrib func (m *ModuleToDistributeCoinsResponse) String() string { return proto.CompactTextString(m) } func (*ModuleToDistributeCoinsResponse) ProtoMessage() {} func (*ModuleToDistributeCoinsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_c9c3279da5f3c595, []int{1} + return fileDescriptor_c65f82d7b21eb3c7, []int{1} } func (m *ModuleToDistributeCoinsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -123,7 +123,7 @@ func (m *StreamByIDRequest) Reset() { *m = StreamByIDRequest{} } func (m *StreamByIDRequest) String() string { return proto.CompactTextString(m) } func (*StreamByIDRequest) ProtoMessage() {} func (*StreamByIDRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_c9c3279da5f3c595, []int{2} + return fileDescriptor_c65f82d7b21eb3c7, []int{2} } func (m *StreamByIDRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -168,7 +168,7 @@ func (m *StreamByIDResponse) Reset() { *m = StreamByIDResponse{} } func (m *StreamByIDResponse) String() string { return proto.CompactTextString(m) } func (*StreamByIDResponse) ProtoMessage() {} func (*StreamByIDResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_c9c3279da5f3c595, []int{3} + return fileDescriptor_c65f82d7b21eb3c7, []int{3} } func (m *StreamByIDResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -213,7 +213,7 @@ func (m *StreamsRequest) Reset() { *m = StreamsRequest{} } func (m *StreamsRequest) String() string { return proto.CompactTextString(m) } func (*StreamsRequest) ProtoMessage() {} func (*StreamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_c9c3279da5f3c595, []int{4} + return fileDescriptor_c65f82d7b21eb3c7, []int{4} } func (m *StreamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -260,7 +260,7 @@ func (m *StreamsResponse) Reset() { *m = StreamsResponse{} } func (m *StreamsResponse) String() string { return proto.CompactTextString(m) } func (*StreamsResponse) ProtoMessage() {} func (*StreamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_c9c3279da5f3c595, []int{5} + return fileDescriptor_c65f82d7b21eb3c7, []int{5} } func (m *StreamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -312,7 +312,7 @@ func (m *ActiveStreamsRequest) Reset() { *m = ActiveStreamsRequest{} } func (m *ActiveStreamsRequest) String() string { return proto.CompactTextString(m) } func (*ActiveStreamsRequest) ProtoMessage() {} func (*ActiveStreamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_c9c3279da5f3c595, []int{6} + return fileDescriptor_c65f82d7b21eb3c7, []int{6} } func (m *ActiveStreamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -359,7 +359,7 @@ func (m *ActiveStreamsResponse) Reset() { *m = ActiveStreamsResponse{} } func (m *ActiveStreamsResponse) String() string { return proto.CompactTextString(m) } func (*ActiveStreamsResponse) ProtoMessage() {} func (*ActiveStreamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_c9c3279da5f3c595, []int{7} + return fileDescriptor_c65f82d7b21eb3c7, []int{7} } func (m *ActiveStreamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -411,7 +411,7 @@ func (m *UpcomingStreamsRequest) Reset() { *m = UpcomingStreamsRequest{} func (m *UpcomingStreamsRequest) String() string { return proto.CompactTextString(m) } func (*UpcomingStreamsRequest) ProtoMessage() {} func (*UpcomingStreamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_c9c3279da5f3c595, []int{8} + return fileDescriptor_c65f82d7b21eb3c7, []int{8} } func (m *UpcomingStreamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -458,7 +458,7 @@ func (m *UpcomingStreamsResponse) Reset() { *m = UpcomingStreamsResponse func (m *UpcomingStreamsResponse) String() string { return proto.CompactTextString(m) } func (*UpcomingStreamsResponse) ProtoMessage() {} func (*UpcomingStreamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_c9c3279da5f3c595, []int{9} + return fileDescriptor_c65f82d7b21eb3c7, []int{9} } func (m *UpcomingStreamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -514,54 +514,56 @@ func init() { proto.RegisterType((*UpcomingStreamsResponse)(nil), "dymensionxyz.dymension.streamer.UpcomingStreamsResponse") } -func init() { proto.RegisterFile("dymension/streamer/query.proto", fileDescriptor_c9c3279da5f3c595) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/streamer/query.proto", fileDescriptor_c65f82d7b21eb3c7) +} -var fileDescriptor_c9c3279da5f3c595 = []byte{ +var fileDescriptor_c65f82d7b21eb3c7 = []byte{ // 695 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x96, 0xcf, 0x6b, 0x13, 0x41, 0x14, 0xc7, 0x33, 0xb1, 0x3f, 0x60, 0x8a, 0x2d, 0x0e, 0xd5, 0xd6, 0x20, 0x9b, 0xb2, 0x82, 0x86, - 0x82, 0x3b, 0x4d, 0x62, 0xad, 0x3f, 0x90, 0xda, 0xb4, 0x28, 0x1e, 0x44, 0x8d, 0x16, 0xc4, 0x83, + 0xaa, 0x3b, 0x4d, 0x62, 0xad, 0x3f, 0x90, 0xda, 0xb4, 0x28, 0x1e, 0x44, 0x8d, 0x16, 0xc4, 0x83, 0x71, 0x36, 0x3b, 0xae, 0x83, 0xcd, 0x4e, 0x9a, 0x99, 0x2d, 0x8d, 0xe2, 0x45, 0xfc, 0x03, 0x04, 0xcf, 0x7a, 0x11, 0x2f, 0xde, 0x3c, 0x79, 0x11, 0xbc, 0xf6, 0x58, 0xf0, 0xe2, 0xc9, 0x1f, 0xad, - 0x7f, 0x88, 0x64, 0x66, 0x36, 0xd9, 0xd4, 0xd4, 0x4d, 0x85, 0x42, 0x4f, 0x99, 0xcd, 0x7b, 0xdf, - 0xef, 0xfb, 0xbc, 0x97, 0xdd, 0xb7, 0x81, 0x96, 0xd7, 0xac, 0xd1, 0x40, 0x30, 0x1e, 0x60, 0x21, - 0x1b, 0x94, 0xd4, 0x68, 0x03, 0xaf, 0x86, 0xb4, 0xd1, 0x74, 0xea, 0x0d, 0x2e, 0x39, 0xca, 0xb6, - 0xe3, 0xeb, 0xcd, 0xa7, 0x4e, 0xfb, 0xc2, 0x89, 0x92, 0x33, 0xe3, 0x3e, 0xf7, 0xb9, 0xca, 0xc5, - 0xad, 0x93, 0x96, 0x65, 0x4e, 0xf8, 0x9c, 0xfb, 0x2b, 0x14, 0x93, 0x3a, 0xc3, 0x24, 0x08, 0xb8, - 0x24, 0x92, 0xf1, 0x40, 0x98, 0xa8, 0x65, 0xa2, 0xea, 0xca, 0x0d, 0x1f, 0x61, 0x2f, 0x6c, 0xa8, - 0x84, 0x28, 0x5e, 0xe5, 0xa2, 0xc6, 0x05, 0x76, 0x89, 0xa0, 0x78, 0x2d, 0xef, 0x52, 0x49, 0xf2, - 0xb8, 0xca, 0x59, 0x14, 0x9f, 0x8e, 0xc7, 0x15, 0x6d, 0x3b, 0xab, 0x4e, 0x7c, 0x16, 0xc4, 0xbd, - 0xb2, 0x3d, 0x1a, 0xd4, 0x07, 0x9d, 0x60, 0x4f, 0x41, 0xeb, 0x06, 0xf7, 0xc2, 0x15, 0x7a, 0x97, - 0x2f, 0x31, 0x21, 0x1b, 0xcc, 0x0d, 0x25, 0x5d, 0xe4, 0x2c, 0x10, 0x65, 0xba, 0x1a, 0x52, 0x21, - 0xed, 0x97, 0x00, 0x66, 0x77, 0x4d, 0x11, 0x75, 0x1e, 0x08, 0x8a, 0x08, 0x1c, 0x6c, 0x01, 0x8a, - 0x49, 0x30, 0x75, 0x28, 0x37, 0x52, 0x38, 0xee, 0x68, 0x44, 0xa7, 0x85, 0xe8, 0x18, 0x38, 0xa7, - 0x25, 0x29, 0xcd, 0x6c, 0x7c, 0xcf, 0xa6, 0x3e, 0xfc, 0xc8, 0xe6, 0x7c, 0x26, 0x1f, 0x87, 0xae, - 0x53, 0xe5, 0x35, 0x6c, 0xfa, 0xd1, 0x1f, 0x67, 0x84, 0xf7, 0x04, 0xcb, 0x66, 0x9d, 0x0a, 0x47, - 0xd7, 0xd0, 0xce, 0xf6, 0x49, 0x78, 0xe4, 0x8e, 0x02, 0x2f, 0x35, 0xaf, 0x2f, 0x19, 0x36, 0x34, - 0x0a, 0xd3, 0xcc, 0x9b, 0x04, 0x53, 0x20, 0x37, 0x50, 0x4e, 0x33, 0xcf, 0x5e, 0x86, 0x28, 0x9e, - 0x64, 0xe8, 0xe6, 0xe1, 0x90, 0xee, 0x59, 0x65, 0x8e, 0x14, 0x4e, 0x3b, 0x09, 0x3f, 0xab, 0xa3, - 0x4d, 0xca, 0x46, 0x66, 0xdf, 0x83, 0xa3, 0xfa, 0x9b, 0x68, 0x28, 0xe8, 0x2a, 0x84, 0x9d, 0x59, - 0x1b, 0xdb, 0x53, 0x5d, 0x5d, 0xeb, 0xdb, 0x28, 0xea, 0xfd, 0x16, 0xf1, 0xa9, 0xd1, 0x96, 0x63, - 0x4a, 0xfb, 0x0d, 0x80, 0x63, 0x6d, 0x6b, 0x83, 0xbb, 0x00, 0x07, 0x3c, 0x22, 0x89, 0x99, 0x65, - 0xbf, 0xb0, 0xa5, 0x81, 0xd6, 0x64, 0xcb, 0x4a, 0x8a, 0xae, 0x75, 0xe1, 0xa5, 0x4d, 0xd7, 0x49, - 0x78, 0xba, 0x7e, 0x17, 0xdf, 0x03, 0x38, 0xbe, 0x50, 0x95, 0x6c, 0x8d, 0xee, 0x53, 0xff, 0xef, - 0x00, 0x3c, 0xba, 0xa3, 0xc0, 0x01, 0x9c, 0xc2, 0x43, 0x78, 0x6c, 0xb9, 0x5e, 0xe5, 0x35, 0x16, - 0xf8, 0xfb, 0x34, 0x87, 0xf7, 0x00, 0x4e, 0xfc, 0x55, 0xe2, 0xe0, 0x4d, 0xa2, 0xf0, 0x79, 0x18, - 0x0e, 0xde, 0x6e, 0xa5, 0xa2, 0x5f, 0x00, 0x4e, 0xec, 0xb2, 0x16, 0xd0, 0x7c, 0x22, 0xe3, 0xbf, - 0x77, 0x4e, 0xe6, 0xca, 0xff, 0x1b, 0x68, 0x68, 0x7b, 0xf1, 0xc5, 0xd7, 0xdf, 0xaf, 0xd3, 0x97, - 0xd1, 0x25, 0x1c, 0x77, 0xc2, 0x3d, 0xd6, 0x61, 0x4d, 0x39, 0x55, 0x24, 0xaf, 0x78, 0x6d, 0xaf, - 0x8a, 0xda, 0x39, 0xe8, 0x23, 0x80, 0xb0, 0xb3, 0x4f, 0x50, 0xa1, 0xdf, 0xd1, 0x77, 0x36, 0x54, - 0xa6, 0xb8, 0x27, 0x8d, 0x81, 0xbf, 0xa8, 0xe0, 0xcf, 0xa2, 0x42, 0x22, 0xbc, 0x3e, 0x54, 0xdc, - 0x66, 0x85, 0x79, 0xf8, 0x19, 0xf3, 0x9e, 0xa3, 0xb7, 0x00, 0x0e, 0x9b, 0x3b, 0x08, 0xe1, 0x3e, - 0x8b, 0xb7, 0xe7, 0x3e, 0xd3, 0xbf, 0xc0, 0xa0, 0xce, 0x28, 0xd4, 0x69, 0x94, 0xeb, 0x13, 0x55, - 0xa0, 0x4f, 0x00, 0x1e, 0xee, 0x7a, 0xe4, 0xd1, 0x6c, 0x62, 0xd5, 0x5e, 0x3b, 0x28, 0x73, 0x6e, - 0xaf, 0x32, 0x83, 0x3c, 0xa7, 0x90, 0xf3, 0x08, 0x27, 0x22, 0x13, 0xa5, 0xaf, 0x44, 0xe4, 0x5f, - 0x00, 0x1c, 0xdb, 0xf1, 0x90, 0xa2, 0xb9, 0x44, 0x88, 0xde, 0x9b, 0x23, 0x73, 0x7e, 0xef, 0x42, - 0xc3, 0x7f, 0x41, 0xf1, 0x17, 0x51, 0x3e, 0x91, 0x3f, 0x34, 0x0e, 0x51, 0x07, 0xa5, 0x9b, 0x1b, - 0x5b, 0x16, 0xd8, 0xdc, 0xb2, 0xc0, 0xcf, 0x2d, 0x0b, 0xbc, 0xda, 0xb6, 0x52, 0x9b, 0xdb, 0x56, - 0xea, 0xdb, 0xb6, 0x95, 0xba, 0x3f, 0x1b, 0x7b, 0x1f, 0xef, 0x62, 0xbb, 0x56, 0xc4, 0xeb, 0x1d, - 0x6f, 0xf5, 0x8a, 0x76, 0x87, 0xd4, 0xbf, 0x88, 0xe2, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf1, - 0xb9, 0x2b, 0xf8, 0x49, 0x09, 0x00, 0x00, + 0x7f, 0x88, 0x64, 0x66, 0x36, 0x3f, 0x6a, 0xeb, 0x6e, 0x85, 0x42, 0x4f, 0xd9, 0xc9, 0x7b, 0xdf, + 0xef, 0xfb, 0xbc, 0x97, 0xdd, 0xb7, 0x81, 0xa7, 0xbc, 0x66, 0x8d, 0x06, 0x82, 0xf1, 0x60, 0xb5, + 0xf9, 0x14, 0xb7, 0x0f, 0x58, 0xc8, 0x06, 0x25, 0x35, 0xda, 0xc0, 0xcb, 0x21, 0x6d, 0x34, 0x9d, + 0x7a, 0x83, 0x4b, 0x8e, 0xb2, 0xdd, 0xc9, 0x4e, 0xfb, 0xe0, 0x44, 0xc9, 0x99, 0x51, 0x9f, 0xfb, + 0x5c, 0xe5, 0xe2, 0xd6, 0x95, 0x96, 0x65, 0x8e, 0xf9, 0x9c, 0xfb, 0x4b, 0x14, 0x93, 0x3a, 0xc3, + 0x24, 0x08, 0xb8, 0x24, 0x92, 0xf1, 0x40, 0x98, 0xa8, 0x65, 0xa2, 0xea, 0xe4, 0x86, 0x8f, 0xb0, + 0x17, 0x36, 0x54, 0x42, 0x14, 0xaf, 0x72, 0x51, 0xe3, 0x02, 0xbb, 0x44, 0x50, 0xbc, 0x92, 0x77, + 0xa9, 0x24, 0x79, 0x5c, 0xe5, 0x2c, 0x8a, 0x4f, 0x76, 0xc7, 0x15, 0x6d, 0x3b, 0xab, 0x4e, 0x7c, + 0x16, 0x74, 0x7b, 0x9d, 0x8e, 0xeb, 0x56, 0x5f, 0xe8, 0x6c, 0x7b, 0x02, 0x5a, 0x37, 0xb8, 0x17, + 0x2e, 0xd1, 0xbb, 0x7c, 0x81, 0x09, 0xd9, 0x60, 0x6e, 0x28, 0xe9, 0x3c, 0x67, 0x81, 0x28, 0xd3, + 0xe5, 0x90, 0x0a, 0x69, 0xbf, 0x04, 0x30, 0xbb, 0x63, 0x8a, 0xa8, 0xf3, 0x40, 0x50, 0x44, 0x60, + 0x7f, 0x8b, 0x56, 0x8c, 0x83, 0x89, 0x03, 0xb9, 0xa1, 0xc2, 0x51, 0x47, 0xf3, 0x3a, 0x2d, 0x5e, + 0xc7, 0x90, 0x3a, 0x2d, 0x49, 0x69, 0x6a, 0xed, 0x7b, 0x36, 0xf5, 0xe1, 0x47, 0x36, 0xe7, 0x33, + 0xf9, 0x38, 0x74, 0x9d, 0x2a, 0xaf, 0x61, 0xd3, 0x9c, 0xfe, 0x38, 0x23, 0xbc, 0x27, 0x58, 0x36, + 0xeb, 0x54, 0x38, 0xba, 0x86, 0x76, 0xb6, 0x8f, 0xc3, 0x43, 0x77, 0x14, 0x78, 0xa9, 0x79, 0x7d, + 0xc1, 0xb0, 0xa1, 0x61, 0x98, 0x66, 0xde, 0x38, 0x98, 0x00, 0xb9, 0xbe, 0x72, 0x9a, 0x79, 0xf6, + 0x22, 0x44, 0xdd, 0x49, 0x86, 0x6e, 0x16, 0x0e, 0xe8, 0x9e, 0x55, 0xe6, 0x50, 0xe1, 0xa4, 0x13, + 0xf3, 0x1b, 0x3b, 0xda, 0xa4, 0x6c, 0x64, 0xf6, 0x3d, 0x38, 0xac, 0xbf, 0x89, 0x86, 0x82, 0xae, + 0x42, 0xd8, 0x19, 0xbc, 0xb1, 0x3d, 0xd1, 0xd3, 0xb5, 0xbe, 0xa7, 0xa2, 0xde, 0x6f, 0x11, 0x9f, + 0x1a, 0x6d, 0xb9, 0x4b, 0x69, 0xbf, 0x01, 0x70, 0xa4, 0x6d, 0x6d, 0x70, 0xe7, 0x60, 0x9f, 0x47, + 0x24, 0x31, 0xb3, 0x4c, 0x0a, 0x5b, 0xea, 0x6b, 0x4d, 0xb6, 0xac, 0xa4, 0xe8, 0x5a, 0x0f, 0x5e, + 0xda, 0x74, 0x1d, 0x87, 0xa7, 0xeb, 0xf7, 0xf0, 0x3d, 0x80, 0xa3, 0x73, 0x55, 0xc9, 0x56, 0xe8, + 0x1e, 0xf5, 0xff, 0x0e, 0xc0, 0xc3, 0x5b, 0x0a, 0xec, 0xc3, 0x29, 0x3c, 0x84, 0x47, 0x16, 0xeb, + 0x55, 0x5e, 0x63, 0x81, 0xbf, 0x47, 0x73, 0x78, 0x0f, 0xe0, 0xd8, 0x5f, 0x25, 0xf6, 0xdf, 0x24, + 0x0a, 0x9f, 0x07, 0x61, 0xff, 0xed, 0x56, 0x2a, 0xfa, 0x05, 0xe0, 0xd8, 0x0e, 0x6b, 0x01, 0xcd, + 0xc6, 0x32, 0xfe, 0x7b, 0xe7, 0x64, 0xae, 0xfc, 0xbf, 0x81, 0x86, 0xb6, 0xe7, 0x5f, 0x7c, 0xfd, + 0xfd, 0x3a, 0x7d, 0x19, 0x5d, 0xc2, 0x71, 0xeb, 0xb0, 0xa6, 0x9c, 0x2a, 0x92, 0x57, 0xbc, 0xb6, + 0x57, 0x45, 0xed, 0x1c, 0xf4, 0x11, 0x40, 0xd8, 0xd9, 0x27, 0xa8, 0x90, 0x74, 0xf4, 0x9d, 0x0d, + 0x95, 0x29, 0xee, 0x4a, 0x63, 0xe0, 0x2f, 0x2a, 0xf8, 0xb3, 0xa8, 0x80, 0x93, 0xed, 0xf2, 0x8a, + 0xdb, 0xac, 0x30, 0x0f, 0x3f, 0x63, 0xde, 0x73, 0xf4, 0x16, 0xc0, 0x41, 0x73, 0x07, 0x21, 0x9c, + 0xb0, 0x78, 0x7b, 0xee, 0x53, 0xc9, 0x05, 0x06, 0x75, 0x4a, 0xa1, 0x4e, 0xa2, 0x5c, 0x42, 0x54, + 0x81, 0x3e, 0x01, 0x78, 0xb0, 0xe7, 0x91, 0x47, 0xd3, 0xb1, 0x55, 0xb7, 0xdb, 0x41, 0x99, 0x73, + 0xbb, 0x95, 0x19, 0xe4, 0x19, 0x85, 0x9c, 0x47, 0x38, 0x16, 0x99, 0x28, 0x7d, 0x25, 0x22, 0xff, + 0x02, 0xe0, 0xc8, 0x96, 0x87, 0x14, 0xcd, 0xc4, 0x42, 0x6c, 0xbf, 0x39, 0x32, 0xe7, 0x77, 0x2f, + 0x34, 0xfc, 0x17, 0x14, 0x7f, 0x11, 0xe5, 0x63, 0xf9, 0x43, 0xe3, 0x10, 0x75, 0x50, 0xba, 0xb9, + 0xb6, 0x61, 0x81, 0xf5, 0x0d, 0x0b, 0xfc, 0xdc, 0xb0, 0xc0, 0xab, 0x4d, 0x2b, 0xb5, 0xbe, 0x69, + 0xa5, 0xbe, 0x6d, 0x5a, 0xa9, 0xfb, 0xd3, 0x5d, 0xef, 0xe3, 0x1d, 0x6c, 0x57, 0x8a, 0x78, 0xb5, + 0xe3, 0xad, 0x5e, 0xd1, 0xee, 0x80, 0xfa, 0x17, 0x51, 0xfc, 0x13, 0x00, 0x00, 0xff, 0xff, 0xba, + 0x18, 0x51, 0x5c, 0x63, 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -795,7 +797,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "dymension/streamer/query.proto", + Metadata: "dymensionxyz/dymension/streamer/query.proto", } func (m *ModuleToDistributeCoinsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/streamer/types/query.pb.gw.go b/x/streamer/types/query.pb.gw.go index 3072d3746..ebba04374 100644 --- a/x/streamer/types/query.pb.gw.go +++ b/x/streamer/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: dymension/streamer/query.proto +// source: dymensionxyz/dymension/streamer/query.proto /* Package types is a reverse proxy. diff --git a/x/streamer/types/stream.pb.go b/x/streamer/types/stream.pb.go index a882c3d4a..35b8d6ddf 100644 --- a/x/streamer/types/stream.pb.go +++ b/x/streamer/types/stream.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: dymension/streamer/stream.proto +// source: dymensionxyz/dymension/streamer/stream.proto package types @@ -7,10 +7,11 @@ import ( fmt "fmt" github_com_cosmos_cosmos_sdk_types "github.com/cosmos/cosmos-sdk/types" types "github.com/cosmos/cosmos-sdk/types" - _ "github.com/gogo/protobuf/gogoproto" - proto "github.com/gogo/protobuf/proto" - _ "github.com/gogo/protobuf/types" - github_com_gogo_protobuf_types "github.com/gogo/protobuf/types" + _ "github.com/cosmos/gogoproto/gogoproto" + proto "github.com/cosmos/gogoproto/proto" + github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" + _ "google.golang.org/protobuf/types/known/durationpb" + _ "google.golang.org/protobuf/types/known/timestamppb" io "io" math "math" math_bits "math/bits" @@ -59,7 +60,7 @@ func (m *Stream) Reset() { *m = Stream{} } func (m *Stream) String() string { return proto.CompactTextString(m) } func (*Stream) ProtoMessage() {} func (*Stream) Descriptor() ([]byte, []int) { - return fileDescriptor_409f823846b6b198, []int{0} + return fileDescriptor_19586ad841c00cd9, []int{0} } func (m *Stream) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -148,42 +149,44 @@ func init() { proto.RegisterType((*Stream)(nil), "dymensionxyz.dymension.streamer.Stream") } -func init() { proto.RegisterFile("dymension/streamer/stream.proto", fileDescriptor_409f823846b6b198) } +func init() { + proto.RegisterFile("dymensionxyz/dymension/streamer/stream.proto", fileDescriptor_19586ad841c00cd9) +} -var fileDescriptor_409f823846b6b198 = []byte{ - // 499 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x52, 0x41, 0x6f, 0xd3, 0x30, - 0x14, 0x6e, 0xba, 0xae, 0x30, 0x6f, 0x43, 0x34, 0xaa, 0x50, 0xa8, 0xb4, 0xa4, 0x74, 0x97, 0x08, - 0x09, 0x9b, 0x6d, 0xe2, 0xc2, 0xb1, 0xc0, 0x61, 0xa7, 0xa2, 0x30, 0x09, 0xc4, 0x25, 0x72, 0x6a, - 0x27, 0xb3, 0x68, 0xe2, 0x28, 0x76, 0xaa, 0x96, 0x5f, 0xb1, 0xdf, 0xc1, 0x2f, 0xd9, 0x8d, 0x1d, - 0x39, 0x75, 0xa8, 0xfd, 0x07, 0xfb, 0x05, 0xc8, 0x76, 0xb2, 0x54, 0x68, 0x12, 0x17, 0x4e, 0xf6, - 0x7b, 0xef, 0xfb, 0xbe, 0xf7, 0xde, 0x67, 0x03, 0x8f, 0x2c, 0x53, 0x9a, 0x09, 0xc6, 0x33, 0x24, - 0x64, 0x41, 0x71, 0x4a, 0x8b, 0xea, 0x02, 0xf3, 0x82, 0x4b, 0x6e, 0x37, 0x80, 0xc5, 0xf2, 0x3b, - 0xbc, 0x0f, 0x60, 0x8d, 0x1e, 0xf4, 0x13, 0x9e, 0x70, 0x8d, 0x45, 0xea, 0x66, 0x68, 0x03, 0x37, - 0xe1, 0x3c, 0x99, 0x51, 0xa4, 0xa3, 0xa8, 0x8c, 0x11, 0x29, 0x0b, 0x2c, 0x15, 0xd1, 0xd4, 0xbd, - 0xbf, 0xeb, 0x92, 0xa5, 0x54, 0x48, 0x9c, 0xe6, 0xb5, 0xc0, 0x94, 0x8b, 0x94, 0x0b, 0x14, 0x61, - 0x41, 0xd1, 0xfc, 0x24, 0xa2, 0x12, 0x9f, 0xa0, 0x29, 0x67, 0xb5, 0xc0, 0xf1, 0x03, 0x83, 0x13, - 0x26, 0x64, 0x11, 0xb2, 0x2c, 0xae, 0xa6, 0x18, 0xfd, 0xec, 0x80, 0xee, 0x27, 0x5d, 0xb5, 0x9f, - 0x80, 0x36, 0x23, 0x8e, 0x35, 0xb4, 0xfc, 0x4e, 0xd0, 0x66, 0xc4, 0x9e, 0x80, 0x43, 0x0d, 0x67, - 0x51, 0x29, 0x69, 0x28, 0xb9, 0xd3, 0x1e, 0x5a, 0xfe, 0xfe, 0xe9, 0x4b, 0xf8, 0x8f, 0x7d, 0xe1, - 0x7b, 0xc5, 0x3a, 0xcf, 0x62, 0x1e, 0x1c, 0x34, 0x02, 0x17, 0xdc, 0xc6, 0x60, 0x57, 0x8d, 0x27, - 0x9c, 0x9d, 0xe1, 0x8e, 0xbf, 0x7f, 0xfa, 0x1c, 0x9a, 0x05, 0xa0, 0x5a, 0x00, 0x56, 0x0b, 0xc0, - 0x77, 0x9c, 0x65, 0xe3, 0xd7, 0xd7, 0x2b, 0xaf, 0xf5, 0xe3, 0xd6, 0xf3, 0x13, 0x26, 0x2f, 0xcb, - 0x08, 0x4e, 0x79, 0x8a, 0xaa, 0x6d, 0xcd, 0xf1, 0x4a, 0x90, 0x6f, 0x48, 0x2e, 0x73, 0x2a, 0x34, - 0x41, 0x04, 0x46, 0xd9, 0xfe, 0x02, 0x80, 0x90, 0xb8, 0x90, 0xa1, 0x32, 0xcb, 0xe9, 0xe8, 0x81, - 0x07, 0xd0, 0x38, 0x09, 0x6b, 0x27, 0xe1, 0x45, 0xed, 0xe4, 0xf8, 0x48, 0x35, 0xba, 0x5b, 0x79, - 0xbd, 0x25, 0x4e, 0x67, 0x6f, 0x47, 0x0d, 0x77, 0x74, 0x75, 0xeb, 0x59, 0xc1, 0x9e, 0x4e, 0x28, - 0xb8, 0xfd, 0x19, 0x3c, 0x33, 0xe6, 0xd1, 0x9c, 0x4f, 0x2f, 0x43, 0x46, 0x68, 0x26, 0x59, 0xcc, - 0x68, 0xe1, 0xec, 0x0e, 0x2d, 0x7f, 0x6f, 0xfc, 0xe2, 0x6e, 0xe5, 0x1d, 0x19, 0x95, 0x87, 0x71, - 0xa3, 0xa0, 0xaf, 0x0b, 0x1f, 0x54, 0xfe, 0xfc, 0x3e, 0x6d, 0x23, 0xd0, 0xcf, 0xca, 0xd4, 0xc0, - 0x45, 0x98, 0x63, 0x46, 0x42, 0x3e, 0xa7, 0x85, 0xd3, 0xd5, 0x0f, 0xd1, 0xcb, 0xca, 0x54, 0x33, - 0xc4, 0x47, 0xcc, 0xc8, 0x64, 0x4e, 0x0b, 0xfb, 0x18, 0x1c, 0xc6, 0x6c, 0x36, 0xa3, 0xa4, 0xe2, - 0x38, 0x8f, 0x34, 0xf2, 0xc0, 0x24, 0x0d, 0xd8, 0x5e, 0x80, 0x5e, 0xe3, 0x3d, 0x09, 0x8d, 0xef, - 0x8f, 0xff, 0xbf, 0xef, 0x4f, 0xb7, 0xba, 0xe8, 0xcc, 0x78, 0x72, 0xbd, 0x76, 0xad, 0x9b, 0xb5, - 0x6b, 0xfd, 0x5e, 0xbb, 0xd6, 0xd5, 0xc6, 0x6d, 0xdd, 0x6c, 0xdc, 0xd6, 0xaf, 0x8d, 0xdb, 0xfa, - 0xfa, 0x66, 0x4b, 0x75, 0xfb, 0x0f, 0x35, 0x01, 0x9a, 0x9f, 0xa1, 0x45, 0xf3, 0x5b, 0x75, 0xa3, - 0xa8, 0xab, 0xdf, 0xed, 0xec, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x24, 0x8b, 0x4f, 0x74, 0x89, - 0x03, 0x00, 0x00, +var fileDescriptor_19586ad841c00cd9 = []byte{ + // 501 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x52, 0xcf, 0x6e, 0xd3, 0x30, + 0x1c, 0x6e, 0xba, 0xae, 0x30, 0x6f, 0x43, 0x34, 0xaa, 0x50, 0xa8, 0xb4, 0xa4, 0x94, 0x4b, 0x84, + 0xc0, 0xde, 0x1f, 0x71, 0xe1, 0x58, 0xe0, 0xb0, 0x53, 0x51, 0x98, 0x04, 0xe2, 0x12, 0x39, 0xb5, + 0x93, 0x59, 0x34, 0x71, 0x14, 0x3b, 0x55, 0xcb, 0x53, 0xec, 0x39, 0x78, 0x92, 0xdd, 0xd8, 0x91, + 0x53, 0x87, 0xda, 0x37, 0xd8, 0x13, 0x20, 0xdb, 0x49, 0x5b, 0x21, 0xd0, 0x2e, 0x9c, 0x12, 0xff, + 0x7e, 0xdf, 0xf7, 0xfd, 0x7e, 0xdf, 0x67, 0x83, 0x97, 0x64, 0x9e, 0xd2, 0x4c, 0x30, 0x9e, 0xcd, + 0xe6, 0xdf, 0xd0, 0xfa, 0x80, 0x84, 0x2c, 0x28, 0x4e, 0x69, 0x51, 0xfd, 0xc0, 0xbc, 0xe0, 0x92, + 0xdb, 0xde, 0x36, 0x1a, 0xae, 0x0f, 0xb0, 0x46, 0xf7, 0xba, 0x09, 0x4f, 0xb8, 0xc6, 0x22, 0xf5, + 0x67, 0x68, 0x3d, 0x37, 0xe1, 0x3c, 0x99, 0x50, 0xa4, 0x4f, 0x51, 0x19, 0x23, 0x52, 0x16, 0x58, + 0x2a, 0xa2, 0xe9, 0x7b, 0x7f, 0xf6, 0x25, 0x4b, 0xa9, 0x90, 0x38, 0xcd, 0x6b, 0x81, 0x31, 0x17, + 0x29, 0x17, 0x28, 0xc2, 0x82, 0xa2, 0xe9, 0x49, 0x44, 0x25, 0x3e, 0x41, 0x63, 0xce, 0x6a, 0x81, + 0xe3, 0xfb, 0x5c, 0x10, 0x26, 0x64, 0x11, 0xb2, 0x2c, 0xae, 0x56, 0x1a, 0xfc, 0x68, 0x81, 0xf6, + 0x47, 0xdd, 0xb5, 0x1f, 0x81, 0x26, 0x23, 0x8e, 0xd5, 0xb7, 0xfc, 0x56, 0xd0, 0x64, 0xc4, 0x1e, + 0x81, 0x43, 0x0d, 0x67, 0x51, 0x29, 0x69, 0x28, 0xb9, 0xd3, 0xec, 0x5b, 0xfe, 0xfe, 0xe9, 0x0b, + 0x78, 0x8f, 0x79, 0xf8, 0x4e, 0xb1, 0xce, 0xb3, 0x98, 0x07, 0x07, 0x1b, 0x81, 0x0b, 0x6e, 0x63, + 0xb0, 0xab, 0x76, 0x15, 0xce, 0x4e, 0x7f, 0xc7, 0xdf, 0x3f, 0x7d, 0x0a, 0x8d, 0x1b, 0xa8, 0xdc, + 0xc0, 0xca, 0x0d, 0x7c, 0xcb, 0x59, 0x36, 0x3c, 0xbe, 0x5e, 0x78, 0x8d, 0xef, 0xb7, 0x9e, 0x9f, + 0x30, 0x79, 0x59, 0x46, 0x70, 0xcc, 0x53, 0x54, 0x59, 0x37, 0x9f, 0x57, 0x82, 0x7c, 0x45, 0x72, + 0x9e, 0x53, 0xa1, 0x09, 0x22, 0x30, 0xca, 0xf6, 0x67, 0x00, 0x84, 0xc4, 0x85, 0x0c, 0x55, 0x72, + 0x4e, 0x4b, 0x2f, 0xdc, 0x83, 0x26, 0x56, 0x58, 0xc7, 0x0a, 0x2f, 0xea, 0x58, 0x87, 0x47, 0x6a, + 0xd0, 0xdd, 0xc2, 0xeb, 0xcc, 0x71, 0x3a, 0x79, 0x33, 0xd8, 0x70, 0x07, 0x57, 0xb7, 0x9e, 0x15, + 0xec, 0xe9, 0x82, 0x82, 0xdb, 0x9f, 0xc0, 0x13, 0x13, 0x1e, 0xcd, 0xf9, 0xf8, 0x32, 0x64, 0x84, + 0x66, 0x92, 0xc5, 0x8c, 0x16, 0xce, 0x6e, 0xdf, 0xf2, 0xf7, 0x86, 0xcf, 0xee, 0x16, 0xde, 0x91, + 0x51, 0xf9, 0x3b, 0x6e, 0x10, 0x74, 0x75, 0xe3, 0xbd, 0xaa, 0x9f, 0xaf, 0xcb, 0x36, 0x02, 0xdd, + 0xac, 0x4c, 0x0d, 0x5c, 0x84, 0x39, 0x66, 0x24, 0xe4, 0x53, 0x5a, 0x38, 0x6d, 0x7d, 0x11, 0x9d, + 0xac, 0x4c, 0x35, 0x43, 0x7c, 0xc0, 0x8c, 0x8c, 0xa6, 0xb4, 0xb0, 0x9f, 0x83, 0xc3, 0x98, 0x4d, + 0x26, 0x94, 0x54, 0x1c, 0xe7, 0x81, 0x46, 0x1e, 0x98, 0xa2, 0x01, 0xdb, 0x33, 0xd0, 0xd9, 0x64, + 0x4f, 0x42, 0x93, 0xfb, 0xc3, 0xff, 0x9f, 0xfb, 0xe3, 0xad, 0x29, 0xba, 0x32, 0x1c, 0x5d, 0x2f, + 0x5d, 0xeb, 0x66, 0xe9, 0x5a, 0xbf, 0x96, 0xae, 0x75, 0xb5, 0x72, 0x1b, 0x37, 0x2b, 0xb7, 0xf1, + 0x73, 0xe5, 0x36, 0xbe, 0xbc, 0xde, 0x52, 0xfd, 0xc7, 0x43, 0x9d, 0x9e, 0xa1, 0xd9, 0xe6, 0xb5, + 0xea, 0x41, 0x51, 0x5b, 0xdf, 0xdb, 0xd9, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8d, 0xe9, 0x2b, + 0xb1, 0xa3, 0x03, 0x00, 0x00, } func (m *Stream) Marshal() (dAtA []byte, err error) { @@ -237,7 +240,7 @@ func (m *Stream) MarshalToSizedBuffer(dAtA []byte) (int, error) { i-- dAtA[i] = 0x2a } - n1, err1 := github_com_gogo_protobuf_types.StdTimeMarshalTo(m.StartTime, dAtA[i-github_com_gogo_protobuf_types.SizeOfStdTime(m.StartTime):]) + n1, err1 := github_com_cosmos_gogoproto_types.StdTimeMarshalTo(m.StartTime, dAtA[i-github_com_cosmos_gogoproto_types.SizeOfStdTime(m.StartTime):]) if err1 != nil { return 0, err1 } @@ -309,7 +312,7 @@ func (m *Stream) Size() (n int) { n += 1 + l + sovStream(uint64(l)) } } - l = github_com_gogo_protobuf_types.SizeOfStdTime(m.StartTime) + l = github_com_cosmos_gogoproto_types.SizeOfStdTime(m.StartTime) n += 1 + l + sovStream(uint64(l)) l = len(m.DistrEpochIdentifier) if l > 0 { @@ -483,7 +486,7 @@ func (m *Stream) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - if err := github_com_gogo_protobuf_types.StdTimeUnmarshal(&m.StartTime, dAtA[iNdEx:postIndex]); err != nil { + if err := github_com_cosmos_gogoproto_types.StdTimeUnmarshal(&m.StartTime, dAtA[iNdEx:postIndex]); err != nil { return err } iNdEx = postIndex diff --git a/x/vfc/hooks/hooks_test.go b/x/vfc/hooks/hooks_test.go index 9a658f871..bd8450b3e 100644 --- a/x/vfc/hooks/hooks_test.go +++ b/x/vfc/hooks/hooks_test.go @@ -3,9 +3,9 @@ package hooks_test import ( "testing" + cometbftproto "github.com/cometbft/cometbft/proto/tendermint/types" "github.com/dymensionxyz/dymension/v3/app/apptesting" "github.com/stretchr/testify/suite" - tmproto "github.com/tendermint/tendermint/proto/tendermint/types" ) type HooksTestSuite struct { @@ -18,7 +18,7 @@ func TestHooksTestSuite(t *testing.T) { func (suite *HooksTestSuite) SetupTest() { app := apptesting.Setup(suite.T(), false) - ctx := app.GetBaseApp().NewContext(false, tmproto.Header{}) + ctx := app.GetBaseApp().NewContext(false, cometbftproto.Header{}) suite.App = app suite.Ctx = ctx