diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fe2a25b00..26734202ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ * [#1872](https://github.com/crypto-org-chain/cronos/pull/1872) Support 4byteTracer for tracer * [#1875](https://github.com/crypto-org-chain/cronos/pull/1875) Support for preinstalls * [#1882](https://github.com/crypto-org-chain/cronos/pull/1882) Support for eip2935 +* [#1880](https://github.com/crypto-org-chain/cronos/pull/1880) Move module from v2 to v1 to follow semver convention * [#1888](https://github.com/crypto-org-chain/cronos/pull/1888) Patch comet bft (GHSA-hrhf-2vcr-ghch) *Sep 4, 2025* diff --git a/Makefile b/Makefile index 57149dd7ef..b81cea4520 100644 --- a/Makefile +++ b/Makefile @@ -166,7 +166,7 @@ release-dry-run: ### Sim Test ### ############################################################################### -SIMAPP = github.com/crypto-org-chain/cronos/v2/app +SIMAPP = github.com/crypto-org-chain/cronos/app # Install the runsim binary with a temporary workaround of entering an outside # directory as the "go get" command ignores the -mod option and will polute the diff --git a/app/app.go b/app/app.go index 0411c22c3f..0e59acaf18 100644 --- a/app/app.go +++ b/app/app.go @@ -41,21 +41,21 @@ import ( ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" ibckeeper "github.com/cosmos/ibc-go/v10/modules/core/keeper" ibctm "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint" + "github.com/crypto-org-chain/cronos/client/docs" memiavlstore "github.com/crypto-org-chain/cronos/store" - "github.com/crypto-org-chain/cronos/v2/client/docs" - "github.com/crypto-org-chain/cronos/v2/x/cronos" - cronosclient "github.com/crypto-org-chain/cronos/v2/x/cronos/client" - cronoskeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - evmhandlers "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper/evmhandlers" - cronosprecompiles "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper/precompiles" - "github.com/crypto-org-chain/cronos/v2/x/cronos/middleware" + "github.com/crypto-org-chain/cronos/x/cronos" + cronosclient "github.com/crypto-org-chain/cronos/x/cronos/client" + cronoskeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper" + evmhandlers "github.com/crypto-org-chain/cronos/x/cronos/keeper/evmhandlers" + cronosprecompiles "github.com/crypto-org-chain/cronos/x/cronos/keeper/precompiles" + "github.com/crypto-org-chain/cronos/x/cronos/middleware" // force register the extension json-rpc. - _ "github.com/crypto-org-chain/cronos/v2/x/cronos/rpc" - cronostypes "github.com/crypto-org-chain/cronos/v2/x/cronos/types" - e2ee "github.com/crypto-org-chain/cronos/v2/x/e2ee" - e2eekeeper "github.com/crypto-org-chain/cronos/v2/x/e2ee/keeper" - e2eekeyring "github.com/crypto-org-chain/cronos/v2/x/e2ee/keyring" - e2eetypes "github.com/crypto-org-chain/cronos/v2/x/e2ee/types" + _ "github.com/crypto-org-chain/cronos/x/cronos/rpc" + cronostypes "github.com/crypto-org-chain/cronos/x/cronos/types" + e2ee "github.com/crypto-org-chain/cronos/x/e2ee" + e2eekeeper "github.com/crypto-org-chain/cronos/x/e2ee/keeper" + e2eekeyring "github.com/crypto-org-chain/cronos/x/e2ee/keyring" + e2eetypes "github.com/crypto-org-chain/cronos/x/e2ee/types" "github.com/ethereum/go-ethereum/common" // Force-load the tracer engines to trigger registration "github.com/ethereum/go-ethereum/core/vm" diff --git a/app/bench_test.go b/app/bench_test.go index eb4e292af8..41dfc5617a 100644 --- a/app/bench_test.go +++ b/app/bench_test.go @@ -15,7 +15,7 @@ import ( tmtypes "github.com/cometbft/cometbft/types" dbm "github.com/cosmos/cosmos-db" memiavlstore "github.com/crypto-org-chain/cronos/store" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" "github.com/evmos/ethermint/crypto/ethsecp256k1" diff --git a/app/block_address.go b/app/block_address.go index 1ba649d91d..cb4d1f6d35 100644 --- a/app/block_address.go +++ b/app/block_address.go @@ -3,7 +3,7 @@ package app import ( "fmt" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "cosmossdk.io/errors" diff --git a/app/legacy.go b/app/legacy.go index 1f4daffffd..61c88d5a25 100644 --- a/app/legacy.go +++ b/app/legacy.go @@ -1,7 +1,7 @@ package app import ( - icaauthtypes "github.com/crypto-org-chain/cronos/v2/app/legacy/icaauth/types" + icaauthtypes "github.com/crypto-org-chain/cronos/app/legacy/icaauth/types" "github.com/cosmos/cosmos-sdk/codec" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" diff --git a/app/prefix.go b/app/prefix.go index 38b63844ba..a0c38a98b4 100644 --- a/app/prefix.go +++ b/app/prefix.go @@ -1,7 +1,7 @@ package app import ( - cmdcfg "github.com/crypto-org-chain/cronos/v2/cmd/cronosd/config" + cmdcfg "github.com/crypto-org-chain/cronos/cmd/cronosd/config" ethcfg "github.com/evmos/ethermint/cmd/config" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/app/sim_test.go b/app/sim_test.go index 5b1b4db5e0..296f800377 100644 --- a/app/sim_test.go +++ b/app/sim_test.go @@ -14,7 +14,7 @@ import ( dbm "github.com/cosmos/cosmos-db" ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" - cronosmoduletypes "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronosmoduletypes "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/evmos/ethermint/ante/cache" evmante "github.com/evmos/ethermint/evmd/ante" evmtypes "github.com/evmos/ethermint/x/evm/types" diff --git a/app/test_helpers.go b/app/test_helpers.go index 7686bc85f5..45c02606a9 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -15,7 +15,7 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" tmtypes "github.com/cometbft/cometbft/types" dbm "github.com/cosmos/cosmos-db" - cronostypes "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronostypes "github.com/crypto-org-chain/cronos/x/cronos/types" app "github.com/evmos/ethermint/evmd" "github.com/stretchr/testify/require" diff --git a/cmd/cronosd/cmd/root.go b/cmd/cronosd/cmd/root.go index 2bcba80787..24f487a206 100644 --- a/cmd/cronosd/cmd/root.go +++ b/cmd/cronosd/cmd/root.go @@ -10,11 +10,11 @@ import ( cmtcli "github.com/cometbft/cometbft/libs/cli" dbm "github.com/cosmos/cosmos-db" rosettaCmd "github.com/cosmos/rosetta/cmd" + "github.com/crypto-org-chain/cronos/app" + "github.com/crypto-org-chain/cronos/cmd/cronosd/opendb" memiavlcfg "github.com/crypto-org-chain/cronos/store/config" - "github.com/crypto-org-chain/cronos/v2/app" - "github.com/crypto-org-chain/cronos/v2/cmd/cronosd/opendb" - "github.com/crypto-org-chain/cronos/v2/x/cronos" - e2eecli "github.com/crypto-org-chain/cronos/v2/x/e2ee/client/cli" + "github.com/crypto-org-chain/cronos/x/cronos" + e2eecli "github.com/crypto-org-chain/cronos/x/e2ee/client/cli" ethermintclient "github.com/evmos/ethermint/client" "github.com/evmos/ethermint/crypto/hd" ethermintserver "github.com/evmos/ethermint/server" diff --git a/cmd/cronosd/cmd/versiondb.go b/cmd/cronosd/cmd/versiondb.go index 490e1be566..ecc5e13ba1 100644 --- a/cmd/cronosd/cmd/versiondb.go +++ b/cmd/cronosd/cmd/versiondb.go @@ -6,8 +6,8 @@ package cmd import ( "sort" - "github.com/crypto-org-chain/cronos/v2/app" - "github.com/crypto-org-chain/cronos/v2/cmd/cronosd/opendb" + "github.com/crypto-org-chain/cronos/app" + "github.com/crypto-org-chain/cronos/cmd/cronosd/opendb" versiondbclient "github.com/crypto-org-chain/cronos/versiondb/client" "github.com/linxGnu/grocksdb" "github.com/spf13/cobra" diff --git a/cmd/cronosd/main.go b/cmd/cronosd/main.go index 073413e4e9..a4d041de1c 100644 --- a/cmd/cronosd/main.go +++ b/cmd/cronosd/main.go @@ -3,8 +3,8 @@ package main import ( "os" - "github.com/crypto-org-chain/cronos/v2/app" - "github.com/crypto-org-chain/cronos/v2/cmd/cronosd/cmd" + "github.com/crypto-org-chain/cronos/app" + "github.com/crypto-org-chain/cronos/cmd/cronosd/cmd" svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" ) diff --git a/go.mod b/go.mod index 7209406c50..2df636a510 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/crypto-org-chain/cronos/v2 +module github.com/crypto-org-chain/cronos go 1.23.12 diff --git a/proto/cronos/cronos.proto b/proto/cronos/cronos.proto index 06172ad52b..eea74fb137 100644 --- a/proto/cronos/cronos.proto +++ b/proto/cronos/cronos.proto @@ -3,7 +3,7 @@ package cronos; import "gogoproto/gogo.proto"; -option go_package = "github.com/crypto-org-chain/cronos/v2/x/cronos/types"; +option go_package = "github.com/crypto-org-chain/cronos/x/cronos/types"; // Params defines the parameters for the cronos module. message Params { diff --git a/proto/cronos/genesis.proto b/proto/cronos/genesis.proto index 23ce449af0..df17d1d05c 100644 --- a/proto/cronos/genesis.proto +++ b/proto/cronos/genesis.proto @@ -6,7 +6,7 @@ import "cronos/cronos.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "github.com/crypto-org-chain/cronos/v2/x/cronos/types"; +option go_package = "github.com/crypto-org-chain/cronos/x/cronos/types"; // GenesisState defines the cronos module's genesis state. message GenesisState { diff --git a/proto/cronos/query.proto b/proto/cronos/query.proto index 24bcc69ed0..fa2c147589 100644 --- a/proto/cronos/query.proto +++ b/proto/cronos/query.proto @@ -8,7 +8,7 @@ import "ethermint/evm/v1/tx.proto"; import "cronos/cronos.proto"; // this line is used by starport scaffolding # 1 -option go_package = "github.com/crypto-org-chain/cronos/v2/x/cronos/types"; +option go_package = "github.com/crypto-org-chain/cronos/x/cronos/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/cronos/tx.proto b/proto/cronos/tx.proto index 3a58fe29aa..ba2a37858d 100644 --- a/proto/cronos/tx.proto +++ b/proto/cronos/tx.proto @@ -8,7 +8,7 @@ import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "cronos/cronos.proto"; -option go_package = "github.com/crypto-org-chain/cronos/v2/x/cronos/types"; +option go_package = "github.com/crypto-org-chain/cronos/x/cronos/types"; // Msg defines the Cronos Msg service service Msg { diff --git a/proto/e2ee/genesis.proto b/proto/e2ee/genesis.proto index b0922de7cf..501f6c6652 100644 --- a/proto/e2ee/genesis.proto +++ b/proto/e2ee/genesis.proto @@ -3,7 +3,7 @@ package e2ee; import "gogoproto/gogo.proto"; -option go_package = "github.com/crypto-org-chain/cronos/v2/x/e2ee/types"; +option go_package = "github.com/crypto-org-chain/cronos/x/e2ee/types"; // EncryptionKeyEntry is a type that contains the owner and the public key. message EncryptionKeyEntry { diff --git a/proto/e2ee/query.proto b/proto/e2ee/query.proto index b9d28693dd..5d71413564 100644 --- a/proto/e2ee/query.proto +++ b/proto/e2ee/query.proto @@ -3,7 +3,7 @@ package e2ee; import "google/api/annotations.proto"; -option go_package = "github.com/crypto-org-chain/cronos/v2/x/e2ee/types"; +option go_package = "github.com/crypto-org-chain/cronos/x/e2ee/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/e2ee/tx.proto b/proto/e2ee/tx.proto index 667d4054cd..8082da84db 100644 --- a/proto/e2ee/tx.proto +++ b/proto/e2ee/tx.proto @@ -3,7 +3,7 @@ package e2ee; import "cosmos/msg/v1/msg.proto"; -option go_package = "github.com/crypto-org-chain/cronos/v2/x/e2ee/types"; +option go_package = "github.com/crypto-org-chain/cronos/x/e2ee/types"; // Msg defines the e2ee Msg service service Msg { diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 2513792c72..94d9bf198f 100755 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -16,7 +16,7 @@ done cd .. # move proto files to the right places -cp -r github.com/crypto-org-chain/cronos/v2/* ./ +cp -r github.com/crypto-org-chain/cronos/* ./ cp -r github.com/crypto-org-chain/cronos/memiavl/* ./memiavl/ rm -rf github.com diff --git a/testutil/simapp/simapp.go b/testutil/simapp/simapp.go index b47feda141..af7d80d817 100644 --- a/testutil/simapp/simapp.go +++ b/testutil/simapp/simapp.go @@ -7,7 +7,7 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" tmtypes "github.com/cometbft/cometbft/types" tmdb "github.com/cosmos/cosmos-db" - "github.com/crypto-org-chain/cronos/v2/app" + "github.com/crypto-org-chain/cronos/app" "cosmossdk.io/log" diff --git a/x/cronos/client/cli/query.go b/x/cronos/client/cli/query.go index 996a3e0258..79712a7943 100644 --- a/x/cronos/client/cli/query.go +++ b/x/cronos/client/cli/query.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" rpctypes "github.com/evmos/ethermint/rpc/types" "github.com/spf13/cobra" diff --git a/x/cronos/client/cli/tx.go b/x/cronos/client/cli/tx.go index dd0edbc97e..8848309e8c 100644 --- a/x/cronos/client/cli/tx.go +++ b/x/cronos/client/cli/tx.go @@ -10,7 +10,7 @@ import ( icagenesistypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/genesis/types" icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" evmtypes "github.com/evmos/ethermint/x/evm/types" feemarkettypes "github.com/evmos/ethermint/x/feemarket/types" diff --git a/x/cronos/client/proposal_handler.go b/x/cronos/client/proposal_handler.go index 49f55def10..f545ad29a4 100644 --- a/x/cronos/client/proposal_handler.go +++ b/x/cronos/client/proposal_handler.go @@ -1,7 +1,7 @@ package client import ( - "github.com/crypto-org-chain/cronos/v2/x/cronos/client/cli" + "github.com/crypto-org-chain/cronos/x/cronos/client/cli" govclient "github.com/cosmos/cosmos-sdk/x/gov/client" ) diff --git a/x/cronos/events/decoders.go b/x/cronos/events/decoders.go index 5f991eb789..21cbd0f5df 100644 --- a/x/cronos/events/decoders.go +++ b/x/cronos/events/decoders.go @@ -10,8 +10,8 @@ import ( "strings" transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" - "github.com/crypto-org-chain/cronos/v2/x/cronos/events/bindings/cosmos/lib" - generated "github.com/crypto-org-chain/cronos/v2/x/cronos/events/bindings/cosmos/precompile/relayer" + "github.com/crypto-org-chain/cronos/x/cronos/events/bindings/cosmos/lib" + generated "github.com/crypto-org-chain/cronos/x/cronos/events/bindings/cosmos/precompile/relayer" "github.com/ethereum/go-ethereum/common" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/cronos/events/events.go b/x/cronos/events/events.go index 2f4c423e7c..fca410d581 100644 --- a/x/cronos/events/events.go +++ b/x/cronos/events/events.go @@ -3,9 +3,9 @@ package events import ( transfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" - ica "github.com/crypto-org-chain/cronos/v2/x/cronos/events/bindings/cosmos/precompile/ica" - relayer "github.com/crypto-org-chain/cronos/v2/x/cronos/events/bindings/cosmos/precompile/relayer" - cronoseventstypes "github.com/crypto-org-chain/cronos/v2/x/cronos/events/types" + ica "github.com/crypto-org-chain/cronos/x/cronos/events/bindings/cosmos/precompile/ica" + relayer "github.com/crypto-org-chain/cronos/x/cronos/events/bindings/cosmos/precompile/relayer" + cronoseventstypes "github.com/crypto-org-chain/cronos/x/cronos/events/types" "github.com/ethereum/go-ethereum/accounts/abi" ethtypes "github.com/ethereum/go-ethereum/core/types" diff --git a/x/cronos/genesis.go b/x/cronos/genesis.go index 7c1cbc9d2a..efc491f74a 100644 --- a/x/cronos/genesis.go +++ b/x/cronos/genesis.go @@ -3,8 +3,8 @@ package cronos import ( "fmt" - "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/keeper" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/cronos/genesis_test.go b/x/cronos/genesis_test.go index 08c3ed0faa..e03f5266f7 100644 --- a/x/cronos/genesis_test.go +++ b/x/cronos/genesis_test.go @@ -1,8 +1,8 @@ package cronos_test import ( - "github.com/crypto-org-chain/cronos/v2/x/cronos" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos" + "github.com/crypto-org-chain/cronos/x/cronos/types" ) func (suite *CronosTestSuite) TestInitGenesis() { diff --git a/x/cronos/handler_test.go b/x/cronos/handler_test.go index 3ec5137f54..2c160fd5e2 100644 --- a/x/cronos/handler_test.go +++ b/x/cronos/handler_test.go @@ -6,9 +6,9 @@ import ( "time" tmproto "github.com/cometbft/cometbft/proto/tendermint/types" - "github.com/crypto-org-chain/cronos/v2/app" - "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/app" + "github.com/crypto-org-chain/cronos/x/cronos/keeper" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/evmos/ethermint/crypto/ethsecp256k1" "github.com/stretchr/testify/suite" diff --git a/x/cronos/keeper/evm.go b/x/cronos/keeper/evm.go index a2c408970c..4ba5e44425 100644 --- a/x/cronos/keeper/evm.go +++ b/x/cronos/keeper/evm.go @@ -4,7 +4,7 @@ import ( "fmt" "math/big" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/core/vm" diff --git a/x/cronos/keeper/evm_hooks.go b/x/cronos/keeper/evm_hooks.go index 5f016d8b95..a2f97c8b64 100644 --- a/x/cronos/keeper/evm_hooks.go +++ b/x/cronos/keeper/evm_hooks.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" ethtypes "github.com/ethereum/go-ethereum/core/types" diff --git a/x/cronos/keeper/evm_hooks_test.go b/x/cronos/keeper/evm_hooks_test.go index 58d938a07a..d0d898fe60 100644 --- a/x/cronos/keeper/evm_hooks_test.go +++ b/x/cronos/keeper/evm_hooks_test.go @@ -4,10 +4,10 @@ import ( "fmt" "math/big" - cronosmodulekeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - handlers "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper/evmhandlers" - keepertest "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper/mock" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronosmodulekeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper" + handlers "github.com/crypto-org-chain/cronos/x/cronos/keeper/evmhandlers" + keepertest "github.com/crypto-org-chain/cronos/x/cronos/keeper/mock" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" diff --git a/x/cronos/keeper/evm_test.go b/x/cronos/keeper/evm_test.go index fcfcd1ca73..259feb8396 100644 --- a/x/cronos/keeper/evm_test.go +++ b/x/cronos/keeper/evm_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "math/big" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" "github.com/evmos/ethermint/crypto/ethsecp256k1" diff --git a/x/cronos/keeper/evmhandlers/send_cro_to_ibc.go b/x/cronos/keeper/evmhandlers/send_cro_to_ibc.go index 21f04db89f..1f538335e8 100644 --- a/x/cronos/keeper/evmhandlers/send_cro_to_ibc.go +++ b/x/cronos/keeper/evmhandlers/send_cro_to_ibc.go @@ -3,8 +3,8 @@ package evmhandler import ( "math/big" - cronoskeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronoskeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" diff --git a/x/cronos/keeper/evmhandlers/send_to_account.go b/x/cronos/keeper/evmhandlers/send_to_account.go index 9bc0a334b2..d74919ed71 100644 --- a/x/cronos/keeper/evmhandlers/send_to_account.go +++ b/x/cronos/keeper/evmhandlers/send_to_account.go @@ -4,8 +4,8 @@ import ( "fmt" "math/big" - cronoskeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronoskeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" diff --git a/x/cronos/keeper/evmhandlers/send_to_ibc.go b/x/cronos/keeper/evmhandlers/send_to_ibc.go index 12c79c2762..05bfba7671 100644 --- a/x/cronos/keeper/evmhandlers/send_to_ibc.go +++ b/x/cronos/keeper/evmhandlers/send_to_ibc.go @@ -4,8 +4,8 @@ import ( "fmt" "math/big" - cronoskeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronoskeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" diff --git a/x/cronos/keeper/evmhandlers/send_to_ibc_v2.go b/x/cronos/keeper/evmhandlers/send_to_ibc_v2.go index e45c27fa69..650e748ced 100644 --- a/x/cronos/keeper/evmhandlers/send_to_ibc_v2.go +++ b/x/cronos/keeper/evmhandlers/send_to_ibc_v2.go @@ -4,8 +4,8 @@ import ( "fmt" "math/big" - cronoskeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronoskeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" diff --git a/x/cronos/keeper/evmhandlers_test.go b/x/cronos/keeper/evmhandlers_test.go index f7e19f20e8..f3e3ddcf17 100644 --- a/x/cronos/keeper/evmhandlers_test.go +++ b/x/cronos/keeper/evmhandlers_test.go @@ -5,10 +5,10 @@ import ( "fmt" "math/big" - cronosmodulekeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - evmhandlers "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper/evmhandlers" - keepertest "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper/mock" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronosmodulekeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper" + evmhandlers "github.com/crypto-org-chain/cronos/x/cronos/keeper/evmhandlers" + keepertest "github.com/crypto-org-chain/cronos/x/cronos/keeper/mock" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" sdkmath "cosmossdk.io/math" diff --git a/x/cronos/keeper/grpc_query.go b/x/cronos/keeper/grpc_query.go index 9b53beebd1..f96f2d95d3 100644 --- a/x/cronos/keeper/grpc_query.go +++ b/x/cronos/keeper/grpc_query.go @@ -5,7 +5,7 @@ import ( "fmt" "math/big" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" ethtypes "github.com/ethereum/go-ethereum/core/types" evmkeeper "github.com/evmos/ethermint/x/evm/keeper" diff --git a/x/cronos/keeper/ibc.go b/x/cronos/keeper/ibc.go index 29e2967029..65a0b908fd 100644 --- a/x/cronos/keeper/ibc.go +++ b/x/cronos/keeper/ibc.go @@ -7,7 +7,7 @@ import ( ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" ibcclienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" "github.com/hashicorp/go-metrics" diff --git a/x/cronos/keeper/ibc_test.go b/x/cronos/keeper/ibc_test.go index ae1842e977..5eb89017cd 100644 --- a/x/cronos/keeper/ibc_test.go +++ b/x/cronos/keeper/ibc_test.go @@ -5,9 +5,9 @@ import ( "fmt" "math/big" - cronosmodulekeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - keepertest "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper/mock" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronosmodulekeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper" + keepertest "github.com/crypto-org-chain/cronos/x/cronos/keeper/mock" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" "github.com/evmos/ethermint/crypto/ethsecp256k1" diff --git a/x/cronos/keeper/keeper.go b/x/cronos/keeper/keeper.go index f195c70643..05efead54b 100644 --- a/x/cronos/keeper/keeper.go +++ b/x/cronos/keeper/keeper.go @@ -9,8 +9,8 @@ import ( clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types" channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" ibcexported "github.com/cosmos/ibc-go/v10/modules/core/exported" - cronosprecompiles "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper/precompiles" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronosprecompiles "github.com/crypto-org-chain/cronos/x/cronos/keeper/precompiles" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" "cosmossdk.io/errors" diff --git a/x/cronos/keeper/keeper_test.go b/x/cronos/keeper/keeper_test.go index 29959b30dd..7868025ddc 100644 --- a/x/cronos/keeper/keeper_test.go +++ b/x/cronos/keeper/keeper_test.go @@ -9,10 +9,10 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" tmversion "github.com/cometbft/cometbft/proto/tendermint/version" "github.com/cometbft/cometbft/version" - "github.com/crypto-org-chain/cronos/v2/app" - cronosmodulekeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - keepertest "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper/mock" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/app" + cronosmodulekeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper" + keepertest "github.com/crypto-org-chain/cronos/x/cronos/keeper/mock" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" ethcrypto "github.com/ethereum/go-ethereum/crypto" "github.com/evmos/ethermint/crypto/ethsecp256k1" diff --git a/x/cronos/keeper/migrations.go b/x/cronos/keeper/migrations.go index a74794c0e6..df8a08f5f5 100644 --- a/x/cronos/keeper/migrations.go +++ b/x/cronos/keeper/migrations.go @@ -1,7 +1,7 @@ package keeper import ( - v2 "github.com/crypto-org-chain/cronos/v2/x/cronos/migrations/v2" + v2 "github.com/crypto-org-chain/cronos/x/cronos/migrations/v2" sdk "github.com/cosmos/cosmos-sdk/types" paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" diff --git a/x/cronos/keeper/msg_server.go b/x/cronos/keeper/msg_server.go index b25baeb5f9..2a2b112526 100644 --- a/x/cronos/keeper/msg_server.go +++ b/x/cronos/keeper/msg_server.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "cosmossdk.io/errors" diff --git a/x/cronos/keeper/msg_server_test.go b/x/cronos/keeper/msg_server_test.go index 3cd1e4c95d..f95e2121a8 100644 --- a/x/cronos/keeper/msg_server_test.go +++ b/x/cronos/keeper/msg_server_test.go @@ -1,8 +1,8 @@ package keeper_test import ( - cronosmodulekeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronosmodulekeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper" + "github.com/crypto-org-chain/cronos/x/cronos/types" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" diff --git a/x/cronos/keeper/params.go b/x/cronos/keeper/params.go index f15c5a7ce4..0f3be527a0 100644 --- a/x/cronos/keeper/params.go +++ b/x/cronos/keeper/params.go @@ -4,7 +4,7 @@ import ( "strings" transferTypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" evmTypes "github.com/evmos/ethermint/x/evm/types" "cosmossdk.io/errors" diff --git a/x/cronos/keeper/params_test.go b/x/cronos/keeper/params_test.go index 34b35ccb39..bacc189aa2 100644 --- a/x/cronos/keeper/params_test.go +++ b/x/cronos/keeper/params_test.go @@ -3,9 +3,9 @@ package keeper_test import ( "errors" - cronosmodulekeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - keepertest "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper/mock" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronosmodulekeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper" + keepertest "github.com/crypto-org-chain/cronos/x/cronos/keeper/mock" + "github.com/crypto-org-chain/cronos/x/cronos/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" diff --git a/x/cronos/keeper/permissions.go b/x/cronos/keeper/permissions.go index 78536ccf1d..1cf4dfaeaf 100644 --- a/x/cronos/keeper/permissions.go +++ b/x/cronos/keeper/permissions.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/cronos/keeper/permissions_test.go b/x/cronos/keeper/permissions_test.go index 2c5cd24a9a..990f17511c 100644 --- a/x/cronos/keeper/permissions_test.go +++ b/x/cronos/keeper/permissions_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - . "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" + . "github.com/crypto-org-chain/cronos/x/cronos/keeper" "github.com/ethereum/go-ethereum/common" "github.com/evmos/ethermint/crypto/ethsecp256k1" diff --git a/x/cronos/keeper/precompiles/bank.go b/x/cronos/keeper/precompiles/bank.go index 058c3d46e2..f669aa2486 100644 --- a/x/cronos/keeper/precompiles/bank.go +++ b/x/cronos/keeper/precompiles/bank.go @@ -4,7 +4,7 @@ import ( "errors" "math/big" - "github.com/crypto-org-chain/cronos/v2/x/cronos/events/bindings/cosmos/precompile/bank" + "github.com/crypto-org-chain/cronos/x/cronos/events/bindings/cosmos/precompile/bank" "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/vm" diff --git a/x/cronos/keeper/precompiles/ica.go b/x/cronos/keeper/precompiles/ica.go index f9bcf093d3..80f497e36d 100644 --- a/x/cronos/keeper/precompiles/ica.go +++ b/x/cronos/keeper/precompiles/ica.go @@ -9,11 +9,11 @@ import ( icacontrollertypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/controller/types" icatypes "github.com/cosmos/ibc-go/v10/modules/apps/27-interchain-accounts/types" channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" - cronosevents "github.com/crypto-org-chain/cronos/v2/x/cronos/events" - "github.com/crypto-org-chain/cronos/v2/x/cronos/events/bindings/cosmos/precompile/ica" - "github.com/crypto-org-chain/cronos/v2/x/cronos/events/bindings/cosmos/precompile/icacallback" - cronoseventstypes "github.com/crypto-org-chain/cronos/v2/x/cronos/events/types" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronosevents "github.com/crypto-org-chain/cronos/x/cronos/events" + "github.com/crypto-org-chain/cronos/x/cronos/events/bindings/cosmos/precompile/ica" + "github.com/crypto-org-chain/cronos/x/cronos/events/bindings/cosmos/precompile/icacallback" + cronoseventstypes "github.com/crypto-org-chain/cronos/x/cronos/events/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/vm" diff --git a/x/cronos/keeper/precompiles/relayer.go b/x/cronos/keeper/precompiles/relayer.go index 5a3aa13657..8ca57c0eeb 100644 --- a/x/cronos/keeper/precompiles/relayer.go +++ b/x/cronos/keeper/precompiles/relayer.go @@ -6,9 +6,9 @@ import ( ibctransfertypes "github.com/cosmos/ibc-go/v10/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" - cronosevents "github.com/crypto-org-chain/cronos/v2/x/cronos/events" - "github.com/crypto-org-chain/cronos/v2/x/cronos/events/bindings/cosmos/precompile/relayer" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cronosevents "github.com/crypto-org-chain/cronos/x/cronos/events" + "github.com/crypto-org-chain/cronos/x/cronos/events/bindings/cosmos/precompile/relayer" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/accounts/abi" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" diff --git a/x/cronos/middleware/conversion_middleware.go b/x/cronos/middleware/conversion_middleware.go index b000aa3399..241ad266c7 100644 --- a/x/cronos/middleware/conversion_middleware.go +++ b/x/cronos/middleware/conversion_middleware.go @@ -5,7 +5,7 @@ import ( channeltypes "github.com/cosmos/ibc-go/v10/modules/core/04-channel/types" porttypes "github.com/cosmos/ibc-go/v10/modules/core/05-port/types" "github.com/cosmos/ibc-go/v10/modules/core/exported" - cronoskeeper "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" + cronoskeeper "github.com/crypto-org-chain/cronos/x/cronos/keeper" "cosmossdk.io/errors" sdkmath "cosmossdk.io/math" diff --git a/x/cronos/migrations/v2/migrate.go b/x/cronos/migrations/v2/migrate.go index 55108c2471..db03dd7d97 100644 --- a/x/cronos/migrations/v2/migrate.go +++ b/x/cronos/migrations/v2/migrate.go @@ -1,8 +1,8 @@ package v2 import ( - "github.com/crypto-org-chain/cronos/v2/x/cronos/exported" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/exported" + "github.com/crypto-org-chain/cronos/x/cronos/types" storetypes "cosmossdk.io/store/types" diff --git a/x/cronos/migrations/v2/migrate_test.go b/x/cronos/migrations/v2/migrate_test.go index ec6578d92a..b56f93c15f 100644 --- a/x/cronos/migrations/v2/migrate_test.go +++ b/x/cronos/migrations/v2/migrate_test.go @@ -3,9 +3,9 @@ package v2_test import ( "testing" - "github.com/crypto-org-chain/cronos/v2/x/cronos/exported" - v2 "github.com/crypto-org-chain/cronos/v2/x/cronos/migrations/v2" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/exported" + v2 "github.com/crypto-org-chain/cronos/x/cronos/migrations/v2" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/stretchr/testify/require" simappparams "cosmossdk.io/simapp/params" diff --git a/x/cronos/module.go b/x/cronos/module.go index 57420c4f95..e360a56c88 100644 --- a/x/cronos/module.go +++ b/x/cronos/module.go @@ -6,10 +6,10 @@ import ( "fmt" abci "github.com/cometbft/cometbft/abci/types" - "github.com/crypto-org-chain/cronos/v2/x/cronos/client/cli" - "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - "github.com/crypto-org-chain/cronos/v2/x/cronos/simulation" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/client/cli" + "github.com/crypto-org-chain/cronos/x/cronos/keeper" + "github.com/crypto-org-chain/cronos/x/cronos/simulation" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/gorilla/mux" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" diff --git a/x/cronos/proposal_handler.go b/x/cronos/proposal_handler.go index e3c094b592..14776ecf7b 100644 --- a/x/cronos/proposal_handler.go +++ b/x/cronos/proposal_handler.go @@ -1,8 +1,8 @@ package cronos import ( - "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/keeper" + "github.com/crypto-org-chain/cronos/x/cronos/types" "cosmossdk.io/errors" diff --git a/x/cronos/rpc/api.go b/x/cronos/rpc/api.go index 5567b9f85f..51e64a989c 100644 --- a/x/cronos/rpc/api.go +++ b/x/cronos/rpc/api.go @@ -7,7 +7,7 @@ import ( "strings" coretypes "github.com/cometbft/cometbft/rpc/core/types" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" ethtypes "github.com/ethereum/go-ethereum/core/types" diff --git a/x/cronos/simulation/decoder.go b/x/cronos/simulation/decoder.go index 9e8da98264..3c245dad8c 100644 --- a/x/cronos/simulation/decoder.go +++ b/x/cronos/simulation/decoder.go @@ -4,7 +4,7 @@ import ( "bytes" "fmt" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" "github.com/cosmos/cosmos-sdk/types/kv" diff --git a/x/cronos/simulation/decoder_test.go b/x/cronos/simulation/decoder_test.go index 5b37aef880..0affffb6ff 100644 --- a/x/cronos/simulation/decoder_test.go +++ b/x/cronos/simulation/decoder_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" "github.com/stretchr/testify/require" diff --git a/x/cronos/simulation/genesis.go b/x/cronos/simulation/genesis.go index c58597f786..1fa283a211 100644 --- a/x/cronos/simulation/genesis.go +++ b/x/cronos/simulation/genesis.go @@ -6,7 +6,7 @@ import ( "fmt" "math/rand" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" diff --git a/x/cronos/simulation/genesis_test.go b/x/cronos/simulation/genesis_test.go index 88580ef6b2..76deb30f81 100644 --- a/x/cronos/simulation/genesis_test.go +++ b/x/cronos/simulation/genesis_test.go @@ -5,8 +5,8 @@ import ( "math/rand" "testing" - "github.com/crypto-org-chain/cronos/v2/x/cronos/simulation" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/simulation" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/stretchr/testify/require" "cosmossdk.io/math" diff --git a/x/cronos/simulation/operations.go b/x/cronos/simulation/operations.go index 84030d02ac..88b3c687d3 100644 --- a/x/cronos/simulation/operations.go +++ b/x/cronos/simulation/operations.go @@ -4,8 +4,8 @@ import ( "errors" "math/rand" - "github.com/crypto-org-chain/cronos/v2/x/cronos/keeper" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + "github.com/crypto-org-chain/cronos/x/cronos/keeper" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/ethereum/go-ethereum/common" errorsmod "cosmossdk.io/errors" diff --git a/x/cronos/types/cronos.pb.go b/x/cronos/types/cronos.pb.go index 12324030f2..1aaa2f5b0a 100644 --- a/x/cronos/types/cronos.pb.go +++ b/x/cronos/types/cronos.pb.go @@ -205,36 +205,36 @@ func init() { func init() { proto.RegisterFile("cronos/cronos.proto", fileDescriptor_8bc54992a93db2d2) } var fileDescriptor_8bc54992a93db2d2 = []byte{ - // 451 bytes of a gzipped FileDescriptorProto + // 449 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x92, 0xb1, 0x6f, 0xd3, 0x40, 0x14, 0xc6, 0x7d, 0x25, 0x35, 0xc9, 0xa5, 0x45, 0xe8, 0x88, 0x2a, 0x2b, 0x83, 0x63, 0x3c, 0x79, - 0xa0, 0xb5, 0x04, 0x9d, 0x32, 0xd1, 0xa6, 0x82, 0x09, 0x54, 0x59, 0x9d, 0x58, 0xac, 0xf3, 0xe5, - 0xe4, 0x9c, 0xea, 0xbb, 0x77, 0x3a, 0x5f, 0x50, 0xfc, 0x1f, 0x30, 0x32, 0x32, 0xf6, 0x6f, 0x61, - 0x62, 0xec, 0xc8, 0x84, 0x50, 0xf2, 0x1f, 0x30, 0x32, 0x21, 0xfb, 0xd2, 0xd2, 0x0c, 0x9d, 0x7c, - 0xdf, 0xef, 0x93, 0xf5, 0xbd, 0xef, 0xe9, 0xe1, 0x17, 0xcc, 0x80, 0x82, 0x3a, 0x75, 0x9f, 0x13, - 0x6d, 0xc0, 0x02, 0xf1, 0x9d, 0x1a, 0x8f, 0x4a, 0x28, 0xa1, 0x43, 0x69, 0xfb, 0x72, 0x6e, 0xfc, - 0x17, 0x61, 0xff, 0x92, 0x1a, 0x2a, 0x6b, 0xf2, 0x0e, 0x1f, 0x8a, 0x82, 0xe5, 0xcc, 0x40, 0x3e, - 0xe7, 0x0a, 0x64, 0x80, 0x22, 0x94, 0x0c, 0xce, 0xe3, 0x3f, 0xbf, 0x26, 0x61, 0x43, 0x65, 0x35, - 0x8d, 0x77, 0xec, 0x57, 0x20, 0x85, 0xe5, 0x52, 0xdb, 0x26, 0xce, 0x86, 0xa2, 0x60, 0x33, 0x03, - 0x17, 0x2d, 0x27, 0x13, 0xdc, 0xca, 0xdc, 0x0a, 0xc9, 0x61, 0x69, 0x83, 0xbd, 0x08, 0x25, 0xbd, - 0x0c, 0x8b, 0x82, 0x5d, 0x39, 0x42, 0x5e, 0xe2, 0x03, 0x37, 0x53, 0x4e, 0xe7, 0x52, 0xa8, 0xe0, - 0x49, 0x9b, 0x93, 0x0d, 0x1d, 0x3b, 0x6b, 0x11, 0x39, 0xc5, 0x47, 0x5c, 0xd1, 0xa2, 0xe2, 0x39, - 0x5d, 0xda, 0x36, 0x50, 0x57, 0xd0, 0x48, 0xae, 0x6c, 0xd0, 0x8b, 0x50, 0xd2, 0xcf, 0x46, 0xce, - 0x3d, 0x5b, 0x5a, 0xb8, 0xb8, 0xf7, 0x48, 0x82, 0x9f, 0x4b, 0xba, 0xca, 0x19, 0xad, 0xaa, 0x82, - 0xb2, 0xeb, 0xbc, 0xa4, 0x75, 0xb0, 0xdf, 0xc5, 0x3f, 0x93, 0x74, 0x35, 0xdb, 0xe2, 0xf7, 0xb4, - 0x9e, 0xf6, 0xbe, 0xdd, 0x4c, 0xbc, 0xf8, 0x3b, 0xc2, 0xe3, 0x2b, 0xb8, 0xe6, 0xea, 0x03, 0xd5, - 0x5a, 0xa8, 0x72, 0xb6, 0xa0, 0xaa, 0xe4, 0x97, 0x06, 0x34, 0xd4, 0xb4, 0x22, 0x23, 0xbc, 0x6f, - 0x85, 0xad, 0xb8, 0x5b, 0x44, 0xe6, 0x04, 0x89, 0xf0, 0x70, 0xce, 0x6b, 0x66, 0x84, 0xb6, 0x02, - 0x54, 0x57, 0x6f, 0x90, 0x3d, 0x44, 0xed, 0x7f, 0x6e, 0x81, 0xae, 0x98, 0x13, 0x64, 0x8c, 0xfb, - 0x0c, 0x94, 0x35, 0x94, 0xb9, 0x12, 0x83, 0xec, 0x5e, 0x93, 0x23, 0xec, 0xd7, 0x8d, 0x2c, 0xa0, - 0xea, 0xc6, 0x1d, 0x64, 0x5b, 0x45, 0x02, 0xfc, 0x74, 0xce, 0x99, 0x90, 0xb4, 0x0a, 0xfc, 0x08, - 0x25, 0x87, 0xd9, 0x9d, 0x9c, 0xf6, 0xbf, 0xdc, 0x4c, 0xbc, 0xae, 0xc4, 0x5b, 0x7c, 0xf0, 0xb0, - 0xc3, 0xff, 0x74, 0xf4, 0x58, 0xfa, 0xde, 0x6e, 0xfa, 0xf9, 0xc7, 0x1f, 0xeb, 0x10, 0xdd, 0xae, - 0x43, 0xf4, 0x7b, 0x1d, 0xa2, 0xaf, 0x9b, 0xd0, 0xbb, 0xdd, 0x84, 0xde, 0xcf, 0x4d, 0xe8, 0x7d, - 0x3a, 0x2d, 0x85, 0x5d, 0x2c, 0x8b, 0x13, 0x06, 0x32, 0x65, 0xa6, 0xd1, 0x16, 0x8e, 0xc1, 0x94, - 0xc7, 0x6c, 0x41, 0x85, 0xda, 0x5e, 0x59, 0xfa, 0xf9, 0x75, 0xba, 0xba, 0x7b, 0xdb, 0x46, 0xf3, - 0xba, 0xf0, 0xbb, 0xd3, 0x7a, 0xf3, 0x2f, 0x00, 0x00, 0xff, 0xff, 0xad, 0x72, 0x13, 0x5e, 0x8f, - 0x02, 0x00, 0x00, + 0xa0, 0x8d, 0x10, 0x4c, 0x99, 0x68, 0x53, 0xc1, 0x80, 0x90, 0x2a, 0xab, 0x13, 0x8b, 0xf5, 0x7c, + 0x39, 0x39, 0xa7, 0xfa, 0xee, 0x59, 0xe7, 0x8b, 0x14, 0xff, 0x07, 0x8c, 0x8c, 0x8c, 0xfd, 0x5b, + 0x98, 0x18, 0x3b, 0x32, 0x21, 0x94, 0xfc, 0x07, 0x8c, 0x4c, 0xc8, 0xbe, 0xb4, 0xb4, 0x43, 0x27, + 0xdf, 0xf7, 0xfb, 0x64, 0x7d, 0xef, 0x7b, 0x7a, 0xf4, 0x05, 0x37, 0xa8, 0xb1, 0x9e, 0xba, 0xcf, + 0x49, 0x65, 0xd0, 0x22, 0xf3, 0x9d, 0x1a, 0x8f, 0x0a, 0x2c, 0xb0, 0x43, 0xd3, 0xf6, 0xe5, 0xdc, + 0xf8, 0x2f, 0xa1, 0xfe, 0x05, 0x18, 0x50, 0x35, 0x7b, 0x4f, 0x0f, 0x65, 0xce, 0x33, 0x6e, 0x30, + 0x5b, 0x08, 0x8d, 0x2a, 0x20, 0x11, 0x49, 0x06, 0x67, 0xf1, 0x9f, 0x5f, 0x93, 0xb0, 0x01, 0x55, + 0xce, 0xe2, 0x07, 0xf6, 0x2b, 0x54, 0xd2, 0x0a, 0x55, 0xd9, 0x26, 0x4e, 0x87, 0x32, 0xe7, 0x73, + 0x83, 0xe7, 0x2d, 0x67, 0x13, 0xda, 0xca, 0xcc, 0x4a, 0x25, 0x70, 0x65, 0x83, 0xbd, 0x88, 0x24, + 0xbd, 0x94, 0xca, 0x9c, 0x5f, 0x3a, 0xc2, 0x5e, 0xd2, 0x03, 0x37, 0x53, 0x06, 0x0b, 0x25, 0x75, + 0xf0, 0xa4, 0xcd, 0x49, 0x87, 0x8e, 0x9d, 0xb6, 0x88, 0xbd, 0xa5, 0x47, 0x42, 0x43, 0x5e, 0x8a, + 0x0c, 0x56, 0xb6, 0x0d, 0xac, 0x4a, 0x6c, 0x94, 0xd0, 0x36, 0xe8, 0x45, 0x24, 0xe9, 0xa7, 0x23, + 0xe7, 0x9e, 0xae, 0x2c, 0x9e, 0xdf, 0x79, 0x2c, 0xa1, 0xcf, 0x15, 0xac, 0x33, 0x0e, 0x65, 0x99, + 0x03, 0xbf, 0xca, 0x0a, 0xa8, 0x83, 0xfd, 0x2e, 0xfe, 0x99, 0x82, 0xf5, 0x7c, 0x87, 0x3f, 0x40, + 0x3d, 0xeb, 0x7d, 0xbb, 0x9e, 0x78, 0xf1, 0x77, 0x42, 0xc7, 0x97, 0x78, 0x25, 0xf4, 0x27, 0xa8, + 0x2a, 0xa9, 0x8b, 0xf9, 0x12, 0x74, 0x21, 0x2e, 0x0c, 0x56, 0x58, 0x43, 0xc9, 0x46, 0x74, 0xdf, + 0x4a, 0x5b, 0x0a, 0xb7, 0x88, 0xd4, 0x09, 0x16, 0xd1, 0xe1, 0x42, 0xd4, 0xdc, 0xc8, 0xca, 0x4a, + 0xd4, 0x5d, 0xbd, 0x41, 0x7a, 0x1f, 0xb5, 0xff, 0xb9, 0x05, 0xba, 0x62, 0x4e, 0xb0, 0x31, 0xed, + 0x73, 0xd4, 0xd6, 0x00, 0x77, 0x25, 0x06, 0xe9, 0x9d, 0x66, 0x47, 0xd4, 0xaf, 0x1b, 0x95, 0x63, + 0xd9, 0x8d, 0x3b, 0x48, 0x77, 0x8a, 0x05, 0xf4, 0xe9, 0x42, 0x70, 0xa9, 0xa0, 0x0c, 0xfc, 0x88, + 0x24, 0x87, 0xe9, 0xad, 0x9c, 0xf5, 0xbf, 0x5c, 0x4f, 0xbc, 0xae, 0xc4, 0x3b, 0x7a, 0x70, 0xbf, + 0xc3, 0xff, 0x74, 0xf2, 0x58, 0xfa, 0xde, 0xc3, 0xf4, 0xb3, 0x8f, 0x3f, 0x36, 0x21, 0xb9, 0xd9, + 0x84, 0xe4, 0xf7, 0x26, 0x24, 0x5f, 0xb7, 0xa1, 0x77, 0xb3, 0x0d, 0xbd, 0x9f, 0xdb, 0xd0, 0xfb, + 0xfc, 0xba, 0x90, 0x76, 0xb9, 0xca, 0x4f, 0x38, 0xaa, 0x29, 0x37, 0x4d, 0x65, 0xf1, 0x18, 0x4d, + 0x71, 0xcc, 0x97, 0x20, 0xf5, 0xee, 0xca, 0xa6, 0xeb, 0xdb, 0x87, 0x6d, 0x2a, 0x51, 0xe7, 0x7e, + 0x77, 0x57, 0x6f, 0xfe, 0x05, 0x00, 0x00, 0xff, 0xff, 0x94, 0xe0, 0x49, 0x81, 0x8c, 0x02, 0x00, + 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/cronos/types/genesis.pb.go b/x/cronos/types/genesis.pb.go index 8bf0d5167c..d541e846ee 100644 --- a/x/cronos/types/genesis.pb.go +++ b/x/cronos/types/genesis.pb.go @@ -92,7 +92,7 @@ func init() { func init() { proto.RegisterFile("cronos/genesis.proto", fileDescriptor_997c9bf6ad78cc99) } var fileDescriptor_997c9bf6ad78cc99 = []byte{ - // 263 bytes of a gzipped FileDescriptorProto + // 260 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x49, 0x2e, 0xca, 0xcf, 0xcb, 0x2f, 0xd6, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x83, 0x88, 0x4a, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x85, 0xf4, 0x41, 0x2c, 0x88, @@ -103,13 +103,13 @@ var fileDescriptor_997c9bf6ad78cc99 = []byte{ 0x2f, 0x31, 0x27, 0x3e, 0x39, 0x3f, 0xaf, 0xa4, 0x28, 0x31, 0xb9, 0xa4, 0x58, 0x82, 0x49, 0x81, 0x59, 0x83, 0xdb, 0x48, 0x04, 0xa6, 0x33, 0x24, 0x3f, 0x3b, 0x35, 0xcf, 0x37, 0xb1, 0xa0, 0x20, 0x33, 0x2f, 0x1d, 0xaa, 0x5f, 0x10, 0xa6, 0xcb, 0x19, 0xa6, 0x49, 0xc8, 0x91, 0x8b, 0x2f, 0xb1, - 0xb4, 0x24, 0x1f, 0xc9, 0x18, 0x66, 0x82, 0xc6, 0xf0, 0x82, 0x74, 0xc0, 0x8d, 0x70, 0xf2, 0x3b, + 0xb4, 0x24, 0x1f, 0xc9, 0x18, 0x66, 0x82, 0xc6, 0xf0, 0x82, 0x74, 0xc0, 0x8d, 0x70, 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, 0x93, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, + 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xc3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xe4, 0xa2, 0xca, 0x82, 0x92, 0x7c, 0xdd, 0xfc, 0xa2, 0x74, - 0xdd, 0xe4, 0x8c, 0xc4, 0xcc, 0x3c, 0x68, 0x80, 0xe8, 0x97, 0x19, 0xe9, 0x57, 0xc0, 0xd8, 0x25, - 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, 0x30, 0x32, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x58, - 0x57, 0x45, 0x4d, 0x6e, 0x01, 0x00, 0x00, + 0xdd, 0xe4, 0x8c, 0xc4, 0xcc, 0x3c, 0x68, 0x80, 0xe8, 0x57, 0xc0, 0x18, 0x25, 0x95, 0x05, 0xa9, + 0xc5, 0x49, 0x6c, 0xe0, 0x00, 0x32, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xd9, 0xac, 0xa2, 0x1e, + 0x6b, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/cronos/types/messages_test.go b/x/cronos/types/messages_test.go index 5e4d65201e..1b41d947d0 100644 --- a/x/cronos/types/messages_test.go +++ b/x/cronos/types/messages_test.go @@ -7,8 +7,8 @@ import ( "testing" "filippo.io/age" - cmdcfg "github.com/crypto-org-chain/cronos/v2/cmd/cronosd/config" - "github.com/crypto-org-chain/cronos/v2/x/cronos/types" + cmdcfg "github.com/crypto-org-chain/cronos/cmd/cronosd/config" + "github.com/crypto-org-chain/cronos/x/cronos/types" "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/cronos/types/query.pb.go b/x/cronos/types/query.pb.go index 92d67d9067..b7b55d1d68 100644 --- a/x/cronos/types/query.pb.go +++ b/x/cronos/types/query.pb.go @@ -578,60 +578,59 @@ func init() { func init() { proto.RegisterFile("cronos/query.proto", fileDescriptor_d4ed0fd688c48372) } var fileDescriptor_d4ed0fd688c48372 = []byte{ - // 834 bytes of a gzipped FileDescriptorProto + // 832 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x54, 0x4f, 0x6f, 0xdc, 0x44, 0x14, 0x5f, 0x37, 0x7f, 0xd8, 0xbc, 0x4d, 0x89, 0x98, 0xa4, 0x1b, 0xd7, 0xa4, 0x76, 0x30, 0x88, - 0x06, 0xa9, 0xb5, 0xd5, 0x0d, 0x12, 0x88, 0x03, 0x87, 0x0d, 0x95, 0x7a, 0xa0, 0x15, 0x58, 0x39, - 0x55, 0x95, 0xac, 0xb1, 0x33, 0xd8, 0x56, 0xd7, 0x33, 0xae, 0x67, 0x1c, 0xed, 0xaa, 0xe2, 0x02, - 0x17, 0x24, 0x2e, 0x95, 0xf8, 0x02, 0xfd, 0x38, 0x3d, 0x56, 0xe2, 0x82, 0x38, 0x00, 0x4a, 0x38, - 0xf0, 0x31, 0x90, 0xc7, 0x33, 0xbb, 0xde, 0x7f, 0x70, 0xf2, 0xcc, 0xfb, 0xbd, 0x79, 0xbf, 0xf7, - 0xe7, 0xf7, 0x0c, 0x28, 0x2e, 0x19, 0x65, 0xdc, 0x7f, 0x51, 0x91, 0x72, 0xe2, 0x15, 0x25, 0x13, - 0x0c, 0x6d, 0x37, 0x36, 0xeb, 0x20, 0x61, 0x09, 0x93, 0x26, 0xbf, 0x3e, 0x35, 0xa8, 0x75, 0x94, - 0x30, 0x96, 0x8c, 0x88, 0x8f, 0x8b, 0xcc, 0xc7, 0x94, 0x32, 0x81, 0x45, 0xc6, 0x28, 0x57, 0xa8, - 0xa3, 0x50, 0x79, 0x8b, 0xaa, 0xef, 0x7c, 0x91, 0xe5, 0x84, 0x0b, 0x9c, 0x17, 0xca, 0xe1, 0x36, - 0x11, 0x29, 0x29, 0xf3, 0x8c, 0x0a, 0x9f, 0x5c, 0xe6, 0xfe, 0xe5, 0x03, 0x5f, 0x8c, 0x15, 0xb4, - 0xaf, 0x72, 0x69, 0x3e, 0x8d, 0xd1, 0xfd, 0x1c, 0xfa, 0x67, 0x8c, 0x8a, 0x12, 0xc7, 0x62, 0x38, - 0xf9, 0x8a, 0x50, 0x96, 0x07, 0xe4, 0x45, 0x45, 0xb8, 0x40, 0x07, 0xb0, 0x75, 0x51, 0xdf, 0x4d, - 0xe3, 0xd8, 0x38, 0xd9, 0x09, 0x9a, 0xcb, 0x17, 0xdd, 0x9f, 0x5e, 0x3b, 0x9d, 0x7f, 0x5e, 0x3b, - 0x1d, 0xf7, 0x29, 0x1c, 0x2e, 0xbd, 0xe4, 0x05, 0xa3, 0x9c, 0x20, 0x0b, 0xba, 0xb1, 0x82, 0xd4, - 0xeb, 0xe9, 0x1d, 0x7d, 0x08, 0x37, 0x71, 0x25, 0x58, 0x38, 0x75, 0xb8, 0x21, 0x1d, 0x76, 0x6b, - 0xa3, 0x8e, 0xe7, 0x7e, 0x09, 0x7d, 0x19, 0x71, 0x38, 0xd1, 0x26, 0x9d, 0xd5, 0x7f, 0x84, 0x6e, - 0xe5, 0xe6, 0xc3, 0xe1, 0xd2, 0x7b, 0x95, 0xdb, 0xca, 0xb2, 0xdc, 0xdf, 0x0d, 0x40, 0x01, 0x29, - 0x46, 0x78, 0x32, 0x1c, 0xb1, 0xf8, 0xb9, 0x66, 0x3b, 0x85, 0xcd, 0x9c, 0x27, 0xdc, 0x34, 0x8e, - 0x37, 0x4e, 0x7a, 0x03, 0xc7, 0x9b, 0x36, 0xd7, 0x23, 0x97, 0xb9, 0x77, 0xf9, 0xc0, 0x7b, 0xcc, - 0x93, 0x87, 0xb5, 0x8d, 0x54, 0xf9, 0xf9, 0x38, 0x90, 0xce, 0xe8, 0x03, 0xd8, 0x8d, 0xea, 0x20, - 0x21, 0xad, 0xf2, 0x88, 0x94, 0xb2, 0xc0, 0x8d, 0xa0, 0x27, 0x6d, 0x4f, 0xa4, 0x09, 0xdd, 0x01, - 0x68, 0x5c, 0x52, 0xcc, 0x53, 0x73, 0x43, 0x66, 0xb2, 0x23, 0x2d, 0x8f, 0x30, 0x4f, 0xd1, 0x99, - 0x86, 0xeb, 0xe9, 0x9a, 0x9b, 0xc7, 0xc6, 0x49, 0x6f, 0x60, 0x79, 0xcd, 0xe8, 0x3d, 0x3d, 0x7a, - 0xef, 0x5c, 0x8f, 0x7e, 0xd8, 0x7d, 0xf3, 0x87, 0xd3, 0x79, 0xf5, 0xa7, 0x63, 0xa8, 0x20, 0x35, - 0xd2, 0xea, 0xc6, 0x33, 0xd8, 0x9f, 0xab, 0x4d, 0x75, 0xe2, 0x21, 0xec, 0x94, 0xea, 0xac, 0x2b, - 0xbc, 0xfb, 0x7f, 0x15, 0x2a, 0xff, 0x60, 0xf6, 0xd2, 0x3d, 0x00, 0xf4, 0x6d, 0xad, 0xee, 0x6f, - 0x70, 0x89, 0x73, 0xae, 0x3a, 0xe7, 0x9e, 0xc1, 0xfe, 0x9c, 0x55, 0x71, 0xde, 0x83, 0xed, 0x42, - 0x5a, 0x64, 0xfb, 0x7b, 0x83, 0x77, 0x3d, 0xa5, 0xc6, 0xc6, 0x6f, 0xb8, 0x59, 0x57, 0x12, 0x28, - 0x1f, 0xf7, 0x14, 0x0e, 0x9b, 0x20, 0x75, 0x4a, 0x9c, 0xd7, 0x7b, 0xa0, 0x27, 0x63, 0xc2, 0x3b, - 0xf8, 0xe2, 0xa2, 0x24, 0x9c, 0xab, 0x41, 0xea, 0xab, 0xfb, 0x12, 0xcc, 0xe5, 0x47, 0x8a, 0xfe, - 0x33, 0x30, 0x63, 0x4c, 0xc3, 0x38, 0xc5, 0x34, 0x21, 0xa1, 0x60, 0xcf, 0x09, 0x0d, 0x73, 0x5c, - 0x14, 0x19, 0x4d, 0x64, 0x98, 0x6e, 0x70, 0x2b, 0xc6, 0xf4, 0x4c, 0xc2, 0xe7, 0x35, 0xfa, 0xb8, - 0x01, 0xd1, 0xc7, 0xb0, 0x57, 0x3f, 0x14, 0x55, 0x49, 0xc3, 0xa8, 0xcc, 0x2e, 0x12, 0x22, 0xc7, - 0xda, 0x0d, 0x6e, 0xc6, 0x98, 0x9e, 0x57, 0x25, 0x1d, 0x4a, 0xa3, 0x7b, 0x08, 0xb7, 0x24, 0xb9, - 0xec, 0xf4, 0xd7, 0x19, 0xd7, 0xba, 0x75, 0xef, 0x41, 0x7f, 0x11, 0x50, 0x39, 0x21, 0xd8, 0x8c, - 0x46, 0x2c, 0x92, 0xfc, 0xbb, 0x81, 0x3c, 0x0f, 0x7e, 0xde, 0x82, 0x2d, 0xe9, 0x8e, 0xc6, 0xb0, - 0xb7, 0xb0, 0x65, 0xc8, 0xd6, 0x3d, 0x5b, 0xbd, 0xb8, 0x96, 0xb3, 0x16, 0x6f, 0x18, 0xdd, 0x8f, - 0x7e, 0xf8, 0xf5, 0xef, 0x5f, 0x6e, 0xd8, 0xe8, 0x48, 0xfd, 0x0a, 0xea, 0xbf, 0x84, 0x5e, 0xa2, - 0x30, 0x9a, 0x84, 0x72, 0x25, 0xd0, 0x8f, 0x06, 0xec, 0x2d, 0x2c, 0xd1, 0x8c, 0x7a, 0xf5, 0x76, - 0xce, 0xa8, 0xd7, 0x6c, 0x9f, 0xeb, 0x4b, 0xea, 0x4f, 0xd0, 0xdd, 0x16, 0xb5, 0xa4, 0xab, 0x79, - 0x75, 0x0e, 0xfe, 0x4b, 0x7d, 0xfa, 0x1e, 0x3d, 0x82, 0x5e, 0x4b, 0xbb, 0xc8, 0xd2, 0x04, 0xcb, - 0xcb, 0x6a, 0xbd, 0xbf, 0x12, 0x53, 0xc4, 0x1d, 0xf4, 0x0c, 0xb6, 0x1b, 0x91, 0xcd, 0x82, 0x2c, - 0xeb, 0x76, 0x16, 0x64, 0x85, 0x7a, 0xdd, 0xdb, 0x32, 0xfb, 0x7d, 0xf4, 0x5e, 0x2b, 0xfb, 0x46, - 0xaa, 0xa8, 0x80, 0x5e, 0x4b, 0x70, 0xc8, 0x99, 0x0f, 0xb3, 0xa4, 0x5f, 0xeb, 0x78, 0xbd, 0x83, - 0x22, 0xb3, 0x25, 0x99, 0x89, 0xfa, 0x6d, 0xb2, 0x16, 0x45, 0x0a, 0x3b, 0x53, 0x31, 0xa1, 0x3b, - 0x73, 0xe1, 0x16, 0xd5, 0x67, 0xd9, 0xeb, 0x60, 0xc5, 0x75, 0x24, 0xb9, 0xfa, 0xe8, 0xa0, 0xc5, - 0x25, 0xff, 0x24, 0xa3, 0x8c, 0x8b, 0xe1, 0x93, 0x37, 0x57, 0xb6, 0xf1, 0xf6, 0xca, 0x36, 0xfe, - 0xba, 0xb2, 0x8d, 0x57, 0xd7, 0x76, 0xe7, 0xed, 0xb5, 0xdd, 0xf9, 0xed, 0xda, 0xee, 0x3c, 0xfd, - 0x34, 0xc9, 0x44, 0x5a, 0x45, 0x5e, 0xcc, 0x72, 0x3f, 0x2e, 0x27, 0x85, 0x60, 0xf7, 0x59, 0x99, - 0xdc, 0x8f, 0x53, 0x9c, 0xd1, 0x69, 0xa8, 0x81, 0x3f, 0xd6, 0x67, 0x31, 0x29, 0x08, 0x8f, 0xb6, - 0xe5, 0x2f, 0xec, 0xf4, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x17, 0xeb, 0x13, 0xde, 0x1d, 0x07, - 0x00, 0x00, + 0x06, 0xa9, 0xb5, 0x95, 0xe4, 0x00, 0xe2, 0xc0, 0x61, 0x43, 0xa5, 0x4a, 0x50, 0x04, 0x56, 0x4e, + 0x55, 0x25, 0x6b, 0xec, 0x0c, 0xb6, 0xd5, 0xf5, 0x8c, 0xeb, 0x19, 0x47, 0xbb, 0xaa, 0xb8, 0xc0, + 0x05, 0x89, 0x4b, 0x25, 0xbe, 0x40, 0x3f, 0x4e, 0x8f, 0x91, 0xb8, 0x20, 0x0e, 0x80, 0x12, 0x0e, + 0x7c, 0x0c, 0xe4, 0xf1, 0xcc, 0xae, 0xf7, 0x1f, 0x3d, 0x79, 0xe6, 0xfd, 0xde, 0xbc, 0xdf, 0xfb, + 0xf3, 0x7b, 0x06, 0x14, 0x97, 0x8c, 0x32, 0xee, 0xbf, 0xa8, 0x48, 0x39, 0xf6, 0x8a, 0x92, 0x09, + 0x86, 0x36, 0x1b, 0x9b, 0xb5, 0x97, 0xb0, 0x84, 0x49, 0x93, 0x5f, 0x9f, 0x1a, 0xd4, 0x3a, 0x48, + 0x18, 0x4b, 0x86, 0xc4, 0xc7, 0x45, 0xe6, 0x63, 0x4a, 0x99, 0xc0, 0x22, 0x63, 0x94, 0x2b, 0xd4, + 0x51, 0xa8, 0xbc, 0x45, 0xd5, 0xf7, 0xbe, 0xc8, 0x72, 0xc2, 0x05, 0xce, 0x0b, 0xe5, 0x70, 0x97, + 0x88, 0x94, 0x94, 0x79, 0x46, 0x85, 0x4f, 0x2e, 0x73, 0xff, 0xf2, 0xd8, 0x17, 0x23, 0x05, 0xed, + 0xaa, 0x5c, 0x9a, 0x4f, 0x63, 0x74, 0x3f, 0x83, 0xfe, 0x19, 0xa3, 0xa2, 0xc4, 0xb1, 0x18, 0x8c, + 0xbf, 0x24, 0x94, 0xe5, 0x01, 0x79, 0x51, 0x11, 0x2e, 0xd0, 0x1e, 0x6c, 0x5c, 0xd4, 0x77, 0xd3, + 0x38, 0x34, 0x8e, 0xb6, 0x82, 0xe6, 0xf2, 0x79, 0xf7, 0xe7, 0xd7, 0x4e, 0xe7, 0xdf, 0xd7, 0x4e, + 0xc7, 0x7d, 0x0a, 0xfb, 0x0b, 0x2f, 0x79, 0xc1, 0x28, 0x27, 0xc8, 0x82, 0x6e, 0xac, 0x20, 0xf5, + 0x7a, 0x72, 0x47, 0x1f, 0xc2, 0x6d, 0x5c, 0x09, 0x16, 0x4e, 0x1c, 0x6e, 0x49, 0x87, 0xed, 0xda, + 0xa8, 0xe3, 0xb9, 0x5f, 0x40, 0x5f, 0x46, 0x1c, 0x8c, 0xb5, 0x49, 0x67, 0xf5, 0x3f, 0xa1, 0x5b, + 0xb9, 0xf9, 0xb0, 0xbf, 0xf0, 0x5e, 0xe5, 0xb6, 0xb4, 0x2c, 0xf7, 0x0f, 0x03, 0x50, 0x40, 0x8a, + 0x21, 0x1e, 0x0f, 0x86, 0x2c, 0x7e, 0xae, 0xd9, 0x4e, 0x61, 0x3d, 0xe7, 0x09, 0x37, 0x8d, 0xc3, + 0xb5, 0xa3, 0xde, 0x89, 0xe3, 0x4d, 0x9a, 0xeb, 0x91, 0xcb, 0xdc, 0xbb, 0x3c, 0xf6, 0x9e, 0xf0, + 0xe4, 0x51, 0x6d, 0x23, 0x55, 0x7e, 0x3e, 0x0a, 0xa4, 0x33, 0xfa, 0x00, 0xb6, 0xa3, 0x3a, 0x48, + 0x48, 0xab, 0x3c, 0x22, 0xa5, 0x2c, 0x70, 0x2d, 0xe8, 0x49, 0xdb, 0x37, 0xd2, 0x84, 0xee, 0x01, + 0x34, 0x2e, 0x29, 0xe6, 0xa9, 0xb9, 0x26, 0x33, 0xd9, 0x92, 0x96, 0xc7, 0x98, 0xa7, 0xe8, 0x4c, + 0xc3, 0xf5, 0x74, 0xcd, 0xf5, 0x43, 0xe3, 0xa8, 0x77, 0x62, 0x79, 0xcd, 0xe8, 0x3d, 0x3d, 0x7a, + 0xef, 0x5c, 0x8f, 0x7e, 0xd0, 0x7d, 0xf3, 0xa7, 0xd3, 0x79, 0xf5, 0x97, 0x63, 0xa8, 0x20, 0x35, + 0xd2, 0xea, 0xc6, 0x33, 0xd8, 0x9d, 0xa9, 0x4d, 0x75, 0xe2, 0x11, 0x6c, 0x95, 0xea, 0xac, 0x2b, + 0xbc, 0xff, 0xb6, 0x0a, 0x95, 0x7f, 0x30, 0x7d, 0xe9, 0xee, 0x01, 0xfa, 0xae, 0x56, 0xf7, 0xb7, + 0xb8, 0xc4, 0x39, 0x57, 0x9d, 0x73, 0xcf, 0x60, 0x77, 0xc6, 0xaa, 0x38, 0x1f, 0xc0, 0x66, 0x21, + 0x2d, 0xb2, 0xfd, 0xbd, 0x93, 0x77, 0x3d, 0xa5, 0xc6, 0xc6, 0x6f, 0xb0, 0x5e, 0x57, 0x12, 0x28, + 0x1f, 0xf7, 0x14, 0xf6, 0x9b, 0x20, 0x75, 0x4a, 0x9c, 0xd7, 0x7b, 0xa0, 0x27, 0x63, 0xc2, 0x3b, + 0xf8, 0xe2, 0xa2, 0x24, 0x9c, 0xab, 0x41, 0xea, 0xab, 0xfb, 0x12, 0xcc, 0xc5, 0x47, 0x8a, 0xfe, + 0x53, 0x30, 0x63, 0x4c, 0xc3, 0x38, 0xc5, 0x34, 0x21, 0xa1, 0x60, 0xcf, 0x09, 0x0d, 0x73, 0x5c, + 0x14, 0x19, 0x4d, 0x64, 0x98, 0x6e, 0x70, 0x27, 0xc6, 0xf4, 0x4c, 0xc2, 0xe7, 0x35, 0xfa, 0xa4, + 0x01, 0xd1, 0xc7, 0xb0, 0x53, 0x3f, 0x14, 0x55, 0x49, 0xc3, 0xa8, 0xcc, 0x2e, 0x12, 0x22, 0xc7, + 0xda, 0x0d, 0x6e, 0xc7, 0x98, 0x9e, 0x57, 0x25, 0x1d, 0x48, 0xa3, 0xbb, 0x0f, 0x77, 0x24, 0xb9, + 0xec, 0xf4, 0xd7, 0x19, 0xd7, 0xba, 0x75, 0x1f, 0x40, 0x7f, 0x1e, 0x50, 0x39, 0x21, 0x58, 0x8f, + 0x86, 0x2c, 0x92, 0xfc, 0xdb, 0x81, 0x3c, 0x9f, 0xfc, 0xb2, 0x01, 0x1b, 0xd2, 0x1d, 0x8d, 0x60, + 0x67, 0x6e, 0xcb, 0x90, 0xad, 0x7b, 0xb6, 0x7c, 0x71, 0x2d, 0x67, 0x25, 0xde, 0x30, 0xba, 0x1f, + 0xfd, 0xf8, 0xdb, 0x3f, 0xbf, 0xde, 0xb2, 0xd1, 0x81, 0xfa, 0x15, 0xd4, 0x7f, 0x09, 0xbd, 0x44, + 0x61, 0x34, 0x0e, 0xe5, 0x4a, 0xa0, 0x9f, 0x0c, 0xd8, 0x99, 0x5b, 0xa2, 0x29, 0xf5, 0xf2, 0xed, + 0x9c, 0x52, 0xaf, 0xd8, 0x3e, 0xd7, 0x97, 0xd4, 0x9f, 0xa0, 0xfb, 0x2d, 0x6a, 0x49, 0x57, 0xf3, + 0xea, 0x1c, 0xfc, 0x97, 0xfa, 0xf4, 0x03, 0x7a, 0x0c, 0xbd, 0x96, 0x76, 0x91, 0xa5, 0x09, 0x16, + 0x97, 0xd5, 0x7a, 0x7f, 0x29, 0xa6, 0x88, 0x3b, 0xe8, 0x19, 0x6c, 0x36, 0x22, 0x9b, 0x06, 0x59, + 0xd4, 0xed, 0x34, 0xc8, 0x12, 0xf5, 0xba, 0x77, 0x65, 0xf6, 0xbb, 0xe8, 0xbd, 0x56, 0xf6, 0x8d, + 0x54, 0x51, 0x01, 0xbd, 0x96, 0xe0, 0x90, 0x33, 0x1b, 0x66, 0x41, 0xbf, 0xd6, 0xe1, 0x6a, 0x07, + 0x45, 0x66, 0x4b, 0x32, 0x13, 0xf5, 0xdb, 0x64, 0x2d, 0x8a, 0x14, 0xb6, 0x26, 0x62, 0x42, 0xf7, + 0x66, 0xc2, 0xcd, 0xab, 0xcf, 0xb2, 0x57, 0xc1, 0x8a, 0xeb, 0x40, 0x72, 0xf5, 0xd1, 0x5e, 0x8b, + 0x4b, 0xfe, 0x49, 0x86, 0x19, 0x17, 0x83, 0xaf, 0xde, 0x5c, 0xdb, 0xc6, 0xd5, 0xb5, 0x6d, 0xfc, + 0x7d, 0x6d, 0x1b, 0xaf, 0x6e, 0xec, 0xce, 0xd5, 0x8d, 0xdd, 0xf9, 0xfd, 0xc6, 0xee, 0x3c, 0x3d, + 0x4e, 0x32, 0x91, 0x56, 0x91, 0x17, 0xb3, 0xdc, 0x8f, 0xcb, 0x71, 0x21, 0xd8, 0x43, 0x56, 0x26, + 0x0f, 0xe3, 0x14, 0x67, 0x54, 0x87, 0x1a, 0xe9, 0x83, 0x18, 0x17, 0x84, 0x47, 0x9b, 0xf2, 0xff, + 0x75, 0xfa, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x76, 0xec, 0x99, 0x2d, 0x1a, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/cronos/types/tx.pb.go b/x/cronos/types/tx.pb.go index d357519636..8068f7dd84 100644 --- a/x/cronos/types/tx.pb.go +++ b/x/cronos/types/tx.pb.go @@ -727,55 +727,55 @@ func init() { func init() { proto.RegisterFile("cronos/tx.proto", fileDescriptor_28e09e4eabb18884) } var fileDescriptor_28e09e4eabb18884 = []byte{ - // 761 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xbd, 0x6e, 0xe3, 0x46, - 0x10, 0x16, 0xf5, 0x17, 0x7b, 0x64, 0xcb, 0xf0, 0xc6, 0xb6, 0x24, 0x46, 0xa6, 0x14, 0x21, 0x01, - 0x04, 0x23, 0x16, 0x63, 0x25, 0x95, 0x4b, 0x19, 0x08, 0x52, 0x58, 0x46, 0xc2, 0x38, 0x09, 0xe0, - 0x8e, 0x3f, 0x6b, 0x8a, 0xb0, 0xc8, 0x65, 0x76, 0x57, 0x82, 0xd5, 0x05, 0x79, 0x82, 0xbc, 0xc1, - 0x5d, 0x73, 0xcd, 0x55, 0x7e, 0x86, 0xab, 0x5c, 0xba, 0xbc, 0xea, 0xee, 0x60, 0x17, 0x7e, 0x8d, - 0x03, 0x97, 0x2b, 0x8a, 0xfa, 0x73, 0x77, 0x15, 0x77, 0xe6, 0xdb, 0x99, 0xef, 0x1b, 0xce, 0x0c, - 0x09, 0x3b, 0x36, 0x25, 0x01, 0x61, 0x3a, 0xbf, 0xed, 0x84, 0x94, 0x70, 0x82, 0x8a, 0xb1, 0x43, - 0xad, 0xd8, 0x84, 0xf9, 0x84, 0xe9, 0x3e, 0x73, 0xf5, 0xf1, 0x49, 0xf4, 0x88, 0x2f, 0xa8, 0x7b, - 0x2e, 0x71, 0x89, 0x38, 0xea, 0xd1, 0x49, 0x7a, 0x35, 0x79, 0xdd, 0x32, 0x19, 0xd6, 0xc7, 0x27, - 0x16, 0xe6, 0xe6, 0x89, 0x6e, 0x13, 0x2f, 0x90, 0xf8, 0xd7, 0x92, 0x27, 0x7e, 0xc4, 0xce, 0xd6, - 0x2b, 0x05, 0x50, 0x9f, 0xb9, 0x67, 0x24, 0x18, 0x63, 0xca, 0xff, 0x22, 0x23, 0x7b, 0x80, 0x29, - 0x43, 0x55, 0xf8, 0xca, 0x74, 0x1c, 0x8a, 0x19, 0xab, 0x2a, 0x4d, 0xa5, 0xbd, 0x69, 0x4c, 0x4d, - 0x64, 0x42, 0x21, 0xca, 0xc9, 0xaa, 0xd9, 0x66, 0xae, 0x5d, 0xea, 0xd6, 0x3a, 0x31, 0x6b, 0x27, - 0x62, 0xed, 0x48, 0xd6, 0xce, 0x19, 0xf1, 0x82, 0xde, 0x8f, 0xf7, 0x1f, 0x1a, 0x99, 0xb7, 0x1f, - 0x1b, 0x6d, 0xd7, 0xe3, 0x83, 0x91, 0xd5, 0xb1, 0x89, 0xaf, 0x4b, 0x89, 0xf1, 0xe3, 0x98, 0x39, - 0x37, 0x3a, 0x9f, 0x84, 0x98, 0x89, 0x00, 0x66, 0xc4, 0x99, 0x4f, 0xb7, 0xfe, 0x7b, 0xbe, 0x3b, - 0x9a, 0x12, 0xb6, 0xde, 0x28, 0xb0, 0xdb, 0x67, 0xee, 0x25, 0x35, 0x03, 0x76, 0x8d, 0xe9, 0x25, - 0xb9, 0xc1, 0x01, 0x43, 0x08, 0xf2, 0xd7, 0x94, 0xf8, 0x52, 0x9d, 0x38, 0xa3, 0x32, 0x64, 0x39, - 0xa9, 0x66, 0x85, 0x27, 0xcb, 0xc9, 0x4c, 0x6a, 0xee, 0x8b, 0x49, 0xdd, 0x8c, 0xa4, 0x0a, 0xf6, - 0x56, 0x1d, 0xd4, 0xe5, 0x17, 0x69, 0x60, 0x16, 0x92, 0x80, 0xe1, 0xd6, 0x37, 0x50, 0x5b, 0x2a, - 0x22, 0x01, 0x5f, 0x2b, 0xb0, 0xdf, 0x67, 0xee, 0x9f, 0xa1, 0x63, 0x72, 0x2c, 0xb0, 0xbe, 0x19, - 0x86, 0x5e, 0xe0, 0xa2, 0x03, 0x28, 0x32, 0x1c, 0x38, 0x98, 0xca, 0x42, 0xa5, 0x85, 0xf6, 0xa0, - 0xe0, 0xe0, 0x80, 0xf8, 0xb2, 0xda, 0xd8, 0x40, 0x2a, 0x6c, 0xd8, 0x24, 0xe0, 0xd4, 0xb4, 0x79, - 0x35, 0x27, 0x80, 0xc4, 0x16, 0x99, 0x26, 0xbe, 0x45, 0x86, 0xd5, 0xbc, 0xcc, 0x24, 0xac, 0xa8, - 0xd3, 0x0e, 0xb6, 0x3d, 0xdf, 0x1c, 0x56, 0x0b, 0x4d, 0xa5, 0xbd, 0x6d, 0x4c, 0xcd, 0xd3, 0x52, - 0x54, 0x9b, 0x24, 0x6c, 0x35, 0xe0, 0x70, 0xa5, 0xc2, 0xa4, 0x86, 0x73, 0xd8, 0x8e, 0x0a, 0x1c, - 0xd1, 0xa0, 0x47, 0x3d, 0xc7, 0xc5, 0x6b, 0xa5, 0x1f, 0x40, 0x11, 0x07, 0xa6, 0x35, 0xc4, 0x42, - 0xfb, 0x86, 0x21, 0xad, 0x79, 0xba, 0x8a, 0x78, 0x21, 0xb3, 0x6c, 0x09, 0x8d, 0x0f, 0x3b, 0x89, - 0x8e, 0xdf, 0x4c, 0x6a, 0xfa, 0x0c, 0xd5, 0x61, 0xd3, 0x1c, 0xf1, 0x01, 0xa1, 0x1e, 0x9f, 0x48, - 0xae, 0x99, 0x03, 0xfd, 0x00, 0xc5, 0x50, 0xdc, 0x13, 0x74, 0xa5, 0x6e, 0xb9, 0x23, 0xe7, 0x3f, - 0x8e, 0xee, 0xe5, 0xa3, 0xd6, 0x1b, 0xf2, 0xce, 0x69, 0x39, 0x12, 0x31, 0x8b, 0x6e, 0xd5, 0xa0, - 0xb2, 0x40, 0x97, 0x28, 0xf9, 0x07, 0xf6, 0x66, 0x10, 0xa6, 0xbe, 0xc7, 0x98, 0x47, 0xd6, 0x4c, - 0x66, 0x6a, 0x9d, 0xb2, 0xf3, 0xeb, 0xd4, 0x84, 0x52, 0x38, 0x0b, 0x16, 0x5d, 0xcb, 0x1b, 0x69, - 0x57, 0x7a, 0xc4, 0x34, 0xa8, 0xaf, 0xa2, 0x4c, 0x24, 0xfd, 0x22, 0x36, 0xe5, 0x0f, 0x4e, 0x28, - 0xee, 0x0d, 0x89, 0x7d, 0x73, 0xee, 0x31, 0xbe, 0x52, 0x0f, 0x82, 0xbc, 0x35, 0x24, 0x96, 0x10, - 0xb3, 0x65, 0x88, 0x73, 0x9a, 0x27, 0x1e, 0xd6, 0xf9, 0x3c, 0x53, 0x92, 0xee, 0xbb, 0x3c, 0xe4, - 0xfa, 0xcc, 0x45, 0xbf, 0xc3, 0xce, 0xe2, 0x57, 0x43, 0x9d, 0xbe, 0xdb, 0xe5, 0x45, 0x50, 0x5b, - 0xeb, 0xb1, 0x69, 0x6a, 0x74, 0x01, 0xe5, 0x85, 0x35, 0xaf, 0xa5, 0xa2, 0xe6, 0x21, 0xf5, 0xdb, - 0xb5, 0x50, 0x92, 0xef, 0x0a, 0xd0, 0x8a, 0x9d, 0x3a, 0x4c, 0x05, 0x2e, 0xc3, 0xea, 0xf7, 0x2f, - 0xc2, 0x49, 0xee, 0x1e, 0x40, 0x6a, 0xd8, 0xf7, 0xd3, 0x62, 0x12, 0xb7, 0x7a, 0xb8, 0xd2, 0x9d, - 0xe4, 0xf8, 0x15, 0xb6, 0xe6, 0x26, 0xb9, 0xb2, 0x44, 0x1d, 0x03, 0x6a, 0x63, 0x0d, 0x90, 0x64, - 0xfa, 0x1b, 0x76, 0x97, 0x27, 0xb1, 0xbe, 0x1c, 0x35, 0x43, 0xd5, 0xef, 0x5e, 0x42, 0xd3, 0x2d, - 0x59, 0x98, 0xa7, 0x74, 0x4b, 0xe6, 0xa1, 0xb9, 0x96, 0xac, 0x9e, 0x1e, 0xb5, 0xf0, 0xef, 0xf3, - 0xdd, 0x91, 0xd2, 0xbb, 0xb8, 0x7f, 0xd4, 0x94, 0x87, 0x47, 0x4d, 0xf9, 0xf4, 0xa8, 0x29, 0xff, - 0x3f, 0x69, 0x99, 0x87, 0x27, 0x2d, 0xf3, 0xfe, 0x49, 0xcb, 0x5c, 0xfd, 0x9c, 0xfe, 0x04, 0xd3, - 0x49, 0xc8, 0xc9, 0x31, 0xa1, 0xee, 0xb1, 0x3d, 0x30, 0xbd, 0x40, 0xfe, 0xba, 0xf4, 0x71, 0x57, - 0xbf, 0x9d, 0x9e, 0xc5, 0x47, 0xd9, 0x2a, 0x8a, 0xbf, 0xd9, 0x4f, 0x9f, 0x03, 0x00, 0x00, 0xff, - 0xff, 0x6d, 0x0b, 0x10, 0xeb, 0x4c, 0x07, 0x00, 0x00, + // 758 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xcd, 0x6e, 0xdb, 0x46, + 0x10, 0x16, 0xf5, 0x57, 0x7b, 0x64, 0xcb, 0xf0, 0xd6, 0xb6, 0x24, 0x56, 0xa6, 0x54, 0xa1, 0x05, + 0x04, 0xa3, 0x16, 0x2b, 0xf7, 0xe6, 0xa3, 0x0c, 0x14, 0x05, 0x6a, 0x15, 0x2d, 0xeb, 0x24, 0x80, + 0x6f, 0xfc, 0x59, 0x53, 0x84, 0x45, 0x2e, 0xb3, 0xbb, 0x32, 0xac, 0x5b, 0x90, 0x27, 0xc8, 0x1b, + 0x24, 0x97, 0x5c, 0x72, 0xf2, 0x33, 0xe4, 0xe4, 0xa3, 0x8f, 0x39, 0x25, 0x81, 0x7d, 0xf0, 0x6b, + 0x04, 0x5c, 0xae, 0x28, 0xea, 0xcf, 0xb7, 0x9c, 0xb8, 0x33, 0xdf, 0xce, 0x7c, 0xdf, 0x70, 0x66, + 0x48, 0xd8, 0xb2, 0x29, 0x09, 0x08, 0xd3, 0xf9, 0x75, 0x27, 0xa4, 0x84, 0x13, 0x54, 0x8c, 0x1d, + 0x6a, 0xc5, 0x26, 0xcc, 0x27, 0x4c, 0xf7, 0x99, 0xab, 0x5f, 0x75, 0xa3, 0x47, 0x7c, 0x41, 0xdd, + 0x71, 0x89, 0x4b, 0xc4, 0x51, 0x8f, 0x4e, 0xd2, 0xab, 0xc9, 0xeb, 0x96, 0xc9, 0xb0, 0x7e, 0xd5, + 0xb5, 0x30, 0x37, 0xbb, 0xba, 0x4d, 0xbc, 0x40, 0xe2, 0x3f, 0x4a, 0x9e, 0xf8, 0x11, 0x3b, 0x5b, + 0x6f, 0x15, 0x40, 0x7d, 0xe6, 0x9e, 0x90, 0xe0, 0x0a, 0x53, 0xfe, 0x9c, 0x8c, 0xec, 0x01, 0xa6, + 0x0c, 0x55, 0xe1, 0x07, 0xd3, 0x71, 0x28, 0x66, 0xac, 0xaa, 0x34, 0x95, 0xf6, 0xba, 0x31, 0x31, + 0x91, 0x09, 0x85, 0x28, 0x27, 0xab, 0x66, 0x9b, 0xb9, 0x76, 0xe9, 0xa8, 0xd6, 0x89, 0x59, 0x3b, + 0x11, 0x6b, 0x47, 0xb2, 0x76, 0x4e, 0x88, 0x17, 0xf4, 0x7e, 0xbf, 0xfd, 0xdc, 0xc8, 0x7c, 0xf8, + 0xd2, 0x68, 0xbb, 0x1e, 0x1f, 0x8c, 0xac, 0x8e, 0x4d, 0x7c, 0x5d, 0x4a, 0x8c, 0x1f, 0x87, 0xcc, + 0xb9, 0xd4, 0xf9, 0x38, 0xc4, 0x4c, 0x04, 0x30, 0x23, 0xce, 0x7c, 0xbc, 0xf1, 0xfa, 0xf1, 0xe6, + 0x60, 0x42, 0xd8, 0x7a, 0xaf, 0xc0, 0x76, 0x9f, 0xb9, 0x67, 0xd4, 0x0c, 0xd8, 0x05, 0xa6, 0x67, + 0xe4, 0x12, 0x07, 0x0c, 0x21, 0xc8, 0x5f, 0x50, 0xe2, 0x4b, 0x75, 0xe2, 0x8c, 0xca, 0x90, 0xe5, + 0xa4, 0x9a, 0x15, 0x9e, 0x2c, 0x27, 0x53, 0xa9, 0xb9, 0xef, 0x26, 0x75, 0x3d, 0x92, 0x2a, 0xd8, + 0x5b, 0x75, 0x50, 0x17, 0x5f, 0xa4, 0x81, 0x59, 0x48, 0x02, 0x86, 0x5b, 0x3f, 0x41, 0x6d, 0xa1, + 0x88, 0x04, 0x7c, 0xa7, 0xc0, 0x6e, 0x9f, 0xb9, 0xcf, 0x42, 0xc7, 0xe4, 0x58, 0x60, 0x7d, 0x33, + 0x0c, 0xbd, 0xc0, 0x45, 0x7b, 0x50, 0x64, 0x38, 0x70, 0x30, 0x95, 0x85, 0x4a, 0x0b, 0xed, 0x40, + 0xc1, 0xc1, 0x01, 0xf1, 0x65, 0xb5, 0xb1, 0x81, 0x54, 0x58, 0xb3, 0x49, 0xc0, 0xa9, 0x69, 0xf3, + 0x6a, 0x4e, 0x00, 0x89, 0x2d, 0x32, 0x8d, 0x7d, 0x8b, 0x0c, 0xab, 0x79, 0x99, 0x49, 0x58, 0x51, + 0xa7, 0x1d, 0x6c, 0x7b, 0xbe, 0x39, 0xac, 0x16, 0x9a, 0x4a, 0x7b, 0xd3, 0x98, 0x98, 0xc7, 0xa5, + 0xa8, 0x36, 0x49, 0xd8, 0x6a, 0xc0, 0xfe, 0x52, 0x85, 0x49, 0x0d, 0xa7, 0xb0, 0x19, 0x15, 0x38, + 0xa2, 0x41, 0x8f, 0x7a, 0x8e, 0x8b, 0x57, 0x4a, 0xdf, 0x83, 0x22, 0x0e, 0x4c, 0x6b, 0x88, 0x85, + 0xf6, 0x35, 0x43, 0x5a, 0xb3, 0x74, 0x15, 0xf1, 0x42, 0xa6, 0xd9, 0x12, 0x1a, 0x1f, 0xb6, 0x12, + 0x1d, 0xff, 0x9a, 0xd4, 0xf4, 0x19, 0xaa, 0xc3, 0xba, 0x39, 0xe2, 0x03, 0x42, 0x3d, 0x3e, 0x96, + 0x5c, 0x53, 0x07, 0xfa, 0x0d, 0x8a, 0xa1, 0xb8, 0x27, 0xe8, 0x4a, 0x47, 0xe5, 0x8e, 0x9c, 0xff, + 0x38, 0xba, 0x97, 0x8f, 0x5a, 0x6f, 0xc8, 0x3b, 0xc7, 0xe5, 0x48, 0xc4, 0x34, 0xba, 0x55, 0x83, + 0xca, 0x1c, 0x5d, 0xa2, 0xe4, 0x25, 0xec, 0x4c, 0x21, 0x4c, 0x7d, 0x8f, 0x31, 0x8f, 0xac, 0x98, + 0xcc, 0xd4, 0x3a, 0x65, 0x67, 0xd7, 0xa9, 0x09, 0xa5, 0x70, 0x1a, 0x2c, 0xba, 0x96, 0x37, 0xd2, + 0xae, 0xf4, 0x88, 0x69, 0x50, 0x5f, 0x46, 0x99, 0x48, 0xfa, 0x53, 0x6c, 0xca, 0xff, 0x9c, 0x50, + 0xdc, 0x1b, 0x12, 0xfb, 0xf2, 0xd4, 0x63, 0x7c, 0xa9, 0x1e, 0x04, 0x79, 0x6b, 0x48, 0x2c, 0x21, + 0x66, 0xc3, 0x10, 0xe7, 0x34, 0x4f, 0x3c, 0xac, 0xb3, 0x79, 0x26, 0x24, 0x47, 0x1f, 0xf3, 0x90, + 0xeb, 0x33, 0x17, 0xfd, 0x07, 0x5b, 0xf3, 0x5f, 0x0d, 0x75, 0xf2, 0x6e, 0x17, 0x17, 0x41, 0x6d, + 0xad, 0xc6, 0x26, 0xa9, 0xd1, 0x3f, 0x50, 0x9e, 0x5b, 0xf3, 0x5a, 0x2a, 0x6a, 0x16, 0x52, 0x7f, + 0x5e, 0x09, 0x25, 0xf9, 0xce, 0x01, 0x2d, 0xd9, 0xa9, 0xfd, 0x54, 0xe0, 0x22, 0xac, 0xfe, 0xfa, + 0x24, 0x9c, 0xe4, 0xee, 0x01, 0xa4, 0x86, 0x7d, 0x37, 0x2d, 0x26, 0x71, 0xab, 0xfb, 0x4b, 0xdd, + 0x49, 0x8e, 0xbf, 0x60, 0x63, 0x66, 0x92, 0x2b, 0x0b, 0xd4, 0x31, 0xa0, 0x36, 0x56, 0x00, 0x49, + 0xa6, 0x17, 0xb0, 0xbd, 0x38, 0x89, 0xf5, 0xc5, 0xa8, 0x29, 0xaa, 0xfe, 0xf2, 0x14, 0x9a, 0x6e, + 0xc9, 0xdc, 0x3c, 0xa5, 0x5b, 0x32, 0x0b, 0xcd, 0xb4, 0x64, 0xf9, 0xf4, 0xa8, 0x85, 0x57, 0x8f, + 0x37, 0x07, 0x4a, 0xef, 0xef, 0xdb, 0x7b, 0x4d, 0xb9, 0xbb, 0xd7, 0x94, 0xaf, 0xf7, 0x9a, 0xf2, + 0xe6, 0x41, 0xcb, 0xdc, 0x3d, 0x68, 0x99, 0x4f, 0x0f, 0x5a, 0xe6, 0xbc, 0x9b, 0xfe, 0x04, 0xd3, + 0x71, 0xc8, 0xc9, 0x21, 0xa1, 0xee, 0xa1, 0x3d, 0x30, 0xbd, 0x40, 0xfe, 0xba, 0xf4, 0xeb, 0xc9, + 0x41, 0x7c, 0x91, 0xad, 0xa2, 0xf8, 0x95, 0xfd, 0xf1, 0x2d, 0x00, 0x00, 0xff, 0xff, 0x0b, 0x52, + 0x81, 0x34, 0x49, 0x07, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/e2ee/client/cli/decrypt.go b/x/e2ee/client/cli/decrypt.go index 733a80b673..dbe17ccebb 100644 --- a/x/e2ee/client/cli/decrypt.go +++ b/x/e2ee/client/cli/decrypt.go @@ -6,8 +6,8 @@ import ( "os" "filippo.io/age" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/keyring" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/types" + "github.com/crypto-org-chain/cronos/x/e2ee/keyring" + "github.com/crypto-org-chain/cronos/x/e2ee/types" "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" diff --git a/x/e2ee/client/cli/encrypt.go b/x/e2ee/client/cli/encrypt.go index d6ec2aea11..cc575f55c4 100644 --- a/x/e2ee/client/cli/encrypt.go +++ b/x/e2ee/client/cli/encrypt.go @@ -6,7 +6,7 @@ import ( "os" "filippo.io/age" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/types" + "github.com/crypto-org-chain/cronos/x/e2ee/types" "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" diff --git a/x/e2ee/client/cli/encrypt_to_validators.go b/x/e2ee/client/cli/encrypt_to_validators.go index e26bfa2a21..8e589b031c 100644 --- a/x/e2ee/client/cli/encrypt_to_validators.go +++ b/x/e2ee/client/cli/encrypt_to_validators.go @@ -7,7 +7,7 @@ import ( "os" "filippo.io/age" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/types" + "github.com/crypto-org-chain/cronos/x/e2ee/types" "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" diff --git a/x/e2ee/client/cli/generate.go b/x/e2ee/client/cli/generate.go index dc4c1eed26..ce4ab7b3fa 100644 --- a/x/e2ee/client/cli/generate.go +++ b/x/e2ee/client/cli/generate.go @@ -5,8 +5,8 @@ import ( "os" "filippo.io/age" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/keyring" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/types" + "github.com/crypto-org-chain/cronos/x/e2ee/keyring" + "github.com/crypto-org-chain/cronos/x/e2ee/types" "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" diff --git a/x/e2ee/client/cli/pubkey.go b/x/e2ee/client/cli/pubkey.go index f3d413daa7..220aac2b31 100644 --- a/x/e2ee/client/cli/pubkey.go +++ b/x/e2ee/client/cli/pubkey.go @@ -5,8 +5,8 @@ import ( "os" "filippo.io/age" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/keyring" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/types" + "github.com/crypto-org-chain/cronos/x/e2ee/keyring" + "github.com/crypto-org-chain/cronos/x/e2ee/types" "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" diff --git a/x/e2ee/client/cli/query.go b/x/e2ee/client/cli/query.go index 0d233123c6..cfc028d338 100644 --- a/x/e2ee/client/cli/query.go +++ b/x/e2ee/client/cli/query.go @@ -3,7 +3,7 @@ package cli import ( "fmt" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/types" + "github.com/crypto-org-chain/cronos/x/e2ee/types" "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" diff --git a/x/e2ee/client/cli/tx.go b/x/e2ee/client/cli/tx.go index 5d14788a0d..606c47c009 100644 --- a/x/e2ee/client/cli/tx.go +++ b/x/e2ee/client/cli/tx.go @@ -3,7 +3,7 @@ package cli import ( "fmt" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/types" + "github.com/crypto-org-chain/cronos/x/e2ee/types" "github.com/spf13/cobra" "github.com/cosmos/cosmos-sdk/client" diff --git a/x/e2ee/keeper/keeper.go b/x/e2ee/keeper/keeper.go index e3d00806c1..6ecc823956 100644 --- a/x/e2ee/keeper/keeper.go +++ b/x/e2ee/keeper/keeper.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/types" + "github.com/crypto-org-chain/cronos/x/e2ee/types" "cosmossdk.io/core/address" "cosmossdk.io/store/prefix" diff --git a/x/e2ee/module.go b/x/e2ee/module.go index b8b0cbaaa8..c3989723dd 100644 --- a/x/e2ee/module.go +++ b/x/e2ee/module.go @@ -6,9 +6,9 @@ import ( "fmt" abci "github.com/cometbft/cometbft/abci/types" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/client/cli" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/keeper" - "github.com/crypto-org-chain/cronos/v2/x/e2ee/types" + "github.com/crypto-org-chain/cronos/x/e2ee/client/cli" + "github.com/crypto-org-chain/cronos/x/e2ee/keeper" + "github.com/crypto-org-chain/cronos/x/e2ee/types" "github.com/gorilla/mux" "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" diff --git a/x/e2ee/types/genesis.pb.go b/x/e2ee/types/genesis.pb.go index 69f52bc690..6849dce635 100644 --- a/x/e2ee/types/genesis.pb.go +++ b/x/e2ee/types/genesis.pb.go @@ -130,7 +130,7 @@ func init() { func init() { proto.RegisterFile("e2ee/genesis.proto", fileDescriptor_e81aee24edfec633) } var fileDescriptor_e81aee24edfec633 = []byte{ - // 236 bytes of a gzipped FileDescriptorProto + // 233 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4a, 0x35, 0x4a, 0x4d, 0xd5, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x01, 0x89, 0x49, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x05, 0xf4, 0x41, 0x2c, 0x88, 0x9c, 0x92, @@ -140,12 +140,12 @@ var fileDescriptor_e81aee24edfec633 = []byte{ 0xc1, 0x04, 0x16, 0x05, 0x31, 0x95, 0x9c, 0xb8, 0x78, 0xdc, 0x21, 0xd6, 0x05, 0x97, 0x24, 0x96, 0xa4, 0x0a, 0x19, 0x71, 0xb1, 0x64, 0xa7, 0x56, 0x82, 0x34, 0x32, 0x6b, 0x70, 0x1b, 0x49, 0xe8, 0x81, 0x2c, 0xd7, 0xc3, 0xb4, 0xc3, 0x89, 0xe5, 0xc4, 0x3d, 0x79, 0x86, 0x20, 0xb0, 0x5a, 0x27, - 0x9f, 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, 0x4a, 0xcf, 0x2c, 0xc9, + 0xcf, 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, 0xd2, 0x4f, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x07, 0x1b, 0x91, 0xaf, 0x9b, 0x5f, 0x94, 0xae, 0x9b, - 0x9c, 0x91, 0x98, 0x99, 0xa7, 0x9f, 0x5c, 0x94, 0x9f, 0x97, 0x5f, 0xac, 0x5f, 0x66, 0xa4, 0x5f, - 0xa1, 0x0f, 0xf6, 0x77, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x6b, 0xc6, 0x80, 0x00, - 0x00, 0x00, 0xff, 0xff, 0xf9, 0x3d, 0x79, 0x56, 0x0c, 0x01, 0x00, 0x00, + 0x9c, 0x91, 0x98, 0x99, 0xa7, 0x9f, 0x5c, 0x94, 0x9f, 0x97, 0x5f, 0xac, 0x5f, 0xa1, 0x0f, 0xf6, + 0x74, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x5f, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x5e, 0x21, 0x2a, 0x6b, 0x09, 0x01, 0x00, 0x00, } func (m *EncryptionKeyEntry) Marshal() (dAtA []byte, err error) { diff --git a/x/e2ee/types/query.pb.go b/x/e2ee/types/query.pb.go index 7a934ff2b5..684bc8e483 100644 --- a/x/e2ee/types/query.pb.go +++ b/x/e2ee/types/query.pb.go @@ -218,28 +218,28 @@ func init() { func init() { proto.RegisterFile("e2ee/query.proto", fileDescriptor_1e8b28e605d00558) } var fileDescriptor_1e8b28e605d00558 = []byte{ - // 324 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x91, 0xbf, 0x4a, 0x03, 0x41, - 0x10, 0x87, 0xb3, 0x26, 0x2a, 0x19, 0x15, 0xe2, 0x16, 0x72, 0x84, 0xb0, 0xca, 0x16, 0x12, 0x94, - 0xdc, 0xe2, 0xd9, 0x59, 0xda, 0x08, 0xc6, 0xc6, 0x94, 0x76, 0x97, 0xcb, 0x70, 0x39, 0xa2, 0x37, - 0x97, 0xdb, 0x4d, 0x70, 0x11, 0x1b, 0x9f, 0x40, 0xb0, 0xf5, 0x81, 0x2c, 0x03, 0x36, 0x96, 0x92, - 0xf8, 0x20, 0x72, 0xff, 0x48, 0xba, 0xb9, 0x1f, 0xdf, 0x7c, 0x33, 0x73, 0x0b, 0x2d, 0xf4, 0x10, - 0xd5, 0x74, 0x86, 0xa9, 0x75, 0x93, 0x94, 0x0c, 0xf1, 0x46, 0x96, 0xb4, 0x3b, 0x21, 0x51, 0xf8, - 0x88, 0xca, 0x4f, 0x22, 0xe5, 0xc7, 0x31, 0x19, 0xdf, 0x44, 0x14, 0xeb, 0x82, 0x91, 0xa7, 0x00, - 0x7d, 0xb4, 0x03, 0x9c, 0xce, 0x50, 0x1b, 0xee, 0xc0, 0xae, 0x3f, 0x1a, 0xa5, 0xa8, 0xb5, 0xc3, - 0x4e, 0x58, 0xb7, 0x39, 0xa8, 0x3e, 0xe5, 0x31, 0xec, 0xe5, 0x9c, 0x4e, 0x28, 0xd6, 0xc8, 0x5b, - 0x50, 0x9f, 0xa0, 0x2d, 0xa1, 0xac, 0x94, 0xe7, 0x39, 0xa0, 0x2b, 0x53, 0x07, 0x9a, 0x65, 0x2b, - 0x66, 0xae, 0x7a, 0xb7, 0x39, 0x58, 0x07, 0x52, 0xc2, 0x7e, 0x01, 0x97, 0x3a, 0x0e, 0x8d, 0x09, - 0xda, 0x0a, 0xcc, 0x6b, 0xef, 0x93, 0xc1, 0xf6, 0x7d, 0x76, 0x0d, 0xbf, 0x85, 0x7a, 0x1f, 0x2d, - 0x6f, 0xb9, 0xd9, 0x3d, 0xee, 0x7a, 0xdd, 0xf6, 0xe1, 0x46, 0x52, 0x98, 0xa4, 0x78, 0xfb, 0xfe, - 0xfb, 0xd8, 0x72, 0xf8, 0x91, 0xca, 0x7f, 0xc7, 0xfc, 0x42, 0x4d, 0xd0, 0xaa, 0x97, 0x72, 0xf4, - 0x2b, 0xbf, 0x81, 0x46, 0x36, 0x99, 0xaf, 0x5b, 0xab, 0x95, 0xdb, 0x7c, 0x33, 0x2a, 0x75, 0x4e, - 0xae, 0xe3, 0x57, 0xec, 0x4c, 0x1e, 0x6c, 0x1a, 0xf5, 0xf5, 0xdd, 0xd7, 0x52, 0xb0, 0xc5, 0x52, - 0xb0, 0xdf, 0xa5, 0x60, 0xef, 0x2b, 0x51, 0x5b, 0xac, 0x44, 0xed, 0x67, 0x25, 0x6a, 0x0f, 0x5e, - 0x18, 0x99, 0xf1, 0x6c, 0xe8, 0x06, 0xf4, 0xa4, 0x82, 0xd4, 0x26, 0x86, 0x7a, 0x94, 0x86, 0xbd, - 0x60, 0xec, 0x47, 0xb1, 0x0a, 0x52, 0x8a, 0x49, 0xab, 0xb9, 0xa7, 0x9e, 0x0b, 0x9f, 0xb1, 0x09, - 0xea, 0xe1, 0x4e, 0xfe, 0x1a, 0x97, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0xdd, 0xbf, 0x49, 0x6b, - 0xc5, 0x01, 0x00, 0x00, + // 323 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x91, 0xc1, 0x4a, 0xf3, 0x40, + 0x10, 0xc7, 0xbb, 0x5f, 0xfb, 0x29, 0x1d, 0x15, 0xea, 0x1e, 0x24, 0x94, 0xb2, 0xca, 0x1e, 0xa4, + 0x28, 0xcd, 0x62, 0xbd, 0x79, 0xf4, 0x22, 0xda, 0x93, 0x3d, 0x7a, 0x4b, 0xd3, 0x21, 0x0d, 0xd5, + 0x4c, 0x9a, 0xdd, 0x8a, 0x8b, 0x78, 0xf1, 0x09, 0x04, 0xaf, 0x3e, 0x90, 0xc7, 0x82, 0x17, 0x8f, + 0xd2, 0xfa, 0x20, 0x92, 0x4d, 0x42, 0x7b, 0x9b, 0xfc, 0xf9, 0xcd, 0x6f, 0x66, 0xb2, 0xd0, 0xc2, + 0x3e, 0xa2, 0x9a, 0xcd, 0x31, 0xb3, 0x7e, 0x9a, 0x91, 0x21, 0xde, 0xc8, 0x93, 0x76, 0x27, 0x22, + 0x8a, 0xee, 0x51, 0x05, 0x69, 0xac, 0x82, 0x24, 0x21, 0x13, 0x98, 0x98, 0x12, 0x5d, 0x30, 0xf2, + 0x18, 0x60, 0x80, 0x76, 0x88, 0xb3, 0x39, 0x6a, 0xc3, 0x3d, 0xd8, 0x0e, 0xc6, 0xe3, 0x0c, 0xb5, + 0xf6, 0xd8, 0x11, 0xeb, 0x36, 0x87, 0xd5, 0xa7, 0x3c, 0x84, 0x1d, 0xc7, 0xe9, 0x94, 0x12, 0x8d, + 0xbc, 0x05, 0xf5, 0x29, 0xda, 0x12, 0xca, 0x4b, 0x79, 0xea, 0x00, 0x5d, 0x99, 0x3a, 0xd0, 0x2c, + 0x5b, 0x31, 0x77, 0xd5, 0xbb, 0xcd, 0xe1, 0x3a, 0x90, 0x12, 0x76, 0x0b, 0xb8, 0xd4, 0x71, 0x68, + 0x4c, 0xd1, 0x56, 0xa0, 0xab, 0xfb, 0x1f, 0x0c, 0xfe, 0xdf, 0xe6, 0xd7, 0xf0, 0x1b, 0xa8, 0x0f, + 0xd0, 0xf2, 0x96, 0x9f, 0xdf, 0xe3, 0xaf, 0xd7, 0x6d, 0xef, 0x6f, 0x24, 0x85, 0x49, 0x8a, 0xd7, + 0xaf, 0xdf, 0xf7, 0x7f, 0x1e, 0x3f, 0x50, 0xee, 0x77, 0x3c, 0x9e, 0xa9, 0x29, 0x5a, 0xf5, 0x5c, + 0x8e, 0x7e, 0xe1, 0x57, 0xd0, 0xc8, 0x27, 0xf3, 0x75, 0x6b, 0xb5, 0x72, 0x9b, 0x6f, 0x46, 0xa5, + 0xce, 0x73, 0x3a, 0x7e, 0xc1, 0x4e, 0xe4, 0xde, 0xa6, 0x51, 0x5f, 0x5e, 0x7f, 0x2e, 0x05, 0x5b, + 0x2c, 0x05, 0xfb, 0x59, 0x0a, 0xf6, 0xb6, 0x12, 0xb5, 0xc5, 0x4a, 0xd4, 0xbe, 0x57, 0xa2, 0x76, + 0xa7, 0xa2, 0xd8, 0x4c, 0xe6, 0x23, 0x3f, 0xa4, 0x07, 0x15, 0x66, 0x36, 0x35, 0xd4, 0xa3, 0x2c, + 0xea, 0x85, 0x93, 0x20, 0x4e, 0x54, 0x98, 0x51, 0x42, 0x5a, 0x3d, 0x15, 0x32, 0x63, 0x53, 0xd4, + 0xa3, 0x2d, 0xf7, 0x14, 0xe7, 0x7f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xf7, 0x2a, 0x67, 0x46, 0xc2, + 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/e2ee/types/tx.pb.go b/x/e2ee/types/tx.pb.go index 938a155bca..3d2e9bce50 100644 --- a/x/e2ee/types/tx.pb.go +++ b/x/e2ee/types/tx.pb.go @@ -126,7 +126,7 @@ func init() { func init() { proto.RegisterFile("e2ee/tx.proto", fileDescriptor_85e46bdbb1c358a8) } var fileDescriptor_85e46bdbb1c358a8 = []byte{ - // 257 bytes of a gzipped FileDescriptorProto + // 254 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4d, 0x35, 0x4a, 0x4d, 0xd5, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x01, 0x71, 0xa5, 0xc4, 0x93, 0xf3, 0x8b, 0x73, 0xf3, 0x8b, 0xf5, 0x73, 0x8b, 0xd3, 0xf5, 0xcb, 0x0c, 0x41, 0x14, 0x44, 0x5a, @@ -137,13 +137,12 @@ var fileDescriptor_85e46bdbb1c358a8 = []byte{ 0x37, 0x68, 0xc1, 0xe4, 0x95, 0x94, 0xb8, 0x14, 0x70, 0x99, 0x1a, 0x94, 0x5a, 0x5c, 0x90, 0x9f, 0x57, 0x9c, 0x6a, 0x94, 0xcb, 0xc5, 0xec, 0x5b, 0x9c, 0x2e, 0x14, 0xcf, 0x25, 0x8a, 0xdd, 0x76, 0x39, 0x3d, 0x90, 0xcb, 0xf5, 0x70, 0x99, 0x23, 0xa5, 0x86, 0x5f, 0x1e, 0x66, 0x8f, 0x14, 0x6b, - 0xc3, 0xf3, 0x0d, 0x5a, 0x8c, 0x4e, 0x3e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, + 0xc3, 0xf3, 0x0d, 0x5a, 0x8c, 0x4e, 0x9e, 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, 0x94, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, 0x36, 0x20, + 0x10, 0xa5, 0x9f, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, 0x36, 0x20, 0x5f, 0x37, 0xbf, 0x28, 0x5d, 0x37, 0x39, 0x23, 0x31, 0x33, 0x4f, 0x3f, 0xb9, 0x28, 0x3f, 0x2f, - 0xbf, 0x58, 0xbf, 0xcc, 0x48, 0xbf, 0x42, 0x1f, 0x12, 0xb0, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, - 0xe0, 0xd0, 0x33, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xc8, 0x1e, 0x5a, 0x2c, 0x6d, 0x01, 0x00, - 0x00, + 0xbf, 0x58, 0xbf, 0x42, 0x1f, 0x12, 0xaa, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, 0xa0, 0x33, + 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xc4, 0x9d, 0x96, 0x6f, 0x6a, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.