From 678ed158a0c50791a256d6d40f2c51ba75cd919a Mon Sep 17 00:00:00 2001 From: yihuang Date: Thu, 18 Apr 2024 10:34:33 +0800 Subject: [PATCH] Problem: protobuf message urls should not change Solution: - revert the package name change introduced in #1023. - don't remember why we have to change it there, but it seems not nesserary, revert it to keep it backward compatible. --- CHANGELOG.md | 1 + proto/chainmain/v1/genesis.proto | 2 +- proto/icaauth/v1/genesis.proto | 2 +- proto/icaauth/v1/params.proto | 4 +- proto/icaauth/v1/query.proto | 2 +- proto/icaauth/v1/tx.proto | 4 +- proto/nft/v1/genesis.proto | 2 +- proto/nft/v1/nft.proto | 4 +- proto/nft/v1/query.proto | 4 +- proto/nft/v1/tx.proto | 4 +- proto/nft_transfer/v1/genesis.proto | 2 +- proto/nft_transfer/v1/packet.proto | 2 +- proto/nft_transfer/v1/query.proto | 2 +- proto/nft_transfer/v1/trace.proto | 2 +- proto/nft_transfer/v1/tx.proto | 2 +- proto/supply/v1/accounts.proto | 4 +- proto/supply/v1/genesis.proto | 2 +- proto/supply/v1/query.proto | 4 +- x/chainmain/types/genesis.pb.go | 19 ++-- x/icaauth/types/genesis.pb.go | 27 ++--- x/icaauth/types/params.pb.go | 33 +++--- x/icaauth/types/query.pb.go | 78 ++++++------- x/icaauth/types/tx.pb.go | 76 +++++++------ x/nft-transfer/types/genesis.pb.go | 32 +++--- x/nft-transfer/types/packet.pb.go | 40 +++---- x/nft-transfer/types/query.pb.go | 118 +++++++++---------- x/nft-transfer/types/trace.pb.go | 26 ++--- x/nft-transfer/types/tx.pb.go | 72 ++++++------ x/nft/types/genesis.pb.go | 27 ++--- x/nft/types/nft.pb.go | 73 ++++++------ x/nft/types/query.pb.go | 169 ++++++++++++++-------------- x/nft/types/tx.pb.go | 109 +++++++++--------- x/supply/types/accounts.pb.go | 23 ++-- x/supply/types/genesis.pb.go | 20 ++-- x/supply/types/query.pb.go | 62 +++++----- 35 files changed, 532 insertions(+), 521 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2726f67ed..fefa25c6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## UNRELEASED - [#1023](https://github.com/crypto-org-chain/chain-main/pull/1023) Integrate sdk 0.47 +- [#]() Revert the protobuf package name changes introduced in #1023. *Dec 6, 2023* diff --git a/proto/chainmain/v1/genesis.proto b/proto/chainmain/v1/genesis.proto index dae39c34a..230dd3f3b 100644 --- a/proto/chainmain/v1/genesis.proto +++ b/proto/chainmain/v1/genesis.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package chainmain.v1; +package chainmain.chainmain.v1; option go_package = "github.com/crypto-org-chain/chain-main/x/chainmain/types"; diff --git a/proto/icaauth/v1/genesis.proto b/proto/icaauth/v1/genesis.proto index a674e5f17..40f0c0ba1 100644 --- a/proto/icaauth/v1/genesis.proto +++ b/proto/icaauth/v1/genesis.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package icaauth.v1; +package chainmain.icaauth.v1; import "gogoproto/gogo.proto"; import "icaauth/v1/params.proto"; diff --git a/proto/icaauth/v1/params.proto b/proto/icaauth/v1/params.proto index 9f3aee7d7..c0119cb79 100644 --- a/proto/icaauth/v1/params.proto +++ b/proto/icaauth/v1/params.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package icaauth.v1; +package chainmain.icaauth.v1; import "google/protobuf/duration.proto"; import "gogoproto/gogo.proto"; @@ -17,4 +17,4 @@ message Params { (gogoproto.stdduration) = true, (gogoproto.nullable) = false ]; -} \ No newline at end of file +} diff --git a/proto/icaauth/v1/query.proto b/proto/icaauth/v1/query.proto index 593b9d0e3..be8338181 100644 --- a/proto/icaauth/v1/query.proto +++ b/proto/icaauth/v1/query.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package icaauth.v1; +package chainmain.icaauth.v1; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; diff --git a/proto/icaauth/v1/tx.proto b/proto/icaauth/v1/tx.proto index 8aca3b641..c54ddbff8 100644 --- a/proto/icaauth/v1/tx.proto +++ b/proto/icaauth/v1/tx.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package icaauth.v1; +package chainmain.icaauth.v1; import "cosmos_proto/cosmos.proto"; import "google/protobuf/any.proto"; @@ -48,4 +48,4 @@ message MsgSubmitTx { } // MsgSubmitTxResponse defines the response message for MsgSubmitTx -message MsgSubmitTxResponse {} \ No newline at end of file +message MsgSubmitTxResponse {} diff --git a/proto/nft/v1/genesis.proto b/proto/nft/v1/genesis.proto index a499c3c5a..ee0750105 100644 --- a/proto/nft/v1/genesis.proto +++ b/proto/nft/v1/genesis.proto @@ -1,7 +1,7 @@ // Copyright (c) 2016-2021 Shanghai Bianjie AI Technology Inc. (licensed under the Apache License, Version 2.0) // Modifications Copyright (c) 2021-present Crypto.org (licensed under the Apache License, Version 2.0) syntax = "proto3"; -package nft.v1; +package chainmain.nft.v1; import "gogoproto/gogo.proto"; import "nft/v1/nft.proto"; diff --git a/proto/nft/v1/nft.proto b/proto/nft/v1/nft.proto index 265c48fab..8759709fb 100644 --- a/proto/nft/v1/nft.proto +++ b/proto/nft/v1/nft.proto @@ -1,7 +1,7 @@ // Copyright (c) 2016-2021 Shanghai Bianjie AI Technology Inc. (licensed under the Apache License, Version 2.0) // Modifications Copyright (c) 2021-present Crypto.org (licensed under the Apache License, Version 2.0) syntax = "proto3"; -package nft.v1; +package chainmain.nft.v1; import "gogoproto/gogo.proto"; @@ -54,4 +54,4 @@ message Collection { Denom denom = 1 [(gogoproto.nullable) = false]; repeated BaseNFT nfts = 2 [(gogoproto.customname) = "NFTs", (gogoproto.nullable) = false]; -} \ No newline at end of file +} diff --git a/proto/nft/v1/query.proto b/proto/nft/v1/query.proto index 3cd9727c2..ff22e26ab 100644 --- a/proto/nft/v1/query.proto +++ b/proto/nft/v1/query.proto @@ -1,7 +1,7 @@ // Copyright (c) 2016-2021 Shanghai Bianjie AI Technology Inc. (licensed under the Apache License, Version 2.0) // Modifications Copyright (c) 2021-present Crypto.org (licensed under the Apache License, Version 2.0) syntax = "proto3"; -package nft.v1; +package chainmain.nft.v1; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; @@ -128,4 +128,4 @@ message QueryNFTRequest { // QueryNFTResponse is the response type for the Query/NFT RPC method message QueryNFTResponse { BaseNFT nft = 1 [(gogoproto.customname) = "NFT"]; -} \ No newline at end of file +} diff --git a/proto/nft/v1/tx.proto b/proto/nft/v1/tx.proto index f14be9707..03e16c89d 100644 --- a/proto/nft/v1/tx.proto +++ b/proto/nft/v1/tx.proto @@ -1,7 +1,7 @@ // Copyright (c) 2016-2021 Shanghai Bianjie AI Technology Inc. (licensed under the Apache License, Version 2.0) // Modifications Copyright (c) 2021-present Crypto.org (licensed under the Apache License, Version 2.0) syntax = "proto3"; -package nft.v1; +package chainmain.nft.v1; import "gogoproto/gogo.proto"; @@ -94,4 +94,4 @@ message MsgBurnNFT { } // MsgBurnNFTResponse defines the Msg/BurnNFT response type. -message MsgBurnNFTResponse {} \ No newline at end of file +message MsgBurnNFTResponse {} diff --git a/proto/nft_transfer/v1/genesis.proto b/proto/nft_transfer/v1/genesis.proto index e9a7d50de..f37abd16b 100644 --- a/proto/nft_transfer/v1/genesis.proto +++ b/proto/nft_transfer/v1/genesis.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package nft_transfer.v1; +package chainmain.nft_transfer.v1; option go_package = "github.com/crypto-org-chain/chain-main/x/nft-transfer/types"; diff --git a/proto/nft_transfer/v1/packet.proto b/proto/nft_transfer/v1/packet.proto index 586f45fbd..a85fd3702 100644 --- a/proto/nft_transfer/v1/packet.proto +++ b/proto/nft_transfer/v1/packet.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package nft_transfer.v1; +package chainmain.nft_transfer.v1; option go_package = "github.com/crypto-org-chain/chain-main/x/nft-transfer/types"; diff --git a/proto/nft_transfer/v1/query.proto b/proto/nft_transfer/v1/query.proto index bff08c0be..fedb535a7 100644 --- a/proto/nft_transfer/v1/query.proto +++ b/proto/nft_transfer/v1/query.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package nft_transfer.v1; +package chainmain.nft_transfer.v1; option go_package = "github.com/crypto-org-chain/chain-main/x/nft-transfer/types"; diff --git a/proto/nft_transfer/v1/trace.proto b/proto/nft_transfer/v1/trace.proto index 27709c35a..72b70eecc 100644 --- a/proto/nft_transfer/v1/trace.proto +++ b/proto/nft_transfer/v1/trace.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package nft_transfer.v1; +package chainmain.nft_transfer.v1; option go_package = "github.com/crypto-org-chain/chain-main/x/nft-transfer/types"; diff --git a/proto/nft_transfer/v1/tx.proto b/proto/nft_transfer/v1/tx.proto index faa09ef27..dadc07ed7 100644 --- a/proto/nft_transfer/v1/tx.proto +++ b/proto/nft_transfer/v1/tx.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package nft_transfer.v1; +package chainmain.nft_transfer.v1; option go_package = "github.com/crypto-org-chain/chain-main/x/nft-transfer/types"; diff --git a/proto/supply/v1/accounts.proto b/proto/supply/v1/accounts.proto index 202971efc..faa8d0dc0 100644 --- a/proto/supply/v1/accounts.proto +++ b/proto/supply/v1/accounts.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package supply.v1; +package chainmain.supply.v1; option go_package = "github.com/crypto-org-chain/chain-main/x/supply/types"; @@ -7,4 +7,4 @@ option go_package = "github.com/crypto-org-chain/chain-main/x/supply/types"; message VestingAccounts { // addresses defines addresses of all the vesting accounts at genesis repeated string addresses = 1; -} \ No newline at end of file +} diff --git a/proto/supply/v1/genesis.proto b/proto/supply/v1/genesis.proto index 5fb8cdf55..6af082198 100644 --- a/proto/supply/v1/genesis.proto +++ b/proto/supply/v1/genesis.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package supply.v1; +package chainmain.supply.v1; option go_package = "github.com/crypto-org-chain/chain-main/x/supply/types"; diff --git a/proto/supply/v1/query.proto b/proto/supply/v1/query.proto index 53fd32611..77e4ab8bb 100644 --- a/proto/supply/v1/query.proto +++ b/proto/supply/v1/query.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package supply.v1; +package chainmain.supply.v1; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; @@ -32,4 +32,4 @@ message SupplyResponse { // supply is the supply of the coins repeated cosmos.base.v1beta1.Coin supply = 1 [(gogoproto.nullable) = false, (gogoproto.castrepeated) = "github.com/cosmos/cosmos-sdk/types.Coins"]; -} \ No newline at end of file +} diff --git a/x/chainmain/types/genesis.pb.go b/x/chainmain/types/genesis.pb.go index eda661b4d..2e7b83043 100644 --- a/x/chainmain/types/genesis.pb.go +++ b/x/chainmain/types/genesis.pb.go @@ -63,22 +63,23 @@ func (m *GenesisState) XXX_DiscardUnknown() { var xxx_messageInfo_GenesisState proto.InternalMessageInfo func init() { - proto.RegisterType((*GenesisState)(nil), "chainmain.v1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "chainmain.chainmain.v1.GenesisState") } func init() { proto.RegisterFile("chainmain/v1/genesis.proto", fileDescriptor_d594f80fcffdb1b9) } var fileDescriptor_d594f80fcffdb1b9 = []byte{ - // 144 bytes of a gzipped FileDescriptorProto + // 147 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4a, 0xce, 0x48, 0xcc, 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, - 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x81, 0xcb, 0xe9, 0x95, 0x19, 0x2a, 0xf1, 0x71, - 0xf1, 0xb8, 0x43, 0xa4, 0x83, 0x4b, 0x12, 0x4b, 0x52, 0x9d, 0x82, 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, 0x22, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, - 0x57, 0x3f, 0xb9, 0xa8, 0xb2, 0xa0, 0x24, 0x5f, 0x37, 0xbf, 0x28, 0x5d, 0x17, 0x6c, 0x9a, 0x3e, - 0x98, 0xd4, 0x05, 0x5b, 0x58, 0xa1, 0x8f, 0xb0, 0xbc, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, - 0x6c, 0xb1, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x9c, 0x8c, 0xda, 0x54, 0x96, 0x00, 0x00, 0x00, + 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x83, 0xcb, 0xe9, 0x21, 0x58, 0x65, 0x86, 0x4a, + 0x7c, 0x5c, 0x3c, 0xee, 0x10, 0x85, 0xc1, 0x25, 0x89, 0x25, 0xa9, 0x4e, 0x41, 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, 0x91, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, + 0x9c, 0x9f, 0xab, 0x9f, 0x5c, 0x54, 0x59, 0x50, 0x92, 0xaf, 0x9b, 0x5f, 0x94, 0xae, 0x0b, 0x36, + 0x4d, 0x1f, 0x4c, 0xea, 0x82, 0xad, 0xae, 0xd0, 0x47, 0x38, 0xa3, 0xa4, 0xb2, 0x20, 0xb5, 0x38, + 0x89, 0x0d, 0xec, 0x04, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x83, 0x5b, 0xcf, 0xac, 0xa0, + 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/icaauth/types/genesis.pb.go b/x/icaauth/types/genesis.pb.go index e7caabc2d..c1d688bf9 100644 --- a/x/icaauth/types/genesis.pb.go +++ b/x/icaauth/types/genesis.pb.go @@ -70,26 +70,27 @@ func (m *GenesisState) GetParams() Params { } func init() { - proto.RegisterType((*GenesisState)(nil), "icaauth.v1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "chainmain.icaauth.v1.GenesisState") } func init() { proto.RegisterFile("icaauth/v1/genesis.proto", fileDescriptor_2ebfc8327b166956) } var fileDescriptor_2ebfc8327b166956 = []byte{ - // 200 bytes of a gzipped FileDescriptorProto + // 209 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xc8, 0x4c, 0x4e, 0x4c, 0x2c, 0x2d, 0xc9, 0xd0, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, - 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x82, 0xca, 0xe8, 0x95, 0x19, 0x4a, 0x89, 0xa4, 0xe7, 0xa7, - 0xe7, 0x83, 0x85, 0xf5, 0x41, 0x2c, 0x88, 0x0a, 0x29, 0x71, 0x24, 0xbd, 0x05, 0x89, 0x45, 0x89, - 0xb9, 0x50, 0xad, 0x4a, 0x0e, 0x5c, 0x3c, 0xee, 0x10, 0xb3, 0x82, 0x4b, 0x12, 0x4b, 0x52, 0x85, - 0x0c, 0xb8, 0xd8, 0x20, 0xf2, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0x42, 0x7a, 0x08, 0xb3, - 0xf5, 0x02, 0xc0, 0x32, 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, 0x04, 0x41, 0xd5, 0x39, 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, 0x7e, 0x72, 0x51, 0x65, 0x41, 0x49, 0xbe, 0x6e, 0x7e, 0x51, 0xba, - 0x6e, 0x72, 0x46, 0x62, 0x66, 0x9e, 0x3e, 0x98, 0xd4, 0xcd, 0x05, 0x31, 0x2b, 0xf4, 0x61, 0xae, - 0x2b, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x3b, 0xcd, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, - 0x70, 0xb9, 0x55, 0x07, 0xf1, 0x00, 0x00, 0x00, + 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x49, 0xce, 0x48, 0xcc, 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, + 0x83, 0xaa, 0xd1, 0x2b, 0x33, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd0, 0x07, 0xb1, + 0x20, 0x6a, 0xa5, 0xc4, 0x91, 0x4c, 0x29, 0x48, 0x2c, 0x4a, 0xcc, 0x85, 0x1a, 0xa2, 0xe4, 0xc5, + 0xc5, 0xe3, 0x0e, 0x31, 0x35, 0xb8, 0x24, 0xb1, 0x24, 0x55, 0xc8, 0x8a, 0x8b, 0x0d, 0x22, 0x2f, + 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x6d, 0x24, 0xa3, 0x87, 0xcd, 0x16, 0xbd, 0x00, 0xb0, 0x1a, 0x27, + 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0xa0, 0x3a, 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, + 0x3f, 0xb9, 0xa8, 0xb2, 0xa0, 0x24, 0x5f, 0x37, 0xbf, 0x28, 0x5d, 0x17, 0x6c, 0xb4, 0x3e, 0x98, + 0xd4, 0x05, 0xd9, 0xa0, 0x5f, 0xa1, 0x0f, 0x73, 0x67, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, + 0xd8, 0x91, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xec, 0x35, 0xd3, 0x9c, 0x05, 0x01, 0x00, + 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/icaauth/types/params.pb.go b/x/icaauth/types/params.pb.go index 05f5d8963..ac6c81252 100644 --- a/x/icaauth/types/params.pb.go +++ b/x/icaauth/types/params.pb.go @@ -74,29 +74,30 @@ func (m *Params) GetMinTimeoutDuration() time.Duration { } func init() { - proto.RegisterType((*Params)(nil), "icaauth.v1.Params") + proto.RegisterType((*Params)(nil), "chainmain.icaauth.v1.Params") } func init() { proto.RegisterFile("icaauth/v1/params.proto", fileDescriptor_1d9da7e51e957114) } var fileDescriptor_1d9da7e51e957114 = []byte{ - // 255 bytes of a gzipped FileDescriptorProto + // 263 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xcf, 0x4c, 0x4e, 0x4c, 0x2c, 0x2d, 0xc9, 0xd0, 0x2f, 0x33, 0xd4, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, - 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x82, 0x4a, 0xe8, 0x95, 0x19, 0x4a, 0xc9, 0xa5, 0xe7, 0xe7, 0xa7, - 0xe7, 0xa4, 0xea, 0x83, 0x65, 0x92, 0x4a, 0xd3, 0xf4, 0x53, 0x4a, 0x8b, 0x12, 0x4b, 0x32, 0xf3, - 0xf3, 0x20, 0x6a, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x4c, 0x7d, 0x10, 0x0b, 0x22, 0xaa, - 0xd4, 0xc4, 0xc8, 0xc5, 0x16, 0x00, 0x36, 0x52, 0xa8, 0x88, 0x4b, 0x28, 0x37, 0x33, 0x2f, 0x24, - 0x33, 0x37, 0x35, 0xbf, 0xb4, 0xc4, 0x05, 0xaa, 0x59, 0x82, 0x51, 0x81, 0x51, 0x83, 0xdb, 0x48, - 0x52, 0x0f, 0x62, 0xba, 0x1e, 0xcc, 0x74, 0x3d, 0x98, 0x02, 0x27, 0xf5, 0x13, 0xf7, 0xe4, 0x19, - 0x3e, 0xdd, 0x93, 0x97, 0xae, 0x4c, 0xcc, 0xcd, 0xb1, 0x52, 0xca, 0xcd, 0xcc, 0x8b, 0x2f, 0x81, - 0x98, 0x11, 0x0f, 0x73, 0x81, 0xd2, 0x8c, 0xfb, 0xf2, 0x8c, 0x41, 0x58, 0x4c, 0xb7, 0x62, 0x99, - 0xb1, 0x40, 0x9e, 0xc1, 0x29, 0xe0, 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, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x93, 0x8b, 0x2a, 0x0b, - 0x4a, 0xf2, 0x75, 0xf3, 0x8b, 0xd2, 0x75, 0x93, 0x33, 0x12, 0x33, 0xf3, 0xf4, 0xc1, 0xa4, 0x6e, - 0x2e, 0x88, 0x59, 0xa1, 0x0f, 0x0b, 0xa2, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x3b, - 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa2, 0xb2, 0xf3, 0x71, 0x3a, 0x01, 0x00, 0x00, + 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x49, 0xce, 0x48, 0xcc, 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0x83, + 0x2a, 0xd1, 0x2b, 0x33, 0x94, 0x92, 0x4b, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0xd5, 0x07, 0xab, 0x49, + 0x2a, 0x4d, 0xd3, 0x4f, 0x29, 0x2d, 0x4a, 0x2c, 0xc9, 0xcc, 0xcf, 0x83, 0xe8, 0x92, 0x12, 0x49, + 0xcf, 0x4f, 0xcf, 0x07, 0x33, 0xf5, 0x41, 0x2c, 0x88, 0xa8, 0x52, 0x13, 0x23, 0x17, 0x5b, 0x00, + 0xd8, 0x70, 0xa1, 0x22, 0x2e, 0xa1, 0xdc, 0xcc, 0xbc, 0x90, 0xcc, 0xdc, 0xd4, 0xfc, 0xd2, 0x12, + 0x17, 0xa8, 0x66, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x49, 0x3d, 0x88, 0xe9, 0x7a, 0x30, + 0xd3, 0xf5, 0x60, 0x0a, 0x9c, 0xd4, 0x4f, 0xdc, 0x93, 0x67, 0xf8, 0x74, 0x4f, 0x5e, 0xba, 0x32, + 0x31, 0x37, 0xc7, 0x4a, 0x29, 0x37, 0x33, 0x2f, 0xbe, 0x04, 0x62, 0x46, 0x3c, 0xcc, 0x05, 0x4a, + 0x33, 0xee, 0xcb, 0x33, 0x06, 0x61, 0x31, 0xdd, 0x8a, 0x65, 0xc6, 0x02, 0x79, 0x06, 0xa7, 0x80, + 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, 0x4b, 0xcf, 0x2c, 0xc9, 0x28, + 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0x2e, 0xaa, 0x2c, 0x28, 0xc9, 0xd7, 0xcd, 0x2f, 0x4a, + 0xd7, 0x05, 0x07, 0x80, 0x3e, 0x98, 0xd4, 0x05, 0x85, 0x83, 0x7e, 0x85, 0x3e, 0x2c, 0xb0, 0x4a, + 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xee, 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x83, + 0xb8, 0x6c, 0xae, 0x44, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/icaauth/types/query.pb.go b/x/icaauth/types/query.pb.go index edeed6640..6cd0aa1df 100644 --- a/x/icaauth/types/query.pb.go +++ b/x/icaauth/types/query.pb.go @@ -212,45 +212,45 @@ func (m *QueryInterchainAccountAddressResponse) GetInterchainAccountAddress() st } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "icaauth.v1.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "icaauth.v1.QueryParamsResponse") - proto.RegisterType((*QueryInterchainAccountAddressRequest)(nil), "icaauth.v1.QueryInterchainAccountAddressRequest") - proto.RegisterType((*QueryInterchainAccountAddressResponse)(nil), "icaauth.v1.QueryInterchainAccountAddressResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "chainmain.icaauth.v1.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "chainmain.icaauth.v1.QueryParamsResponse") + proto.RegisterType((*QueryInterchainAccountAddressRequest)(nil), "chainmain.icaauth.v1.QueryInterchainAccountAddressRequest") + proto.RegisterType((*QueryInterchainAccountAddressResponse)(nil), "chainmain.icaauth.v1.QueryInterchainAccountAddressResponse") } func init() { proto.RegisterFile("icaauth/v1/query.proto", fileDescriptor_b4ef18af0a32af09) } var fileDescriptor_b4ef18af0a32af09 = []byte{ - // 455 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0x41, 0x6b, 0x13, 0x41, - 0x14, 0xce, 0x06, 0x1b, 0x70, 0xf4, 0x34, 0x06, 0x5d, 0x42, 0x99, 0xc8, 0x52, 0x41, 0x84, 0xec, - 0x74, 0x2b, 0x78, 0x28, 0x5e, 0x9a, 0x4b, 0xc9, 0xc9, 0xba, 0x47, 0x2f, 0x61, 0x32, 0x19, 0x36, - 0x03, 0xdd, 0x79, 0xdb, 0x99, 0xd9, 0x68, 0x2c, 0xbd, 0xf8, 0x0b, 0x04, 0xff, 0x54, 0xc1, 0x4b, - 0xc0, 0x8b, 0xa7, 0x22, 0x89, 0xbf, 0xc0, 0x5f, 0x20, 0x3b, 0xb3, 0x9a, 0x94, 0xb8, 0x14, 0x6f, - 0xbb, 0xef, 0x7d, 0xef, 0xfb, 0xbe, 0xf7, 0xbe, 0x41, 0x8f, 0x25, 0x67, 0xac, 0xb4, 0x33, 0x3a, - 0x4f, 0xe8, 0x45, 0x29, 0xf4, 0x22, 0x2e, 0x34, 0x58, 0xc0, 0xa8, 0xae, 0xc7, 0xf3, 0xa4, 0xd7, - 0xcd, 0x20, 0x03, 0x57, 0xa6, 0xd5, 0x97, 0x47, 0xf4, 0xf6, 0x33, 0x80, 0xec, 0x5c, 0x50, 0x56, - 0x48, 0xca, 0x94, 0x02, 0xcb, 0xac, 0x04, 0x65, 0xea, 0xee, 0x0b, 0x0e, 0x26, 0x07, 0x43, 0x27, - 0xcc, 0x08, 0x4f, 0x4c, 0xe7, 0xc9, 0x44, 0x58, 0x96, 0xd0, 0x82, 0x65, 0x52, 0x39, 0x70, 0x8d, - 0x7d, 0xb2, 0xe5, 0xa1, 0x60, 0x9a, 0xe5, 0x35, 0x49, 0xd4, 0x45, 0xf8, 0x6d, 0x35, 0x7a, 0xe6, - 0x8a, 0xa9, 0xb8, 0x28, 0x85, 0xb1, 0xd1, 0x29, 0x7a, 0x74, 0xab, 0x6a, 0x0a, 0x50, 0x46, 0xe0, - 0x43, 0xd4, 0xf1, 0xc3, 0x61, 0xf0, 0x34, 0x78, 0xfe, 0xe0, 0x08, 0xc7, 0x9b, 0x15, 0x62, 0x8f, - 0x1d, 0xde, 0xbb, 0xbe, 0xe9, 0xb7, 0xd2, 0x1a, 0x17, 0x7d, 0x44, 0x07, 0x8e, 0x68, 0xa4, 0xac, - 0xd0, 0x7c, 0xc6, 0xa4, 0x3a, 0xe1, 0x1c, 0x4a, 0x65, 0x4f, 0xa6, 0x53, 0x2d, 0xcc, 0x1f, 0x41, - 0xfc, 0x1a, 0x3d, 0xe4, 0xa0, 0x94, 0xe0, 0x95, 0xe7, 0xd1, 0xd4, 0xf1, 0xdf, 0x1f, 0x86, 0xbf, - 0x6e, 0xfa, 0xdd, 0x05, 0xcb, 0xcf, 0x8f, 0xa3, 0x4d, 0x77, 0x2c, 0xa7, 0x51, 0x7a, 0x0b, 0x8d, - 0xbb, 0x68, 0x0f, 0xde, 0x2b, 0xa1, 0xc3, 0x76, 0x35, 0x96, 0xfa, 0x9f, 0x88, 0xa3, 0x67, 0x77, - 0x68, 0xd7, 0x6b, 0x1d, 0xa3, 0x50, 0x36, 0x60, 0xbc, 0x91, 0xb4, 0xb1, 0x7f, 0xf4, 0xb5, 0x8d, - 0xf6, 0x9c, 0x0a, 0x06, 0xd4, 0xf1, 0x27, 0xc0, 0x64, 0xfb, 0x2c, 0xbb, 0xd7, 0xed, 0xf5, 0x1b, - 0xfb, 0xde, 0x50, 0x74, 0xf0, 0xe9, 0xdb, 0xcf, 0x2f, 0x6d, 0x82, 0xf7, 0xa9, 0x93, 0xcc, 0x99, - 0x54, 0x74, 0x27, 0x40, 0xbc, 0x0c, 0x50, 0xd8, 0xb4, 0x1b, 0x3e, 0xdc, 0xd1, 0xb8, 0x23, 0x82, - 0x5e, 0xf2, 0x1f, 0x13, 0xb5, 0xcf, 0x37, 0xce, 0xe7, 0x08, 0x9f, 0xfe, 0xdb, 0xe7, 0xe6, 0x68, - 0x63, 0xe6, 0x09, 0xc6, 0xcc, 0x33, 0xd0, 0xcb, 0xed, 0xfc, 0xae, 0xe8, 0xa5, 0x4b, 0xec, 0x6a, - 0x78, 0x76, 0xbd, 0x22, 0xc1, 0x72, 0x45, 0x82, 0x1f, 0x2b, 0x12, 0x7c, 0x5e, 0x93, 0xd6, 0x72, - 0x4d, 0x5a, 0xdf, 0xd7, 0xa4, 0xf5, 0xee, 0x55, 0x26, 0xed, 0xac, 0x9c, 0xc4, 0x1c, 0x72, 0xca, - 0xf5, 0xa2, 0xb0, 0x30, 0x00, 0x9d, 0x0d, 0x1c, 0xbb, 0x57, 0x1f, 0x38, 0xf9, 0x0f, 0x7f, 0x0d, - 0xd8, 0x45, 0x21, 0xcc, 0xa4, 0xe3, 0x9e, 0xf9, 0xcb, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x79, - 0x52, 0x7c, 0xd6, 0x85, 0x03, 0x00, 0x00, + // 459 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0x4f, 0x6b, 0x13, 0x41, + 0x14, 0xcf, 0x06, 0x1b, 0x70, 0xf4, 0x34, 0x2e, 0xba, 0x84, 0xb0, 0x95, 0xa5, 0x42, 0x15, 0xb2, + 0x43, 0x2a, 0x78, 0x88, 0x5e, 0x9a, 0x8b, 0xe4, 0x64, 0xbb, 0x47, 0x2f, 0x61, 0x32, 0x19, 0x36, + 0x03, 0xdd, 0x79, 0xdb, 0x99, 0xd9, 0xe8, 0x5a, 0x7a, 0xd1, 0x2f, 0x20, 0xf8, 0xa5, 0x7a, 0x2c, + 0x78, 0xf1, 0x54, 0x24, 0xe9, 0x27, 0x10, 0x3f, 0x80, 0xec, 0xcc, 0x9a, 0xb6, 0x34, 0x31, 0xd2, + 0xdb, 0xee, 0x7b, 0xbf, 0x7f, 0xef, 0x3d, 0x06, 0x3d, 0x16, 0x8c, 0xd2, 0xc2, 0x4c, 0xc9, 0xac, + 0x47, 0x8e, 0x0b, 0xae, 0xca, 0x38, 0x57, 0x60, 0x00, 0xfb, 0x6c, 0x4a, 0x85, 0xcc, 0xa8, 0x90, + 0x71, 0x8d, 0x88, 0x67, 0xbd, 0xb6, 0x9f, 0x42, 0x0a, 0x16, 0x40, 0xaa, 0x2f, 0x87, 0x6d, 0x77, + 0x52, 0x80, 0xf4, 0x88, 0x13, 0x9a, 0x0b, 0x42, 0xa5, 0x04, 0x43, 0x8d, 0x00, 0xa9, 0xeb, 0xee, + 0x0b, 0x06, 0x3a, 0x03, 0x4d, 0xc6, 0x54, 0x73, 0x67, 0x41, 0x66, 0xbd, 0x31, 0x37, 0xb4, 0x47, + 0x72, 0x9a, 0x0a, 0x69, 0xc1, 0x35, 0xf6, 0xc9, 0xb5, 0x34, 0x39, 0x55, 0x34, 0xab, 0x45, 0x22, + 0x1f, 0xe1, 0xc3, 0x8a, 0x7a, 0x60, 0x8b, 0x09, 0x3f, 0x2e, 0xb8, 0x36, 0xd1, 0x21, 0x7a, 0x74, + 0xa3, 0xaa, 0x73, 0x90, 0x9a, 0xe3, 0x3e, 0x6a, 0x39, 0x72, 0xe0, 0x3d, 0xf5, 0x76, 0x1f, 0xec, + 0x75, 0xe2, 0x55, 0xc3, 0xc4, 0x8e, 0x35, 0xb8, 0x77, 0x76, 0xb1, 0xdd, 0x48, 0x6a, 0x46, 0xf4, + 0x09, 0xed, 0x58, 0xc9, 0xa1, 0x34, 0x5c, 0x59, 0xda, 0x3e, 0x63, 0x50, 0x48, 0xb3, 0x3f, 0x99, + 0x28, 0xae, 0xff, 0x5a, 0xe3, 0x37, 0xe8, 0x21, 0x03, 0x29, 0x39, 0xab, 0xd2, 0x0f, 0x27, 0xd6, + 0xe9, 0xfe, 0x20, 0xf8, 0x75, 0xb1, 0xed, 0x97, 0x34, 0x3b, 0xea, 0x47, 0x57, 0xdd, 0x91, 0x98, + 0x44, 0xc9, 0x0d, 0x34, 0xf6, 0xd1, 0x16, 0x7c, 0x90, 0x5c, 0x05, 0xcd, 0x8a, 0x96, 0xb8, 0x9f, + 0x88, 0xa1, 0x67, 0x1b, 0xbc, 0x97, 0x03, 0x06, 0x62, 0x0d, 0xc6, 0x05, 0x49, 0xd6, 0xf6, 0xf7, + 0x7e, 0x37, 0xd1, 0x96, 0x75, 0xc1, 0x5f, 0x3c, 0xd4, 0x72, 0x3b, 0xc0, 0xbb, 0xab, 0x37, 0x74, + 0x7b, 0xe5, 0xed, 0xe7, 0xff, 0x81, 0x74, 0x29, 0xa3, 0x9d, 0xcf, 0xdf, 0x2f, 0xbf, 0x35, 0x43, + 0xdc, 0x21, 0x4b, 0x0a, 0xb9, 0x75, 0x5f, 0x7c, 0xe9, 0xa1, 0x60, 0xdd, 0xc0, 0xb8, 0xff, 0x0f, + 0xb7, 0x0d, 0x17, 0x6a, 0xbf, 0xbe, 0x13, 0xb7, 0xce, 0xfe, 0xce, 0x66, 0x1f, 0xe2, 0xb7, 0xab, + 0xb3, 0x5f, 0x6d, 0x77, 0x44, 0x9d, 0xc0, 0x88, 0x3a, 0x05, 0x72, 0x72, 0xfd, 0xd0, 0xa7, 0xe4, + 0xc4, 0x9e, 0xf6, 0x74, 0x70, 0x70, 0x36, 0x0f, 0xbd, 0xf3, 0x79, 0xe8, 0xfd, 0x9c, 0x87, 0xde, + 0xd7, 0x45, 0xd8, 0x38, 0x5f, 0x84, 0x8d, 0x1f, 0x8b, 0xb0, 0xf1, 0xfe, 0x55, 0x2a, 0xcc, 0xb4, + 0x18, 0xc7, 0x0c, 0x32, 0xc2, 0x54, 0x99, 0x1b, 0xe8, 0x82, 0x4a, 0xbb, 0x56, 0xdd, 0xb9, 0x77, + 0xad, 0xfd, 0xc7, 0x65, 0x00, 0x53, 0xe6, 0x5c, 0x8f, 0x5b, 0xf6, 0x65, 0xbc, 0xfc, 0x13, 0x00, + 0x00, 0xff, 0xff, 0x25, 0xc8, 0x1f, 0xca, 0xc2, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -281,7 +281,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/icaauth.v1.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.icaauth.v1.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -290,7 +290,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) InterchainAccountAddress(ctx context.Context, in *QueryInterchainAccountAddressRequest, opts ...grpc.CallOption) (*QueryInterchainAccountAddressResponse, error) { out := new(QueryInterchainAccountAddressResponse) - err := c.cc.Invoke(ctx, "/icaauth.v1.Query/InterchainAccountAddress", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.icaauth.v1.Query/InterchainAccountAddress", in, out, opts...) if err != nil { return nil, err } @@ -330,7 +330,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/icaauth.v1.Query/Params", + FullMethod: "/chainmain.icaauth.v1.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -348,7 +348,7 @@ func _Query_InterchainAccountAddress_Handler(srv interface{}, ctx context.Contex } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/icaauth.v1.Query/InterchainAccountAddress", + FullMethod: "/chainmain.icaauth.v1.Query/InterchainAccountAddress", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).InterchainAccountAddress(ctx, req.(*QueryInterchainAccountAddressRequest)) @@ -357,7 +357,7 @@ func _Query_InterchainAccountAddress_Handler(srv interface{}, ctx context.Contex } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "icaauth.v1.Query", + ServiceName: "chainmain.icaauth.v1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/x/icaauth/types/tx.pb.go b/x/icaauth/types/tx.pb.go index 6f9efcf22..2428169ae 100644 --- a/x/icaauth/types/tx.pb.go +++ b/x/icaauth/types/tx.pb.go @@ -246,43 +246,45 @@ func (m *MsgSubmitTxResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgSubmitTxResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgRegisterAccount)(nil), "icaauth.v1.MsgRegisterAccount") - proto.RegisterType((*MsgRegisterAccountResponse)(nil), "icaauth.v1.MsgRegisterAccountResponse") - proto.RegisterType((*MsgSubmitTx)(nil), "icaauth.v1.MsgSubmitTx") - proto.RegisterType((*MsgSubmitTxResponse)(nil), "icaauth.v1.MsgSubmitTxResponse") + proto.RegisterType((*MsgRegisterAccount)(nil), "chainmain.icaauth.v1.MsgRegisterAccount") + proto.RegisterType((*MsgRegisterAccountResponse)(nil), "chainmain.icaauth.v1.MsgRegisterAccountResponse") + proto.RegisterType((*MsgSubmitTx)(nil), "chainmain.icaauth.v1.MsgSubmitTx") + proto.RegisterType((*MsgSubmitTxResponse)(nil), "chainmain.icaauth.v1.MsgSubmitTxResponse") } func init() { proto.RegisterFile("icaauth/v1/tx.proto", fileDescriptor_09bf995a0c8f8b8c) } var fileDescriptor_09bf995a0c8f8b8c = []byte{ - // 426 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x93, 0x3f, 0x8f, 0xd3, 0x30, - 0x18, 0xc6, 0x6b, 0x7a, 0xfc, 0xf3, 0x21, 0x9d, 0xe4, 0x2b, 0x22, 0x8d, 0x90, 0x8b, 0x32, 0x9c, - 0x58, 0x6a, 0xeb, 0x0e, 0x89, 0x01, 0xb1, 0x5c, 0x75, 0xcb, 0x0d, 0x95, 0x50, 0x60, 0x81, 0xe5, - 0x94, 0xba, 0xc6, 0xb5, 0x74, 0xf1, 0x1b, 0xc5, 0x4e, 0x69, 0x56, 0x3e, 0x01, 0x23, 0x9f, 0x80, - 0xcf, 0xc2, 0x78, 0x03, 0x03, 0x13, 0xa0, 0xf6, 0x1b, 0xf0, 0x09, 0x50, 0xfe, 0x98, 0x42, 0x2a, - 0xd8, 0x6e, 0x89, 0xfc, 0xfa, 0xf7, 0x3e, 0x4f, 0x5e, 0x3f, 0x89, 0xf1, 0xa1, 0x16, 0x49, 0x52, - 0xb8, 0x05, 0x5f, 0x1e, 0x73, 0xb7, 0x62, 0x59, 0x0e, 0x0e, 0x08, 0x6e, 0x37, 0xd9, 0xf2, 0x38, - 0x1c, 0x0a, 0xb0, 0x29, 0xd8, 0x8b, 0x9a, 0xf0, 0xa6, 0x68, 0xda, 0xc2, 0xa1, 0x02, 0x50, 0x97, - 0x92, 0xd7, 0xd5, 0xac, 0x78, 0xcb, 0x13, 0x53, 0xb6, 0x88, 0x76, 0xd1, 0xbc, 0xc8, 0x13, 0xa7, - 0xc1, 0xb4, 0x7c, 0xa0, 0x40, 0x41, 0x63, 0x59, 0xad, 0x9a, 0xdd, 0xe8, 0x3d, 0xc2, 0x64, 0x6a, - 0x55, 0x2c, 0x95, 0xb6, 0x4e, 0xe6, 0xa7, 0x42, 0x40, 0x61, 0x1c, 0x19, 0xe0, 0x9b, 0xf0, 0xce, - 0xc8, 0x3c, 0x40, 0x8f, 0xd0, 0xe3, 0xbb, 0x71, 0x53, 0x90, 0xe7, 0xf8, 0x9e, 0x00, 0x63, 0xa4, - 0xa8, 0x6c, 0xcf, 0xe7, 0xc1, 0x8d, 0x0a, 0x4e, 0x82, 0x9f, 0xdf, 0x46, 0x83, 0x32, 0x49, 0x2f, - 0x9f, 0x45, 0x5b, 0x7a, 0xa1, 0xe7, 0x51, 0xfc, 0x57, 0x37, 0x09, 0xf0, 0xed, 0xa5, 0xcc, 0xad, - 0x06, 0x13, 0xf4, 0x6b, 0x57, 0x5f, 0x46, 0x0f, 0x71, 0xb8, 0x3b, 0x43, 0x2c, 0x6d, 0x06, 0xc6, - 0xca, 0xe8, 0x0b, 0xc2, 0xfb, 0x53, 0xab, 0x5e, 0x16, 0xb3, 0x54, 0xbb, 0x57, 0xab, 0x6b, 0x99, - 0xed, 0x08, 0xf7, 0x53, 0xab, 0xea, 0xb9, 0xf6, 0x4f, 0x06, 0xac, 0x89, 0x92, 0xf9, 0x28, 0xd9, - 0xa9, 0x29, 0xe3, 0xaa, 0x81, 0x9c, 0xe3, 0x03, 0xa7, 0x53, 0x09, 0x85, 0x3b, 0x6b, 0xd3, 0x0d, - 0xf6, 0x6a, 0xcd, 0x70, 0x47, 0xe3, 0x1b, 0x26, 0x7b, 0x1f, 0xbf, 0x8f, 0x50, 0xdc, 0xd5, 0x45, - 0xf7, 0xf1, 0xe1, 0x1f, 0xa7, 0xf2, 0xa7, 0x3d, 0xf9, 0x84, 0x70, 0x7f, 0x6a, 0x15, 0x79, 0x8d, - 0x0f, 0xba, 0x1f, 0x85, 0xb2, 0xed, 0x4f, 0xc2, 0x76, 0x03, 0x0b, 0x8f, 0xfe, 0xcf, 0xfd, 0x2b, - 0xc8, 0x19, 0xbe, 0xf3, 0x3b, 0xcc, 0x07, 0x1d, 0x8d, 0x07, 0xe1, 0xe8, 0x1f, 0xc0, 0xbb, 0x4c, - 0x5e, 0x7c, 0x5e, 0x53, 0x74, 0xb5, 0xa6, 0xe8, 0xc7, 0x9a, 0xa2, 0x0f, 0x1b, 0xda, 0xbb, 0xda, - 0xd0, 0xde, 0xd7, 0x0d, 0xed, 0xbd, 0x79, 0xaa, 0xb4, 0x5b, 0x14, 0x33, 0x26, 0x20, 0xe5, 0x22, - 0x2f, 0x33, 0x07, 0x63, 0xc8, 0xd5, 0x58, 0x2c, 0x12, 0x6d, 0x78, 0xfd, 0x1c, 0xa7, 0xd5, 0x72, - 0xc5, 0xfd, 0x4d, 0x70, 0x65, 0x26, 0xed, 0xec, 0x56, 0x9d, 0xdd, 0x93, 0x5f, 0x01, 0x00, 0x00, - 0xff, 0xff, 0x4f, 0x47, 0x52, 0x10, 0x21, 0x03, 0x00, 0x00, + // 449 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x53, 0xbb, 0x8e, 0xd3, 0x40, + 0x14, 0xcd, 0x90, 0xc0, 0xc2, 0x04, 0x69, 0x25, 0xaf, 0x91, 0x1c, 0x0b, 0x79, 0x83, 0xab, 0x50, + 0x64, 0x86, 0x0d, 0x82, 0x02, 0xd1, 0x6c, 0x44, 0xb3, 0x45, 0x24, 0x64, 0x28, 0x10, 0xcd, 0xca, + 0x99, 0x0c, 0x93, 0x11, 0x3b, 0x73, 0x23, 0xcf, 0x38, 0xc4, 0x2d, 0x5f, 0x40, 0xc9, 0x87, 0xf0, + 0x11, 0x88, 0x02, 0x6d, 0x49, 0x05, 0x28, 0xf9, 0x03, 0xbe, 0x00, 0xf9, 0x31, 0x3c, 0x12, 0x10, + 0x34, 0xdb, 0x58, 0x3e, 0x3e, 0xe7, 0x9e, 0x7b, 0xef, 0xf1, 0x0c, 0x3e, 0x90, 0x2c, 0x4d, 0x73, + 0x3b, 0xa7, 0xcb, 0x23, 0x6a, 0x57, 0x64, 0x91, 0x81, 0x05, 0xcf, 0x67, 0xf3, 0x54, 0x6a, 0x95, + 0x4a, 0x4d, 0x1a, 0x9a, 0x2c, 0x8f, 0xc2, 0x1e, 0x03, 0xa3, 0xc0, 0x9c, 0x56, 0x1a, 0x5a, 0x83, + 0xba, 0x20, 0xec, 0x09, 0x00, 0x71, 0xc6, 0x69, 0x85, 0xa6, 0xf9, 0x0b, 0x9a, 0xea, 0xa2, 0xa1, + 0xa2, 0x6d, 0x6a, 0x96, 0x67, 0xa9, 0x95, 0xa0, 0x1b, 0xde, 0x17, 0x20, 0xa0, 0xb6, 0x2c, 0xdf, + 0xea, 0xaf, 0xf1, 0x6b, 0x84, 0xbd, 0x89, 0x11, 0x09, 0x17, 0xd2, 0x58, 0x9e, 0x1d, 0x33, 0x06, + 0xb9, 0xb6, 0x9e, 0x8f, 0x2f, 0xc3, 0x2b, 0xcd, 0xb3, 0x00, 0xf5, 0xd1, 0xe0, 0x5a, 0x52, 0x03, + 0xef, 0x21, 0xbe, 0xce, 0x40, 0x6b, 0xce, 0x4a, 0xdb, 0x93, 0x59, 0x70, 0xa9, 0x24, 0xc7, 0xc1, + 0xb7, 0xcf, 0x87, 0x7e, 0x91, 0xaa, 0xb3, 0x07, 0xf1, 0x4f, 0xf6, 0x54, 0xce, 0xe2, 0xe4, 0x37, + 0xb5, 0x17, 0xe0, 0xbd, 0x25, 0xcf, 0x8c, 0x04, 0x1d, 0xb4, 0x2b, 0x57, 0x07, 0xe3, 0x9b, 0x38, + 0xdc, 0x9d, 0x21, 0xe1, 0x66, 0x01, 0xda, 0xf0, 0x78, 0x83, 0x70, 0x77, 0x62, 0xc4, 0x93, 0x7c, + 0xaa, 0xa4, 0x7d, 0xba, 0xba, 0x90, 0xd9, 0xee, 0xe1, 0x8e, 0x32, 0xc2, 0x04, 0xed, 0x7e, 0x7b, + 0xd0, 0x1d, 0xf9, 0xa4, 0xce, 0x92, 0xb8, 0x2c, 0xc9, 0xb1, 0x2e, 0xc6, 0xdd, 0x0f, 0xef, 0x86, + 0x7b, 0x66, 0xf6, 0x92, 0x94, 0xb3, 0x56, 0x72, 0xef, 0x04, 0xef, 0x5b, 0xa9, 0x38, 0xe4, 0xf6, + 0x51, 0x13, 0x76, 0xd0, 0xe9, 0xa3, 0x41, 0x77, 0xd4, 0xdb, 0x71, 0x70, 0x82, 0x71, 0xe7, 0xed, + 0x97, 0x43, 0x94, 0x6c, 0xd7, 0xc5, 0x37, 0xf0, 0xc1, 0x2f, 0x4b, 0xba, 0xe5, 0x47, 0x1f, 0x11, + 0x6e, 0x4f, 0x8c, 0xf0, 0x14, 0xde, 0xdf, 0xfe, 0x47, 0x03, 0xf2, 0xa7, 0xd3, 0x43, 0x76, 0x93, + 0x0c, 0xef, 0xfc, 0xaf, 0xd2, 0xb5, 0xf5, 0x9e, 0xe1, 0xab, 0x3f, 0xf2, 0xbe, 0xf5, 0xd7, 0x6a, + 0x27, 0x09, 0x6f, 0xff, 0x53, 0xe2, 0x9c, 0xc7, 0x8f, 0xdf, 0xaf, 0x23, 0x74, 0xbe, 0x8e, 0xd0, + 0xd7, 0x75, 0x84, 0xde, 0x6c, 0xa2, 0xd6, 0xf9, 0x26, 0x6a, 0x7d, 0xda, 0x44, 0xad, 0xe7, 0xf7, + 0x85, 0xb4, 0xf3, 0x7c, 0x4a, 0x18, 0x28, 0xca, 0xb2, 0x62, 0x61, 0x61, 0x08, 0x99, 0x18, 0x56, + 0xce, 0xb4, 0x7a, 0x0e, 0xcb, 0x06, 0x74, 0x45, 0xdd, 0x55, 0xb2, 0xc5, 0x82, 0x9b, 0xe9, 0x95, + 0x2a, 0xe3, 0xbb, 0xdf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x1f, 0x2e, 0xcf, 0x3f, 0x62, 0x03, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -313,7 +315,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) RegisterAccount(ctx context.Context, in *MsgRegisterAccount, opts ...grpc.CallOption) (*MsgRegisterAccountResponse, error) { out := new(MsgRegisterAccountResponse) - err := c.cc.Invoke(ctx, "/icaauth.v1.Msg/RegisterAccount", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.icaauth.v1.Msg/RegisterAccount", in, out, opts...) if err != nil { return nil, err } @@ -322,7 +324,7 @@ func (c *msgClient) RegisterAccount(ctx context.Context, in *MsgRegisterAccount, func (c *msgClient) SubmitTx(ctx context.Context, in *MsgSubmitTx, opts ...grpc.CallOption) (*MsgSubmitTxResponse, error) { out := new(MsgSubmitTxResponse) - err := c.cc.Invoke(ctx, "/icaauth.v1.Msg/SubmitTx", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.icaauth.v1.Msg/SubmitTx", in, out, opts...) if err != nil { return nil, err } @@ -362,7 +364,7 @@ func _Msg_RegisterAccount_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/icaauth.v1.Msg/RegisterAccount", + FullMethod: "/chainmain.icaauth.v1.Msg/RegisterAccount", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).RegisterAccount(ctx, req.(*MsgRegisterAccount)) @@ -380,7 +382,7 @@ func _Msg_SubmitTx_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/icaauth.v1.Msg/SubmitTx", + FullMethod: "/chainmain.icaauth.v1.Msg/SubmitTx", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).SubmitTx(ctx, req.(*MsgSubmitTx)) @@ -389,7 +391,7 @@ func _Msg_SubmitTx_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "icaauth.v1.Msg", + ServiceName: "chainmain.icaauth.v1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/x/nft-transfer/types/genesis.pb.go b/x/nft-transfer/types/genesis.pb.go index d54eca218..06017d8d4 100644 --- a/x/nft-transfer/types/genesis.pb.go +++ b/x/nft-transfer/types/genesis.pb.go @@ -77,29 +77,29 @@ func (m *GenesisState) GetTraces() Traces { } func init() { - proto.RegisterType((*GenesisState)(nil), "nft_transfer.v1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "chainmain.nft_transfer.v1.GenesisState") } func init() { proto.RegisterFile("nft_transfer/v1/genesis.proto", fileDescriptor_674acb5cce894156) } var fileDescriptor_674acb5cce894156 = []byte{ - // 245 bytes of a gzipped FileDescriptorProto + // 253 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcd, 0x4b, 0x2b, 0x89, 0x2f, 0x29, 0x4a, 0xcc, 0x2b, 0x4e, 0x4b, 0x2d, 0xd2, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, - 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x47, 0x96, 0xd6, 0x2b, 0x33, - 0x94, 0x92, 0x46, 0x57, 0x5f, 0x52, 0x94, 0x98, 0x9c, 0x0a, 0x51, 0x2d, 0x25, 0x92, 0x9e, 0x9f, - 0x9e, 0x0f, 0x66, 0xea, 0x83, 0x58, 0x10, 0x51, 0xa5, 0x1c, 0x2e, 0x1e, 0x77, 0x88, 0xa1, 0xc1, - 0x25, 0x89, 0x25, 0xa9, 0x42, 0xe2, 0x5c, 0xec, 0x05, 0xf9, 0x45, 0x25, 0xf1, 0x99, 0x29, 0x12, - 0x8c, 0x0a, 0x8c, 0x1a, 0x9c, 0x41, 0x6c, 0x20, 0xae, 0x67, 0x8a, 0x90, 0x33, 0x17, 0x1b, 0xd8, - 0xb4, 0x62, 0x09, 0x26, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x69, 0x3d, 0x34, 0xdb, 0xf5, 0x9c, 0x73, - 0x12, 0x8b, 0x8b, 0x43, 0x40, 0x6a, 0x9c, 0xf8, 0x4e, 0xdc, 0x93, 0x67, 0x58, 0x75, 0x5f, 0x9e, - 0x0d, 0xcc, 0x2d, 0x0e, 0x82, 0x6a, 0x75, 0x0a, 0x3d, 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, 0xeb, 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, 0x7d, - 0x30, 0xa9, 0x9b, 0x0b, 0x62, 0x56, 0xe8, 0xe7, 0xa5, 0x95, 0xe8, 0xc2, 0xfd, 0x58, 0x52, 0x59, - 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0xf6, 0x8b, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x67, 0xe5, 0x9a, - 0xff, 0x30, 0x01, 0x00, 0x00, + 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x4c, 0xce, 0x48, 0xcc, 0xcc, + 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0x43, 0x56, 0xa8, 0x57, 0x66, 0x28, 0x25, 0x8d, 0xae, 0xb3, 0xa4, + 0x28, 0x31, 0x39, 0x15, 0xa2, 0x4f, 0x4a, 0x24, 0x3d, 0x3f, 0x3d, 0x1f, 0xcc, 0xd4, 0x07, 0xb1, + 0x20, 0xa2, 0x4a, 0x65, 0x5c, 0x3c, 0xee, 0x10, 0xe3, 0x83, 0x4b, 0x12, 0x4b, 0x52, 0x85, 0xc4, + 0xb9, 0xd8, 0x0b, 0xf2, 0x8b, 0x4a, 0xe2, 0x33, 0x53, 0x24, 0x18, 0x15, 0x18, 0x35, 0x38, 0x83, + 0xd8, 0x40, 0x5c, 0xcf, 0x14, 0x21, 0x5f, 0x2e, 0x36, 0xb0, 0x69, 0xc5, 0x12, 0x4c, 0x0a, 0xcc, + 0x1a, 0xdc, 0x46, 0xaa, 0x7a, 0x38, 0xdd, 0xa1, 0xe7, 0x9c, 0x93, 0x58, 0x5c, 0x1c, 0x02, 0x52, + 0xed, 0xc4, 0x77, 0xe2, 0x9e, 0x3c, 0xc3, 0xaa, 0xfb, 0xf2, 0x6c, 0x60, 0x6e, 0x71, 0x10, 0xd4, + 0x10, 0xa7, 0xd0, 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, 0xb2, 0x4e, 0xcf, + 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0x2e, 0xaa, 0x2c, 0x28, 0xc9, 0xd7, + 0xcd, 0x2f, 0x4a, 0xd7, 0x05, 0xdb, 0xa6, 0x0f, 0x26, 0x75, 0x41, 0x96, 0xea, 0x57, 0xe8, 0xe7, + 0xa5, 0x95, 0xe8, 0xc2, 0x7d, 0x5b, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0xf6, 0x95, 0x31, + 0x20, 0x00, 0x00, 0xff, 0xff, 0xc1, 0x3d, 0xa9, 0x3e, 0x44, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/nft-transfer/types/packet.pb.go b/x/nft-transfer/types/packet.pb.go index 47c61d3c5..47e86ab2c 100644 --- a/x/nft-transfer/types/packet.pb.go +++ b/x/nft-transfer/types/packet.pb.go @@ -116,31 +116,31 @@ func (m *NonFungibleTokenPacketData) GetReceiver() string { } func init() { - proto.RegisterType((*NonFungibleTokenPacketData)(nil), "nft_transfer.v1.NonFungibleTokenPacketData") + proto.RegisterType((*NonFungibleTokenPacketData)(nil), "chainmain.nft_transfer.v1.NonFungibleTokenPacketData") } func init() { proto.RegisterFile("nft_transfer/v1/packet.proto", fileDescriptor_14c037a407c65908) } var fileDescriptor_14c037a407c65908 = []byte{ - // 281 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0xb1, 0x4e, 0xf3, 0x30, - 0x14, 0x85, 0xeb, 0xbf, 0x3f, 0xa1, 0xf5, 0x82, 0xe4, 0x01, 0x99, 0x02, 0x56, 0xc5, 0xc4, 0x92, - 0x44, 0x15, 0x23, 0x1b, 0x42, 0x48, 0x5d, 0x10, 0x42, 0x64, 0x61, 0x89, 0x1c, 0xc7, 0x49, 0xad, - 0xb6, 0x76, 0x74, 0xed, 0x44, 0xf4, 0x2d, 0x78, 0x28, 0x06, 0xc6, 0x8e, 0x8c, 0x28, 0x79, 0x11, - 0x14, 0x07, 0x10, 0x8b, 0xe5, 0x73, 0xbf, 0x73, 0xcf, 0x95, 0x0e, 0x3e, 0xd3, 0x85, 0x4b, 0x1d, - 0x70, 0x6d, 0x0b, 0x09, 0x71, 0xb3, 0x88, 0x2b, 0x2e, 0xd6, 0xd2, 0x45, 0x15, 0x18, 0x67, 0xc8, - 0xd1, 0x5f, 0x1a, 0x35, 0x8b, 0x8b, 0x37, 0x84, 0x67, 0xf7, 0x46, 0xdf, 0xd5, 0xba, 0x54, 0xd9, - 0x46, 0x3e, 0x99, 0xb5, 0xd4, 0x0f, 0x7e, 0xe3, 0x96, 0x3b, 0x4e, 0x4e, 0xf0, 0x44, 0x6c, 0xb8, - 0xb5, 0xa9, 0xca, 0x29, 0x9a, 0xa3, 0xcb, 0xe9, 0xe3, 0xa1, 0xd7, 0xcb, 0x9c, 0x9c, 0xe2, 0xe9, - 0x80, 0x6a, 0x50, 0xf4, 0x9f, 0x67, 0x83, 0x37, 0x01, 0xd5, 0x43, 0xd7, 0x47, 0xa5, 0x2a, 0xb7, - 0x74, 0x3c, 0x1f, 0xf7, 0xd0, 0x0f, 0x96, 0xb9, 0x25, 0xe7, 0x18, 0x0f, 0xb0, 0x06, 0x65, 0xe9, - 0x7f, 0x4f, 0x07, 0x7b, 0x02, 0xca, 0x92, 0x63, 0x1c, 0x58, 0xa9, 0x73, 0x09, 0xf4, 0xc0, 0xa7, - 0x7e, 0x2b, 0x32, 0xc3, 0x13, 0x90, 0x42, 0xaa, 0x46, 0x02, 0x0d, 0x86, 0x7b, 0x3f, 0xfa, 0x26, - 0x79, 0x6f, 0x19, 0xda, 0xb7, 0x0c, 0x7d, 0xb6, 0x0c, 0xbd, 0x76, 0x6c, 0xb4, 0xef, 0xd8, 0xe8, - 0xa3, 0x63, 0xa3, 0xe7, 0xeb, 0x52, 0xb9, 0x55, 0x9d, 0x45, 0xc2, 0x6c, 0x63, 0x01, 0xbb, 0xca, - 0x99, 0xd0, 0x40, 0x19, 0x8a, 0x15, 0x57, 0x3a, 0xf6, 0x6f, 0xb8, 0xed, 0xbf, 0x2f, 0xb1, 0x2e, - 0x5c, 0xf8, 0x5b, 0x9c, 0xdb, 0x55, 0xd2, 0x66, 0x81, 0x6f, 0xed, 0xea, 0x2b, 0x00, 0x00, 0xff, - 0xff, 0x4e, 0xd9, 0x2b, 0xcb, 0x55, 0x01, 0x00, 0x00, + // 285 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0xb1, 0x4e, 0xeb, 0x30, + 0x18, 0x85, 0xeb, 0xdb, 0x4b, 0x69, 0x3d, 0x7a, 0x40, 0x6e, 0x01, 0xab, 0x62, 0x62, 0x49, 0xac, + 0x8a, 0x91, 0x0d, 0x21, 0xa4, 0x2e, 0x08, 0x21, 0xba, 0xb0, 0x44, 0x8e, 0xe3, 0xa4, 0x56, 0x5b, + 0x3b, 0xfa, 0xed, 0x44, 0xf4, 0x2d, 0x78, 0x28, 0x06, 0xc6, 0x8e, 0x8c, 0x28, 0x79, 0x11, 0x14, + 0x07, 0x10, 0x8b, 0xa5, 0xe3, 0xef, 0xf8, 0x58, 0xfa, 0xf0, 0x99, 0xc9, 0x7d, 0xe2, 0x41, 0x18, + 0x97, 0x2b, 0xe0, 0xf5, 0x82, 0x97, 0x42, 0x6e, 0x94, 0x8f, 0x4b, 0xb0, 0xde, 0x92, 0xa9, 0x5c, + 0x0b, 0x6d, 0x76, 0x42, 0x9b, 0xf8, 0x6f, 0x2f, 0xae, 0x17, 0x17, 0x6f, 0x08, 0xcf, 0xee, 0xad, + 0xb9, 0xab, 0x4c, 0xa1, 0xd3, 0xad, 0x7a, 0xb2, 0x1b, 0x65, 0x1e, 0xc2, 0xdb, 0x5b, 0xe1, 0x05, + 0x99, 0xe2, 0xb1, 0xdc, 0x0a, 0xe7, 0x12, 0x9d, 0x51, 0x34, 0x47, 0x97, 0x93, 0xc7, 0xe3, 0x90, + 0x97, 0x19, 0x39, 0xc5, 0x93, 0x1e, 0x55, 0xa0, 0xe9, 0xbf, 0xc0, 0xfa, 0xee, 0x0a, 0x74, 0x07, + 0x7d, 0x37, 0x95, 0xe8, 0xcc, 0xd1, 0xe1, 0x7c, 0xd8, 0xc1, 0x70, 0xb1, 0xcc, 0x1c, 0x39, 0xc7, + 0xb8, 0x87, 0x15, 0x68, 0x47, 0xff, 0x07, 0xda, 0xd7, 0x57, 0xa0, 0x1d, 0x39, 0xc1, 0x23, 0xa7, + 0x4c, 0xa6, 0x80, 0x1e, 0x85, 0xd5, 0xef, 0x44, 0x66, 0x78, 0x0c, 0x4a, 0x2a, 0x5d, 0x2b, 0xa0, + 0xa3, 0xfe, 0xbf, 0x9f, 0x7c, 0xb3, 0x7a, 0x6f, 0x18, 0x3a, 0x34, 0x0c, 0x7d, 0x36, 0x0c, 0xbd, + 0xb6, 0x6c, 0x70, 0x68, 0xd9, 0xe0, 0xa3, 0x65, 0x83, 0xe7, 0xeb, 0x42, 0xfb, 0x75, 0x95, 0xc6, + 0xd2, 0xee, 0xb8, 0x84, 0x7d, 0xe9, 0x6d, 0x64, 0xa1, 0x88, 0x82, 0x11, 0x1e, 0xce, 0xa8, 0x13, + 0xc3, 0x5f, 0xb8, 0xc9, 0x7d, 0xf4, 0xab, 0xd0, 0xef, 0x4b, 0xe5, 0xd2, 0x51, 0xf0, 0x77, 0xf5, + 0x15, 0x00, 0x00, 0xff, 0xff, 0x43, 0xf2, 0xe2, 0xbe, 0x5f, 0x01, 0x00, 0x00, } func (m *NonFungibleTokenPacketData) Marshal() (dAtA []byte, err error) { diff --git a/x/nft-transfer/types/query.pb.go b/x/nft-transfer/types/query.pb.go index b74ee1b1a..b886cdb5e 100644 --- a/x/nft-transfer/types/query.pb.go +++ b/x/nft-transfer/types/query.pb.go @@ -423,61 +423,61 @@ func (m *QueryEscrowAddressResponse) GetEscrowAddress() string { } func init() { - proto.RegisterType((*QueryClassTraceRequest)(nil), "nft_transfer.v1.QueryClassTraceRequest") - proto.RegisterType((*QueryClassTraceResponse)(nil), "nft_transfer.v1.QueryClassTraceResponse") - proto.RegisterType((*QueryClassTracesRequest)(nil), "nft_transfer.v1.QueryClassTracesRequest") - proto.RegisterType((*QueryClassTracesResponse)(nil), "nft_transfer.v1.QueryClassTracesResponse") - proto.RegisterType((*QueryClassHashRequest)(nil), "nft_transfer.v1.QueryClassHashRequest") - proto.RegisterType((*QueryClassHashResponse)(nil), "nft_transfer.v1.QueryClassHashResponse") - proto.RegisterType((*QueryEscrowAddressRequest)(nil), "nft_transfer.v1.QueryEscrowAddressRequest") - proto.RegisterType((*QueryEscrowAddressResponse)(nil), "nft_transfer.v1.QueryEscrowAddressResponse") + proto.RegisterType((*QueryClassTraceRequest)(nil), "chainmain.nft_transfer.v1.QueryClassTraceRequest") + proto.RegisterType((*QueryClassTraceResponse)(nil), "chainmain.nft_transfer.v1.QueryClassTraceResponse") + proto.RegisterType((*QueryClassTracesRequest)(nil), "chainmain.nft_transfer.v1.QueryClassTracesRequest") + proto.RegisterType((*QueryClassTracesResponse)(nil), "chainmain.nft_transfer.v1.QueryClassTracesResponse") + proto.RegisterType((*QueryClassHashRequest)(nil), "chainmain.nft_transfer.v1.QueryClassHashRequest") + proto.RegisterType((*QueryClassHashResponse)(nil), "chainmain.nft_transfer.v1.QueryClassHashResponse") + proto.RegisterType((*QueryEscrowAddressRequest)(nil), "chainmain.nft_transfer.v1.QueryEscrowAddressRequest") + proto.RegisterType((*QueryEscrowAddressResponse)(nil), "chainmain.nft_transfer.v1.QueryEscrowAddressResponse") } func init() { proto.RegisterFile("nft_transfer/v1/query.proto", fileDescriptor_6f722060ae5d435b) } var fileDescriptor_6f722060ae5d435b = []byte{ - // 646 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x94, 0xcb, 0x6e, 0xd3, 0x4c, - 0x14, 0xc7, 0xe3, 0x7e, 0x5f, 0x8b, 0x72, 0x42, 0x8b, 0x34, 0x2a, 0xb4, 0xb8, 0xe0, 0x56, 0x96, - 0x68, 0x4b, 0xc1, 0x1e, 0x52, 0x04, 0x1b, 0xd8, 0xd0, 0x8a, 0x4b, 0x37, 0x55, 0x09, 0x37, 0x89, - 0x4d, 0x34, 0x71, 0xa6, 0xb6, 0xa5, 0xd6, 0xe3, 0x7a, 0xa6, 0x85, 0xaa, 0xca, 0x86, 0x17, 0x00, - 0x01, 0xe2, 0x21, 0xd8, 0xf2, 0x02, 0x2c, 0xbb, 0xac, 0xc4, 0x86, 0x15, 0xa0, 0x84, 0x07, 0x41, - 0x33, 0x9e, 0xc4, 0x4e, 0x13, 0xd5, 0xd9, 0x44, 0x63, 0x9f, 0xdb, 0xef, 0xfc, 0xe7, 0x1f, 0xc3, - 0x5c, 0xb4, 0x2d, 0xea, 0x22, 0x21, 0x11, 0xdf, 0xa6, 0x09, 0x3e, 0xa8, 0xe2, 0xbd, 0x7d, 0x9a, - 0x1c, 0xba, 0x71, 0xc2, 0x04, 0x43, 0x17, 0xf2, 0x41, 0xf7, 0xa0, 0x6a, 0x4e, 0xfb, 0xcc, 0x67, - 0x2a, 0x86, 0xe5, 0x29, 0x4d, 0x33, 0x57, 0x3c, 0xc6, 0x77, 0x19, 0xc7, 0x0d, 0xc2, 0x69, 0x5a, - 0x8f, 0x0f, 0xaa, 0x0d, 0x2a, 0x48, 0x15, 0xc7, 0xc4, 0x0f, 0x23, 0x22, 0x42, 0x16, 0xe9, 0xdc, - 0x81, 0x79, 0x22, 0x21, 0x1e, 0xd5, 0xc1, 0x2b, 0x3e, 0x63, 0xfe, 0x0e, 0xc5, 0x24, 0x0e, 0x31, - 0x89, 0x22, 0x26, 0x54, 0x25, 0x4f, 0xa3, 0xf6, 0x4d, 0xb8, 0xf4, 0x54, 0x36, 0x5f, 0xdf, 0x21, - 0x9c, 0x3f, 0x97, 0x65, 0x35, 0xba, 0xb7, 0x4f, 0xb9, 0x40, 0x08, 0xfe, 0x0f, 0x08, 0x0f, 0x66, - 0x8d, 0x05, 0x63, 0xb9, 0x5c, 0x53, 0x67, 0xfb, 0x15, 0xcc, 0x0c, 0x64, 0xf3, 0x98, 0x45, 0x9c, - 0xa2, 0xfb, 0x50, 0xf1, 0xe4, 0xdb, 0xba, 0x9a, 0xad, 0xaa, 0x2a, 0xab, 0x73, 0xee, 0xa9, 0x65, - 0xdd, 0x5c, 0x25, 0x78, 0xbd, 0xb3, 0x4d, 0x06, 0x1a, 0xf3, 0x2e, 0xc7, 0x23, 0x80, 0x6c, 0x61, - 0xdd, 0x77, 0xd1, 0x4d, 0xd5, 0x71, 0xa5, 0x3a, 0x6e, 0xaa, 0xae, 0x56, 0xc7, 0xdd, 0x22, 0x7e, - 0x77, 0x87, 0x5a, 0xae, 0xd2, 0xfe, 0x66, 0xc0, 0xec, 0xe0, 0x0c, 0x4d, 0xbf, 0x09, 0xe7, 0x73, - 0xf4, 0x7c, 0xd6, 0x58, 0xf8, 0xaf, 0x00, 0x7f, 0x6d, 0xea, 0xf8, 0xd7, 0x7c, 0xe9, 0xeb, 0xef, - 0xf9, 0x09, 0xdd, 0xaa, 0x92, 0xad, 0xc3, 0xd1, 0xe3, 0x3e, 0xe8, 0x31, 0x05, 0xbd, 0x54, 0x08, - 0x9d, 0xc2, 0xf4, 0x51, 0x3b, 0x70, 0x31, 0x83, 0x7e, 0x42, 0x78, 0xd0, 0x95, 0x65, 0x1a, 0xc6, - 0x33, 0xa5, 0xcb, 0xb5, 0xf4, 0xa1, 0xff, 0x3a, 0xd3, 0x74, 0xbd, 0xe1, 0xb0, 0xeb, 0x7c, 0x06, - 0x97, 0x55, 0xf6, 0x43, 0xee, 0x25, 0xec, 0xcd, 0x83, 0x66, 0x33, 0xa1, 0xbc, 0xa7, 0xfb, 0x0c, - 0x9c, 0x8b, 0x59, 0x22, 0xea, 0x61, 0x53, 0xd7, 0x4c, 0xc8, 0xc7, 0x8d, 0x26, 0xba, 0x0a, 0xe0, - 0x05, 0x24, 0x8a, 0xe8, 0x8e, 0x8c, 0x8d, 0xa9, 0x58, 0x59, 0xbf, 0xd9, 0x68, 0xda, 0xeb, 0x60, - 0x0e, 0x6b, 0xaa, 0x31, 0xae, 0xc1, 0x14, 0x55, 0x81, 0x3a, 0x49, 0x23, 0xba, 0xf9, 0x24, 0xcd, - 0xa7, 0xaf, 0xbe, 0x1f, 0x87, 0x71, 0xd5, 0x05, 0x7d, 0x31, 0x00, 0x32, 0xd5, 0xd1, 0xd2, 0xc0, - 0x95, 0x0c, 0xb7, 0xaf, 0xb9, 0x5c, 0x9c, 0x98, 0x22, 0xd9, 0x77, 0xde, 0xfd, 0xf8, 0xfb, 0x69, - 0x0c, 0x23, 0x07, 0x87, 0x0d, 0x0f, 0x93, 0x38, 0xe6, 0xf8, 0xf4, 0xff, 0x29, 0xef, 0x0d, 0x7c, - 0x24, 0xb5, 0x6b, 0xa1, 0x8f, 0x06, 0x54, 0x72, 0x56, 0x42, 0x85, 0x03, 0xbb, 0xca, 0x9a, 0xd7, - 0x47, 0xc8, 0xd4, 0x6c, 0xae, 0x62, 0x5b, 0x46, 0x8b, 0xa3, 0xb1, 0xa1, 0xcf, 0x06, 0x94, 0x7b, - 0x77, 0x8f, 0x16, 0xcf, 0x18, 0x94, 0xf3, 0x92, 0xb9, 0x54, 0x98, 0xa7, 0x71, 0xee, 0x2a, 0x9c, - 0x5b, 0xc8, 0x2d, 0xc2, 0x91, 0x12, 0x49, 0xa9, 0x14, 0x56, 0x0b, 0x7d, 0x37, 0x60, 0xb2, 0xcf, - 0x0f, 0x68, 0x65, 0xf8, 0xc8, 0x61, 0x4e, 0x34, 0x6f, 0x8c, 0x94, 0xab, 0x11, 0x5f, 0x2a, 0xc4, - 0x2d, 0xb4, 0x79, 0x06, 0x62, 0xea, 0x55, 0x8e, 0x8f, 0x32, 0x1f, 0xb7, 0xb0, 0x74, 0x37, 0xc7, - 0x47, 0xda, 0xf3, 0x2d, 0xdc, 0x6f, 0xd3, 0xb5, 0x17, 0xc7, 0x6d, 0xcb, 0x38, 0x69, 0x5b, 0xc6, - 0x9f, 0xb6, 0x65, 0x7c, 0xe8, 0x58, 0xa5, 0x93, 0x8e, 0x55, 0xfa, 0xd9, 0xb1, 0x4a, 0xaf, 0xef, - 0xf9, 0xa1, 0x08, 0xf6, 0x1b, 0xae, 0xc7, 0x76, 0xb1, 0x97, 0x1c, 0xc6, 0x82, 0x39, 0x2c, 0xf1, - 0x1d, 0x2f, 0x20, 0x61, 0x84, 0xd5, 0xaf, 0xb3, 0x2b, 0x8f, 0x6f, 0x25, 0x88, 0xd3, 0x03, 0x11, - 0x87, 0x31, 0xe5, 0x8d, 0x09, 0xf5, 0x19, 0xbe, 0xfd, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x75, 0xfd, - 0x4c, 0xb9, 0x33, 0x06, 0x00, 0x00, + // 652 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0xcf, 0x4f, 0xd4, 0x40, + 0x14, 0xc7, 0xb7, 0x28, 0x98, 0x7d, 0x2b, 0x1c, 0x26, 0x28, 0x50, 0xb5, 0x90, 0x4d, 0x40, 0x62, + 0xec, 0x0c, 0x05, 0xf1, 0xe2, 0x49, 0x88, 0x28, 0x17, 0x83, 0xeb, 0x8f, 0x18, 0x2f, 0x9b, 0xd9, + 0xee, 0xd0, 0x36, 0x81, 0x4e, 0xe9, 0x0c, 0x28, 0x21, 0x7b, 0xf1, 0x2f, 0x30, 0xf1, 0x7f, 0x30, + 0x86, 0xff, 0xc1, 0x3b, 0x47, 0x12, 0x3d, 0x78, 0x12, 0x03, 0xfe, 0x21, 0x66, 0xa6, 0xb3, 0xdb, + 0xae, 0xac, 0xb0, 0x7b, 0xd9, 0xb4, 0x7d, 0xef, 0xfb, 0xde, 0xe7, 0x7d, 0xe7, 0xcd, 0xc2, 0xad, + 0x78, 0x53, 0xd6, 0x65, 0x4a, 0x63, 0xb1, 0xc9, 0x52, 0xb2, 0xe7, 0x91, 0x9d, 0x5d, 0x96, 0xee, + 0xe3, 0x24, 0xe5, 0x92, 0xa3, 0x29, 0x3f, 0xa4, 0x51, 0xbc, 0x4d, 0xa3, 0x18, 0x17, 0xd3, 0xf0, + 0x9e, 0x67, 0x8f, 0x07, 0x3c, 0xe0, 0x3a, 0x8b, 0xa8, 0xa7, 0x4c, 0x60, 0xdf, 0xf3, 0xb9, 0xd8, + 0xe6, 0x82, 0x34, 0xa8, 0x60, 0x59, 0x25, 0xb2, 0xe7, 0x35, 0x98, 0xa4, 0x1e, 0x49, 0x68, 0x10, + 0xc5, 0x54, 0x46, 0x3c, 0x36, 0xb9, 0xe7, 0x3a, 0xcb, 0x94, 0xfa, 0xcc, 0x04, 0x6f, 0x07, 0x9c, + 0x07, 0x5b, 0x8c, 0xd0, 0x24, 0x22, 0x34, 0x8e, 0xb9, 0xd4, 0x4a, 0x91, 0x45, 0xab, 0xf7, 0xe1, + 0xe6, 0x0b, 0x55, 0x7c, 0x75, 0x8b, 0x0a, 0xf1, 0x4a, 0xc9, 0x6a, 0x6c, 0x67, 0x97, 0x09, 0x89, + 0x10, 0x5c, 0x0d, 0xa9, 0x08, 0x27, 0xad, 0x19, 0x6b, 0xbe, 0x5c, 0xd3, 0xcf, 0x55, 0x0a, 0x13, + 0xe7, 0xb2, 0x45, 0xc2, 0x63, 0xc1, 0xd0, 0x1a, 0x54, 0x7c, 0xf5, 0xb5, 0xae, 0x7b, 0x6b, 0x55, + 0x65, 0x71, 0x16, 0xff, 0x77, 0x6c, 0x5c, 0xa8, 0x01, 0x7e, 0xe7, 0xb9, 0x47, 0x0b, 0xd1, 0x26, + 0x5a, 0x03, 0xc8, 0x47, 0x37, 0x1d, 0xe6, 0x70, 0xe6, 0x13, 0x56, 0x3e, 0xe1, 0xcc, 0x71, 0xe3, + 0x13, 0xde, 0xa0, 0x41, 0x7b, 0x9a, 0x5a, 0x41, 0x59, 0xfd, 0x66, 0xc1, 0xe4, 0xf9, 0x1e, 0x66, + 0x8e, 0xb7, 0x70, 0xbd, 0x30, 0x87, 0x98, 0xb4, 0x66, 0xae, 0xf4, 0x3d, 0xc8, 0xca, 0xd8, 0xd1, + 0xaf, 0xe9, 0xd2, 0xe1, 0xc9, 0xf4, 0x88, 0x29, 0x5a, 0xc9, 0x07, 0x13, 0xe8, 0x69, 0x17, 0xfe, + 0x90, 0xc6, 0xbf, 0x7b, 0x29, 0x7e, 0x86, 0xd5, 0xc5, 0xef, 0xc2, 0x8d, 0x1c, 0xff, 0x19, 0x15, + 0x61, 0xdb, 0xa0, 0x71, 0x18, 0xce, 0xdd, 0x2f, 0xd7, 0xb2, 0x97, 0xee, 0x23, 0xce, 0xd2, 0xcd, + 0xac, 0xbd, 0x8e, 0xf8, 0x25, 0x4c, 0xe9, 0xec, 0x27, 0xc2, 0x4f, 0xf9, 0xfb, 0xc7, 0xcd, 0x66, + 0xca, 0x44, 0xe7, 0x04, 0x26, 0xe0, 0x5a, 0xc2, 0x53, 0x59, 0x8f, 0x9a, 0x46, 0x33, 0xa2, 0x5e, + 0xd7, 0x9b, 0xe8, 0x0e, 0x80, 0x1f, 0xd2, 0x38, 0x66, 0x5b, 0x2a, 0x36, 0xa4, 0x63, 0x65, 0xf3, + 0x65, 0xbd, 0x59, 0x5d, 0x05, 0xbb, 0x57, 0x51, 0x83, 0x31, 0x0b, 0x63, 0x4c, 0x07, 0xea, 0x34, + 0x8b, 0x98, 0xe2, 0xa3, 0xac, 0x98, 0xbe, 0x78, 0x32, 0x0c, 0xc3, 0xba, 0x0a, 0x3a, 0xb4, 0x00, + 0x72, 0xd7, 0x91, 0x77, 0xc1, 0xe1, 0xf4, 0x5e, 0x6e, 0x7b, 0x71, 0x10, 0x49, 0x86, 0x59, 0x5d, + 0xfe, 0xf8, 0xfd, 0xcf, 0xe7, 0x21, 0x82, 0x5c, 0x12, 0x35, 0x7c, 0x42, 0x93, 0x44, 0x90, 0x7f, + 0xef, 0x5d, 0x71, 0x73, 0xc8, 0x81, 0xf2, 0xb3, 0x85, 0xbe, 0x58, 0x50, 0x29, 0x2c, 0x1a, 0x1a, + 0xa0, 0x75, 0xdb, 0x77, 0x7b, 0x69, 0x20, 0x8d, 0xe1, 0xc5, 0x9a, 0x77, 0x1e, 0xcd, 0xf5, 0xc7, + 0x8b, 0xbe, 0x5a, 0x50, 0xee, 0xec, 0x08, 0x5a, 0xe8, 0xab, 0x65, 0x61, 0xfb, 0x6c, 0x6f, 0x00, + 0x85, 0x41, 0x7c, 0xa8, 0x11, 0x17, 0x10, 0xbe, 0x0c, 0x51, 0x59, 0xa9, 0x2c, 0xd5, 0xa8, 0x2d, + 0xf4, 0xc3, 0x82, 0xd1, 0xae, 0x5d, 0x42, 0x0f, 0x2e, 0x6b, 0xde, 0x6b, 0x9f, 0xed, 0xe5, 0x01, + 0x55, 0x06, 0xfb, 0x8d, 0xc6, 0xde, 0x40, 0xcf, 0x2f, 0xc0, 0xce, 0x76, 0x5f, 0x90, 0x83, 0xfc, + 0x5e, 0xb4, 0x88, 0xba, 0x2d, 0x82, 0x1c, 0x98, 0x3b, 0xd4, 0x22, 0xdd, 0x6b, 0xbf, 0xf2, 0xfa, + 0xe8, 0xd4, 0xb1, 0x8e, 0x4f, 0x1d, 0xeb, 0xf7, 0xa9, 0x63, 0x7d, 0x3a, 0x73, 0x4a, 0xc7, 0x67, + 0x4e, 0xe9, 0xe7, 0x99, 0x53, 0x7a, 0xf7, 0x28, 0x88, 0x64, 0xb8, 0xdb, 0xc0, 0x3e, 0xdf, 0x26, + 0x7e, 0xba, 0x9f, 0x48, 0xee, 0xf2, 0x34, 0x70, 0x35, 0x3d, 0xd1, 0xbf, 0xae, 0x1a, 0x82, 0x7c, + 0x50, 0x20, 0x6e, 0x07, 0x44, 0xee, 0x27, 0x4c, 0x34, 0x46, 0xf4, 0x5f, 0xfd, 0xd2, 0xdf, 0x00, + 0x00, 0x00, 0xff, 0xff, 0xf6, 0xfd, 0x0f, 0x90, 0xa1, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -512,7 +512,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) ClassTrace(ctx context.Context, in *QueryClassTraceRequest, opts ...grpc.CallOption) (*QueryClassTraceResponse, error) { out := new(QueryClassTraceResponse) - err := c.cc.Invoke(ctx, "/nft_transfer.v1.Query/ClassTrace", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft_transfer.v1.Query/ClassTrace", in, out, opts...) if err != nil { return nil, err } @@ -521,7 +521,7 @@ func (c *queryClient) ClassTrace(ctx context.Context, in *QueryClassTraceRequest func (c *queryClient) ClassTraces(ctx context.Context, in *QueryClassTracesRequest, opts ...grpc.CallOption) (*QueryClassTracesResponse, error) { out := new(QueryClassTracesResponse) - err := c.cc.Invoke(ctx, "/nft_transfer.v1.Query/ClassTraces", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft_transfer.v1.Query/ClassTraces", in, out, opts...) if err != nil { return nil, err } @@ -530,7 +530,7 @@ func (c *queryClient) ClassTraces(ctx context.Context, in *QueryClassTracesReque func (c *queryClient) ClassHash(ctx context.Context, in *QueryClassHashRequest, opts ...grpc.CallOption) (*QueryClassHashResponse, error) { out := new(QueryClassHashResponse) - err := c.cc.Invoke(ctx, "/nft_transfer.v1.Query/ClassHash", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft_transfer.v1.Query/ClassHash", in, out, opts...) if err != nil { return nil, err } @@ -539,7 +539,7 @@ func (c *queryClient) ClassHash(ctx context.Context, in *QueryClassHashRequest, func (c *queryClient) EscrowAddress(ctx context.Context, in *QueryEscrowAddressRequest, opts ...grpc.CallOption) (*QueryEscrowAddressResponse, error) { out := new(QueryEscrowAddressResponse) - err := c.cc.Invoke(ctx, "/nft_transfer.v1.Query/EscrowAddress", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft_transfer.v1.Query/EscrowAddress", in, out, opts...) if err != nil { return nil, err } @@ -589,7 +589,7 @@ func _Query_ClassTrace_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft_transfer.v1.Query/ClassTrace", + FullMethod: "/chainmain.nft_transfer.v1.Query/ClassTrace", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ClassTrace(ctx, req.(*QueryClassTraceRequest)) @@ -607,7 +607,7 @@ func _Query_ClassTraces_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft_transfer.v1.Query/ClassTraces", + FullMethod: "/chainmain.nft_transfer.v1.Query/ClassTraces", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ClassTraces(ctx, req.(*QueryClassTracesRequest)) @@ -625,7 +625,7 @@ func _Query_ClassHash_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft_transfer.v1.Query/ClassHash", + FullMethod: "/chainmain.nft_transfer.v1.Query/ClassHash", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).ClassHash(ctx, req.(*QueryClassHashRequest)) @@ -643,7 +643,7 @@ func _Query_EscrowAddress_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft_transfer.v1.Query/EscrowAddress", + FullMethod: "/chainmain.nft_transfer.v1.Query/EscrowAddress", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).EscrowAddress(ctx, req.(*QueryEscrowAddressRequest)) @@ -652,7 +652,7 @@ func _Query_EscrowAddress_Handler(srv interface{}, ctx context.Context, dec func } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "nft_transfer.v1.Query", + ServiceName: "chainmain.nft_transfer.v1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/x/nft-transfer/types/trace.pb.go b/x/nft-transfer/types/trace.pb.go index 477b5c1cd..87a6a921d 100644 --- a/x/nft-transfer/types/trace.pb.go +++ b/x/nft-transfer/types/trace.pb.go @@ -80,26 +80,26 @@ func (m *ClassTrace) GetBaseClassId() string { } func init() { - proto.RegisterType((*ClassTrace)(nil), "nft_transfer.v1.ClassTrace") + proto.RegisterType((*ClassTrace)(nil), "chainmain.nft_transfer.v1.ClassTrace") } func init() { proto.RegisterFile("nft_transfer/v1/trace.proto", fileDescriptor_f4e6ac472424735f) } var fileDescriptor_f4e6ac472424735f = []byte{ - // 196 bytes of a gzipped FileDescriptorProto + // 204 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xce, 0x4b, 0x2b, 0x89, 0x2f, 0x29, 0x4a, 0xcc, 0x2b, 0x4e, 0x4b, 0x2d, 0xd2, 0x2f, 0x33, 0xd4, 0x2f, 0x29, 0x4a, 0x4c, - 0x4e, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x47, 0x96, 0xd4, 0x2b, 0x33, 0x54, 0x72, - 0xe1, 0xe2, 0x72, 0xce, 0x49, 0x2c, 0x2e, 0x0e, 0x01, 0x29, 0x12, 0x12, 0xe2, 0x62, 0x29, 0x48, - 0x2c, 0xc9, 0x90, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x02, 0xb3, 0x85, 0x94, 0xb8, 0x78, 0x93, - 0x12, 0x8b, 0x53, 0xe3, 0x93, 0x41, 0xca, 0xe2, 0x33, 0x53, 0x24, 0x98, 0xc0, 0x92, 0xdc, 0x20, - 0x41, 0xb0, 0x56, 0xcf, 0x14, 0xa7, 0xd0, 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, 0xb2, 0x4e, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x4f, 0x2e, 0xaa, - 0x2c, 0x28, 0xc9, 0xd7, 0xcd, 0x2f, 0x4a, 0xd7, 0x4d, 0xce, 0x48, 0xcc, 0xcc, 0xd3, 0x07, 0x93, - 0xba, 0xb9, 0x20, 0x66, 0x85, 0x7e, 0x5e, 0x5a, 0x89, 0x2e, 0xdc, 0xd9, 0x25, 0x95, 0x05, 0xa9, - 0xc5, 0x49, 0x6c, 0x60, 0x47, 0x1b, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x2f, 0x4f, 0x43, 0x48, - 0xd3, 0x00, 0x00, 0x00, + 0x4e, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x4c, 0xce, 0x48, 0xcc, 0xcc, 0xcb, 0x4d, + 0xcc, 0xcc, 0xd3, 0x43, 0x56, 0xa6, 0x57, 0x66, 0xa8, 0xe4, 0xc2, 0xc5, 0xe5, 0x9c, 0x93, 0x58, + 0x5c, 0x1c, 0x02, 0x52, 0x2e, 0x24, 0xc4, 0xc5, 0x52, 0x90, 0x58, 0x92, 0x21, 0xc1, 0xa8, 0xc0, + 0xa8, 0xc1, 0x19, 0x04, 0x66, 0x0b, 0x29, 0x71, 0xf1, 0x26, 0x25, 0x16, 0xa7, 0xc6, 0x27, 0x83, + 0x94, 0xc5, 0x67, 0xa6, 0x48, 0x30, 0x81, 0x25, 0xb9, 0x41, 0x82, 0x60, 0xad, 0x9e, 0x29, 0x4e, + 0xa1, 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, 0x9d, 0x9e, 0x59, 0x92, + 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x9f, 0x5c, 0x54, 0x59, 0x50, 0x92, 0xaf, 0x9b, 0x5f, + 0x94, 0xae, 0x0b, 0x76, 0x90, 0x3e, 0x98, 0xd4, 0x05, 0xb9, 0x4b, 0xbf, 0x42, 0x3f, 0x2f, 0xad, + 0x44, 0x17, 0xee, 0x81, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0xf3, 0x8d, 0x01, 0x01, + 0x00, 0x00, 0xff, 0xff, 0x8d, 0xf5, 0xbd, 0xd5, 0xdd, 0x00, 0x00, 0x00, } func (m *ClassTrace) Marshal() (dAtA []byte, err error) { diff --git a/x/nft-transfer/types/tx.pb.go b/x/nft-transfer/types/tx.pb.go index cdce3d7e1..5741809d4 100644 --- a/x/nft-transfer/types/tx.pb.go +++ b/x/nft-transfer/types/tx.pb.go @@ -124,44 +124,44 @@ func (m *MsgTransferResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgTransferResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgTransfer)(nil), "nft_transfer.v1.MsgTransfer") - proto.RegisterType((*MsgTransferResponse)(nil), "nft_transfer.v1.MsgTransferResponse") + proto.RegisterType((*MsgTransfer)(nil), "chainmain.nft_transfer.v1.MsgTransfer") + proto.RegisterType((*MsgTransferResponse)(nil), "chainmain.nft_transfer.v1.MsgTransferResponse") } func init() { proto.RegisterFile("nft_transfer/v1/tx.proto", fileDescriptor_fa0f686d4218285d) } var fileDescriptor_fa0f686d4218285d = []byte{ - // 472 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x52, 0xbf, 0x6e, 0xd3, 0x4e, - 0x1c, 0xb7, 0x7f, 0xe9, 0x2f, 0x75, 0x2e, 0x6a, 0x81, 0x83, 0x56, 0x57, 0x53, 0xec, 0xc8, 0x62, - 0xc8, 0x12, 0x5b, 0x29, 0x03, 0x52, 0x59, 0x50, 0x58, 0xc8, 0x50, 0x84, 0xac, 0x76, 0x61, 0x31, - 0xce, 0xf9, 0x62, 0x9f, 0x88, 0xef, 0xac, 0xbb, 0x4b, 0xd4, 0xbc, 0x01, 0x23, 0x8f, 0xd0, 0x9d, - 0x17, 0xe9, 0xd8, 0x91, 0x29, 0x42, 0xc9, 0xc2, 0x9c, 0x27, 0x40, 0x3e, 0x3b, 0x21, 0x61, 0x60, - 0xb1, 0xbf, 0x9f, 0xbf, 0xd2, 0xdd, 0x7d, 0x01, 0x62, 0x63, 0x15, 0x29, 0x11, 0x33, 0x39, 0x26, - 0x22, 0x98, 0xf5, 0x03, 0x75, 0xeb, 0x17, 0x82, 0x2b, 0x0e, 0x1f, 0xed, 0x2a, 0xfe, 0xac, 0x6f, - 0x3f, 0x4b, 0x79, 0xca, 0xb5, 0x16, 0x94, 0x53, 0x65, 0xb3, 0x5d, 0x3a, 0xc2, 0x01, 0xe6, 0x82, - 0x04, 0x78, 0x42, 0x09, 0x53, 0x65, 0x47, 0x35, 0x55, 0x06, 0xef, 0x7b, 0x03, 0xb4, 0xaf, 0x64, - 0x7a, 0x5d, 0x37, 0xc1, 0xd7, 0xa0, 0x2d, 0xf9, 0x54, 0x60, 0x12, 0x15, 0x5c, 0x28, 0x64, 0x76, - 0xcc, 0x6e, 0x6b, 0x70, 0xba, 0x5e, 0xb8, 0x70, 0x1e, 0xe7, 0x93, 0x4b, 0x6f, 0x47, 0xf4, 0x42, - 0x50, 0xa1, 0x8f, 0x5c, 0x28, 0xf8, 0x16, 0x1c, 0xd7, 0x1a, 0xce, 0x62, 0xc6, 0xc8, 0x04, 0xfd, - 0xa7, 0xb3, 0x67, 0xeb, 0x85, 0x7b, 0xb2, 0x97, 0xad, 0x75, 0x2f, 0x3c, 0xaa, 0x88, 0x77, 0x15, - 0x86, 0x67, 0xc0, 0xc2, 0x93, 0x58, 0xca, 0x88, 0x26, 0xa8, 0x51, 0x66, 0xc3, 0x43, 0x8d, 0x87, - 0x09, 0x7c, 0x0e, 0x5a, 0x8a, 0x7f, 0x21, 0x2c, 0xa2, 0x89, 0x44, 0x07, 0x9d, 0x46, 0xb7, 0x15, - 0x5a, 0x9a, 0x18, 0x26, 0x12, 0x9e, 0x82, 0xa6, 0x24, 0x2c, 0x21, 0x02, 0xfd, 0xaf, 0x53, 0x35, - 0x82, 0x36, 0xb0, 0x04, 0xc1, 0x84, 0xce, 0x88, 0x40, 0x4d, 0xad, 0x6c, 0x31, 0xfc, 0x0c, 0x8e, - 0x15, 0xcd, 0x09, 0x9f, 0xaa, 0x28, 0x23, 0x34, 0xcd, 0x14, 0x3a, 0xec, 0x98, 0xdd, 0xf6, 0x85, - 0xed, 0xd3, 0x11, 0xf6, 0xcb, 0x0b, 0xf3, 0xeb, 0x6b, 0x9a, 0xf5, 0xfd, 0xf7, 0xda, 0x31, 0x78, - 0x71, 0xbf, 0x70, 0x8d, 0x3f, 0xa7, 0xd9, 0xcf, 0x7b, 0xe1, 0x51, 0x4d, 0x54, 0x6e, 0x38, 0x04, - 0x4f, 0x36, 0x8e, 0xf2, 0x2f, 0x55, 0x9c, 0x17, 0xc8, 0xea, 0x98, 0xdd, 0x83, 0xc1, 0xf9, 0x7a, - 0xe1, 0xa2, 0xfd, 0x92, 0xad, 0xc5, 0x0b, 0x1f, 0xd7, 0xdc, 0xf5, 0x86, 0xba, 0xb4, 0xbe, 0xde, - 0xb9, 0xc6, 0xaf, 0x3b, 0xd7, 0xf0, 0x4e, 0xc0, 0xd3, 0x9d, 0xc7, 0x0a, 0x89, 0x2c, 0x38, 0x93, - 0xe4, 0xe2, 0x06, 0x34, 0xae, 0x64, 0x0a, 0x3f, 0x00, 0x6b, 0xfb, 0x8e, 0xe7, 0xfe, 0x5f, 0x0b, - 0xe2, 0xef, 0x04, 0xed, 0x97, 0xff, 0x52, 0x37, 0xb5, 0x83, 0x9b, 0xfb, 0xa5, 0x63, 0x3e, 0x2c, - 0x1d, 0xf3, 0xe7, 0xd2, 0x31, 0xbf, 0xad, 0x1c, 0xe3, 0x61, 0xe5, 0x18, 0x3f, 0x56, 0x8e, 0xf1, - 0xe9, 0x4d, 0x4a, 0x55, 0x36, 0x1d, 0xf9, 0x98, 0xe7, 0x01, 0x16, 0xf3, 0x42, 0xf1, 0x1e, 0x17, - 0x69, 0x0f, 0x67, 0x31, 0x65, 0x81, 0xfe, 0xf6, 0xf2, 0x72, 0xbc, 0x0d, 0xd8, 0x58, 0xf5, 0xb6, - 0x0b, 0xac, 0xe6, 0x05, 0x91, 0xa3, 0xa6, 0xde, 0xbc, 0x57, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, - 0xca, 0xe0, 0xa3, 0x4b, 0xdd, 0x02, 0x00, 0x00, + // 476 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0xbd, 0x8e, 0xd3, 0x30, + 0x1c, 0x4f, 0xe8, 0xd1, 0x4b, 0x5d, 0xdd, 0x09, 0x0c, 0x77, 0x72, 0x0b, 0x24, 0x55, 0x06, 0xd4, + 0xa5, 0x8e, 0x7a, 0x0c, 0x48, 0xc7, 0x82, 0xca, 0x42, 0x87, 0x93, 0x50, 0x74, 0x2c, 0x2c, 0x25, + 0x75, 0xdc, 0xc4, 0xa2, 0xb1, 0x23, 0xdb, 0xad, 0xae, 0x6f, 0xc0, 0xc8, 0x23, 0xdc, 0xce, 0x8b, + 0xdc, 0x78, 0x23, 0x53, 0x85, 0xda, 0x85, 0xb9, 0x4f, 0x80, 0xe2, 0xa4, 0xa5, 0x1d, 0x90, 0x6e, + 0x49, 0xfc, 0xfb, 0xb4, 0x6c, 0xff, 0x01, 0xe2, 0x13, 0x3d, 0xd2, 0x32, 0xe2, 0x6a, 0x42, 0x65, + 0x30, 0xef, 0x07, 0xfa, 0x06, 0xe7, 0x52, 0x68, 0x01, 0x5b, 0x24, 0x8d, 0x18, 0xcf, 0x22, 0xc6, + 0xf1, 0xbe, 0x07, 0xcf, 0xfb, 0xed, 0xe7, 0x89, 0x48, 0x84, 0x71, 0x05, 0xc5, 0xaa, 0x0c, 0xb4, + 0x3d, 0x36, 0x26, 0x01, 0x11, 0x92, 0x06, 0x64, 0xca, 0x28, 0xd7, 0x45, 0x5b, 0xb9, 0x2a, 0x0d, + 0xfe, 0xcf, 0x1a, 0x68, 0x5e, 0xa9, 0xe4, 0xba, 0x6a, 0x82, 0x6f, 0x41, 0x53, 0x89, 0x99, 0x24, + 0x74, 0x94, 0x0b, 0xa9, 0x91, 0xdd, 0xb1, 0xbb, 0x8d, 0xc1, 0xf9, 0x66, 0xe9, 0xc1, 0x45, 0x94, + 0x4d, 0x2f, 0xfd, 0x3d, 0xd1, 0x0f, 0x41, 0x89, 0x3e, 0x09, 0xa9, 0xe1, 0x7b, 0x70, 0x5a, 0x69, + 0x24, 0x8d, 0x38, 0xa7, 0x53, 0xf4, 0xc8, 0x64, 0x5b, 0x9b, 0xa5, 0x77, 0x76, 0x90, 0xad, 0x74, + 0x3f, 0x3c, 0x29, 0x89, 0x0f, 0x25, 0x86, 0x2d, 0xe0, 0x90, 0x69, 0xa4, 0xd4, 0x88, 0xc5, 0xa8, + 0x56, 0x64, 0xc3, 0x63, 0x83, 0x87, 0x31, 0x7c, 0x01, 0x1a, 0x5a, 0x7c, 0xa3, 0x7c, 0xc4, 0x62, + 0x85, 0x8e, 0x3a, 0xb5, 0x6e, 0x23, 0x74, 0x0c, 0x31, 0x8c, 0x15, 0x3c, 0x07, 0x75, 0x45, 0x79, + 0x4c, 0x25, 0x7a, 0x6c, 0x52, 0x15, 0x82, 0x6d, 0xe0, 0x48, 0x4a, 0x28, 0x9b, 0x53, 0x89, 0xea, + 0x46, 0xd9, 0x61, 0xf8, 0x15, 0x9c, 0x6a, 0x96, 0x51, 0x31, 0xd3, 0xa3, 0x94, 0xb2, 0x24, 0xd5, + 0xe8, 0xb8, 0x63, 0x77, 0x9b, 0x17, 0x6d, 0xcc, 0xc6, 0x04, 0x17, 0x17, 0x86, 0xab, 0x6b, 0x9a, + 0xf7, 0xf1, 0x47, 0xe3, 0x18, 0xbc, 0xba, 0x5b, 0x7a, 0xd6, 0xbf, 0xd3, 0x1c, 0xe6, 0xfd, 0xf0, + 0xa4, 0x22, 0x4a, 0x37, 0x1c, 0x82, 0xa7, 0x5b, 0x47, 0xf1, 0x57, 0x3a, 0xca, 0x72, 0xe4, 0x74, + 0xec, 0xee, 0xd1, 0xe0, 0xe5, 0x66, 0xe9, 0xa1, 0xc3, 0x92, 0x9d, 0xc5, 0x0f, 0x9f, 0x54, 0xdc, + 0xf5, 0x96, 0xba, 0x74, 0xbe, 0xdf, 0x7a, 0xd6, 0x9f, 0x5b, 0xcf, 0xf2, 0xcf, 0xc0, 0xb3, 0xbd, + 0xc7, 0x0a, 0xa9, 0xca, 0x05, 0x57, 0xf4, 0x82, 0x81, 0xda, 0x95, 0x4a, 0xe0, 0x18, 0x38, 0xbb, + 0x77, 0x7c, 0x8d, 0xff, 0x3b, 0x2a, 0x78, 0xaf, 0xa2, 0x8d, 0x1f, 0xe6, 0xdb, 0x6e, 0x35, 0xf8, + 0x7c, 0xb7, 0x72, 0xed, 0xfb, 0x95, 0x6b, 0xff, 0x5e, 0xb9, 0xf6, 0x8f, 0xb5, 0x6b, 0xdd, 0xaf, + 0x5d, 0xeb, 0xd7, 0xda, 0xb5, 0xbe, 0xbc, 0x4b, 0x98, 0x4e, 0x67, 0x63, 0x4c, 0x44, 0x16, 0x10, + 0xb9, 0xc8, 0xb5, 0xe8, 0x09, 0x99, 0xf4, 0x4c, 0x7d, 0x60, 0xbe, 0xbd, 0x62, 0x97, 0xe0, 0x26, + 0xe0, 0x13, 0xdd, 0xdb, 0x8d, 0xb7, 0x5e, 0xe4, 0x54, 0x8d, 0xeb, 0x66, 0x1a, 0xdf, 0xfc, 0x0d, + 0x00, 0x00, 0xff, 0xff, 0x12, 0x0d, 0xd1, 0x9e, 0xfb, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -190,7 +190,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) Transfer(ctx context.Context, in *MsgTransfer, opts ...grpc.CallOption) (*MsgTransferResponse, error) { out := new(MsgTransferResponse) - err := c.cc.Invoke(ctx, "/nft_transfer.v1.Msg/Transfer", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft_transfer.v1.Msg/Transfer", in, out, opts...) if err != nil { return nil, err } @@ -225,7 +225,7 @@ func _Msg_Transfer_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft_transfer.v1.Msg/Transfer", + FullMethod: "/chainmain.nft_transfer.v1.Msg/Transfer", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Transfer(ctx, req.(*MsgTransfer)) @@ -234,7 +234,7 @@ func _Msg_Transfer_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "nft_transfer.v1.Msg", + ServiceName: "chainmain.nft_transfer.v1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/x/nft/types/genesis.pb.go b/x/nft/types/genesis.pb.go index 552c43005..c2bd14dbf 100644 --- a/x/nft/types/genesis.pb.go +++ b/x/nft/types/genesis.pb.go @@ -69,26 +69,27 @@ func (m *GenesisState) GetCollections() []Collection { } func init() { - proto.RegisterType((*GenesisState)(nil), "nft.v1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "chainmain.nft.v1.GenesisState") } func init() { proto.RegisterFile("nft/v1/genesis.proto", fileDescriptor_ab00149a7d9d5d44) } var fileDescriptor_ab00149a7d9d5d44 = []byte{ - // 203 bytes of a gzipped FileDescriptorProto + // 211 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xc9, 0x4b, 0x2b, 0xd1, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, - 0x17, 0x62, 0xcb, 0x4b, 0x2b, 0xd1, 0x2b, 0x33, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x0b, - 0xe9, 0x83, 0x58, 0x10, 0x59, 0x29, 0x01, 0xa8, 0x1e, 0x90, 0x22, 0xb0, 0x88, 0x92, 0x17, 0x17, - 0x8f, 0x3b, 0xc4, 0x80, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x2b, 0x2e, 0xee, 0xe4, 0xfc, 0x9c, - 0x9c, 0xd4, 0xe4, 0x92, 0xcc, 0xfc, 0xbc, 0x62, 0x09, 0x46, 0x05, 0x66, 0x0d, 0x6e, 0x23, 0x21, - 0x3d, 0x88, 0xa9, 0x7a, 0xce, 0x70, 0x29, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0x90, 0x15, - 0x3b, 0xf9, 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, 0x51, 0x7a, 0x66, - 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x72, 0x51, 0x65, 0x41, 0x49, 0xbe, 0x6e, - 0x7e, 0x51, 0xba, 0x6e, 0x72, 0x46, 0x62, 0x66, 0x9e, 0x3e, 0x98, 0xd4, 0xcd, 0x05, 0x31, 0x2b, - 0x40, 0x2e, 0xd3, 0x2f, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0x3b, 0xd0, 0x18, 0x10, 0x00, - 0x00, 0xff, 0xff, 0xc5, 0x46, 0x6a, 0xca, 0xe8, 0x00, 0x00, 0x00, + 0x17, 0x12, 0x48, 0xce, 0x48, 0xcc, 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0xcb, 0x4b, 0x2b, 0xd1, + 0x2b, 0x33, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x4b, 0xea, 0x83, 0x58, 0x10, 0x75, 0x52, + 0x02, 0x50, 0xdd, 0x20, 0x45, 0x60, 0x11, 0xa5, 0x10, 0x2e, 0x1e, 0x77, 0x88, 0x51, 0xc1, 0x25, + 0x89, 0x25, 0xa9, 0x42, 0x2e, 0x5c, 0xdc, 0xc9, 0xf9, 0x39, 0x39, 0xa9, 0xc9, 0x25, 0x99, 0xf9, + 0x79, 0xc5, 0x12, 0x8c, 0x0a, 0xcc, 0x1a, 0xdc, 0x46, 0x32, 0x7a, 0xe8, 0xe6, 0xeb, 0x39, 0xc3, + 0x15, 0x39, 0xb1, 0x9c, 0xb8, 0x27, 0xcf, 0x10, 0x84, 0xac, 0xcd, 0xc9, 0xe7, 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, 0x8c, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, + 0xf3, 0x73, 0xf5, 0x93, 0x8b, 0x2a, 0x0b, 0x4a, 0xf2, 0x75, 0xf3, 0x8b, 0xd2, 0x75, 0xc1, 0xe6, + 0xeb, 0x83, 0x49, 0x5d, 0x90, 0x35, 0xfa, 0x15, 0x20, 0x37, 0xea, 0x97, 0x54, 0x16, 0xa4, 0x16, + 0x27, 0xb1, 0x81, 0x9d, 0x6a, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x9b, 0x5a, 0xbb, 0x9d, 0xfc, + 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/nft/types/nft.pb.go b/x/nft/types/nft.pb.go index 48eb150f0..48d095e0d 100644 --- a/x/nft/types/nft.pb.go +++ b/x/nft/types/nft.pb.go @@ -225,47 +225,48 @@ func (m *Collection) XXX_DiscardUnknown() { var xxx_messageInfo_Collection proto.InternalMessageInfo func init() { - proto.RegisterType((*BaseNFT)(nil), "nft.v1.BaseNFT") - proto.RegisterType((*Denom)(nil), "nft.v1.Denom") - proto.RegisterType((*IDCollection)(nil), "nft.v1.IDCollection") - proto.RegisterType((*Owner)(nil), "nft.v1.Owner") - proto.RegisterType((*Collection)(nil), "nft.v1.Collection") + proto.RegisterType((*BaseNFT)(nil), "chainmain.nft.v1.BaseNFT") + proto.RegisterType((*Denom)(nil), "chainmain.nft.v1.Denom") + proto.RegisterType((*IDCollection)(nil), "chainmain.nft.v1.IDCollection") + proto.RegisterType((*Owner)(nil), "chainmain.nft.v1.Owner") + proto.RegisterType((*Collection)(nil), "chainmain.nft.v1.Collection") } func init() { proto.RegisterFile("nft/v1/nft.proto", fileDescriptor_f935ea002f215618) } var fileDescriptor_f935ea002f215618 = []byte{ - // 479 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0x31, 0x6f, 0xda, 0x40, - 0x14, 0xc7, 0x31, 0xd8, 0x10, 0x8e, 0x90, 0xa0, 0x2b, 0xaa, 0xdc, 0x0e, 0x76, 0x64, 0x75, 0x48, - 0x07, 0x6c, 0x41, 0xb7, 0x8c, 0x6e, 0x14, 0x89, 0x25, 0xad, 0xac, 0x74, 0xe9, 0x82, 0x2e, 0xbe, - 0x03, 0x4e, 0xc5, 0x77, 0xc8, 0x77, 0x24, 0xe1, 0x2b, 0x74, 0xea, 0x47, 0xe8, 0xc7, 0x61, 0xcc, - 0xd8, 0xc9, 0x6a, 0xcd, 0xd2, 0x99, 0x4f, 0x50, 0xdd, 0x9d, 0x1d, 0x31, 0x76, 0x41, 0xff, 0xf7, - 0x7f, 0x0f, 0xfd, 0x7f, 0xcf, 0xf7, 0xc0, 0x80, 0xcd, 0x65, 0xf4, 0x30, 0x8e, 0xd8, 0x5c, 0x86, - 0xeb, 0x9c, 0x4b, 0x0e, 0xdb, 0x4a, 0x3e, 0x8c, 0xdf, 0x0e, 0x17, 0x7c, 0xc1, 0xb5, 0x15, 0x29, - 0x65, 0xba, 0xc1, 0x13, 0xe8, 0xc4, 0x48, 0x90, 0xdb, 0x9b, 0x3b, 0x78, 0x06, 0x9a, 0x14, 0xbb, - 0xd6, 0x85, 0x75, 0xd9, 0x4d, 0x9a, 0x14, 0x43, 0x08, 0x6c, 0x86, 0x32, 0xe2, 0x36, 0xb5, 0xa3, - 0x35, 0x7c, 0x03, 0x5a, 0x9b, 0x9c, 0xba, 0x2d, 0x65, 0xc5, 0x9d, 0xb2, 0xf0, 0x5b, 0x5f, 0x92, - 0x69, 0xa2, 0x3c, 0x35, 0x8e, 0x91, 0x44, 0xae, 0x6d, 0xc6, 0x95, 0x86, 0x43, 0xe0, 0xf0, 0x47, - 0x46, 0x72, 0xd7, 0xd1, 0xa6, 0x29, 0xae, 0xec, 0xbf, 0x3f, 0x7d, 0x2b, 0xd8, 0x00, 0xe7, 0x9a, - 0x30, 0x9e, 0xfd, 0x57, 0xee, 0x6b, 0xd0, 0x16, 0xe9, 0x92, 0x64, 0xc8, 0x44, 0x27, 0x55, 0x05, - 0x5d, 0xd0, 0x49, 0x73, 0x82, 0x24, 0xcf, 0xab, 0xdc, 0xba, 0x84, 0x03, 0x43, 0x6a, 0x82, 0x95, - 0xac, 0x62, 0x1f, 0xc1, 0xe9, 0xf4, 0xfa, 0x23, 0x5f, 0xad, 0x48, 0x2a, 0x29, 0x67, 0x30, 0x04, - 0x27, 0x58, 0x61, 0xcc, 0x6a, 0x86, 0xf8, 0xd5, 0xa1, 0xf0, 0xcf, 0xb7, 0x28, 0x5b, 0x5d, 0x05, - 0x75, 0x27, 0x48, 0x3a, 0x5a, 0x4e, 0x31, 0x1c, 0x83, 0xae, 0xe4, 0xdf, 0x08, 0x9b, 0x51, 0x2c, - 0xdc, 0xe6, 0x45, 0xeb, 0xb2, 0x1b, 0x0f, 0x0f, 0x85, 0x3f, 0x30, 0x7f, 0x78, 0x69, 0x05, 0xc9, - 0x89, 0xd6, 0x53, 0x2c, 0xaa, 0xe0, 0xef, 0x16, 0x70, 0x3e, 0xa9, 0xfd, 0x15, 0x34, 0xc2, 0x38, - 0x27, 0x42, 0x54, 0x5b, 0xd7, 0x25, 0x44, 0xe0, 0x8c, 0xe2, 0x59, 0xfa, 0x42, 0x67, 0x12, 0x7a, - 0x93, 0x61, 0x68, 0x1e, 0x31, 0x3c, 0x46, 0x8f, 0xdf, 0xed, 0x0a, 0xbf, 0x51, 0x16, 0x7e, 0xff, - 0xd8, 0x15, 0x87, 0xc2, 0xef, 0x19, 0x18, 0x8a, 0x53, 0x11, 0x24, 0x7d, 0x8a, 0x8f, 0xba, 0x15, - 0xcc, 0x1a, 0x80, 0xa3, 0x6f, 0xf0, 0x1e, 0x38, 0x7a, 0x3d, 0x8d, 0xd3, 0x9b, 0xf4, 0xeb, 0x34, - 0xfd, 0x3e, 0xb1, 0xad, 0x62, 0x12, 0x33, 0x01, 0xc7, 0xc0, 0x66, 0x73, 0x59, 0x73, 0x9d, 0xd7, - 0x93, 0xd5, 0x0d, 0xc5, 0xa7, 0x15, 0x92, 0x7d, 0x7b, 0x73, 0x27, 0x12, 0x3d, 0x6a, 0x12, 0xe3, - 0xcf, 0xbb, 0x3f, 0x5e, 0x63, 0x57, 0x7a, 0xd6, 0x73, 0xe9, 0x59, 0xbf, 0x4b, 0xcf, 0xfa, 0xb1, - 0xf7, 0x1a, 0xcf, 0x7b, 0xaf, 0xf1, 0x6b, 0xef, 0x35, 0xbe, 0x4e, 0x16, 0x54, 0x2e, 0x37, 0xf7, - 0x61, 0xca, 0xb3, 0x28, 0xcd, 0xb7, 0x6b, 0xc9, 0x47, 0x3c, 0x5f, 0x8c, 0xd2, 0x25, 0xa2, 0x2c, - 0xd2, 0xbf, 0xa3, 0x4c, 0xc9, 0x27, 0x75, 0xd8, 0x91, 0xdc, 0xae, 0x89, 0xb8, 0x6f, 0xeb, 0x0b, - 0xfe, 0xf0, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x3b, 0xc5, 0x2a, 0x8c, 0xf3, 0x02, 0x00, 0x00, + // 492 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0x31, 0x6e, 0xdb, 0x30, + 0x14, 0x86, 0x2d, 0x5b, 0x8e, 0x63, 0x3a, 0x49, 0x0d, 0xd6, 0x68, 0x95, 0x0e, 0x52, 0x20, 0x74, + 0xc8, 0x62, 0x09, 0x76, 0xb6, 0x74, 0x53, 0x83, 0x00, 0x5e, 0xd2, 0x42, 0x48, 0x97, 0x2e, 0x06, + 0x23, 0xd2, 0x36, 0x11, 0x8b, 0x34, 0x44, 0x3a, 0x89, 0xf7, 0x1e, 0xa0, 0x43, 0x0f, 0xd0, 0xe3, + 0x78, 0xcc, 0xd8, 0x49, 0x68, 0xe5, 0xa5, 0xb3, 0x4f, 0x50, 0x90, 0x94, 0x02, 0xa3, 0x59, 0xb2, + 0x18, 0xff, 0xfb, 0xdf, 0x23, 0xfe, 0xef, 0x99, 0x14, 0xe8, 0xb2, 0x89, 0x0c, 0xef, 0x06, 0x21, + 0x9b, 0xc8, 0x60, 0x91, 0x71, 0xc9, 0x61, 0x37, 0x99, 0x21, 0xca, 0x52, 0x44, 0x59, 0xa0, 0xcc, + 0xbb, 0xc1, 0xbb, 0xde, 0x94, 0x4f, 0xb9, 0x6e, 0x86, 0x4a, 0x99, 0x39, 0xff, 0x01, 0xb4, 0x22, + 0x24, 0xc8, 0xd5, 0xe5, 0x35, 0x3c, 0x02, 0x75, 0x8a, 0x1d, 0xeb, 0xc4, 0x3a, 0x6d, 0xc7, 0x75, + 0x8a, 0x21, 0x04, 0x36, 0x43, 0x29, 0x71, 0xea, 0xda, 0xd1, 0x1a, 0x1e, 0x83, 0xc6, 0x32, 0xa3, + 0x4e, 0x43, 0x59, 0x51, 0xab, 0xc8, 0xbd, 0xc6, 0x97, 0x78, 0x14, 0x2b, 0x4f, 0x8d, 0x63, 0x24, + 0x91, 0x63, 0x9b, 0x71, 0xa5, 0x61, 0x0f, 0x34, 0xf9, 0x3d, 0x23, 0x99, 0xd3, 0xd4, 0xa6, 0x29, + 0xce, 0xed, 0xbf, 0x3f, 0x3d, 0xcb, 0x5f, 0x82, 0xe6, 0x05, 0x61, 0x3c, 0x7d, 0x51, 0xee, 0x1b, + 0xb0, 0x27, 0x92, 0x19, 0x49, 0x91, 0x89, 0x8e, 0xcb, 0x0a, 0x3a, 0xa0, 0x95, 0x64, 0x04, 0x49, + 0x9e, 0x95, 0xb9, 0x55, 0x09, 0xbb, 0x86, 0xd4, 0x04, 0x2b, 0x59, 0xc6, 0xde, 0x83, 0x83, 0xd1, + 0xc5, 0x47, 0x3e, 0x9f, 0x93, 0x44, 0x52, 0xce, 0x60, 0x00, 0xf6, 0xb1, 0xc2, 0x18, 0x57, 0x0c, + 0xd1, 0xeb, 0x6d, 0xee, 0xbd, 0x5a, 0xa1, 0x74, 0x7e, 0xee, 0x57, 0x1d, 0x3f, 0x6e, 0x69, 0x39, + 0xc2, 0x70, 0x00, 0xda, 0x92, 0xdf, 0x12, 0x36, 0xa6, 0x58, 0x38, 0xf5, 0x93, 0xc6, 0x69, 0x3b, + 0xea, 0x6d, 0x73, 0xaf, 0x6b, 0x0e, 0x3c, 0xb5, 0xfc, 0x78, 0x5f, 0xeb, 0x11, 0x16, 0x65, 0xf0, + 0x0f, 0x0b, 0x34, 0x3f, 0xa9, 0xfd, 0x15, 0x34, 0xc2, 0x38, 0x23, 0x42, 0x94, 0x5b, 0x57, 0x25, + 0xbc, 0x05, 0x47, 0x14, 0x8f, 0x93, 0x27, 0x3a, 0x93, 0xd0, 0x19, 0xba, 0xc1, 0xff, 0xd7, 0x19, + 0xec, 0x2e, 0x11, 0xbd, 0x5f, 0xe7, 0x5e, 0xad, 0xc8, 0xbd, 0xc3, 0x5d, 0x57, 0x6c, 0x73, 0xaf, + 0x63, 0xb0, 0x28, 0x4e, 0x84, 0x1f, 0x1f, 0x52, 0xbc, 0xd3, 0x2d, 0xb1, 0xbe, 0x59, 0x00, 0xec, + 0xfc, 0x1d, 0x67, 0xa0, 0xa9, 0x37, 0xd5, 0x64, 0x9d, 0xe1, 0xdb, 0xe7, 0xc1, 0xfa, 0xd2, 0x22, + 0x5b, 0x25, 0xc6, 0x66, 0x16, 0x7e, 0x00, 0x36, 0x9b, 0xc8, 0x0a, 0xf6, 0xf8, 0xf9, 0x99, 0xf2, + 0x89, 0x45, 0x07, 0x25, 0xa7, 0x7d, 0x75, 0x79, 0x2d, 0x62, 0x7d, 0xc8, 0x60, 0x44, 0x9f, 0xd7, + 0x7f, 0xdc, 0xda, 0xba, 0x70, 0xad, 0xc7, 0xc2, 0xb5, 0x7e, 0x17, 0xae, 0xf5, 0x7d, 0xe3, 0xd6, + 0x1e, 0x37, 0x6e, 0xed, 0xd7, 0xc6, 0xad, 0x7d, 0x1d, 0x4e, 0xa9, 0x9c, 0x2d, 0x6f, 0x82, 0x84, + 0xa7, 0x61, 0x92, 0xad, 0x16, 0x92, 0xf7, 0x79, 0x36, 0xed, 0xeb, 0x9c, 0x50, 0xff, 0xf6, 0x55, + 0x5c, 0xf8, 0xa0, 0xbe, 0x80, 0x50, 0xae, 0x16, 0x44, 0xdc, 0xec, 0xe9, 0x07, 0x7e, 0xf6, 0x2f, + 0x00, 0x00, 0xff, 0xff, 0xab, 0x43, 0xf5, 0x6e, 0x1c, 0x03, 0x00, 0x00, } func (this *BaseNFT) Equal(that interface{}) bool { diff --git a/x/nft/types/query.pb.go b/x/nft/types/query.pb.go index 794629d8d..ecc120e05 100644 --- a/x/nft/types/query.pb.go +++ b/x/nft/types/query.pb.go @@ -728,80 +728,81 @@ func (m *QueryNFTResponse) GetNFT() *BaseNFT { } func init() { - proto.RegisterType((*QuerySupplyRequest)(nil), "nft.v1.QuerySupplyRequest") - proto.RegisterType((*QuerySupplyResponse)(nil), "nft.v1.QuerySupplyResponse") - proto.RegisterType((*QueryOwnerRequest)(nil), "nft.v1.QueryOwnerRequest") - proto.RegisterType((*QueryOwnerResponse)(nil), "nft.v1.QueryOwnerResponse") - proto.RegisterType((*QueryCollectionRequest)(nil), "nft.v1.QueryCollectionRequest") - proto.RegisterType((*QueryCollectionResponse)(nil), "nft.v1.QueryCollectionResponse") - proto.RegisterType((*QueryDenomRequest)(nil), "nft.v1.QueryDenomRequest") - proto.RegisterType((*QueryDenomResponse)(nil), "nft.v1.QueryDenomResponse") - proto.RegisterType((*QueryDenomByNameRequest)(nil), "nft.v1.QueryDenomByNameRequest") - proto.RegisterType((*QueryDenomByNameResponse)(nil), "nft.v1.QueryDenomByNameResponse") - proto.RegisterType((*QueryDenomsRequest)(nil), "nft.v1.QueryDenomsRequest") - proto.RegisterType((*QueryDenomsResponse)(nil), "nft.v1.QueryDenomsResponse") - proto.RegisterType((*QueryNFTRequest)(nil), "nft.v1.QueryNFTRequest") - proto.RegisterType((*QueryNFTResponse)(nil), "nft.v1.QueryNFTResponse") + proto.RegisterType((*QuerySupplyRequest)(nil), "chainmain.nft.v1.QuerySupplyRequest") + proto.RegisterType((*QuerySupplyResponse)(nil), "chainmain.nft.v1.QuerySupplyResponse") + proto.RegisterType((*QueryOwnerRequest)(nil), "chainmain.nft.v1.QueryOwnerRequest") + proto.RegisterType((*QueryOwnerResponse)(nil), "chainmain.nft.v1.QueryOwnerResponse") + proto.RegisterType((*QueryCollectionRequest)(nil), "chainmain.nft.v1.QueryCollectionRequest") + proto.RegisterType((*QueryCollectionResponse)(nil), "chainmain.nft.v1.QueryCollectionResponse") + proto.RegisterType((*QueryDenomRequest)(nil), "chainmain.nft.v1.QueryDenomRequest") + proto.RegisterType((*QueryDenomResponse)(nil), "chainmain.nft.v1.QueryDenomResponse") + proto.RegisterType((*QueryDenomByNameRequest)(nil), "chainmain.nft.v1.QueryDenomByNameRequest") + proto.RegisterType((*QueryDenomByNameResponse)(nil), "chainmain.nft.v1.QueryDenomByNameResponse") + proto.RegisterType((*QueryDenomsRequest)(nil), "chainmain.nft.v1.QueryDenomsRequest") + proto.RegisterType((*QueryDenomsResponse)(nil), "chainmain.nft.v1.QueryDenomsResponse") + proto.RegisterType((*QueryNFTRequest)(nil), "chainmain.nft.v1.QueryNFTRequest") + proto.RegisterType((*QueryNFTResponse)(nil), "chainmain.nft.v1.QueryNFTResponse") } func init() { proto.RegisterFile("nft/v1/query.proto", fileDescriptor_b4fc1e9935801bfe) } var fileDescriptor_b4fc1e9935801bfe = []byte{ - // 851 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xcd, 0x4e, 0x13, 0x51, - 0x14, 0xee, 0xb4, 0xb4, 0xc0, 0x45, 0x03, 0x5c, 0xfe, 0xea, 0xa0, 0x6d, 0x73, 0x8d, 0xfc, 0xda, - 0x99, 0xb4, 0xb2, 0xd1, 0x85, 0x26, 0xc5, 0xd4, 0x90, 0x18, 0xd0, 0x91, 0x15, 0x9a, 0xe8, 0xb4, - 0x9d, 0x0e, 0x0d, 0x9d, 0x7b, 0x87, 0xce, 0x14, 0x6c, 0x90, 0x85, 0x6c, 0xdd, 0x90, 0x98, 0x18, - 0xdf, 0xc3, 0x97, 0x60, 0x49, 0xe2, 0xc6, 0x55, 0x63, 0x8a, 0x4f, 0xc0, 0x13, 0x98, 0xfb, 0x33, - 0x76, 0xa6, 0x1d, 0xa2, 0x36, 0xec, 0xa6, 0xf7, 0x7c, 0xf7, 0xfb, 0xbe, 0x73, 0xee, 0x39, 0x07, - 0x00, 0xc4, 0x55, 0x57, 0x3d, 0xc8, 0xa9, 0xfb, 0x4d, 0xa3, 0xd1, 0x52, 0xec, 0x06, 0x71, 0x09, - 0x4c, 0xe0, 0xaa, 0xab, 0x1c, 0xe4, 0xe4, 0x69, 0x93, 0x98, 0x84, 0x1d, 0xa9, 0xf4, 0x8b, 0x47, - 0xe5, 0xdb, 0x26, 0x21, 0x66, 0xdd, 0x50, 0x75, 0xbb, 0xa6, 0xea, 0x18, 0x13, 0x57, 0x77, 0x6b, - 0x04, 0x3b, 0x22, 0x3a, 0x21, 0xf8, 0x28, 0x05, 0x3f, 0x59, 0x29, 0x13, 0xc7, 0x22, 0x8e, 0x5a, - 0xd2, 0x1d, 0x83, 0xcb, 0xa8, 0x07, 0xb9, 0x92, 0xe1, 0xea, 0x39, 0xd5, 0xd6, 0xcd, 0x1a, 0x66, - 0xd7, 0x39, 0x16, 0xed, 0x00, 0xf8, 0x92, 0x22, 0x5e, 0x35, 0x6d, 0xbb, 0xde, 0xd2, 0x8c, 0xfd, - 0xa6, 0xe1, 0xb8, 0x50, 0x01, 0x23, 0x15, 0x03, 0x13, 0xeb, 0x6d, 0xad, 0x92, 0x94, 0x32, 0xd2, - 0xd2, 0x68, 0x61, 0xea, 0xb2, 0x9d, 0x1e, 0x6f, 0xe9, 0x56, 0xfd, 0x11, 0xf2, 0x22, 0x48, 0x1b, - 0x66, 0x9f, 0x1b, 0x15, 0x38, 0x0d, 0xe2, 0xe4, 0x10, 0x1b, 0x8d, 0x64, 0x94, 0x82, 0x35, 0xfe, - 0x03, 0x65, 0xc1, 0x54, 0x80, 0xdb, 0xb1, 0x09, 0x76, 0x0c, 0x38, 0x0b, 0x12, 0xba, 0x45, 0x9a, - 0xd8, 0x65, 0xd4, 0x43, 0x9a, 0xf8, 0x85, 0xbe, 0x49, 0x60, 0x92, 0xe1, 0xb7, 0xe8, 0xed, 0x41, - 0xad, 0x2c, 0x04, 0xac, 0x14, 0x26, 0x2e, 0xdb, 0xe9, 0x1b, 0x1c, 0xcc, 0x4d, 0x09, 0x73, 0xb0, - 0x08, 0x40, 0xb7, 0x18, 0xc9, 0x58, 0x46, 0x5a, 0x1a, 0xcb, 0x2f, 0x28, 0xbc, 0x72, 0x0a, 0xad, - 0x9c, 0xc2, 0x1f, 0x48, 0x54, 0x4e, 0x79, 0xa1, 0x9b, 0x86, 0xf0, 0xa4, 0xf9, 0x6e, 0xa2, 0x13, - 0x49, 0x54, 0x50, 0xb8, 0x16, 0x49, 0xde, 0xf5, 0x6c, 0x48, 0x8c, 0xf9, 0xa6, 0xc2, 0x5f, 0x58, - 0xe1, 0x28, 0xe1, 0xe1, 0x59, 0xc0, 0x43, 0x94, 0x21, 0x17, 0xff, 0xea, 0x81, 0x2b, 0x04, 0x4c, - 0x9c, 0x4a, 0x60, 0x96, 0x99, 0x58, 0x27, 0xf5, 0xba, 0x51, 0xa6, 0x67, 0x83, 0xd6, 0xaf, 0x18, - 0xe2, 0x69, 0x90, 0xba, 0x7c, 0x91, 0xc0, 0x5c, 0x9f, 0x25, 0x51, 0x9c, 0x3c, 0x00, 0xe5, 0x3f, - 0xa7, 0xa2, 0x42, 0xd0, 0xab, 0x90, 0x0f, 0xef, 0x43, 0x5d, 0x5f, 0xad, 0xd6, 0x45, 0x97, 0x3d, - 0xa5, 0x09, 0x0f, 0x58, 0x25, 0xf4, 0x50, 0x3c, 0xba, 0x20, 0xe9, 0x3e, 0x3a, 0x03, 0xf4, 0x3e, - 0x3a, 0x47, 0xf1, 0x18, 0xda, 0x12, 0x75, 0x61, 0x87, 0x85, 0xd6, 0xa6, 0x6e, 0x79, 0xf5, 0x83, - 0x6b, 0x00, 0x70, 0x2d, 0xac, 0x5b, 0x86, 0xf0, 0x31, 0x73, 0xd9, 0x4e, 0x4f, 0xfa, 0x7d, 0xd0, - 0x18, 0xd2, 0x46, 0xd9, 0x0f, 0x7a, 0x19, 0x3d, 0x01, 0xc9, 0x7e, 0xc2, 0xff, 0x71, 0xf4, 0xc6, - 0x9f, 0x8c, 0xe3, 0x99, 0x09, 0x36, 0x82, 0x34, 0x70, 0x23, 0x7c, 0x92, 0xc4, 0x1a, 0xf0, 0xe8, - 0x85, 0xb5, 0x55, 0x90, 0x60, 0xf2, 0x4e, 0x52, 0xca, 0xc4, 0xfa, 0xbc, 0x15, 0x86, 0xce, 0xda, - 0xe9, 0x88, 0x26, 0x20, 0xd7, 0xf7, 0xfa, 0xfb, 0x60, 0x9c, 0x99, 0xd9, 0x2c, 0x6e, 0x0f, 0x3a, - 0x21, 0x0a, 0x18, 0x71, 0xc9, 0x9e, 0x81, 0x29, 0x3e, 0xda, 0x8b, 0xf7, 0x22, 0x48, 0x1b, 0x66, - 0x9f, 0x1b, 0x15, 0xf4, 0x18, 0x4c, 0x74, 0x25, 0x45, 0xf2, 0x2b, 0x20, 0x86, 0xab, 0xae, 0xa8, - 0xea, 0xb8, 0x97, 0x79, 0x41, 0x77, 0x8c, 0xcd, 0xe2, 0x76, 0x61, 0xb8, 0xd3, 0x4e, 0xc7, 0x28, - 0x9c, 0x82, 0xf2, 0x5f, 0x13, 0x20, 0xce, 0x08, 0xe0, 0x21, 0x48, 0xf0, 0x5d, 0x0a, 0x65, 0xef, - 0x4a, 0xff, 0xf2, 0x96, 0xe7, 0x43, 0x63, 0x5c, 0x18, 0xad, 0x9d, 0x7c, 0xff, 0xf5, 0x39, 0xaa, - 0xc0, 0xfb, 0x6a, 0x79, 0x57, 0xaf, 0x61, 0x4b, 0xaf, 0x61, 0xfa, 0x97, 0x43, 0xed, 0x4e, 0x9a, - 0xa3, 0x1e, 0x79, 0x49, 0x1f, 0xab, 0x0e, 0x97, 0x7b, 0x0d, 0xe2, 0x6c, 0x71, 0xc1, 0x5b, 0x01, - 0x6e, 0xff, 0xa2, 0x96, 0xe5, 0xb0, 0x90, 0x50, 0x9d, 0x67, 0xaa, 0x33, 0x70, 0xaa, 0x47, 0x15, - 0x57, 0x5d, 0x07, 0x7e, 0x00, 0xa0, 0x3b, 0xf3, 0x30, 0x15, 0xa0, 0xe9, 0xdb, 0x67, 0x72, 0xfa, - 0xca, 0xb8, 0xd0, 0xca, 0x32, 0xad, 0x45, 0x78, 0xef, 0x9f, 0x32, 0x84, 0xbb, 0x20, 0xce, 0x1a, - 0xae, 0x27, 0x35, 0xff, 0x76, 0xe8, 0x49, 0x2d, 0x30, 0xf3, 0x68, 0x89, 0xc9, 0x21, 0x98, 0xe9, - 0x91, 0xe3, 0x8d, 0xeb, 0x57, 0xfa, 0x28, 0x81, 0x31, 0xdf, 0x8c, 0xc2, 0x74, 0x3f, 0x6b, 0x60, - 0x1d, 0xc8, 0x99, 0xab, 0x01, 0x42, 0x5c, 0x65, 0xe2, 0xcb, 0x70, 0x31, 0x5c, 0x9c, 0xae, 0x0a, - 0xcf, 0x01, 0xfd, 0x3e, 0x86, 0xef, 0x40, 0x82, 0x8f, 0x21, 0x0c, 0xc9, 0xc9, 0x09, 0xef, 0xa0, - 0xe0, 0xdc, 0xa2, 0x3b, 0x4c, 0x73, 0x0e, 0xce, 0x84, 0x6a, 0xc2, 0x3d, 0x40, 0x3b, 0x17, 0xce, - 0x05, 0x28, 0xba, 0xd3, 0x26, 0x27, 0xfb, 0x03, 0x82, 0x38, 0xc7, 0x88, 0x57, 0xe1, 0x72, 0x48, - 0x93, 0xf8, 0x7b, 0xf2, 0xc8, 0x9b, 0xb1, 0xe3, 0xc2, 0xf3, 0xb3, 0x4e, 0x4a, 0x3a, 0xef, 0xa4, - 0xa4, 0x9f, 0x9d, 0x94, 0x74, 0x7a, 0x91, 0x8a, 0x9c, 0x5f, 0xa4, 0x22, 0x3f, 0x2e, 0x52, 0x91, - 0x9d, 0xbc, 0x59, 0x73, 0x77, 0x9b, 0x25, 0xa5, 0x4c, 0x2c, 0xb5, 0xdc, 0x68, 0xd9, 0x2e, 0xc9, - 0x92, 0x86, 0x99, 0x65, 0xcc, 0x9c, 0x3f, 0xcb, 0x04, 0xde, 0x33, 0x09, 0xb7, 0x65, 0x1b, 0x4e, - 0x29, 0xc1, 0xfe, 0x25, 0x7a, 0xf0, 0x3b, 0x00, 0x00, 0xff, 0xff, 0x9a, 0x5a, 0x3a, 0x99, 0xa2, - 0x09, 0x00, 0x00, + // 868 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x4d, 0x6f, 0xe2, 0x46, + 0x18, 0xc7, 0x19, 0x08, 0x90, 0x4c, 0x2a, 0x85, 0x4c, 0xde, 0x28, 0x4d, 0x81, 0x4e, 0xf3, 0x02, + 0x69, 0xb1, 0x45, 0x9a, 0x5e, 0xaa, 0x9e, 0x48, 0x45, 0x1b, 0xa9, 0x4a, 0x5a, 0x37, 0xa7, 0xa8, + 0x52, 0x65, 0xc0, 0x38, 0xa8, 0x78, 0xc6, 0xc1, 0x26, 0x2d, 0x4a, 0xa3, 0x4a, 0xbd, 0x76, 0x0f, + 0x91, 0x56, 0xb9, 0xef, 0x69, 0xbf, 0xc0, 0x7e, 0x89, 0x1c, 0x23, 0xed, 0x65, 0x4f, 0x68, 0x45, + 0xf6, 0x13, 0xe4, 0x13, 0xac, 0xe6, 0xc5, 0xc1, 0xe6, 0x2d, 0x11, 0xca, 0xcd, 0x9e, 0xf9, 0x3f, + 0xcf, 0xf3, 0x9b, 0x3f, 0xcf, 0x3c, 0x06, 0x22, 0x52, 0x77, 0xd5, 0xf3, 0xa2, 0x7a, 0xd6, 0x36, + 0x5a, 0x1d, 0xc5, 0x6e, 0x51, 0x97, 0xa2, 0x44, 0xf5, 0x54, 0x6f, 0x10, 0x4b, 0x6f, 0x10, 0x85, + 0xd4, 0x5d, 0xe5, 0xbc, 0x98, 0x5a, 0x36, 0xa9, 0x49, 0xf9, 0xa6, 0xca, 0x9e, 0x84, 0x2e, 0xb5, + 0x6e, 0x52, 0x6a, 0x36, 0x0d, 0x55, 0xb7, 0x1b, 0xaa, 0x4e, 0x08, 0x75, 0x75, 0xb7, 0x41, 0x89, + 0x23, 0x77, 0x13, 0x32, 0x33, 0x4b, 0x21, 0x56, 0x76, 0xaa, 0xd4, 0xb1, 0xa8, 0xa3, 0x56, 0x74, + 0xc7, 0x10, 0x05, 0xd5, 0xf3, 0x62, 0xc5, 0x70, 0xf5, 0xa2, 0x6a, 0xeb, 0x66, 0x83, 0xf0, 0x70, + 0xa1, 0xc5, 0x27, 0x10, 0xfd, 0xca, 0x14, 0xbf, 0xb5, 0x6d, 0xbb, 0xd9, 0xd1, 0x8c, 0xb3, 0xb6, + 0xe1, 0xb8, 0x48, 0x81, 0xb3, 0x35, 0x83, 0x50, 0xeb, 0x8f, 0x46, 0x2d, 0x09, 0xb2, 0x20, 0x37, + 0x57, 0x5a, 0xba, 0xef, 0x66, 0x16, 0x3a, 0xba, 0xd5, 0xfc, 0x0e, 0x7b, 0x3b, 0x58, 0x8b, 0xf3, + 0xc7, 0x83, 0x1a, 0x5a, 0x86, 0x51, 0xfa, 0x17, 0x31, 0x5a, 0xc9, 0x30, 0x13, 0x6b, 0xe2, 0x05, + 0x17, 0xe0, 0x52, 0x20, 0xb7, 0x63, 0x53, 0xe2, 0x18, 0x68, 0x15, 0xc6, 0x74, 0x8b, 0xb6, 0x89, + 0xcb, 0x53, 0xcf, 0x68, 0xf2, 0x0d, 0xbf, 0x01, 0x70, 0x91, 0xeb, 0x8f, 0x58, 0xf4, 0xb4, 0x28, + 0x5b, 0x01, 0x94, 0x52, 0xe2, 0xbe, 0x9b, 0xf9, 0x44, 0x88, 0x05, 0x94, 0x84, 0x43, 0x65, 0x08, + 0xfb, 0x66, 0x24, 0x23, 0x59, 0x90, 0x9b, 0xdf, 0xdd, 0x52, 0x84, 0x73, 0x0a, 0x73, 0x4e, 0x11, + 0x3f, 0x95, 0x74, 0x4e, 0xf9, 0x45, 0x37, 0x0d, 0xc9, 0xa4, 0xf9, 0x22, 0xf1, 0x0b, 0x20, 0x1d, + 0x94, 0xd4, 0xf2, 0x90, 0x05, 0x0f, 0x03, 0xf0, 0xcc, 0x6b, 0xca, 0xe0, 0x6f, 0xad, 0x08, 0xbd, + 0xa4, 0xf9, 0x31, 0x40, 0x13, 0xe6, 0x31, 0xdb, 0x8f, 0xd2, 0x88, 0x5a, 0x01, 0x9c, 0x2b, 0x00, + 0x57, 0x39, 0xce, 0x3e, 0x6d, 0x36, 0x8d, 0x2a, 0x5b, 0x9b, 0xd6, 0xc9, 0xf2, 0x08, 0xa6, 0x69, + 0x1c, 0x7a, 0x05, 0xe0, 0xda, 0x10, 0x92, 0xb4, 0xe9, 0x7b, 0x08, 0xab, 0x0f, 0xab, 0xd2, 0xab, + 0xf5, 0x61, 0xaf, 0x7c, 0x91, 0x3e, 0xfd, 0xf3, 0xb9, 0xb6, 0x2f, 0x3b, 0xef, 0x07, 0x76, 0xf4, + 0x29, 0xfd, 0xc2, 0xfb, 0xb2, 0x11, 0x64, 0x92, 0x7e, 0x23, 0x70, 0xc1, 0xf8, 0x46, 0x10, 0x7a, + 0xa1, 0xc2, 0x47, 0xd2, 0x2b, 0xbe, 0x58, 0xea, 0x1c, 0xea, 0x96, 0xe7, 0x29, 0xda, 0x83, 0x50, + 0x54, 0x25, 0xba, 0x65, 0x48, 0xa2, 0x95, 0xfb, 0x6e, 0x66, 0xd1, 0x4f, 0xc4, 0xf6, 0xb0, 0x36, + 0xc7, 0x5f, 0x58, 0x30, 0x3e, 0x80, 0xc9, 0xe1, 0x84, 0xd3, 0xb1, 0xfd, 0xee, 0x3f, 0xa0, 0xe3, + 0x61, 0x05, 0xdb, 0x04, 0x4c, 0xdd, 0x26, 0xd7, 0x40, 0x8e, 0x0b, 0x2f, 0xbd, 0x84, 0xfc, 0x16, + 0xc6, 0x78, 0x79, 0x27, 0x09, 0xb2, 0x91, 0x09, 0x94, 0xa5, 0x99, 0x9b, 0x6e, 0x26, 0xa4, 0x49, + 0xf1, 0xf3, 0xf5, 0xc6, 0x19, 0x5c, 0xe0, 0x58, 0x87, 0xe5, 0xe3, 0x69, 0x6f, 0x92, 0x02, 0x67, + 0x5d, 0xfa, 0xa7, 0x41, 0x98, 0x3e, 0x3c, 0xa8, 0xf7, 0x76, 0xb0, 0x16, 0xe7, 0x8f, 0x07, 0x35, + 0xfc, 0x13, 0x4c, 0xf4, 0x4b, 0x4a, 0x1b, 0xf6, 0x60, 0x84, 0xd4, 0x5d, 0xe9, 0xef, 0xa7, 0xc3, + 0x1e, 0x94, 0x74, 0xc7, 0x38, 0x2c, 0x1f, 0x97, 0xe2, 0xbd, 0x6e, 0x26, 0xc2, 0x02, 0x99, 0x7c, + 0xf7, 0x75, 0x1c, 0x46, 0x79, 0x2a, 0xf4, 0x3f, 0x80, 0x31, 0x31, 0x88, 0xd1, 0xc6, 0x70, 0xf4, + 0xf0, 0x37, 0x20, 0xb5, 0xf9, 0x88, 0x4a, 0x70, 0xe1, 0xbd, 0xff, 0xde, 0x7e, 0x78, 0x19, 0x56, + 0xd0, 0xd7, 0xea, 0x83, 0x9c, 0x7d, 0x8a, 0xd4, 0xfe, 0x35, 0x75, 0xd4, 0x0b, 0xcf, 0x93, 0x4b, + 0xd5, 0x11, 0x08, 0x14, 0x46, 0xf9, 0xfc, 0x43, 0x5f, 0x8e, 0xa9, 0xe2, 0xff, 0x06, 0xa4, 0x36, + 0x26, 0x8b, 0x24, 0xc9, 0x67, 0x9c, 0x64, 0x05, 0x2d, 0x0d, 0x90, 0x90, 0xba, 0xeb, 0xa0, 0x2b, + 0x00, 0x61, 0x7f, 0x8a, 0xa0, 0xdc, 0x98, 0x8c, 0x43, 0x53, 0x33, 0x95, 0x7f, 0x82, 0x52, 0x02, + 0x14, 0x38, 0xc0, 0x36, 0xda, 0x7c, 0x92, 0x15, 0xe8, 0x1f, 0x18, 0xe5, 0x8d, 0x3b, 0xd6, 0x03, + 0xff, 0x34, 0x1a, 0xeb, 0x41, 0x60, 0xda, 0xe0, 0x1c, 0x47, 0xc0, 0x28, 0x3b, 0x80, 0x20, 0x2e, + 0x85, 0xbf, 0xfa, 0x35, 0x80, 0xf3, 0xbe, 0x99, 0x80, 0xf2, 0x93, 0xf2, 0x07, 0x06, 0x51, 0x6a, + 0xe7, 0x29, 0x52, 0x09, 0xa4, 0x72, 0xa0, 0x3c, 0xda, 0x1e, 0x0d, 0xc4, 0xc6, 0x95, 0x47, 0xc5, + 0x9e, 0x2f, 0x91, 0x0b, 0x63, 0x62, 0x00, 0xa0, 0x89, 0x27, 0x76, 0x1e, 0x6b, 0xd3, 0xe0, 0x14, + 0xc1, 0x9f, 0x73, 0x8e, 0x35, 0xb4, 0x32, 0x92, 0x03, 0xfd, 0x0b, 0xd9, 0x9d, 0x41, 0x5f, 0x8c, + 0x49, 0xd6, 0xbf, 0xfb, 0x29, 0x3c, 0x49, 0x22, 0x8b, 0x15, 0x79, 0xb1, 0xaf, 0x50, 0x7e, 0x44, + 0x27, 0xfa, 0x2f, 0xc3, 0x85, 0x77, 0xf7, 0x2f, 0x4b, 0x3f, 0xdf, 0xf4, 0xd2, 0xe0, 0xb6, 0x97, + 0x06, 0xef, 0x7b, 0x69, 0x70, 0x75, 0x97, 0x0e, 0xdd, 0xde, 0xa5, 0x43, 0xef, 0xee, 0xd2, 0xa1, + 0x93, 0x5d, 0xb3, 0xe1, 0x9e, 0xb6, 0x2b, 0x4a, 0x95, 0x5a, 0x6a, 0xb5, 0xd5, 0xb1, 0x5d, 0x5a, + 0xa0, 0x2d, 0xb3, 0xc0, 0x33, 0x8b, 0xfc, 0x05, 0x5e, 0xe0, 0x6f, 0x5e, 0xc2, 0xed, 0xd8, 0x86, + 0x53, 0x89, 0xf1, 0x3f, 0x77, 0xdf, 0x7c, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x6c, 0xdc, 0xe1, 0x09, + 0x76, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -842,7 +843,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Supply(ctx context.Context, in *QuerySupplyRequest, opts ...grpc.CallOption) (*QuerySupplyResponse, error) { out := new(QuerySupplyResponse) - err := c.cc.Invoke(ctx, "/nft.v1.Query/Supply", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft.v1.Query/Supply", in, out, opts...) if err != nil { return nil, err } @@ -851,7 +852,7 @@ func (c *queryClient) Supply(ctx context.Context, in *QuerySupplyRequest, opts . func (c *queryClient) Owner(ctx context.Context, in *QueryOwnerRequest, opts ...grpc.CallOption) (*QueryOwnerResponse, error) { out := new(QueryOwnerResponse) - err := c.cc.Invoke(ctx, "/nft.v1.Query/Owner", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft.v1.Query/Owner", in, out, opts...) if err != nil { return nil, err } @@ -860,7 +861,7 @@ func (c *queryClient) Owner(ctx context.Context, in *QueryOwnerRequest, opts ... func (c *queryClient) Collection(ctx context.Context, in *QueryCollectionRequest, opts ...grpc.CallOption) (*QueryCollectionResponse, error) { out := new(QueryCollectionResponse) - err := c.cc.Invoke(ctx, "/nft.v1.Query/Collection", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft.v1.Query/Collection", in, out, opts...) if err != nil { return nil, err } @@ -869,7 +870,7 @@ func (c *queryClient) Collection(ctx context.Context, in *QueryCollectionRequest func (c *queryClient) Denom(ctx context.Context, in *QueryDenomRequest, opts ...grpc.CallOption) (*QueryDenomResponse, error) { out := new(QueryDenomResponse) - err := c.cc.Invoke(ctx, "/nft.v1.Query/Denom", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft.v1.Query/Denom", in, out, opts...) if err != nil { return nil, err } @@ -878,7 +879,7 @@ func (c *queryClient) Denom(ctx context.Context, in *QueryDenomRequest, opts ... func (c *queryClient) DenomByName(ctx context.Context, in *QueryDenomByNameRequest, opts ...grpc.CallOption) (*QueryDenomByNameResponse, error) { out := new(QueryDenomByNameResponse) - err := c.cc.Invoke(ctx, "/nft.v1.Query/DenomByName", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft.v1.Query/DenomByName", in, out, opts...) if err != nil { return nil, err } @@ -887,7 +888,7 @@ func (c *queryClient) DenomByName(ctx context.Context, in *QueryDenomByNameReque func (c *queryClient) Denoms(ctx context.Context, in *QueryDenomsRequest, opts ...grpc.CallOption) (*QueryDenomsResponse, error) { out := new(QueryDenomsResponse) - err := c.cc.Invoke(ctx, "/nft.v1.Query/Denoms", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft.v1.Query/Denoms", in, out, opts...) if err != nil { return nil, err } @@ -896,7 +897,7 @@ func (c *queryClient) Denoms(ctx context.Context, in *QueryDenomsRequest, opts . func (c *queryClient) NFT(ctx context.Context, in *QueryNFTRequest, opts ...grpc.CallOption) (*QueryNFTResponse, error) { out := new(QueryNFTResponse) - err := c.cc.Invoke(ctx, "/nft.v1.Query/NFT", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft.v1.Query/NFT", in, out, opts...) if err != nil { return nil, err } @@ -961,7 +962,7 @@ func _Query_Supply_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft.v1.Query/Supply", + FullMethod: "/chainmain.nft.v1.Query/Supply", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Supply(ctx, req.(*QuerySupplyRequest)) @@ -979,7 +980,7 @@ func _Query_Owner_Handler(srv interface{}, ctx context.Context, dec func(interfa } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft.v1.Query/Owner", + FullMethod: "/chainmain.nft.v1.Query/Owner", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Owner(ctx, req.(*QueryOwnerRequest)) @@ -997,7 +998,7 @@ func _Query_Collection_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft.v1.Query/Collection", + FullMethod: "/chainmain.nft.v1.Query/Collection", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Collection(ctx, req.(*QueryCollectionRequest)) @@ -1015,7 +1016,7 @@ func _Query_Denom_Handler(srv interface{}, ctx context.Context, dec func(interfa } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft.v1.Query/Denom", + FullMethod: "/chainmain.nft.v1.Query/Denom", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Denom(ctx, req.(*QueryDenomRequest)) @@ -1033,7 +1034,7 @@ func _Query_DenomByName_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft.v1.Query/DenomByName", + FullMethod: "/chainmain.nft.v1.Query/DenomByName", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DenomByName(ctx, req.(*QueryDenomByNameRequest)) @@ -1051,7 +1052,7 @@ func _Query_Denoms_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft.v1.Query/Denoms", + FullMethod: "/chainmain.nft.v1.Query/Denoms", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Denoms(ctx, req.(*QueryDenomsRequest)) @@ -1069,7 +1070,7 @@ func _Query_NFT_Handler(srv interface{}, ctx context.Context, dec func(interface } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft.v1.Query/NFT", + FullMethod: "/chainmain.nft.v1.Query/NFT", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).NFT(ctx, req.(*QueryNFTRequest)) @@ -1078,7 +1079,7 @@ func _Query_NFT_Handler(srv interface{}, ctx context.Context, dec func(interface } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "nft.v1.Query", + ServiceName: "chainmain.nft.v1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/x/nft/types/tx.pb.go b/x/nft/types/tx.pb.go index c54d8201b..17206ee2a 100644 --- a/x/nft/types/tx.pb.go +++ b/x/nft/types/tx.pb.go @@ -424,54 +424,55 @@ func (m *MsgBurnNFTResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgBurnNFTResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*MsgIssueDenom)(nil), "nft.v1.MsgIssueDenom") - proto.RegisterType((*MsgIssueDenomResponse)(nil), "nft.v1.MsgIssueDenomResponse") - proto.RegisterType((*MsgTransferNFT)(nil), "nft.v1.MsgTransferNFT") - proto.RegisterType((*MsgTransferNFTResponse)(nil), "nft.v1.MsgTransferNFTResponse") - proto.RegisterType((*MsgEditNFT)(nil), "nft.v1.MsgEditNFT") - proto.RegisterType((*MsgEditNFTResponse)(nil), "nft.v1.MsgEditNFTResponse") - proto.RegisterType((*MsgMintNFT)(nil), "nft.v1.MsgMintNFT") - proto.RegisterType((*MsgMintNFTResponse)(nil), "nft.v1.MsgMintNFTResponse") - proto.RegisterType((*MsgBurnNFT)(nil), "nft.v1.MsgBurnNFT") - proto.RegisterType((*MsgBurnNFTResponse)(nil), "nft.v1.MsgBurnNFTResponse") + proto.RegisterType((*MsgIssueDenom)(nil), "chainmain.nft.v1.MsgIssueDenom") + proto.RegisterType((*MsgIssueDenomResponse)(nil), "chainmain.nft.v1.MsgIssueDenomResponse") + proto.RegisterType((*MsgTransferNFT)(nil), "chainmain.nft.v1.MsgTransferNFT") + proto.RegisterType((*MsgTransferNFTResponse)(nil), "chainmain.nft.v1.MsgTransferNFTResponse") + proto.RegisterType((*MsgEditNFT)(nil), "chainmain.nft.v1.MsgEditNFT") + proto.RegisterType((*MsgEditNFTResponse)(nil), "chainmain.nft.v1.MsgEditNFTResponse") + proto.RegisterType((*MsgMintNFT)(nil), "chainmain.nft.v1.MsgMintNFT") + proto.RegisterType((*MsgMintNFTResponse)(nil), "chainmain.nft.v1.MsgMintNFTResponse") + proto.RegisterType((*MsgBurnNFT)(nil), "chainmain.nft.v1.MsgBurnNFT") + proto.RegisterType((*MsgBurnNFTResponse)(nil), "chainmain.nft.v1.MsgBurnNFTResponse") } func init() { proto.RegisterFile("nft/v1/tx.proto", fileDescriptor_714f8ececec76715) } var fileDescriptor_714f8ececec76715 = []byte{ - // 514 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x94, 0x31, 0x6f, 0xd3, 0x40, - 0x14, 0xc7, 0xe3, 0x38, 0x24, 0xf4, 0x21, 0x5a, 0x74, 0xb4, 0xc1, 0x58, 0xe0, 0x20, 0x4f, 0x2c, - 0xb1, 0xd5, 0x32, 0xd1, 0xd1, 0xa2, 0x48, 0x19, 0x8c, 0x50, 0x54, 0x16, 0x16, 0xe4, 0xda, 0x17, - 0xe7, 0x10, 0x3e, 0x5b, 0x77, 0x97, 0xaa, 0x11, 0x5f, 0x81, 0x81, 0x8f, 0xc0, 0x17, 0xe0, 0x43, - 0xb0, 0x55, 0x62, 0xe9, 0xc8, 0x54, 0x41, 0xb2, 0x30, 0xf3, 0x09, 0x90, 0xcf, 0xe7, 0xf4, 0xdc, - 0x64, 0x04, 0xa9, 0x4b, 0xf4, 0xfc, 0xbf, 0x7b, 0xb9, 0xdf, 0xff, 0xbd, 0x7b, 0x07, 0x3b, 0x74, - 0x22, 0xfc, 0xd3, 0x7d, 0x5f, 0x9c, 0x79, 0x05, 0xcb, 0x45, 0x8e, 0xba, 0x74, 0x22, 0xbc, 0xd3, - 0x7d, 0x7b, 0x37, 0xcd, 0xd3, 0x5c, 0x4a, 0x7e, 0x19, 0x55, 0xab, 0xee, 0x47, 0xb8, 0x1b, 0xf2, - 0x74, 0xc4, 0xf9, 0x0c, 0xbf, 0xc0, 0x34, 0xcf, 0xd0, 0x36, 0xb4, 0x49, 0x62, 0x19, 0x4f, 0x8c, - 0xa7, 0x5b, 0xe3, 0x36, 0x49, 0x10, 0x82, 0x0e, 0x8d, 0x32, 0x6c, 0xb5, 0xa5, 0x22, 0x63, 0xd4, - 0x87, 0x2e, 0x8f, 0xa7, 0x38, 0x8b, 0x2c, 0x53, 0xaa, 0xea, 0x4b, 0xea, 0x98, 0x26, 0x98, 0x59, - 0x1d, 0xa5, 0xcb, 0x2f, 0x74, 0x0f, 0xcc, 0x19, 0x23, 0xd6, 0x2d, 0x29, 0x96, 0xe1, 0x61, 0xe7, - 0xf7, 0x97, 0x81, 0xe1, 0x3e, 0x80, 0xbd, 0xc6, 0xe1, 0x63, 0xcc, 0x8b, 0x9c, 0x72, 0xec, 0x7e, - 0x32, 0x60, 0x3b, 0xe4, 0xe9, 0x31, 0x8b, 0x28, 0x9f, 0x60, 0xf6, 0xea, 0xe5, 0xf1, 0x1a, 0x97, - 0x07, 0xb7, 0x93, 0x32, 0xe7, 0x1d, 0x49, 0x2a, 0xb6, 0xe0, 0xfe, 0x9f, 0xcb, 0xc1, 0xce, 0x3c, - 0xca, 0x3e, 0x1c, 0xba, 0xf5, 0x8a, 0x3b, 0xee, 0xc9, 0x70, 0x94, 0x68, 0x6c, 0x66, 0x83, 0xed, - 0x11, 0x6c, 0x31, 0x1c, 0x93, 0x82, 0x60, 0x2a, 0x14, 0xf6, 0x95, 0xa0, 0x38, 0x2d, 0xe8, 0x37, - 0x69, 0x56, 0xa0, 0x5f, 0x0d, 0x80, 0x90, 0xa7, 0x47, 0x09, 0x11, 0xff, 0x02, 0xb2, 0x2e, 0xb6, - 0xa9, 0x15, 0xfb, 0x61, 0x55, 0x3c, 0x89, 0x16, 0xf4, 0x16, 0x97, 0x03, 0xf3, 0xcd, 0x78, 0x24, - 0xab, 0x58, 0x6e, 0x4f, 0x22, 0x11, 0xa9, 0xc2, 0xca, 0x58, 0xf3, 0xd9, 0xd5, 0x7d, 0x2a, 0x27, - 0xbb, 0x80, 0xae, 0x70, 0x57, 0x2e, 0xbe, 0x57, 0x2e, 0x42, 0x42, 0x6f, 0xb8, 0x8b, 0x66, 0xb7, - 0x7a, 0x9b, 0xbb, 0x55, 0x79, 0x54, 0x66, 0x56, 0x1e, 0xdf, 0x4b, 0x8b, 0xc1, 0x8c, 0xd1, 0xff, - 0x78, 0x9b, 0x1a, 0x04, 0xea, 0xac, 0x9a, 0xe0, 0xe0, 0x5b, 0x1b, 0xcc, 0x90, 0xa7, 0x28, 0x00, - 0xd0, 0xe6, 0x6d, 0xcf, 0xab, 0xe6, 0xd3, 0x6b, 0x4c, 0x82, 0xfd, 0x78, 0xa3, 0x5c, 0xff, 0x17, - 0x7a, 0x0e, 0xbd, 0xba, 0x5b, 0x48, 0xdb, 0xa9, 0x34, 0xdb, 0x5e, 0xd7, 0xf4, 0xd4, 0xfa, 0xba, - 0xea, 0xa9, 0x4a, 0x6b, 0xa4, 0x5e, 0xbb, 0x27, 0xe8, 0x08, 0xee, 0xe8, 0x23, 0xd9, 0xd7, 0xb6, - 0x6a, 0xba, 0xed, 0x6c, 0xd6, 0x75, 0x82, 0xba, 0x0f, 0x3a, 0x81, 0xd2, 0x1a, 0x04, 0xd7, 0x6a, - 0x18, 0xbc, 0x3e, 0xff, 0xe5, 0xb4, 0xce, 0x17, 0x8e, 0x71, 0xb1, 0x70, 0x8c, 0x9f, 0x0b, 0xc7, - 0xf8, 0xbc, 0x74, 0x5a, 0x17, 0x4b, 0xa7, 0xf5, 0x63, 0xe9, 0xb4, 0xde, 0x1e, 0xa4, 0x44, 0x4c, - 0x67, 0x27, 0x5e, 0x9c, 0x67, 0x7e, 0xcc, 0xe6, 0x85, 0xc8, 0x87, 0x39, 0x4b, 0x87, 0xf1, 0x34, - 0x22, 0xd4, 0x97, 0xbf, 0xc3, 0xac, 0x0c, 0xcf, 0xfc, 0xf2, 0x91, 0x14, 0xf3, 0x02, 0xf3, 0x93, - 0xae, 0x7c, 0x07, 0x9f, 0xfd, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x1d, 0x0b, 0xe2, 0x5a, 0x38, 0x05, + // 530 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x94, 0xc1, 0x6e, 0xd3, 0x4c, + 0x10, 0xc7, 0xe3, 0x38, 0x5f, 0xf2, 0x75, 0x10, 0x6d, 0xb5, 0x94, 0x62, 0xa2, 0xca, 0xa9, 0x2c, + 0x24, 0x7a, 0x89, 0xad, 0x96, 0x5b, 0x8f, 0x11, 0x20, 0xe5, 0x60, 0x84, 0xa2, 0x82, 0x04, 0x17, + 0xe4, 0xda, 0x1b, 0x67, 0x11, 0x5e, 0x5b, 0xbb, 0x9b, 0xaa, 0x11, 0xaf, 0xc0, 0x81, 0x47, 0xe0, + 0xc2, 0x91, 0xf7, 0xa8, 0xc4, 0xa5, 0x47, 0x4e, 0x15, 0x24, 0x17, 0xce, 0x3c, 0x01, 0xf2, 0x7a, + 0x9d, 0xae, 0x83, 0x4b, 0x2f, 0x20, 0x71, 0xb1, 0xc6, 0x33, 0xb3, 0xe3, 0xdf, 0x7f, 0x66, 0xc7, + 0xb0, 0x41, 0xc7, 0xc2, 0x3b, 0xd9, 0xf7, 0xc4, 0xa9, 0x9b, 0xb1, 0x54, 0xa4, 0x68, 0x33, 0x9c, + 0x04, 0x84, 0x26, 0x01, 0xa1, 0x2e, 0x1d, 0x0b, 0xf7, 0x64, 0xbf, 0xbb, 0x15, 0xa7, 0x71, 0x2a, + 0x83, 0x5e, 0x6e, 0x15, 0x79, 0xce, 0x5b, 0xb8, 0xe9, 0xf3, 0x78, 0xc8, 0xf9, 0x14, 0x3f, 0xc4, + 0x34, 0x4d, 0xd0, 0x3a, 0x34, 0x49, 0x64, 0x19, 0xbb, 0xc6, 0xde, 0xda, 0xa8, 0x49, 0x22, 0x84, + 0xa0, 0x45, 0x83, 0x04, 0x5b, 0x4d, 0xe9, 0x91, 0x36, 0xda, 0x86, 0x36, 0x0f, 0x27, 0x38, 0x09, + 0x2c, 0x53, 0x7a, 0xd5, 0x9b, 0xf4, 0x63, 0x1a, 0x61, 0x66, 0xb5, 0x94, 0x5f, 0xbe, 0xa1, 0x4d, + 0x30, 0xa7, 0x8c, 0x58, 0xff, 0x49, 0x67, 0x6e, 0x1e, 0xb6, 0xbe, 0x7f, 0xe8, 0x19, 0xce, 0x1d, + 0xb8, 0x5d, 0xf9, 0xf8, 0x08, 0xf3, 0x2c, 0xa5, 0x1c, 0x3b, 0xef, 0x0c, 0x58, 0xf7, 0x79, 0x7c, + 0xc4, 0x02, 0xca, 0xc7, 0x98, 0x3d, 0x79, 0x7c, 0xf4, 0x0b, 0x97, 0x0b, 0xff, 0x47, 0xf9, 0x99, + 0x57, 0x24, 0x2a, 0xd8, 0x06, 0xb7, 0x7e, 0x5c, 0xf4, 0x36, 0x66, 0x41, 0xf2, 0xe6, 0xd0, 0x29, + 0x23, 0xce, 0xa8, 0x23, 0xcd, 0x61, 0xa4, 0xb1, 0x99, 0x15, 0xb6, 0x1d, 0x58, 0x63, 0x38, 0x24, + 0x19, 0xc1, 0x54, 0x28, 0xec, 0x4b, 0x87, 0xe2, 0xb4, 0x60, 0xbb, 0x4a, 0xb3, 0x04, 0xfd, 0x64, + 0x00, 0xf8, 0x3c, 0x7e, 0x14, 0x11, 0xf1, 0x27, 0x20, 0xcb, 0x66, 0x9b, 0x5a, 0xb3, 0xef, 0x16, + 0xcd, 0x93, 0x68, 0x83, 0xce, 0xfc, 0xa2, 0x67, 0x3e, 0x1b, 0x0d, 0x65, 0x17, 0xf3, 0xf4, 0x28, + 0x10, 0x81, 0x6a, 0xac, 0xb4, 0x35, 0x9d, 0x6d, 0x5d, 0xa7, 0x52, 0xb2, 0x05, 0xe8, 0x12, 0x77, + 0xa9, 0xe2, 0x73, 0xa1, 0xc2, 0x27, 0xf4, 0x1f, 0x57, 0x51, 0x9d, 0x56, 0xa7, 0x7e, 0x5a, 0x85, + 0x46, 0x25, 0x66, 0xa9, 0xf1, 0xb5, 0x94, 0x38, 0x98, 0x32, 0xfa, 0x17, 0x6f, 0x53, 0x85, 0x40, + 0x7d, 0xab, 0x24, 0x38, 0xf8, 0x68, 0x82, 0xe9, 0xf3, 0x18, 0x3d, 0x07, 0xd0, 0xf6, 0xad, 0xe7, + 0xae, 0x6e, 0xaa, 0x5b, 0xd9, 0x89, 0xee, 0xfd, 0x6b, 0x12, 0xca, 0xfa, 0xc8, 0x87, 0x4e, 0x39, + 0xc1, 0x9d, 0xda, 0x33, 0x2a, 0xda, 0xbd, 0xf7, 0xbb, 0xa8, 0x5e, 0xae, 0xbc, 0xd6, 0xf5, 0xe5, + 0x54, 0xf4, 0x8a, 0x72, 0x2b, 0x77, 0x0c, 0xbd, 0x80, 0x1b, 0xfa, 0x3a, 0xef, 0xd6, 0x1e, 0xd2, + 0x32, 0xba, 0x7b, 0xd7, 0x65, 0xe8, 0xa4, 0xe5, 0x5c, 0xeb, 0x49, 0x55, 0xf4, 0x0a, 0xd2, 0x95, + 0x39, 0x0d, 0x9e, 0x9e, 0x7d, 0xb3, 0x1b, 0x67, 0x73, 0xdb, 0x38, 0x9f, 0xdb, 0xc6, 0xd7, 0xb9, + 0x6d, 0xbc, 0x5f, 0xd8, 0x8d, 0xf3, 0x85, 0xdd, 0xf8, 0xb2, 0xb0, 0x1b, 0x2f, 0x0f, 0x62, 0x22, + 0x26, 0xd3, 0x63, 0x37, 0x4c, 0x13, 0x2f, 0x64, 0xb3, 0x4c, 0xa4, 0xfd, 0x94, 0xc5, 0x7d, 0x59, + 0xd8, 0x93, 0xcf, 0x7e, 0x5e, 0xdf, 0x3b, 0xf5, 0xf2, 0x5f, 0xb2, 0x98, 0x65, 0x98, 0x1f, 0xb7, + 0xe5, 0xbf, 0xf6, 0xc1, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xaf, 0xbe, 0xa9, 0xfa, 0xa6, 0x05, 0x00, 0x00, } @@ -690,7 +691,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) IssueDenom(ctx context.Context, in *MsgIssueDenom, opts ...grpc.CallOption) (*MsgIssueDenomResponse, error) { out := new(MsgIssueDenomResponse) - err := c.cc.Invoke(ctx, "/nft.v1.Msg/IssueDenom", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft.v1.Msg/IssueDenom", in, out, opts...) if err != nil { return nil, err } @@ -699,7 +700,7 @@ func (c *msgClient) IssueDenom(ctx context.Context, in *MsgIssueDenom, opts ...g func (c *msgClient) MintNFT(ctx context.Context, in *MsgMintNFT, opts ...grpc.CallOption) (*MsgMintNFTResponse, error) { out := new(MsgMintNFTResponse) - err := c.cc.Invoke(ctx, "/nft.v1.Msg/MintNFT", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft.v1.Msg/MintNFT", in, out, opts...) if err != nil { return nil, err } @@ -708,7 +709,7 @@ func (c *msgClient) MintNFT(ctx context.Context, in *MsgMintNFT, opts ...grpc.Ca func (c *msgClient) EditNFT(ctx context.Context, in *MsgEditNFT, opts ...grpc.CallOption) (*MsgEditNFTResponse, error) { out := new(MsgEditNFTResponse) - err := c.cc.Invoke(ctx, "/nft.v1.Msg/EditNFT", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft.v1.Msg/EditNFT", in, out, opts...) if err != nil { return nil, err } @@ -717,7 +718,7 @@ func (c *msgClient) EditNFT(ctx context.Context, in *MsgEditNFT, opts ...grpc.Ca func (c *msgClient) TransferNFT(ctx context.Context, in *MsgTransferNFT, opts ...grpc.CallOption) (*MsgTransferNFTResponse, error) { out := new(MsgTransferNFTResponse) - err := c.cc.Invoke(ctx, "/nft.v1.Msg/TransferNFT", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft.v1.Msg/TransferNFT", in, out, opts...) if err != nil { return nil, err } @@ -726,7 +727,7 @@ func (c *msgClient) TransferNFT(ctx context.Context, in *MsgTransferNFT, opts .. func (c *msgClient) BurnNFT(ctx context.Context, in *MsgBurnNFT, opts ...grpc.CallOption) (*MsgBurnNFTResponse, error) { out := new(MsgBurnNFTResponse) - err := c.cc.Invoke(ctx, "/nft.v1.Msg/BurnNFT", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.nft.v1.Msg/BurnNFT", in, out, opts...) if err != nil { return nil, err } @@ -781,7 +782,7 @@ func _Msg_IssueDenom_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft.v1.Msg/IssueDenom", + FullMethod: "/chainmain.nft.v1.Msg/IssueDenom", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).IssueDenom(ctx, req.(*MsgIssueDenom)) @@ -799,7 +800,7 @@ func _Msg_MintNFT_Handler(srv interface{}, ctx context.Context, dec func(interfa } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft.v1.Msg/MintNFT", + FullMethod: "/chainmain.nft.v1.Msg/MintNFT", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).MintNFT(ctx, req.(*MsgMintNFT)) @@ -817,7 +818,7 @@ func _Msg_EditNFT_Handler(srv interface{}, ctx context.Context, dec func(interfa } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft.v1.Msg/EditNFT", + FullMethod: "/chainmain.nft.v1.Msg/EditNFT", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).EditNFT(ctx, req.(*MsgEditNFT)) @@ -835,7 +836,7 @@ func _Msg_TransferNFT_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft.v1.Msg/TransferNFT", + FullMethod: "/chainmain.nft.v1.Msg/TransferNFT", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).TransferNFT(ctx, req.(*MsgTransferNFT)) @@ -853,7 +854,7 @@ func _Msg_BurnNFT_Handler(srv interface{}, ctx context.Context, dec func(interfa } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/nft.v1.Msg/BurnNFT", + FullMethod: "/chainmain.nft.v1.Msg/BurnNFT", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).BurnNFT(ctx, req.(*MsgBurnNFT)) @@ -862,7 +863,7 @@ func _Msg_BurnNFT_Handler(srv interface{}, ctx context.Context, dec func(interfa } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "nft.v1.Msg", + ServiceName: "chainmain.nft.v1.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/x/supply/types/accounts.pb.go b/x/supply/types/accounts.pb.go index 769d671f8..98e8b77e4 100644 --- a/x/supply/types/accounts.pb.go +++ b/x/supply/types/accounts.pb.go @@ -69,24 +69,25 @@ func (m *VestingAccounts) GetAddresses() []string { } func init() { - proto.RegisterType((*VestingAccounts)(nil), "supply.v1.VestingAccounts") + proto.RegisterType((*VestingAccounts)(nil), "chainmain.supply.v1.VestingAccounts") } func init() { proto.RegisterFile("supply/v1/accounts.proto", fileDescriptor_743399cf14988530) } var fileDescriptor_743399cf14988530 = []byte{ - // 170 bytes of a gzipped FileDescriptorProto + // 178 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x28, 0x2e, 0x2d, 0x28, 0xc8, 0xa9, 0xd4, 0x2f, 0x33, 0xd4, 0x4f, 0x4c, 0x4e, 0xce, 0x2f, 0xcd, 0x2b, 0x29, 0xd6, 0x2b, - 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x84, 0xc8, 0xe8, 0x95, 0x19, 0x2a, 0xe9, 0x73, 0xf1, 0x87, - 0xa5, 0x16, 0x97, 0x64, 0xe6, 0xa5, 0x3b, 0x42, 0xd5, 0x08, 0xc9, 0x70, 0x71, 0x26, 0xa6, 0xa4, - 0x14, 0xa5, 0x16, 0x17, 0xa7, 0x16, 0x4b, 0x30, 0x2a, 0x30, 0x6b, 0x70, 0x06, 0x21, 0x04, 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, 0x3f, 0xb9, 0xa8, 0xb2, 0xa0, 0x24, 0x5f, 0x37, 0xbf, - 0x28, 0x5d, 0x37, 0x39, 0x23, 0x31, 0x33, 0x4f, 0x1f, 0x4c, 0xea, 0xe6, 0x82, 0x98, 0x15, 0xfa, - 0x50, 0x87, 0x95, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0xdd, 0x64, 0x0c, 0x08, 0x00, 0x00, - 0xff, 0xff, 0x69, 0xa3, 0xda, 0xde, 0xaf, 0x00, 0x00, 0x00, + 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x4e, 0xce, 0x48, 0xcc, 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, + 0x83, 0xa8, 0xd1, 0x2b, 0x33, 0x54, 0xd2, 0xe7, 0xe2, 0x0f, 0x4b, 0x2d, 0x2e, 0xc9, 0xcc, 0x4b, + 0x77, 0x84, 0xaa, 0x16, 0x92, 0xe1, 0xe2, 0x4c, 0x4c, 0x49, 0x29, 0x4a, 0x2d, 0x2e, 0x4e, 0x2d, + 0x96, 0x60, 0x54, 0x60, 0xd6, 0xe0, 0x0c, 0x42, 0x08, 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, 0x7e, 0x72, 0x51, 0x65, 0x41, 0x49, 0xbe, 0x6e, 0x7e, 0x51, 0xba, 0x2e, 0xd8, 0x56, 0x7d, + 0x30, 0xa9, 0x0b, 0xb2, 0x5c, 0xbf, 0x42, 0x1f, 0xea, 0xc4, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, + 0x36, 0xb0, 0xeb, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x79, 0xb9, 0x7d, 0x83, 0xb9, 0x00, + 0x00, 0x00, } func (m *VestingAccounts) Marshal() (dAtA []byte, err error) { diff --git a/x/supply/types/genesis.pb.go b/x/supply/types/genesis.pb.go index 7cde84dbf..bea9b9df3 100644 --- a/x/supply/types/genesis.pb.go +++ b/x/supply/types/genesis.pb.go @@ -63,23 +63,23 @@ func (m *GenesisState) XXX_DiscardUnknown() { var xxx_messageInfo_GenesisState proto.InternalMessageInfo func init() { - proto.RegisterType((*GenesisState)(nil), "supply.v1.GenesisState") + proto.RegisterType((*GenesisState)(nil), "chainmain.supply.v1.GenesisState") } func init() { proto.RegisterFile("supply/v1/genesis.proto", fileDescriptor_45d381ad7d51733b) } var fileDescriptor_45d381ad7d51733b = []byte{ - // 145 bytes of a gzipped FileDescriptorProto + // 153 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x2f, 0x2e, 0x2d, 0x28, 0xc8, 0xa9, 0xd4, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, - 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x84, 0x48, 0xe8, 0x95, 0x19, 0x2a, 0xf1, 0x71, 0xf1, 0xb8, 0x43, - 0xe4, 0x82, 0x4b, 0x12, 0x4b, 0x52, 0x9d, 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, 0x3f, 0xb9, - 0xa8, 0xb2, 0xa0, 0x24, 0x5f, 0x37, 0xbf, 0x28, 0x5d, 0x37, 0x39, 0x23, 0x31, 0x33, 0x4f, 0x1f, - 0x4c, 0xea, 0xe6, 0x82, 0x98, 0x15, 0xfa, 0x50, 0x6b, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, - 0xc0, 0x56, 0x1a, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x8f, 0xd8, 0x53, 0xe3, 0x8d, 0x00, 0x00, - 0x00, + 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x4e, 0xce, 0x48, 0xcc, 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0x83, + 0x28, 0xd1, 0x2b, 0x33, 0x54, 0xe2, 0xe3, 0xe2, 0x71, 0x87, 0xa8, 0x0a, 0x2e, 0x49, 0x2c, 0x49, + 0x75, 0xf2, 0x3f, 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, 0xd3, 0xf4, 0xcc, + 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0xfd, 0xe4, 0xa2, 0xca, 0x82, 0x92, 0x7c, 0xdd, + 0xfc, 0xa2, 0x74, 0x5d, 0xb0, 0xa1, 0xfa, 0x60, 0x52, 0x17, 0x64, 0xb6, 0x7e, 0x85, 0x3e, 0xd4, + 0x01, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0xcb, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, + 0xff, 0xac, 0x13, 0x94, 0xcb, 0x97, 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/supply/types/query.pb.go b/x/supply/types/query.pb.go index 86f9b1d28..0bfdd226e 100644 --- a/x/supply/types/query.pb.go +++ b/x/supply/types/query.pb.go @@ -117,37 +117,37 @@ func (m *SupplyResponse) GetSupply() github_com_cosmos_cosmos_sdk_types.Coins { } func init() { - proto.RegisterType((*SupplyRequest)(nil), "supply.v1.SupplyRequest") - proto.RegisterType((*SupplyResponse)(nil), "supply.v1.SupplyResponse") + proto.RegisterType((*SupplyRequest)(nil), "chainmain.supply.v1.SupplyRequest") + proto.RegisterType((*SupplyResponse)(nil), "chainmain.supply.v1.SupplyResponse") } func init() { proto.RegisterFile("supply/v1/query.proto", fileDescriptor_64cd1add7eb523c6) } var fileDescriptor_64cd1add7eb523c6 = []byte{ - // 361 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x91, 0xbd, 0x4e, 0xeb, 0x30, - 0x18, 0x86, 0x93, 0x56, 0xa7, 0xd2, 0x49, 0xcf, 0x8f, 0x14, 0x9d, 0x23, 0xb5, 0x39, 0x3d, 0x29, - 0x0a, 0x4b, 0x97, 0xd8, 0xa4, 0x88, 0x1b, 0x28, 0x2b, 0x12, 0xa2, 0x30, 0xb1, 0x39, 0xa9, 0x49, - 0x2d, 0x52, 0x7f, 0x69, 0xec, 0x54, 0x64, 0x65, 0x62, 0x44, 0xe2, 0x2e, 0xb8, 0x92, 0x8e, 0x95, - 0x58, 0x98, 0x0a, 0x6a, 0xb9, 0x10, 0x14, 0x3b, 0xe5, 0x47, 0xea, 0xc6, 0x14, 0xeb, 0xfb, 0x92, - 0xe7, 0x7d, 0xf2, 0xda, 0xfa, 0x2b, 0xf2, 0x34, 0x4d, 0x0a, 0x3c, 0x0b, 0xf0, 0x34, 0xa7, 0x59, - 0x81, 0xd2, 0x0c, 0x24, 0xd8, 0xdf, 0xf5, 0x18, 0xcd, 0x02, 0xc7, 0x8d, 0x40, 0x4c, 0x40, 0xe0, - 0x90, 0x08, 0x8a, 0x67, 0x41, 0x48, 0x25, 0x09, 0x70, 0x04, 0x8c, 0xeb, 0x57, 0x9d, 0x3f, 0x31, - 0xc4, 0xa0, 0x8e, 0xb8, 0x3c, 0x55, 0xd3, 0x4e, 0x0c, 0x10, 0x27, 0x14, 0x93, 0x94, 0x61, 0xc2, - 0x39, 0x48, 0x22, 0x19, 0x70, 0xa1, 0xb7, 0xde, 0x6f, 0xeb, 0xe7, 0xa9, 0x0a, 0x18, 0xd2, 0x69, - 0x4e, 0x85, 0xf4, 0x72, 0xeb, 0xd7, 0x66, 0x20, 0x52, 0xe0, 0x82, 0xda, 0x91, 0xd5, 0xd0, 0x0e, - 0x2d, 0x73, 0xa7, 0xde, 0x6b, 0xf6, 0xdb, 0x48, 0x7b, 0xa0, 0xd2, 0x03, 0x55, 0x1e, 0xe8, 0x10, - 0x18, 0x1f, 0xec, 0xcd, 0x97, 0x5d, 0xe3, 0xfe, 0xa9, 0xdb, 0x8b, 0x99, 0x1c, 0xe7, 0x21, 0x8a, - 0x60, 0x82, 0x2b, 0x69, 0xfd, 0xf0, 0xc5, 0xe8, 0x12, 0xcb, 0x22, 0xa5, 0x42, 0x7d, 0x20, 0x86, - 0x15, 0xba, 0xbf, 0x34, 0xad, 0x6f, 0x27, 0xe5, 0x6f, 0xdb, 0x17, 0x56, 0xf3, 0x0c, 0x24, 0x49, - 0xb4, 0x85, 0xdd, 0x42, 0x6f, 0x05, 0xa0, 0x4f, 0xa6, 0x4e, 0x7b, 0xcb, 0x46, 0x2b, 0x7b, 0xde, - 0xf5, 0xc3, 0xcb, 0x5d, 0xad, 0x63, 0x3b, 0x38, 0x1a, 0x13, 0xc6, 0x27, 0x84, 0x71, 0xfc, 0x5e, - 0xaf, 0x2c, 0xf1, 0xf6, 0xd8, 0xfa, 0x71, 0xc4, 0xa6, 0x39, 0x1b, 0x7d, 0x25, 0x68, 0x57, 0x05, - 0xfd, 0xb7, 0xff, 0x6d, 0x0d, 0x4a, 0x14, 0xdf, 0xa9, 0xdf, 0xd4, 0xcc, 0xc1, 0xf1, 0x7c, 0xe5, - 0x9a, 0x8b, 0x95, 0x6b, 0x3e, 0xaf, 0x5c, 0xf3, 0x76, 0xed, 0x1a, 0x8b, 0xb5, 0x6b, 0x3c, 0xae, - 0x5d, 0xe3, 0xfc, 0xe0, 0x63, 0x59, 0x59, 0x91, 0x4a, 0xf0, 0x21, 0x8b, 0x7d, 0x05, 0xd4, 0x58, - 0x5f, 0x71, 0xaf, 0x36, 0x64, 0xd5, 0x5f, 0xd8, 0x50, 0x17, 0xb8, 0xff, 0x1a, 0x00, 0x00, 0xff, - 0xff, 0xec, 0x11, 0xb5, 0x6c, 0x38, 0x02, 0x00, 0x00, + // 368 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x91, 0xbd, 0x4e, 0xe3, 0x40, + 0x14, 0x85, 0xed, 0x44, 0x9b, 0xc2, 0xd9, 0x1f, 0xc9, 0xbb, 0x2b, 0xed, 0x7a, 0xb3, 0x0e, 0x72, + 0x9a, 0x34, 0x9e, 0xc1, 0x41, 0xbc, 0x40, 0x68, 0x91, 0x10, 0x81, 0x8a, 0x6e, 0xec, 0x8c, 0x9c, + 0x11, 0xce, 0x5c, 0xc7, 0x33, 0x8e, 0x30, 0xa2, 0xa2, 0x40, 0x94, 0x48, 0xbc, 0x05, 0x4f, 0x92, + 0x32, 0x12, 0x0d, 0x15, 0xa0, 0x84, 0x07, 0x41, 0x9e, 0x71, 0xf8, 0x91, 0x22, 0x2a, 0xaa, 0xb9, + 0xba, 0x73, 0xef, 0x39, 0xdf, 0x9c, 0xb1, 0x7e, 0x8b, 0x3c, 0x4d, 0x93, 0x02, 0x4f, 0x03, 0x3c, + 0xc9, 0x69, 0x56, 0xa0, 0x34, 0x03, 0x09, 0xf6, 0xcf, 0x68, 0x44, 0x18, 0x1f, 0x13, 0xc6, 0x91, + 0x1e, 0x40, 0xd3, 0xc0, 0x71, 0x23, 0x10, 0x63, 0x10, 0x38, 0x24, 0x82, 0xe2, 0x69, 0x10, 0x52, + 0x49, 0x02, 0x1c, 0x01, 0xe3, 0x7a, 0xc9, 0xf9, 0x15, 0x43, 0x0c, 0xaa, 0xc4, 0x65, 0x55, 0x75, + 0x5b, 0x31, 0x40, 0x9c, 0x50, 0x4c, 0x52, 0x86, 0x09, 0xe7, 0x20, 0x89, 0x64, 0xc0, 0x85, 0xbe, + 0xf5, 0x7e, 0x58, 0xdf, 0x0e, 0x94, 0xc1, 0x80, 0x4e, 0x72, 0x2a, 0xa4, 0x97, 0x5b, 0xdf, 0x57, + 0x0d, 0x91, 0x02, 0x17, 0xd4, 0x8e, 0xac, 0x86, 0x66, 0xf8, 0x63, 0x6e, 0xd4, 0xbb, 0xcd, 0xde, + 0x5f, 0xa4, 0x39, 0x50, 0xc9, 0x81, 0x2a, 0x0e, 0xb4, 0x03, 0x8c, 0xf7, 0x37, 0x67, 0xf7, 0x6d, + 0xe3, 0xe6, 0xa1, 0xdd, 0x8d, 0x99, 0x1c, 0xe5, 0x21, 0x8a, 0x60, 0x8c, 0x2b, 0x68, 0x7d, 0xf8, + 0x62, 0x78, 0x8c, 0x65, 0x91, 0x52, 0xa1, 0x16, 0xc4, 0xa0, 0x92, 0xee, 0x5d, 0xd4, 0xac, 0x2f, + 0xfb, 0x65, 0x00, 0xf6, 0xa9, 0xd5, 0x3c, 0x04, 0x49, 0x12, 0x4d, 0x61, 0x7b, 0x68, 0x4d, 0x14, + 0xe8, 0x1d, 0xb3, 0xd3, 0xf9, 0x70, 0x46, 0x3f, 0xc3, 0xf3, 0xce, 0x6f, 0x9f, 0xae, 0x6b, 0x2d, + 0xdb, 0xc1, 0x2f, 0xc3, 0xf8, 0x35, 0x7c, 0x59, 0x5a, 0xda, 0x67, 0xd6, 0xd7, 0x5d, 0x36, 0xc9, + 0xd9, 0xf0, 0xb3, 0xcd, 0x3b, 0xca, 0xfc, 0xbf, 0xfd, 0x6f, 0xad, 0x79, 0xa2, 0x3c, 0x9d, 0xfa, + 0x65, 0xcd, 0xec, 0xef, 0xcd, 0x16, 0xae, 0x39, 0x5f, 0xb8, 0xe6, 0xe3, 0xc2, 0x35, 0xaf, 0x96, + 0xae, 0x31, 0x5f, 0xba, 0xc6, 0xdd, 0xd2, 0x35, 0x8e, 0xb6, 0xdf, 0x86, 0x9a, 0x15, 0xa9, 0x04, + 0x1f, 0xb2, 0xd8, 0x57, 0x82, 0x5a, 0xd6, 0x57, 0xba, 0x27, 0x2b, 0x65, 0x95, 0x73, 0xd8, 0x50, + 0x1f, 0xbd, 0xf5, 0x1c, 0x00, 0x00, 0xff, 0xff, 0x38, 0xcd, 0x08, 0x12, 0x6a, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -181,7 +181,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) TotalSupply(ctx context.Context, in *SupplyRequest, opts ...grpc.CallOption) (*SupplyResponse, error) { out := new(SupplyResponse) - err := c.cc.Invoke(ctx, "/supply.v1.Query/TotalSupply", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.supply.v1.Query/TotalSupply", in, out, opts...) if err != nil { return nil, err } @@ -190,7 +190,7 @@ func (c *queryClient) TotalSupply(ctx context.Context, in *SupplyRequest, opts . func (c *queryClient) LiquidSupply(ctx context.Context, in *SupplyRequest, opts ...grpc.CallOption) (*SupplyResponse, error) { out := new(SupplyResponse) - err := c.cc.Invoke(ctx, "/supply.v1.Query/LiquidSupply", in, out, opts...) + err := c.cc.Invoke(ctx, "/chainmain.supply.v1.Query/LiquidSupply", in, out, opts...) if err != nil { return nil, err } @@ -234,7 +234,7 @@ func _Query_TotalSupply_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/supply.v1.Query/TotalSupply", + FullMethod: "/chainmain.supply.v1.Query/TotalSupply", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).TotalSupply(ctx, req.(*SupplyRequest)) @@ -252,7 +252,7 @@ func _Query_LiquidSupply_Handler(srv interface{}, ctx context.Context, dec func( } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/supply.v1.Query/LiquidSupply", + FullMethod: "/chainmain.supply.v1.Query/LiquidSupply", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).LiquidSupply(ctx, req.(*SupplyRequest)) @@ -261,7 +261,7 @@ func _Query_LiquidSupply_Handler(srv interface{}, ctx context.Context, dec func( } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "supply.v1.Query", + ServiceName: "chainmain.supply.v1.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ {