diff --git a/CHANGELOG.md b/CHANGELOG.md index 2726f67ed..d7b61c68b 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 +- [#1044](https://github.com/crypto-org-chain/chain-main/pull/1044) Revert the protobuf package name changes introduced in #1023. *Dec 6, 2023* diff --git a/integration_tests/test_nft.py b/integration_tests/test_nft.py index adecb5b7f..0c0ad473d 100644 --- a/integration_tests/test_nft.py +++ b/integration_tests/test_nft.py @@ -48,7 +48,7 @@ def test_create_nft_token(cluster): uri = "testuri" rsp = cluster.create_nft_token(singer1_addr, singer2_addr, denomid, tokenid, uri) ev = find_log_event_attrs(rsp["logs"], "message") - assert ev["action"] == "/nft.v1.MsgMintNFT", ev + assert ev["action"] == "/chainmain.nft.v1.MsgMintNFT", ev def test_query_nft_token(cluster): @@ -67,7 +67,7 @@ def test_transfer_nft_token(cluster): singer2_addr = cluster.address("signer2") rsp = cluster.transfer_nft_token(singer2_addr, singer1_addr, denomid, tokenid) ev = find_log_event_attrs(rsp["logs"], "message") - assert ev["action"] == "/nft.v1.MsgTransferNFT", ev + assert ev["action"] == "/chainmain.nft.v1.MsgTransferNFT", ev def test_query_nft_token_again(cluster): diff --git a/integration_tests/test_nft_transfer.py b/integration_tests/test_nft_transfer.py index bcbc29ee3..f6c31dc1e 100644 --- a/integration_tests/test_nft_transfer.py +++ b/integration_tests/test_nft_transfer.py @@ -99,7 +99,7 @@ def test_nft_transfer(cluster): if rsp["code"] == 0: rsp = cli_src.event_query_tx_for(rsp["txhash"]) ev = find_log_event_attrs(rsp["logs"], "message") - assert ev["action"] == "/nft.v1.MsgMintNFT", ev + assert ev["action"] == "/chainmain.nft.v1.MsgMintNFT", ev # nft transfer that's supposed to fail, exceeds max receiver length rsp = json.loads( diff --git a/proto/chainmain/v1/genesis.proto b/proto/chainmain/chainmain/v1/genesis.proto similarity index 91% rename from proto/chainmain/v1/genesis.proto rename to proto/chainmain/chainmain/v1/genesis.proto index dae39c34a..230dd3f3b 100644 --- a/proto/chainmain/v1/genesis.proto +++ b/proto/chainmain/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/chainmain/icaauth/v1/genesis.proto similarity index 80% rename from proto/icaauth/v1/genesis.proto rename to proto/chainmain/icaauth/v1/genesis.proto index a674e5f17..5031c9d00 100644 --- a/proto/icaauth/v1/genesis.proto +++ b/proto/chainmain/icaauth/v1/genesis.proto @@ -1,8 +1,8 @@ syntax = "proto3"; -package icaauth.v1; +package chainmain.icaauth.v1; import "gogoproto/gogo.proto"; -import "icaauth/v1/params.proto"; +import "chainmain/icaauth/v1/params.proto"; option go_package = "github.com/crypto-org-chain/chain-main/x/icaauth/types"; diff --git a/proto/icaauth/v1/params.proto b/proto/chainmain/icaauth/v1/params.proto similarity index 95% rename from proto/icaauth/v1/params.proto rename to proto/chainmain/icaauth/v1/params.proto index 9f3aee7d7..c0119cb79 100644 --- a/proto/icaauth/v1/params.proto +++ b/proto/chainmain/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/chainmain/icaauth/v1/query.proto similarity index 95% rename from proto/icaauth/v1/query.proto rename to proto/chainmain/icaauth/v1/query.proto index 593b9d0e3..cafdd68da 100644 --- a/proto/icaauth/v1/query.proto +++ b/proto/chainmain/icaauth/v1/query.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package icaauth.v1; +package chainmain.icaauth.v1; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "icaauth/v1/params.proto"; +import "chainmain/icaauth/v1/params.proto"; option go_package = "github.com/crypto-org-chain/chain-main/x/icaauth/types"; diff --git a/proto/icaauth/v1/tx.proto b/proto/chainmain/icaauth/v1/tx.proto similarity index 96% rename from proto/icaauth/v1/tx.proto rename to proto/chainmain/icaauth/v1/tx.proto index 8aca3b641..c54ddbff8 100644 --- a/proto/icaauth/v1/tx.proto +++ b/proto/chainmain/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/chainmain/nft/v1/genesis.proto similarity index 88% rename from proto/nft/v1/genesis.proto rename to proto/chainmain/nft/v1/genesis.proto index a499c3c5a..fe283271b 100644 --- a/proto/nft/v1/genesis.proto +++ b/proto/chainmain/nft/v1/genesis.proto @@ -1,10 +1,10 @@ // 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"; +import "chainmain/nft/v1/nft.proto"; option go_package = "github.com/crypto-org-chain/chain-main/x/nft/types"; diff --git a/proto/nft/v1/nft.proto b/proto/chainmain/nft/v1/nft.proto similarity index 98% rename from proto/nft/v1/nft.proto rename to proto/chainmain/nft/v1/nft.proto index 265c48fab..8759709fb 100644 --- a/proto/nft/v1/nft.proto +++ b/proto/chainmain/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/chainmain/nft/v1/query.proto similarity index 98% rename from proto/nft/v1/query.proto rename to proto/chainmain/nft/v1/query.proto index 3cd9727c2..24d3ebe16 100644 --- a/proto/nft/v1/query.proto +++ b/proto/chainmain/nft/v1/query.proto @@ -1,11 +1,11 @@ // 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"; -import "nft/v1/nft.proto"; +import "chainmain/nft/v1/nft.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; option go_package = "github.com/crypto-org-chain/chain-main/x/nft/types"; @@ -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/chainmain/nft/v1/tx.proto similarity index 98% rename from proto/nft/v1/tx.proto rename to proto/chainmain/nft/v1/tx.proto index f14be9707..03e16c89d 100644 --- a/proto/nft/v1/tx.proto +++ b/proto/chainmain/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/chainmain/nft_transfer/v1/genesis.proto similarity index 81% rename from proto/nft_transfer/v1/genesis.proto rename to proto/chainmain/nft_transfer/v1/genesis.proto index e9a7d50de..e2e790277 100644 --- a/proto/nft_transfer/v1/genesis.proto +++ b/proto/chainmain/nft_transfer/v1/genesis.proto @@ -1,9 +1,9 @@ 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"; -import "nft_transfer/v1/trace.proto"; +import "chainmain/nft_transfer/v1/trace.proto"; import "gogoproto/gogo.proto"; // GenesisState defines the ibc-nft-transfer genesis state diff --git a/proto/nft_transfer/v1/packet.proto b/proto/chainmain/nft_transfer/v1/packet.proto similarity index 96% rename from proto/nft_transfer/v1/packet.proto rename to proto/chainmain/nft_transfer/v1/packet.proto index 586f45fbd..a85fd3702 100644 --- a/proto/nft_transfer/v1/packet.proto +++ b/proto/chainmain/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/chainmain/nft_transfer/v1/query.proto similarity index 97% rename from proto/nft_transfer/v1/query.proto rename to proto/chainmain/nft_transfer/v1/query.proto index bff08c0be..e909efa01 100644 --- a/proto/nft_transfer/v1/query.proto +++ b/proto/chainmain/nft_transfer/v1/query.proto @@ -1,11 +1,11 @@ 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"; import "gogoproto/gogo.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "nft_transfer/v1/trace.proto"; +import "chainmain/nft_transfer/v1/trace.proto"; import "google/api/annotations.proto"; // Query provides defines the gRPC querier service. diff --git a/proto/nft_transfer/v1/trace.proto b/proto/chainmain/nft_transfer/v1/trace.proto similarity index 92% rename from proto/nft_transfer/v1/trace.proto rename to proto/chainmain/nft_transfer/v1/trace.proto index 27709c35a..72b70eecc 100644 --- a/proto/nft_transfer/v1/trace.proto +++ b/proto/chainmain/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/chainmain/nft_transfer/v1/tx.proto similarity index 98% rename from proto/nft_transfer/v1/tx.proto rename to proto/chainmain/nft_transfer/v1/tx.proto index faa09ef27..dadc07ed7 100644 --- a/proto/nft_transfer/v1/tx.proto +++ b/proto/chainmain/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/chainmain/supply/v1/accounts.proto similarity index 89% rename from proto/supply/v1/accounts.proto rename to proto/chainmain/supply/v1/accounts.proto index 202971efc..faa8d0dc0 100644 --- a/proto/supply/v1/accounts.proto +++ b/proto/chainmain/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/chainmain/supply/v1/genesis.proto similarity index 92% rename from proto/supply/v1/genesis.proto rename to proto/chainmain/supply/v1/genesis.proto index 5fb8cdf55..6af082198 100644 --- a/proto/supply/v1/genesis.proto +++ b/proto/chainmain/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/chainmain/supply/v1/query.proto similarity index 97% rename from proto/supply/v1/query.proto rename to proto/chainmain/supply/v1/query.proto index 53fd32611..77e4ab8bb 100644 --- a/proto/supply/v1/query.proto +++ b/proto/chainmain/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..11275e1a2 100644 --- a/x/chainmain/types/genesis.pb.go +++ b/x/chainmain/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: chainmain/v1/genesis.proto +// source: chainmain/chainmain/v1/genesis.proto package types @@ -33,7 +33,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_d594f80fcffdb1b9, []int{0} + return fileDescriptor_dc835947a355e808, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -63,22 +63,25 @@ 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) } +func init() { + proto.RegisterFile("chainmain/chainmain/v1/genesis.proto", fileDescriptor_dc835947a355e808) +} -var fileDescriptor_d594f80fcffdb1b9 = []byte{ - // 144 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, +var fileDescriptor_dc835947a355e808 = []byte{ + // 147 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x49, 0xce, 0x48, 0xcc, + 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0x47, 0xb0, 0xca, 0x0c, 0xf5, 0xd3, 0x53, 0xf3, 0x52, 0x8b, + 0x33, 0x8b, 0xf5, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0xc4, 0xe0, 0x72, 0x7a, 0x08, 0x56, 0x99, + 0xa1, 0x12, 0x1f, 0x17, 0x8f, 0x3b, 0x44, 0x61, 0x70, 0x49, 0x62, 0x49, 0xaa, 0x53, 0xd0, 0x89, + 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, + 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x59, 0xa4, 0x67, 0x96, 0x64, 0x94, 0x26, + 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x27, 0x17, 0x55, 0x16, 0x94, 0xe4, 0xeb, 0xe6, 0x17, 0xa5, 0xeb, + 0x82, 0x4d, 0x83, 0xd8, 0xac, 0x0b, 0xb6, 0xba, 0x02, 0xc9, 0x19, 0x25, 0x95, 0x05, 0xa9, 0xc5, + 0x49, 0x6c, 0x60, 0x27, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x63, 0x61, 0x25, 0x77, 0xaa, + 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..ffa745ccd 100644 --- a/x/icaauth/types/genesis.pb.go +++ b/x/icaauth/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: icaauth/v1/genesis.proto +// source: chainmain/icaauth/v1/genesis.proto package types @@ -33,7 +33,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_2ebfc8327b166956, []int{0} + return fileDescriptor_210900f6be30be08, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -70,26 +70,29 @@ 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) } +func init() { + proto.RegisterFile("chainmain/icaauth/v1/genesis.proto", fileDescriptor_210900f6be30be08) +} -var fileDescriptor_2ebfc8327b166956 = []byte{ - // 200 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, +var fileDescriptor_210900f6be30be08 = []byte{ + // 210 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4a, 0xce, 0x48, 0xcc, + 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0xcf, 0x4c, 0x4e, 0x4c, 0x2c, 0x2d, 0xc9, 0xd0, 0x2f, 0x33, + 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, + 0x81, 0xab, 0xd1, 0x83, 0xaa, 0xd1, 0x2b, 0x33, 0x94, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, + 0xd0, 0x07, 0xb1, 0x20, 0x6a, 0xa5, 0x14, 0xb1, 0x9a, 0x57, 0x90, 0x58, 0x94, 0x98, 0x0b, 0x35, + 0x4e, 0xc9, 0x8b, 0x8b, 0xc7, 0x1d, 0x62, 0x7e, 0x70, 0x49, 0x62, 0x49, 0xaa, 0x90, 0x15, 0x17, + 0x1b, 0x44, 0x5e, 0x82, 0x51, 0x81, 0x51, 0x83, 0xdb, 0x48, 0x46, 0x0f, 0x9b, 0x7d, 0x7a, 0x01, + 0x60, 0x35, 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, 0x04, 0x41, 0x75, 0x38, 0x05, 0x9c, 0x78, 0x24, + 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, + 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x59, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, + 0x72, 0x7e, 0xae, 0x7e, 0x72, 0x51, 0x65, 0x41, 0x49, 0xbe, 0x6e, 0x7e, 0x51, 0xba, 0x2e, 0xd8, + 0x68, 0x7d, 0x30, 0xa9, 0x0b, 0x76, 0x65, 0x05, 0xdc, 0x9d, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, + 0x6c, 0x60, 0x47, 0x1a, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x8a, 0xba, 0xd6, 0xec, 0x19, 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..d4dc1c986 100644 --- a/x/icaauth/types/params.pb.go +++ b/x/icaauth/types/params.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: icaauth/v1/params.proto +// source: chainmain/icaauth/v1/params.proto package types @@ -37,7 +37,7 @@ type Params struct { func (m *Params) Reset() { *m = Params{} } func (*Params) ProtoMessage() {} func (*Params) Descriptor() ([]byte, []int) { - return fileDescriptor_1d9da7e51e957114, []int{0} + return fileDescriptor_801cf753a872130d, []int{0} } func (m *Params) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -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) } +func init() { proto.RegisterFile("chainmain/icaauth/v1/params.proto", fileDescriptor_801cf753a872130d) } -var fileDescriptor_1d9da7e51e957114 = []byte{ - // 255 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, +var fileDescriptor_801cf753a872130d = []byte{ + // 264 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4c, 0xce, 0x48, 0xcc, + 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0xcf, 0x4c, 0x4e, 0x4c, 0x2c, 0x2d, 0xc9, 0xd0, 0x2f, 0x33, + 0xd4, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x81, + 0x2b, 0xd1, 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, 0x07, 0x55, 0x05, 0x3c, 0xb0, + 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xee, 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, + 0x9a, 0x05, 0x82, 0x12, 0x4e, 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..5b41b1c4b 100644 --- a/x/icaauth/types/query.pb.go +++ b/x/icaauth/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: icaauth/v1/query.proto +// source: chainmain/icaauth/v1/query.proto package types @@ -38,7 +38,7 @@ func (m *QueryParamsRequest) Reset() { *m = QueryParamsRequest{} } func (m *QueryParamsRequest) String() string { return proto.CompactTextString(m) } func (*QueryParamsRequest) ProtoMessage() {} func (*QueryParamsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b4ef18af0a32af09, []int{0} + return fileDescriptor_84963ea4c90af99e, []int{0} } func (m *QueryParamsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,7 +77,7 @@ func (m *QueryParamsResponse) Reset() { *m = QueryParamsResponse{} } func (m *QueryParamsResponse) String() string { return proto.CompactTextString(m) } func (*QueryParamsResponse) ProtoMessage() {} func (*QueryParamsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b4ef18af0a32af09, []int{1} + return fileDescriptor_84963ea4c90af99e, []int{1} } func (m *QueryParamsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -123,7 +123,7 @@ func (m *QueryInterchainAccountAddressRequest) Reset() { *m = QueryInter func (m *QueryInterchainAccountAddressRequest) String() string { return proto.CompactTextString(m) } func (*QueryInterchainAccountAddressRequest) ProtoMessage() {} func (*QueryInterchainAccountAddressRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b4ef18af0a32af09, []int{2} + return fileDescriptor_84963ea4c90af99e, []int{2} } func (m *QueryInterchainAccountAddressRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -175,7 +175,7 @@ func (m *QueryInterchainAccountAddressResponse) Reset() { *m = QueryInte func (m *QueryInterchainAccountAddressResponse) String() string { return proto.CompactTextString(m) } func (*QueryInterchainAccountAddressResponse) ProtoMessage() {} func (*QueryInterchainAccountAddressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b4ef18af0a32af09, []int{3} + return fileDescriptor_84963ea4c90af99e, []int{3} } func (m *QueryInterchainAccountAddressResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -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") -} - -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, + 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("chainmain/icaauth/v1/query.proto", fileDescriptor_84963ea4c90af99e) } + +var fileDescriptor_84963ea4c90af99e = []byte{ + // 460 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, 0xee, 0x61, 0x09, 0x61, 0x5b, 0x97, 0x0a, 0x55, 0xc8, + 0x0e, 0xa9, 0xe0, 0x21, 0x7a, 0x69, 0x2e, 0x92, 0x93, 0xed, 0x1e, 0xbd, 0x84, 0xc9, 0x64, 0xd8, + 0x0c, 0x74, 0xe7, 0x6d, 0x67, 0x66, 0xa3, 0x6b, 0xe9, 0x45, 0xbf, 0x80, 0xe0, 0x97, 0xea, 0xb1, + 0xe0, 0xc5, 0x53, 0x91, 0xa4, 0x9f, 0x40, 0xfc, 0x00, 0xb2, 0x33, 0x6b, 0x6a, 0x71, 0xd3, 0x8a, + 0xb7, 0xdd, 0xf7, 0x7e, 0xff, 0xde, 0x7b, 0x0c, 0xda, 0x61, 0x73, 0x2a, 0x64, 0x46, 0x85, 0x24, + 0x82, 0x51, 0x5a, 0x98, 0x39, 0x59, 0x0c, 0xc8, 0x49, 0xc1, 0x55, 0x19, 0xe7, 0x0a, 0x0c, 0x60, + 0x7f, 0x8d, 0x88, 0x6b, 0x44, 0xbc, 0x18, 0x74, 0xfd, 0x14, 0x52, 0xb0, 0x00, 0x52, 0x7d, 0x39, + 0x6c, 0xb7, 0x97, 0x02, 0xa4, 0xc7, 0x9c, 0xd0, 0x5c, 0x10, 0x2a, 0x25, 0x18, 0x6a, 0x04, 0x48, + 0x5d, 0x77, 0x9f, 0x31, 0xd0, 0x19, 0x68, 0x32, 0xa5, 0x9a, 0x3b, 0x0b, 0xb2, 0x18, 0x4c, 0xb9, + 0xa1, 0x03, 0x92, 0xd3, 0x54, 0x48, 0x0b, 0xae, 0xb1, 0x8f, 0x1b, 0x73, 0xe5, 0x54, 0xd1, 0xac, + 0x96, 0x8b, 0x7c, 0x84, 0x8f, 0x2a, 0x91, 0x43, 0x5b, 0x4c, 0xf8, 0x49, 0xc1, 0xb5, 0x89, 0x8e, + 0xd0, 0xa3, 0x1b, 0x55, 0x9d, 0x83, 0xd4, 0x1c, 0x0f, 0x51, 0xc7, 0x91, 0x03, 0x6f, 0xc7, 0xdb, + 0x7b, 0xb0, 0xdf, 0x8b, 0x9b, 0xc6, 0x8a, 0x1d, 0x6b, 0x74, 0xef, 0xfc, 0x72, 0xbb, 0x95, 0xd4, + 0x8c, 0xe8, 0x03, 0xda, 0xb5, 0x92, 0x63, 0x69, 0xb8, 0xb2, 0xb4, 0x03, 0xc6, 0xa0, 0x90, 0xe6, + 0x60, 0x36, 0x53, 0x5c, 0xff, 0xb6, 0xc6, 0xaf, 0xd0, 0x43, 0x06, 0x52, 0x72, 0x56, 0xcd, 0x31, + 0x9e, 0x59, 0xa7, 0xfb, 0xa3, 0xe0, 0xc7, 0xe5, 0xb6, 0x5f, 0xd2, 0xec, 0x78, 0x18, 0x5d, 0x77, + 0x27, 0x62, 0x16, 0x25, 0x37, 0xd0, 0xd8, 0x47, 0x5b, 0xf0, 0x4e, 0x72, 0x15, 0xb4, 0x2b, 0x5a, + 0xe2, 0x7e, 0x22, 0x86, 0x9e, 0xdc, 0xe1, 0xbd, 0x1e, 0x30, 0x10, 0x1b, 0x30, 0x2e, 0x48, 0xb2, + 0xb1, 0xbf, 0xff, 0xb3, 0x8d, 0xb6, 0xac, 0x0b, 0xfe, 0xe4, 0xa1, 0x8e, 0xdb, 0x01, 0xde, 0x6b, + 0xde, 0xd0, 0xdf, 0x2b, 0xef, 0x3e, 0xfd, 0x07, 0xa4, 0x4b, 0x19, 0xed, 0x7e, 0xfc, 0x7a, 0xf5, + 0xa5, 0x1d, 0xe2, 0x1e, 0xb9, 0xe5, 0xbe, 0xf8, 0xca, 0x43, 0xc1, 0xa6, 0x81, 0xf1, 0xf0, 0x16, + 0xb7, 0x3b, 0x2e, 0xd4, 0x7d, 0xf9, 0x5f, 0xdc, 0x3a, 0xfb, 0x1b, 0x9b, 0x7d, 0x8c, 0x5f, 0x37, + 0x67, 0xbf, 0xde, 0xee, 0x84, 0x3a, 0x81, 0x09, 0x75, 0x0a, 0xe4, 0xf4, 0xcf, 0x43, 0x9f, 0x91, + 0x53, 0x7b, 0xda, 0xb3, 0xd1, 0xe1, 0xf9, 0x32, 0xf4, 0x2e, 0x96, 0xa1, 0xf7, 0x7d, 0x19, 0x7a, + 0x9f, 0x57, 0x61, 0xeb, 0x62, 0x15, 0xb6, 0xbe, 0xad, 0xc2, 0xd6, 0xdb, 0x17, 0xa9, 0x30, 0xf3, + 0x62, 0x1a, 0x33, 0xc8, 0x08, 0x53, 0x65, 0x6e, 0xa0, 0x0f, 0x2a, 0xed, 0x5b, 0x75, 0xe7, 0xde, + 0xb7, 0xf6, 0xef, 0xd7, 0x01, 0x4c, 0x99, 0x73, 0x3d, 0xed, 0xd8, 0x97, 0xf1, 0xfc, 0x57, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x34, 0xb9, 0x40, 0x6e, 0xd6, 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{ { @@ -370,7 +370,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "icaauth/v1/query.proto", + Metadata: "chainmain/icaauth/v1/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/icaauth/types/query.pb.gw.go b/x/icaauth/types/query.pb.gw.go index 0ee4e255a..645ed0f54 100644 --- a/x/icaauth/types/query.pb.gw.go +++ b/x/icaauth/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: icaauth/v1/query.proto +// source: chainmain/icaauth/v1/query.proto /* Package types is a reverse proxy. diff --git a/x/icaauth/types/tx.pb.go b/x/icaauth/types/tx.pb.go index 6f9efcf22..80329e59e 100644 --- a/x/icaauth/types/tx.pb.go +++ b/x/icaauth/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: icaauth/v1/tx.proto +// source: chainmain/icaauth/v1/tx.proto package types @@ -48,7 +48,7 @@ func (m *MsgRegisterAccount) Reset() { *m = MsgRegisterAccount{} } func (m *MsgRegisterAccount) String() string { return proto.CompactTextString(m) } func (*MsgRegisterAccount) ProtoMessage() {} func (*MsgRegisterAccount) Descriptor() ([]byte, []int) { - return fileDescriptor_09bf995a0c8f8b8c, []int{0} + return fileDescriptor_a266fcab7ff9c181, []int{0} } func (m *MsgRegisterAccount) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -106,7 +106,7 @@ func (m *MsgRegisterAccountResponse) Reset() { *m = MsgRegisterAccountRe func (m *MsgRegisterAccountResponse) String() string { return proto.CompactTextString(m) } func (*MsgRegisterAccountResponse) ProtoMessage() {} func (*MsgRegisterAccountResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_09bf995a0c8f8b8c, []int{1} + return fileDescriptor_a266fcab7ff9c181, []int{1} } func (m *MsgRegisterAccountResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -151,7 +151,7 @@ func (m *MsgSubmitTx) Reset() { *m = MsgSubmitTx{} } func (m *MsgSubmitTx) String() string { return proto.CompactTextString(m) } func (*MsgSubmitTx) ProtoMessage() {} func (*MsgSubmitTx) Descriptor() ([]byte, []int) { - return fileDescriptor_09bf995a0c8f8b8c, []int{2} + return fileDescriptor_a266fcab7ff9c181, []int{2} } func (m *MsgSubmitTx) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -216,7 +216,7 @@ func (m *MsgSubmitTxResponse) Reset() { *m = MsgSubmitTxResponse{} } func (m *MsgSubmitTxResponse) String() string { return proto.CompactTextString(m) } func (*MsgSubmitTxResponse) ProtoMessage() {} func (*MsgSubmitTxResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_09bf995a0c8f8b8c, []int{3} + return fileDescriptor_a266fcab7ff9c181, []int{3} } func (m *MsgSubmitTxResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -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) } +func init() { proto.RegisterFile("chainmain/icaauth/v1/tx.proto", fileDescriptor_a266fcab7ff9c181) } -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, +var fileDescriptor_a266fcab7ff9c181 = []byte{ + // 449 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x53, 0xb1, 0xae, 0xd3, 0x30, + 0x14, 0xad, 0x69, 0xe1, 0x81, 0x8b, 0xf4, 0xa4, 0x10, 0xa4, 0x34, 0x82, 0xbc, 0x92, 0xa9, 0x0c, + 0xb5, 0x79, 0x45, 0x30, 0x20, 0x96, 0x57, 0xb1, 0xbc, 0xa1, 0x12, 0x0a, 0x0c, 0x88, 0xe5, 0x29, + 0x75, 0x8d, 0x6b, 0xf1, 0xec, 0x5b, 0xc5, 0x4e, 0x69, 0x56, 0xbe, 0x80, 0x91, 0x0f, 0xe1, 0x23, + 0x10, 0x03, 0xea, 0xc8, 0x04, 0xa8, 0xfd, 0x03, 0xbe, 0x00, 0xd5, 0x49, 0x0a, 0xb4, 0x20, 0x58, + 0x58, 0xa2, 0x9c, 0x9c, 0x73, 0x4f, 0xee, 0x3d, 0xf6, 0xc5, 0x37, 0xd9, 0x34, 0x95, 0x5a, 0xa5, + 0x52, 0x53, 0xc9, 0xd2, 0x34, 0xb7, 0x53, 0x3a, 0x3f, 0xa6, 0x76, 0x41, 0x66, 0x19, 0x58, 0xf0, + 0xfc, 0x2d, 0x4d, 0x2a, 0x9a, 0xcc, 0x8f, 0xc3, 0x0e, 0x03, 0xa3, 0xc0, 0x9c, 0x39, 0x0d, 0x2d, + 0x41, 0x59, 0x10, 0x76, 0x04, 0x80, 0x38, 0xe7, 0xd4, 0xa1, 0x71, 0xfe, 0x82, 0xa6, 0xba, 0xa8, + 0xa8, 0x68, 0x97, 0x9a, 0xe4, 0x59, 0x6a, 0x25, 0xe8, 0x8a, 0xf7, 0x05, 0x08, 0x28, 0x2d, 0x37, + 0x6f, 0xe5, 0xd7, 0xf8, 0x35, 0xc2, 0xde, 0xc8, 0x88, 0x84, 0x0b, 0x69, 0x2c, 0xcf, 0x4e, 0x18, + 0x83, 0x5c, 0x5b, 0xcf, 0xc7, 0x17, 0xe1, 0x95, 0xe6, 0x59, 0x80, 0xba, 0xa8, 0x77, 0x25, 0x29, + 0x81, 0xf7, 0x10, 0x5f, 0x65, 0xa0, 0x35, 0x67, 0x1b, 0xdb, 0xd3, 0x49, 0x70, 0x61, 0x43, 0x0e, + 0x83, 0x6f, 0x9f, 0x8f, 0xfc, 0x22, 0x55, 0xe7, 0x0f, 0xe2, 0x1f, 0xec, 0x99, 0x9c, 0xc4, 0xc9, + 0x2f, 0x6a, 0x2f, 0xc0, 0x07, 0x73, 0x9e, 0x19, 0x09, 0x3a, 0x68, 0x3a, 0xd7, 0x1a, 0xc6, 0x37, + 0x70, 0xb8, 0xdf, 0x43, 0xc2, 0xcd, 0x0c, 0xb4, 0xe1, 0xf1, 0x1a, 0xe1, 0xf6, 0xc8, 0x88, 0x27, + 0xf9, 0x58, 0x49, 0xfb, 0x74, 0xf1, 0x5f, 0x7a, 0xbb, 0x87, 0x5b, 0xca, 0x08, 0x13, 0x34, 0xbb, + 0xcd, 0x5e, 0x7b, 0xe0, 0x93, 0x32, 0x4b, 0x52, 0x67, 0x49, 0x4e, 0x74, 0x31, 0x6c, 0x7f, 0x78, + 0xd7, 0x3f, 0x30, 0x93, 0x97, 0x64, 0xd3, 0xab, 0x93, 0x7b, 0xa7, 0xf8, 0xd0, 0x4a, 0xc5, 0x21, + 0xb7, 0x8f, 0xaa, 0xb0, 0x83, 0x56, 0x17, 0xf5, 0xda, 0x83, 0xce, 0x9e, 0x43, 0x2d, 0x18, 0xb6, + 0xde, 0x7e, 0x39, 0x42, 0xc9, 0x6e, 0x5d, 0x7c, 0x1d, 0x5f, 0xfb, 0x69, 0xc8, 0x7a, 0xf8, 0xc1, + 0x47, 0x84, 0x9b, 0x23, 0x23, 0x3c, 0x85, 0x0f, 0x77, 0xcf, 0xa8, 0x47, 0x7e, 0x77, 0x7b, 0xc8, + 0x7e, 0x92, 0xe1, 0x9d, 0x7f, 0x55, 0xd6, 0xbf, 0xf5, 0x9e, 0xe1, 0xcb, 0xdb, 0xbc, 0x6f, 0xfd, + 0xb1, 0xba, 0x96, 0x84, 0xb7, 0xff, 0x2a, 0xa9, 0x9d, 0x87, 0x8f, 0xdf, 0xaf, 0x22, 0xb4, 0x5c, + 0x45, 0xe8, 0xeb, 0x2a, 0x42, 0x6f, 0xd6, 0x51, 0x63, 0xb9, 0x8e, 0x1a, 0x9f, 0xd6, 0x51, 0xe3, + 0xf9, 0x7d, 0x21, 0xed, 0x34, 0x1f, 0x13, 0x06, 0x8a, 0xb2, 0xac, 0x98, 0x59, 0xe8, 0x43, 0x26, + 0xfa, 0xce, 0x99, 0xba, 0x67, 0xdf, 0x2d, 0xd2, 0x62, 0xbb, 0x4a, 0xb6, 0x98, 0x71, 0x33, 0xbe, + 0xe4, 0x32, 0xbe, 0xfb, 0x3d, 0x00, 0x00, 0xff, 0xff, 0x3b, 0x05, 0xdf, 0x7a, 0x6c, 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{ { @@ -402,7 +404,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "icaauth/v1/tx.proto", + Metadata: "chainmain/icaauth/v1/tx.proto", } func (m *MsgRegisterAccount) Marshal() (dAtA []byte, err error) { diff --git a/x/nft-transfer/types/genesis.pb.go b/x/nft-transfer/types/genesis.pb.go index d54eca218..a873b7d16 100644 --- a/x/nft-transfer/types/genesis.pb.go +++ b/x/nft-transfer/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: nft_transfer/v1/genesis.proto +// source: chainmain/nft_transfer/v1/genesis.proto package types @@ -33,7 +33,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_674acb5cce894156, []int{0} + return fileDescriptor_49c17ad52dcafd12, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -77,29 +77,31 @@ 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) } +func init() { + proto.RegisterFile("chainmain/nft_transfer/v1/genesis.proto", fileDescriptor_49c17ad52dcafd12) +} -var fileDescriptor_674acb5cce894156 = []byte{ - // 245 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, +var fileDescriptor_49c17ad52dcafd12 = []byte{ + // 254 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4f, 0xce, 0x48, 0xcc, + 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0xcf, 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, 0x92, 0x84, 0x2b, 0xd4, 0x43, 0x56, 0xa8, 0x57, 0x66, 0x28, 0xa5, 0x8a, + 0xdb, 0x8c, 0x92, 0xa2, 0xc4, 0xe4, 0x54, 0x88, 0x09, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, + 0xa6, 0x3e, 0x88, 0x05, 0x11, 0x55, 0x2a, 0xe3, 0xe2, 0x71, 0x87, 0x58, 0x14, 0x5c, 0x92, 0x58, + 0x92, 0x2a, 0x24, 0xce, 0xc5, 0x5e, 0x90, 0x5f, 0x54, 0x12, 0x9f, 0x99, 0x22, 0xc1, 0xa8, 0xc0, + 0xa8, 0xc1, 0x19, 0xc4, 0x06, 0xe2, 0x7a, 0xa6, 0x08, 0xf9, 0x72, 0xb1, 0x81, 0x4d, 0x2b, 0x96, + 0x60, 0x52, 0x60, 0xd6, 0xe0, 0x36, 0x52, 0xd5, 0xc3, 0xe9, 0x22, 0x3d, 0xe7, 0x9c, 0xc4, 0xe2, + 0xe2, 0x10, 0x90, 0x6a, 0x27, 0xbe, 0x13, 0xf7, 0xe4, 0x19, 0x56, 0xdd, 0x97, 0x67, 0x03, 0x73, + 0x8b, 0x83, 0xa0, 0x86, 0x38, 0x85, 0x9e, 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, 0x75, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x72, 0x51, 0x65, + 0x41, 0x49, 0xbe, 0x6e, 0x7e, 0x51, 0xba, 0x2e, 0xd8, 0x36, 0x7d, 0x30, 0xa9, 0x0b, 0xf6, 0x6b, + 0x05, 0xc8, 0xb7, 0xba, 0x70, 0xdf, 0x96, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x7d, 0x65, + 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xd3, 0x2b, 0x9c, 0x7b, 0x58, 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..fe97af510 100644 --- a/x/nft-transfer/types/packet.pb.go +++ b/x/nft-transfer/types/packet.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: nft_transfer/v1/packet.proto +// source: chainmain/nft_transfer/v1/packet.proto package types @@ -44,7 +44,7 @@ func (m *NonFungibleTokenPacketData) Reset() { *m = NonFungibleTokenPack func (m *NonFungibleTokenPacketData) String() string { return proto.CompactTextString(m) } func (*NonFungibleTokenPacketData) ProtoMessage() {} func (*NonFungibleTokenPacketData) Descriptor() ([]byte, []int) { - return fileDescriptor_14c037a407c65908, []int{0} + return fileDescriptor_004dc252e639081a, []int{0} } func (m *NonFungibleTokenPacketData) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -116,31 +116,33 @@ 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) } +func init() { + proto.RegisterFile("chainmain/nft_transfer/v1/packet.proto", fileDescriptor_004dc252e639081a) +} -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, +var fileDescriptor_004dc252e639081a = []byte{ + // 285 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x90, 0xc1, 0x4a, 0xc3, 0x30, + 0x1c, 0xc6, 0x17, 0xa7, 0x75, 0xcb, 0x31, 0x07, 0xc9, 0x26, 0x86, 0xe1, 0x41, 0xbc, 0xb4, 0x65, + 0x78, 0xf4, 0x26, 0x22, 0xec, 0x22, 0x22, 0xf6, 0xe2, 0xa5, 0xa4, 0x69, 0xd6, 0x85, 0x6d, 0x49, + 0xf9, 0x27, 0x2d, 0xee, 0x2d, 0x7c, 0x28, 0x0f, 0x1e, 0x77, 0xf4, 0x28, 0xed, 0x8b, 0x48, 0x53, + 0x1d, 0x5e, 0x02, 0x5f, 0x7e, 0x5f, 0xbe, 0xc0, 0x0f, 0x5f, 0x89, 0x15, 0x57, 0x7a, 0xcb, 0x95, + 0x8e, 0xf5, 0xd2, 0xa5, 0x0e, 0xb8, 0xb6, 0x4b, 0x09, 0x71, 0x3d, 0x8f, 0x4b, 0x2e, 0xd6, 0xd2, + 0x45, 0x25, 0x18, 0x67, 0xc8, 0xe4, 0xd0, 0x8b, 0xfe, 0xf7, 0xa2, 0x7a, 0x7e, 0xf9, 0x81, 0xf0, + 0xf4, 0xd1, 0xe8, 0x87, 0x4a, 0x17, 0x2a, 0xdb, 0xc8, 0x17, 0xb3, 0x96, 0xfa, 0xc9, 0xbf, 0xbd, + 0xe7, 0x8e, 0x93, 0x09, 0x1e, 0x89, 0x0d, 0xb7, 0x36, 0x55, 0x39, 0x45, 0x33, 0x74, 0x3d, 0x7e, + 0x3e, 0xf5, 0x79, 0x91, 0x93, 0x73, 0x3c, 0xee, 0x51, 0x05, 0x8a, 0x1e, 0x79, 0xd6, 0x77, 0x13, + 0x50, 0x1d, 0x74, 0xdd, 0x54, 0xaa, 0x72, 0x4b, 0x87, 0xb3, 0x61, 0x07, 0xfd, 0xc5, 0x22, 0xb7, + 0xe4, 0x02, 0xe3, 0x1e, 0x56, 0xa0, 0x2c, 0x3d, 0xf6, 0xb4, 0xaf, 0x27, 0xa0, 0x2c, 0x39, 0xc3, + 0x81, 0x95, 0x3a, 0x97, 0x40, 0x4f, 0xfc, 0xea, 0x6f, 0x22, 0x53, 0x3c, 0x02, 0x29, 0xa4, 0xaa, + 0x25, 0xd0, 0xa0, 0xff, 0xef, 0x2f, 0xdf, 0x25, 0x9f, 0x0d, 0x43, 0xfb, 0x86, 0xa1, 0xef, 0x86, + 0xa1, 0xf7, 0x96, 0x0d, 0xf6, 0x2d, 0x1b, 0x7c, 0xb5, 0x6c, 0xf0, 0x7a, 0x5b, 0x28, 0xb7, 0xaa, + 0xb2, 0x48, 0x98, 0x6d, 0x2c, 0x60, 0x57, 0x3a, 0x13, 0x1a, 0x28, 0x42, 0x6f, 0x24, 0xf6, 0x67, + 0xe8, 0x05, 0xbe, 0x75, 0x0a, 0xc3, 0x83, 0x42, 0xb7, 0x2b, 0xa5, 0xcd, 0x02, 0xef, 0xef, 0xe6, + 0x27, 0x00, 0x00, 0xff, 0xff, 0x76, 0x1a, 0x6a, 0xb3, 0x69, 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..d5baadc34 100644 --- a/x/nft-transfer/types/query.pb.go +++ b/x/nft-transfer/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: nft_transfer/v1/query.proto +// source: chainmain/nft_transfer/v1/query.proto package types @@ -41,7 +41,7 @@ func (m *QueryClassTraceRequest) Reset() { *m = QueryClassTraceRequest{} func (m *QueryClassTraceRequest) String() string { return proto.CompactTextString(m) } func (*QueryClassTraceRequest) ProtoMessage() {} func (*QueryClassTraceRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6f722060ae5d435b, []int{0} + return fileDescriptor_d4979c1c1d06d5f7, []int{0} } func (m *QueryClassTraceRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -88,7 +88,7 @@ func (m *QueryClassTraceResponse) Reset() { *m = QueryClassTraceResponse func (m *QueryClassTraceResponse) String() string { return proto.CompactTextString(m) } func (*QueryClassTraceResponse) ProtoMessage() {} func (*QueryClassTraceResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6f722060ae5d435b, []int{1} + return fileDescriptor_d4979c1c1d06d5f7, []int{1} } func (m *QueryClassTraceResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -135,7 +135,7 @@ func (m *QueryClassTracesRequest) Reset() { *m = QueryClassTracesRequest func (m *QueryClassTracesRequest) String() string { return proto.CompactTextString(m) } func (*QueryClassTracesRequest) ProtoMessage() {} func (*QueryClassTracesRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6f722060ae5d435b, []int{2} + return fileDescriptor_d4979c1c1d06d5f7, []int{2} } func (m *QueryClassTracesRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -184,7 +184,7 @@ func (m *QueryClassTracesResponse) Reset() { *m = QueryClassTracesRespon func (m *QueryClassTracesResponse) String() string { return proto.CompactTextString(m) } func (*QueryClassTracesResponse) ProtoMessage() {} func (*QueryClassTracesResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6f722060ae5d435b, []int{3} + return fileDescriptor_d4979c1c1d06d5f7, []int{3} } func (m *QueryClassTracesResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -238,7 +238,7 @@ func (m *QueryClassHashRequest) Reset() { *m = QueryClassHashRequest{} } func (m *QueryClassHashRequest) String() string { return proto.CompactTextString(m) } func (*QueryClassHashRequest) ProtoMessage() {} func (*QueryClassHashRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6f722060ae5d435b, []int{4} + return fileDescriptor_d4979c1c1d06d5f7, []int{4} } func (m *QueryClassHashRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -285,7 +285,7 @@ func (m *QueryClassHashResponse) Reset() { *m = QueryClassHashResponse{} func (m *QueryClassHashResponse) String() string { return proto.CompactTextString(m) } func (*QueryClassHashResponse) ProtoMessage() {} func (*QueryClassHashResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6f722060ae5d435b, []int{5} + return fileDescriptor_d4979c1c1d06d5f7, []int{5} } func (m *QueryClassHashResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -333,7 +333,7 @@ func (m *QueryEscrowAddressRequest) Reset() { *m = QueryEscrowAddressReq func (m *QueryEscrowAddressRequest) String() string { return proto.CompactTextString(m) } func (*QueryEscrowAddressRequest) ProtoMessage() {} func (*QueryEscrowAddressRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_6f722060ae5d435b, []int{6} + return fileDescriptor_d4979c1c1d06d5f7, []int{6} } func (m *QueryEscrowAddressRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -386,7 +386,7 @@ func (m *QueryEscrowAddressResponse) Reset() { *m = QueryEscrowAddressRe func (m *QueryEscrowAddressResponse) String() string { return proto.CompactTextString(m) } func (*QueryEscrowAddressResponse) ProtoMessage() {} func (*QueryEscrowAddressResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_6f722060ae5d435b, []int{7} + return fileDescriptor_d4979c1c1d06d5f7, []int{7} } func (m *QueryEscrowAddressResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -423,61 +423,63 @@ 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") -} - -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, + 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("chainmain/nft_transfer/v1/query.proto", fileDescriptor_d4979c1c1d06d5f7) +} + +var fileDescriptor_d4979c1c1d06d5f7 = []byte{ + // 653 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0x4d, 0x4f, 0x13, 0x41, + 0x18, 0xc7, 0xbb, 0x28, 0x98, 0x3e, 0x15, 0x0e, 0x13, 0x14, 0xd8, 0xe8, 0x42, 0x9a, 0x80, 0xc4, + 0xb8, 0x33, 0x2c, 0x88, 0x17, 0x4f, 0x42, 0x44, 0xb9, 0x18, 0xac, 0x2f, 0x31, 0x5e, 0x9a, 0xe9, + 0x76, 0xd8, 0xdd, 0x04, 0x76, 0x96, 0x9d, 0x01, 0x25, 0xa4, 0x17, 0x3f, 0x81, 0x89, 0xdf, 0xc1, + 0x18, 0xbe, 0x83, 0x77, 0x8e, 0x24, 0x7a, 0xf0, 0x24, 0x06, 0xfc, 0x20, 0x66, 0x66, 0xa7, 0xdd, + 0x6d, 0xa8, 0xb4, 0xbd, 0x34, 0xb3, 0x3b, 0xcf, 0xcb, 0xef, 0xf9, 0xcf, 0x7f, 0xba, 0x30, 0xef, + 0x87, 0x34, 0x8a, 0x77, 0x69, 0x14, 0x93, 0x78, 0x5b, 0xd6, 0x65, 0x4a, 0x63, 0xb1, 0xcd, 0x52, + 0x72, 0xe0, 0x91, 0xbd, 0x7d, 0x96, 0x1e, 0xe2, 0x24, 0xe5, 0x92, 0xa3, 0x99, 0x4e, 0x18, 0x2e, + 0x86, 0xe1, 0x03, 0xcf, 0x9e, 0x0c, 0x78, 0xc0, 0x75, 0x14, 0x51, 0xab, 0x2c, 0xc1, 0xbe, 0xef, + 0x73, 0xb1, 0xcb, 0x05, 0x69, 0x50, 0xc1, 0xb2, 0x4a, 0xe4, 0xc0, 0x6b, 0x30, 0x49, 0x3d, 0x92, + 0xd0, 0x20, 0x8a, 0xa9, 0x8c, 0x78, 0x6c, 0x62, 0xaf, 0x60, 0x90, 0x29, 0xf5, 0x99, 0x09, 0xbb, + 0x13, 0x70, 0x1e, 0xec, 0x30, 0x42, 0x93, 0x88, 0xd0, 0x38, 0xe6, 0x52, 0xd7, 0x10, 0xd9, 0x6e, + 0xf5, 0x01, 0xdc, 0x7e, 0xa9, 0xda, 0xac, 0xef, 0x50, 0x21, 0x5e, 0xab, 0xb4, 0x1a, 0xdb, 0xdb, + 0x67, 0x42, 0x22, 0x04, 0xd7, 0x43, 0x2a, 0xc2, 0x69, 0x6b, 0xce, 0x5a, 0x2c, 0xd7, 0xf4, 0xba, + 0x4a, 0x61, 0xea, 0x52, 0xb4, 0x48, 0x78, 0x2c, 0x18, 0xda, 0x80, 0x8a, 0xaf, 0xde, 0xd6, 0x75, + 0x6f, 0x9d, 0x55, 0x59, 0x9e, 0xc7, 0xff, 0x15, 0x00, 0x17, 0x6a, 0x80, 0xdf, 0x59, 0xf7, 0x68, + 0x21, 0xda, 0x44, 0x1b, 0x00, 0xb9, 0x08, 0xa6, 0xc3, 0x02, 0xce, 0x14, 0xc3, 0x4a, 0x31, 0x9c, + 0x69, 0x6f, 0x14, 0xc3, 0x5b, 0x34, 0x68, 0x4f, 0x53, 0x2b, 0x64, 0x56, 0xbf, 0x5b, 0x30, 0x7d, + 0xb9, 0x87, 0x99, 0xe3, 0x1d, 0xdc, 0x2c, 0xcc, 0x21, 0xa6, 0xad, 0xb9, 0x6b, 0x03, 0x0f, 0xb2, + 0x36, 0x71, 0xf2, 0x7b, 0xb6, 0x74, 0x7c, 0x36, 0x3b, 0x66, 0x8a, 0x56, 0xf2, 0xc1, 0x04, 0x7a, + 0xd6, 0x85, 0x3f, 0xa2, 0xf1, 0xef, 0xf5, 0xc5, 0xcf, 0xb0, 0xba, 0xf8, 0x5d, 0xb8, 0x95, 0xe3, + 0x3f, 0xa7, 0x22, 0x6c, 0x0b, 0x34, 0x09, 0xa3, 0xb9, 0xfa, 0xe5, 0x5a, 0xf6, 0xd0, 0x7d, 0xc4, + 0x59, 0xb8, 0x99, 0xb5, 0xd7, 0x11, 0xbf, 0x82, 0x19, 0x1d, 0xfd, 0x54, 0xf8, 0x29, 0xff, 0xf0, + 0xa4, 0xd9, 0x4c, 0x99, 0xe8, 0x9c, 0xc0, 0x14, 0xdc, 0x48, 0x78, 0x2a, 0xeb, 0x51, 0xd3, 0xe4, + 0x8c, 0xa9, 0xc7, 0xcd, 0x26, 0xba, 0x0b, 0xe0, 0x87, 0x34, 0x8e, 0xd9, 0x8e, 0xda, 0x1b, 0xd1, + 0x7b, 0x65, 0xf3, 0x66, 0xb3, 0x59, 0x5d, 0x07, 0xbb, 0x57, 0x51, 0x83, 0x31, 0x0f, 0x13, 0x4c, + 0x6f, 0xd4, 0x69, 0xb6, 0x63, 0x8a, 0x8f, 0xb3, 0x62, 0xf8, 0xf2, 0xd9, 0x28, 0x8c, 0xea, 0x2a, + 0xe8, 0xd8, 0x02, 0xc8, 0x55, 0x47, 0xde, 0x15, 0x87, 0xd3, 0xdb, 0xdc, 0xf6, 0xf2, 0x30, 0x29, + 0x19, 0x66, 0x75, 0xf5, 0xd3, 0x8f, 0xbf, 0x5f, 0x46, 0x08, 0x72, 0x49, 0xd4, 0xf0, 0x09, 0x4d, + 0x12, 0x71, 0xe9, 0xde, 0x15, 0x9d, 0x43, 0x8e, 0x94, 0x9e, 0x2d, 0xf4, 0xd5, 0x82, 0x4a, 0xc1, + 0x68, 0x68, 0x88, 0xd6, 0x6d, 0xdd, 0xed, 0x95, 0xa1, 0x72, 0x0c, 0x2f, 0xd6, 0xbc, 0x8b, 0x68, + 0x61, 0x30, 0x5e, 0xf4, 0xcd, 0x82, 0x72, 0xc7, 0x23, 0x68, 0x69, 0xa0, 0x96, 0x05, 0xf7, 0xd9, + 0xde, 0x10, 0x19, 0x06, 0xf1, 0x91, 0x46, 0x5c, 0x42, 0xb8, 0x1f, 0xa2, 0x92, 0x52, 0x49, 0xaa, + 0x51, 0x5b, 0xe8, 0xa7, 0x05, 0xe3, 0x5d, 0x5e, 0x42, 0x0f, 0xfb, 0x35, 0xef, 0xe5, 0x67, 0x7b, + 0x75, 0xc8, 0x2c, 0x83, 0xfd, 0x56, 0x63, 0x6f, 0xa1, 0x17, 0x57, 0x60, 0x67, 0xde, 0x17, 0xe4, + 0x28, 0xbf, 0x17, 0x2d, 0xa2, 0x6e, 0x8b, 0x20, 0x47, 0xe6, 0x0e, 0xb5, 0x48, 0xb7, 0xed, 0xd7, + 0xde, 0x9c, 0x9c, 0x3b, 0xd6, 0xe9, 0xb9, 0x63, 0xfd, 0x39, 0x77, 0xac, 0xcf, 0x17, 0x4e, 0xe9, + 0xf4, 0xc2, 0x29, 0xfd, 0xba, 0x70, 0x4a, 0xef, 0x1f, 0x07, 0x91, 0x0c, 0xf7, 0x1b, 0xd8, 0xe7, + 0xbb, 0xc4, 0x4f, 0x0f, 0x13, 0xc9, 0x5d, 0x9e, 0x06, 0xae, 0xa6, 0x27, 0xfa, 0xd7, 0xd5, 0x1f, + 0x82, 0x8f, 0x0a, 0xc4, 0xed, 0x80, 0xc8, 0xc3, 0x84, 0x89, 0xc6, 0x98, 0xfe, 0xab, 0x5f, 0xf9, + 0x17, 0x00, 0x00, 0xff, 0xff, 0x99, 0x77, 0x4b, 0x32, 0xb5, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -512,7 +514,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 +523,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 +532,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 +541,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 +591,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 +609,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 +627,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 +645,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 +654,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{ { @@ -673,7 +675,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "nft_transfer/v1/query.proto", + Metadata: "chainmain/nft_transfer/v1/query.proto", } func (m *QueryClassTraceRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/nft-transfer/types/query.pb.gw.go b/x/nft-transfer/types/query.pb.gw.go index 9087ffffd..677402706 100644 --- a/x/nft-transfer/types/query.pb.gw.go +++ b/x/nft-transfer/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: nft_transfer/v1/query.proto +// source: chainmain/nft_transfer/v1/query.proto /* Package types is a reverse proxy. diff --git a/x/nft-transfer/types/trace.pb.go b/x/nft-transfer/types/trace.pb.go index 477b5c1cd..aea627249 100644 --- a/x/nft-transfer/types/trace.pb.go +++ b/x/nft-transfer/types/trace.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: nft_transfer/v1/trace.proto +// source: chainmain/nft_transfer/v1/trace.proto package types @@ -36,7 +36,7 @@ func (m *ClassTrace) Reset() { *m = ClassTrace{} } func (m *ClassTrace) String() string { return proto.CompactTextString(m) } func (*ClassTrace) ProtoMessage() {} func (*ClassTrace) Descriptor() ([]byte, []int) { - return fileDescriptor_f4e6ac472424735f, []int{0} + return fileDescriptor_91c1263c16c2c549, []int{0} } func (m *ClassTrace) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,26 +80,28 @@ 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) } +func init() { + proto.RegisterFile("chainmain/nft_transfer/v1/trace.proto", fileDescriptor_91c1263c16c2c549) +} -var fileDescriptor_f4e6ac472424735f = []byte{ - // 196 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, +var fileDescriptor_91c1263c16c2c549 = []byte{ + // 204 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4d, 0xce, 0x48, 0xcc, + 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0xcf, 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, 0x92, 0x84, 0x2b, 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, 0x3b, 0xbf, 0x02, 0xe4, + 0x01, 0x5d, 0xb8, 0x07, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xce, 0x37, 0x06, 0x04, + 0x00, 0x00, 0xff, 0xff, 0x75, 0x94, 0x68, 0xd3, 0xe7, 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..4971af1a6 100644 --- a/x/nft-transfer/types/tx.pb.go +++ b/x/nft-transfer/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: nft_transfer/v1/tx.proto +// source: chainmain/nft_transfer/v1/tx.proto package types @@ -57,7 +57,7 @@ func (m *MsgTransfer) Reset() { *m = MsgTransfer{} } func (m *MsgTransfer) String() string { return proto.CompactTextString(m) } func (*MsgTransfer) ProtoMessage() {} func (*MsgTransfer) Descriptor() ([]byte, []int) { - return fileDescriptor_fa0f686d4218285d, []int{0} + return fileDescriptor_4846b6d0ed9279f9, []int{0} } func (m *MsgTransfer) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -94,7 +94,7 @@ func (m *MsgTransferResponse) Reset() { *m = MsgTransferResponse{} } func (m *MsgTransferResponse) String() string { return proto.CompactTextString(m) } func (*MsgTransferResponse) ProtoMessage() {} func (*MsgTransferResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_fa0f686d4218285d, []int{1} + return fileDescriptor_4846b6d0ed9279f9, []int{1} } func (m *MsgTransferResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -124,44 +124,47 @@ 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") -} - -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, + proto.RegisterType((*MsgTransfer)(nil), "chainmain.nft_transfer.v1.MsgTransfer") + proto.RegisterType((*MsgTransferResponse)(nil), "chainmain.nft_transfer.v1.MsgTransferResponse") +} + +func init() { + proto.RegisterFile("chainmain/nft_transfer/v1/tx.proto", fileDescriptor_4846b6d0ed9279f9) +} + +var fileDescriptor_4846b6d0ed9279f9 = []byte{ + // 481 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x52, 0x31, 0x6f, 0xd3, 0x4e, + 0x1c, 0xb5, 0xff, 0xe9, 0x3f, 0x75, 0x2e, 0x6a, 0x05, 0x07, 0xad, 0x9c, 0x00, 0x76, 0xe4, 0x01, + 0x65, 0xc9, 0x59, 0x29, 0x03, 0x52, 0x59, 0x50, 0x58, 0xc8, 0x50, 0x09, 0x59, 0x65, 0x61, 0x31, + 0xf6, 0xf9, 0x6a, 0x9f, 0x88, 0xef, 0xac, 0xbb, 0x4b, 0xd4, 0x7c, 0x03, 0x46, 0x3e, 0x42, 0x77, + 0xbe, 0x48, 0xc7, 0x8e, 0x4c, 0x11, 0x4a, 0x16, 0xe6, 0x7c, 0x02, 0xe4, 0xb3, 0x63, 0x92, 0x01, + 0x89, 0xc5, 0xbe, 0xf7, 0x7e, 0xef, 0x3d, 0xcb, 0xf7, 0x7b, 0xc0, 0xc3, 0x59, 0x44, 0x59, 0x1e, + 0x51, 0xe6, 0xb3, 0x1b, 0x15, 0x2a, 0x11, 0x31, 0x79, 0x43, 0x84, 0xbf, 0x18, 0xfb, 0xea, 0x16, + 0x15, 0x82, 0x2b, 0x0e, 0x7b, 0x8d, 0x06, 0xed, 0x6b, 0xd0, 0x62, 0xdc, 0x7f, 0x9a, 0xf2, 0x94, + 0x6b, 0x95, 0x5f, 0x9e, 0x2a, 0x43, 0xdf, 0xa5, 0x31, 0xf6, 0x31, 0x17, 0xc4, 0xc7, 0x33, 0x4a, + 0x98, 0x2a, 0xd3, 0xaa, 0x53, 0x25, 0xf0, 0xbe, 0xb7, 0x40, 0xf7, 0x4a, 0xa6, 0xd7, 0x75, 0x12, + 0x7c, 0x0d, 0xba, 0x92, 0xcf, 0x05, 0x26, 0x61, 0xc1, 0x85, 0xb2, 0xcd, 0x81, 0x39, 0xec, 0x4c, + 0xce, 0xb7, 0x2b, 0x17, 0x2e, 0xa3, 0x7c, 0x76, 0xe9, 0xed, 0x0d, 0xbd, 0x00, 0x54, 0xe8, 0x03, + 0x17, 0x0a, 0xbe, 0x05, 0xa7, 0xf5, 0x0c, 0x67, 0x11, 0x63, 0x64, 0x66, 0xff, 0xa7, 0xbd, 0xbd, + 0xed, 0xca, 0x3d, 0x3b, 0xf0, 0xd6, 0x73, 0x2f, 0x38, 0xa9, 0x88, 0x77, 0x15, 0x86, 0x3d, 0x60, + 0xe1, 0x59, 0x24, 0x65, 0x48, 0x13, 0xbb, 0x55, 0x7a, 0x83, 0x63, 0x8d, 0xa7, 0x09, 0x7c, 0x06, + 0x3a, 0x8a, 0x7f, 0x21, 0x2c, 0xa4, 0x89, 0xb4, 0x8f, 0x06, 0xad, 0x61, 0x27, 0xb0, 0x34, 0x31, + 0x4d, 0x24, 0x3c, 0x07, 0x6d, 0x49, 0x58, 0x42, 0x84, 0xfd, 0xbf, 0x76, 0xd5, 0x08, 0xf6, 0x81, + 0x25, 0x08, 0x26, 0x74, 0x41, 0x84, 0xdd, 0xd6, 0x93, 0x06, 0xc3, 0xcf, 0xe0, 0x54, 0xd1, 0x9c, + 0xf0, 0xb9, 0x0a, 0x33, 0x42, 0xd3, 0x4c, 0xd9, 0xc7, 0x03, 0x73, 0xd8, 0xbd, 0xe8, 0x23, 0x1a, + 0x63, 0x54, 0x5e, 0x18, 0xaa, 0xaf, 0x69, 0x31, 0x46, 0xef, 0xb5, 0x62, 0xf2, 0xe2, 0x7e, 0xe5, + 0x1a, 0x7f, 0xfe, 0xe6, 0xd0, 0xef, 0x05, 0x27, 0x35, 0x51, 0xa9, 0xe1, 0x14, 0x3c, 0xde, 0x29, + 0xca, 0xb7, 0x54, 0x51, 0x5e, 0xd8, 0xd6, 0xc0, 0x1c, 0x1e, 0x4d, 0x9e, 0x6f, 0x57, 0xae, 0x7d, + 0x18, 0xd2, 0x48, 0xbc, 0xe0, 0x51, 0xcd, 0x5d, 0xef, 0xa8, 0x4b, 0xeb, 0xeb, 0x9d, 0x6b, 0xfc, + 0xba, 0x73, 0x0d, 0xef, 0x0c, 0x3c, 0xd9, 0x5b, 0x56, 0x40, 0x64, 0xc1, 0x99, 0x24, 0x17, 0x14, + 0xb4, 0xae, 0x64, 0x0a, 0x63, 0x60, 0x35, 0x7b, 0x7c, 0x89, 0xfe, 0x5a, 0x15, 0xb4, 0x17, 0xd1, + 0x47, 0xff, 0xa6, 0xdb, 0x7d, 0x6a, 0xf2, 0xf1, 0x7e, 0xed, 0x98, 0x0f, 0x6b, 0xc7, 0xfc, 0xb9, + 0x76, 0xcc, 0x6f, 0x1b, 0xc7, 0x78, 0xd8, 0x38, 0xc6, 0x8f, 0x8d, 0x63, 0x7c, 0x7a, 0x93, 0x52, + 0x95, 0xcd, 0x63, 0x84, 0x79, 0xee, 0x63, 0xb1, 0x2c, 0x14, 0x1f, 0x71, 0x91, 0x8e, 0x74, 0xbc, + 0xaf, 0x9f, 0x23, 0x5d, 0xee, 0xdb, 0xb2, 0xde, 0xa3, 0xa6, 0xde, 0x6a, 0x59, 0x10, 0x19, 0xb7, + 0x75, 0x1b, 0x5f, 0xfd, 0x0e, 0x00, 0x00, 0xff, 0xff, 0x51, 0xb4, 0xe5, 0x18, 0x05, 0x03, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -190,7 +193,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 +228,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 +237,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{ { @@ -243,7 +246,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "nft_transfer/v1/tx.proto", + Metadata: "chainmain/nft_transfer/v1/tx.proto", } func (m *MsgTransfer) Marshal() (dAtA []byte, err error) { diff --git a/x/nft/types/genesis.pb.go b/x/nft/types/genesis.pb.go index 552c43005..57464a7da 100644 --- a/x/nft/types/genesis.pb.go +++ b/x/nft/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: nft/v1/genesis.proto +// source: chainmain/nft/v1/genesis.proto package types @@ -32,7 +32,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_ab00149a7d9d5d44, []int{0} + return fileDescriptor_c7bcdbf2aa0d3ba2, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -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) } +func init() { proto.RegisterFile("chainmain/nft/v1/genesis.proto", fileDescriptor_c7bcdbf2aa0d3ba2) } -var fileDescriptor_ab00149a7d9d5d44 = []byte{ - // 203 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, +var fileDescriptor_c7bcdbf2aa0d3ba2 = []byte{ + // 212 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xce, 0x48, 0xcc, + 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0xcf, 0x4b, 0x2b, 0xd1, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, + 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x80, 0xcb, 0xeb, 0xe5, + 0xa5, 0x95, 0xe8, 0x95, 0x19, 0x4a, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, 0x83, 0x25, 0xf5, 0x41, 0x2c, + 0x88, 0x3a, 0x29, 0x29, 0x0c, 0x73, 0x40, 0xca, 0xc1, 0x72, 0x4a, 0x21, 0x5c, 0x3c, 0xee, 0x10, + 0x43, 0x83, 0x4b, 0x12, 0x4b, 0x52, 0x85, 0x5c, 0xb8, 0xb8, 0x93, 0xf3, 0x73, 0x72, 0x52, 0x93, + 0x4b, 0x32, 0xf3, 0xf3, 0x8a, 0x25, 0x18, 0x15, 0x98, 0x35, 0xb8, 0x8d, 0x64, 0xf4, 0xd0, 0x6d, + 0xd2, 0x73, 0x86, 0x2b, 0x72, 0x62, 0x39, 0x71, 0x4f, 0x9e, 0x21, 0x08, 0x59, 0x9b, 0x93, 0xcf, + 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, + 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x19, 0xa5, 0x67, 0x96, 0x64, 0x94, + 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x27, 0x17, 0x55, 0x16, 0x94, 0xe4, 0xeb, 0xe6, 0x17, 0xa5, + 0xeb, 0x82, 0xcd, 0xd7, 0x07, 0x93, 0xba, 0x60, 0x87, 0x56, 0x80, 0x9d, 0x5a, 0x52, 0x59, 0x90, + 0x5a, 0x9c, 0xc4, 0x06, 0x76, 0xaa, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x67, 0xcb, 0xd3, 0x48, + 0x10, 0x01, 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..e0fe371a1 100644 --- a/x/nft/types/nft.pb.go +++ b/x/nft/types/nft.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: nft/v1/nft.proto +// source: chainmain/nft/v1/nft.proto package types @@ -36,7 +36,7 @@ func (m *BaseNFT) Reset() { *m = BaseNFT{} } func (m *BaseNFT) String() string { return proto.CompactTextString(m) } func (*BaseNFT) ProtoMessage() {} func (*BaseNFT) Descriptor() ([]byte, []int) { - return fileDescriptor_f935ea002f215618, []int{0} + return fileDescriptor_966228980714306f, []int{0} } func (m *BaseNFT) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ func (m *Denom) Reset() { *m = Denom{} } func (m *Denom) String() string { return proto.CompactTextString(m) } func (*Denom) ProtoMessage() {} func (*Denom) Descriptor() ([]byte, []int) { - return fileDescriptor_f935ea002f215618, []int{1} + return fileDescriptor_966228980714306f, []int{1} } func (m *Denom) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -117,7 +117,7 @@ func (m *IDCollection) Reset() { *m = IDCollection{} } func (m *IDCollection) String() string { return proto.CompactTextString(m) } func (*IDCollection) ProtoMessage() {} func (*IDCollection) Descriptor() ([]byte, []int) { - return fileDescriptor_f935ea002f215618, []int{2} + return fileDescriptor_966228980714306f, []int{2} } func (m *IDCollection) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -156,7 +156,7 @@ func (m *Owner) Reset() { *m = Owner{} } func (m *Owner) String() string { return proto.CompactTextString(m) } func (*Owner) ProtoMessage() {} func (*Owner) Descriptor() ([]byte, []int) { - return fileDescriptor_f935ea002f215618, []int{3} + return fileDescriptor_966228980714306f, []int{3} } func (m *Owner) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -195,7 +195,7 @@ func (m *Collection) Reset() { *m = Collection{} } func (m *Collection) String() string { return proto.CompactTextString(m) } func (*Collection) ProtoMessage() {} func (*Collection) Descriptor() ([]byte, []int) { - return fileDescriptor_f935ea002f215618, []int{4} + return fileDescriptor_966228980714306f, []int{4} } func (m *Collection) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -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) } +func init() { proto.RegisterFile("chainmain/nft/v1/nft.proto", fileDescriptor_966228980714306f) } -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, +var fileDescriptor_966228980714306f = []byte{ + // 493 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x93, 0xb1, 0x6e, 0xdb, 0x30, + 0x10, 0x86, 0x25, 0x5b, 0x8a, 0x63, 0x3a, 0x49, 0x0d, 0xd6, 0x68, 0x95, 0x0c, 0x52, 0x20, 0x74, + 0xc8, 0x62, 0x09, 0x76, 0xb6, 0x74, 0x53, 0x83, 0x00, 0x5e, 0xd2, 0x42, 0x48, 0x97, 0x2e, 0x06, + 0x23, 0x32, 0x36, 0x11, 0x4b, 0x34, 0x44, 0x3a, 0x89, 0xf7, 0x3e, 0x40, 0x87, 0x3e, 0x40, 0x1f, + 0xc7, 0x63, 0xc6, 0x4e, 0x42, 0x2b, 0x2f, 0x9d, 0xfd, 0x04, 0x05, 0x49, 0xc9, 0x30, 0x9a, 0xa5, + 0x8b, 0x7d, 0xf7, 0xdf, 0x1d, 0xfe, 0xef, 0x44, 0x12, 0x9c, 0x24, 0x53, 0x44, 0xb3, 0x14, 0xd1, + 0x2c, 0xcc, 0xee, 0x44, 0xf8, 0x30, 0x90, 0x7f, 0xc1, 0x3c, 0x67, 0x82, 0xc1, 0xee, 0xb6, 0x16, + 0x48, 0xf1, 0x61, 0x70, 0xd2, 0x9b, 0xb0, 0x09, 0x53, 0xc5, 0x50, 0x46, 0xba, 0xcf, 0x7f, 0x02, + 0xad, 0x08, 0x71, 0x72, 0x7d, 0x75, 0x03, 0x8f, 0x40, 0x83, 0x62, 0xc7, 0x3c, 0x35, 0xcf, 0xda, + 0x71, 0x83, 0x62, 0x08, 0x81, 0x95, 0xa1, 0x94, 0x38, 0x0d, 0xa5, 0xa8, 0x18, 0x1e, 0x83, 0xe6, + 0x22, 0xa7, 0x4e, 0x53, 0x4a, 0x51, 0xab, 0x2c, 0xbc, 0xe6, 0xe7, 0x78, 0x14, 0x4b, 0x4d, 0xb6, + 0x63, 0x24, 0x90, 0x63, 0xe9, 0x76, 0x19, 0xc3, 0x1e, 0xb0, 0xd9, 0x63, 0x46, 0x72, 0xc7, 0x56, + 0xa2, 0x4e, 0x2e, 0xac, 0x3f, 0x3f, 0x3c, 0xd3, 0x5f, 0x00, 0xfb, 0x92, 0x64, 0x2c, 0xfd, 0x2f, + 0xdf, 0x37, 0x60, 0x8f, 0x27, 0x53, 0x92, 0x22, 0x6d, 0x1d, 0x57, 0x19, 0x74, 0x40, 0x2b, 0xc9, + 0x09, 0x12, 0x2c, 0xaf, 0x7c, 0xeb, 0x14, 0x76, 0x35, 0xa9, 0x36, 0x96, 0x61, 0x65, 0xfb, 0x08, + 0x0e, 0x46, 0x97, 0x1f, 0xd8, 0x6c, 0x46, 0x12, 0x41, 0x59, 0x06, 0x03, 0xb0, 0x8f, 0x25, 0xc6, + 0xb8, 0x66, 0x88, 0x5e, 0x6f, 0x0a, 0xef, 0xd5, 0x12, 0xa5, 0xb3, 0x0b, 0xbf, 0xae, 0xf8, 0x71, + 0x4b, 0x85, 0x23, 0x0c, 0x07, 0xa0, 0x2d, 0xd8, 0x3d, 0xc9, 0xc6, 0x14, 0x73, 0xa7, 0x71, 0xda, + 0x3c, 0x6b, 0x47, 0xbd, 0x4d, 0xe1, 0x75, 0xf5, 0xc0, 0xb6, 0xe4, 0xc7, 0xfb, 0x2a, 0x1e, 0x61, + 0x5e, 0x19, 0x7f, 0x37, 0x81, 0xfd, 0x51, 0xee, 0x2f, 0xa1, 0x11, 0xc6, 0x39, 0xe1, 0xbc, 0xda, + 0xba, 0x4e, 0xe1, 0x3d, 0x38, 0xa2, 0x78, 0x9c, 0x6c, 0xe9, 0xb4, 0x43, 0x67, 0xe8, 0x06, 0xff, + 0x1e, 0x67, 0xb0, 0xbb, 0x44, 0xf4, 0x6e, 0x55, 0x78, 0x46, 0x59, 0x78, 0x87, 0xbb, 0x2a, 0xdf, + 0x14, 0x5e, 0x47, 0x63, 0x51, 0x9c, 0x70, 0x3f, 0x3e, 0xa4, 0x78, 0xa7, 0x5a, 0x61, 0x7d, 0x35, + 0x01, 0xd8, 0xf9, 0x1c, 0xe7, 0xc0, 0x56, 0x9b, 0x2a, 0xb2, 0xce, 0xf0, 0xed, 0x4b, 0x63, 0x75, + 0x68, 0x91, 0x25, 0x1d, 0x63, 0xdd, 0x0b, 0xdf, 0x03, 0x2b, 0xbb, 0x13, 0x35, 0xec, 0xf1, 0xcb, + 0x99, 0xea, 0x8a, 0x45, 0x07, 0x15, 0xa7, 0x75, 0x7d, 0x75, 0xc3, 0x63, 0x35, 0xa4, 0x31, 0xa2, + 0x4f, 0xab, 0xdf, 0xae, 0xb1, 0x2a, 0x5d, 0xf3, 0xb9, 0x74, 0xcd, 0x5f, 0xa5, 0x6b, 0x7e, 0x5b, + 0xbb, 0xc6, 0xf3, 0xda, 0x35, 0x7e, 0xae, 0x5d, 0xe3, 0xcb, 0x70, 0x42, 0xc5, 0x74, 0x71, 0x1b, + 0x24, 0x2c, 0x0d, 0x93, 0x7c, 0x39, 0x17, 0xac, 0xcf, 0xf2, 0x49, 0x5f, 0xf9, 0x84, 0xea, 0xb7, + 0xaf, 0x9e, 0xc1, 0x93, 0x7a, 0x08, 0x62, 0x39, 0x27, 0xfc, 0x76, 0x4f, 0x5d, 0xf0, 0xf3, 0xbf, + 0x01, 0x00, 0x00, 0xff, 0xff, 0x19, 0xf0, 0x08, 0xb1, 0x26, 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..aee40d232 100644 --- a/x/nft/types/query.pb.go +++ b/x/nft/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: nft/v1/query.proto +// source: chainmain/nft/v1/query.proto package types @@ -40,7 +40,7 @@ func (m *QuerySupplyRequest) Reset() { *m = QuerySupplyRequest{} } func (m *QuerySupplyRequest) String() string { return proto.CompactTextString(m) } func (*QuerySupplyRequest) ProtoMessage() {} func (*QuerySupplyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{0} + return fileDescriptor_1b19ecfbbaf95fad, []int{0} } func (m *QuerySupplyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -92,7 +92,7 @@ func (m *QuerySupplyResponse) Reset() { *m = QuerySupplyResponse{} } func (m *QuerySupplyResponse) String() string { return proto.CompactTextString(m) } func (*QuerySupplyResponse) ProtoMessage() {} func (*QuerySupplyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{1} + return fileDescriptor_1b19ecfbbaf95fad, []int{1} } func (m *QuerySupplyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -140,7 +140,7 @@ func (m *QueryOwnerRequest) Reset() { *m = QueryOwnerRequest{} } func (m *QueryOwnerRequest) String() string { return proto.CompactTextString(m) } func (*QueryOwnerRequest) ProtoMessage() {} func (*QueryOwnerRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{2} + return fileDescriptor_1b19ecfbbaf95fad, []int{2} } func (m *QueryOwnerRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -200,7 +200,7 @@ func (m *QueryOwnerResponse) Reset() { *m = QueryOwnerResponse{} } func (m *QueryOwnerResponse) String() string { return proto.CompactTextString(m) } func (*QueryOwnerResponse) ProtoMessage() {} func (*QueryOwnerResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{3} + return fileDescriptor_1b19ecfbbaf95fad, []int{3} } func (m *QueryOwnerResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -254,7 +254,7 @@ func (m *QueryCollectionRequest) Reset() { *m = QueryCollectionRequest{} func (m *QueryCollectionRequest) String() string { return proto.CompactTextString(m) } func (*QueryCollectionRequest) ProtoMessage() {} func (*QueryCollectionRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{4} + return fileDescriptor_1b19ecfbbaf95fad, []int{4} } func (m *QueryCollectionRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -307,7 +307,7 @@ func (m *QueryCollectionResponse) Reset() { *m = QueryCollectionResponse func (m *QueryCollectionResponse) String() string { return proto.CompactTextString(m) } func (*QueryCollectionResponse) ProtoMessage() {} func (*QueryCollectionResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{5} + return fileDescriptor_1b19ecfbbaf95fad, []int{5} } func (m *QueryCollectionResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -359,7 +359,7 @@ func (m *QueryDenomRequest) Reset() { *m = QueryDenomRequest{} } func (m *QueryDenomRequest) String() string { return proto.CompactTextString(m) } func (*QueryDenomRequest) ProtoMessage() {} func (*QueryDenomRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{6} + return fileDescriptor_1b19ecfbbaf95fad, []int{6} } func (m *QueryDenomRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -404,7 +404,7 @@ func (m *QueryDenomResponse) Reset() { *m = QueryDenomResponse{} } func (m *QueryDenomResponse) String() string { return proto.CompactTextString(m) } func (*QueryDenomResponse) ProtoMessage() {} func (*QueryDenomResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{7} + return fileDescriptor_1b19ecfbbaf95fad, []int{7} } func (m *QueryDenomResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -449,7 +449,7 @@ func (m *QueryDenomByNameRequest) Reset() { *m = QueryDenomByNameRequest func (m *QueryDenomByNameRequest) String() string { return proto.CompactTextString(m) } func (*QueryDenomByNameRequest) ProtoMessage() {} func (*QueryDenomByNameRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{8} + return fileDescriptor_1b19ecfbbaf95fad, []int{8} } func (m *QueryDenomByNameRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -494,7 +494,7 @@ func (m *QueryDenomByNameResponse) Reset() { *m = QueryDenomByNameRespon func (m *QueryDenomByNameResponse) String() string { return proto.CompactTextString(m) } func (*QueryDenomByNameResponse) ProtoMessage() {} func (*QueryDenomByNameResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{9} + return fileDescriptor_1b19ecfbbaf95fad, []int{9} } func (m *QueryDenomByNameResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -540,7 +540,7 @@ func (m *QueryDenomsRequest) Reset() { *m = QueryDenomsRequest{} } func (m *QueryDenomsRequest) String() string { return proto.CompactTextString(m) } func (*QueryDenomsRequest) ProtoMessage() {} func (*QueryDenomsRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{10} + return fileDescriptor_1b19ecfbbaf95fad, []int{10} } func (m *QueryDenomsRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -586,7 +586,7 @@ func (m *QueryDenomsResponse) Reset() { *m = QueryDenomsResponse{} } func (m *QueryDenomsResponse) String() string { return proto.CompactTextString(m) } func (*QueryDenomsResponse) ProtoMessage() {} func (*QueryDenomsResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{11} + return fileDescriptor_1b19ecfbbaf95fad, []int{11} } func (m *QueryDenomsResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -639,7 +639,7 @@ func (m *QueryNFTRequest) Reset() { *m = QueryNFTRequest{} } func (m *QueryNFTRequest) String() string { return proto.CompactTextString(m) } func (*QueryNFTRequest) ProtoMessage() {} func (*QueryNFTRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{12} + return fileDescriptor_1b19ecfbbaf95fad, []int{12} } func (m *QueryNFTRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -691,7 +691,7 @@ func (m *QueryNFTResponse) Reset() { *m = QueryNFTResponse{} } func (m *QueryNFTResponse) String() string { return proto.CompactTextString(m) } func (*QueryNFTResponse) ProtoMessage() {} func (*QueryNFTResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_b4fc1e9935801bfe, []int{13} + return fileDescriptor_1b19ecfbbaf95fad, []int{13} } func (m *QueryNFTResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -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") -} - -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, + 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("chainmain/nft/v1/query.proto", fileDescriptor_1b19ecfbbaf95fad) } + +var fileDescriptor_1b19ecfbbaf95fad = []byte{ + // 867 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x4f, 0x6f, 0x3a, 0x45, + 0x18, 0xc7, 0x19, 0xf8, 0x01, 0xed, 0xd4, 0xa4, 0xed, 0xf4, 0x1f, 0xae, 0x15, 0x70, 0xec, 0x1f, + 0xa8, 0xb2, 0x1b, 0x6a, 0xbd, 0x18, 0x4f, 0xd4, 0xa0, 0x4d, 0x4c, 0xab, 0x6b, 0x4f, 0x8d, 0x89, + 0x59, 0x60, 0xd9, 0x12, 0xd9, 0x99, 0x2d, 0xbb, 0x54, 0x49, 0x6d, 0x4c, 0xbc, 0xea, 0xa1, 0x89, + 0xe9, 0xdd, 0x93, 0x6f, 0xc0, 0x37, 0xd1, 0x63, 0x13, 0x2f, 0x9e, 0x88, 0xa1, 0xbe, 0x82, 0xbe, + 0x02, 0x33, 0x7f, 0xb6, 0xec, 0xb2, 0x40, 0x1b, 0xd2, 0xdb, 0xec, 0xce, 0x77, 0x9e, 0xe7, 0x33, + 0x5f, 0x9e, 0xe7, 0x59, 0xe0, 0x66, 0xfd, 0xdc, 0x68, 0x11, 0xdb, 0x68, 0x11, 0x8d, 0x34, 0x3d, + 0xed, 0xb2, 0xac, 0x5d, 0x74, 0xcd, 0x4e, 0x4f, 0x75, 0x3a, 0xd4, 0xa3, 0x68, 0xe9, 0x69, 0x57, + 0x25, 0x4d, 0x4f, 0xbd, 0x2c, 0x2b, 0xab, 0x16, 0xb5, 0x28, 0xdf, 0xd4, 0xd8, 0x4a, 0xe8, 0x94, + 0x4d, 0x8b, 0x52, 0xab, 0x6d, 0x6a, 0x86, 0xd3, 0xd2, 0x0c, 0x42, 0xa8, 0x67, 0x78, 0x2d, 0x4a, + 0x5c, 0xb9, 0xab, 0x44, 0x72, 0xb0, 0x60, 0x62, 0x6f, 0xaf, 0x4e, 0x5d, 0x9b, 0xba, 0x5a, 0xcd, + 0x70, 0x4d, 0x91, 0x5a, 0xbb, 0x2c, 0xd7, 0x4c, 0xcf, 0x28, 0x6b, 0x8e, 0x61, 0xb5, 0x08, 0x0f, + 0x24, 0xb4, 0xf8, 0x0c, 0xa2, 0xaf, 0x99, 0xe2, 0x9b, 0xae, 0xe3, 0xb4, 0x7b, 0xba, 0x79, 0xd1, + 0x35, 0x5d, 0x0f, 0xa9, 0x70, 0xae, 0x61, 0x12, 0x6a, 0x7f, 0xd7, 0x6a, 0x64, 0x40, 0x1e, 0x14, + 0xe6, 0x2b, 0x2b, 0x8f, 0xfd, 0xdc, 0x62, 0xcf, 0xb0, 0xdb, 0x9f, 0x60, 0x7f, 0x07, 0xeb, 0x69, + 0xbe, 0x3c, 0x6a, 0xa0, 0x55, 0x98, 0xa4, 0x3f, 0x10, 0xb3, 0x93, 0x89, 0x33, 0xb1, 0x2e, 0x1e, + 0x70, 0x09, 0xae, 0x84, 0x62, 0xbb, 0x0e, 0x25, 0xae, 0x89, 0xd6, 0x61, 0xca, 0xb0, 0x69, 0x97, + 0x78, 0x3c, 0xf4, 0x1b, 0x5d, 0x3e, 0xe1, 0xbf, 0x00, 0x5c, 0xe6, 0xfa, 0x13, 0x76, 0x7a, 0x56, + 0x94, 0x9d, 0x10, 0x4a, 0x65, 0xe9, 0xb1, 0x9f, 0x7b, 0x4b, 0x88, 0x05, 0x94, 0x84, 0x43, 0x55, + 0x08, 0x87, 0x66, 0x64, 0x12, 0x79, 0x50, 0x58, 0xd8, 0xdf, 0x51, 0x85, 0x73, 0x2a, 0x73, 0x4e, + 0x15, 0x3f, 0x9a, 0x74, 0x4e, 0xfd, 0xca, 0xb0, 0x4c, 0xc9, 0xa4, 0x07, 0x4e, 0xe2, 0xdf, 0x80, + 0x74, 0x50, 0x52, 0xcb, 0x4b, 0x96, 0x7c, 0x0c, 0xc0, 0x23, 0x6f, 0xa8, 0xa3, 0xbf, 0xba, 0x2a, + 0xf4, 0x92, 0xe6, 0xf3, 0x10, 0x4d, 0x9c, 0x9f, 0xd9, 0x7d, 0x96, 0x46, 0xe4, 0x0a, 0xe1, 0xdc, + 0x00, 0xb8, 0xce, 0x71, 0x0e, 0x69, 0xbb, 0x6d, 0xd6, 0xd9, 0xbb, 0x59, 0x9d, 0xac, 0x8e, 0x61, + 0x9a, 0xc5, 0xa1, 0x3f, 0x00, 0xdc, 0x88, 0x20, 0x49, 0x9b, 0x3e, 0x85, 0xb0, 0xfe, 0xf4, 0x56, + 0x7a, 0xb5, 0x19, 0xf5, 0x2a, 0x70, 0x32, 0xa0, 0x7f, 0x3d, 0xd7, 0x0e, 0x65, 0xe5, 0x7d, 0xc6, + 0xae, 0x3e, 0xa3, 0x5f, 0xf8, 0x50, 0x16, 0x82, 0x0c, 0x32, 0x2c, 0x04, 0x2e, 0x98, 0x5c, 0x08, + 0x42, 0x2f, 0x54, 0xf8, 0x44, 0x7a, 0xc5, 0x5f, 0x56, 0x7a, 0xc7, 0x86, 0xed, 0x7b, 0x8a, 0x0e, + 0x20, 0x14, 0x59, 0x89, 0x61, 0x9b, 0x92, 0x68, 0xed, 0xb1, 0x9f, 0x5b, 0x0e, 0x12, 0xb1, 0x3d, + 0xac, 0xcf, 0xf3, 0x07, 0x76, 0x18, 0x1f, 0xc1, 0x4c, 0x34, 0xe0, 0x6c, 0x6c, 0xdf, 0x06, 0x2f, + 0xe8, 0xfa, 0x58, 0xe1, 0x32, 0x01, 0x33, 0x97, 0xc9, 0x2d, 0x90, 0xe3, 0xc2, 0x0f, 0x2f, 0x21, + 0x3f, 0x86, 0x29, 0x9e, 0xde, 0xcd, 0x80, 0x7c, 0x62, 0x0a, 0x65, 0xe5, 0xcd, 0x5d, 0x3f, 0x17, + 0xd3, 0xa5, 0xf8, 0xf5, 0x6a, 0xe3, 0x02, 0x2e, 0x72, 0xac, 0xe3, 0xea, 0xe9, 0xac, 0x9d, 0xa4, + 0xc2, 0x39, 0x8f, 0x7e, 0x6f, 0x12, 0xa6, 0x8f, 0x8f, 0xea, 0xfd, 0x1d, 0xac, 0xa7, 0xf9, 0xf2, + 0xa8, 0x81, 0xbf, 0x80, 0x4b, 0xc3, 0x94, 0xd2, 0x86, 0x03, 0x98, 0x20, 0x4d, 0x4f, 0xfa, 0xfb, + 0x76, 0xd4, 0x83, 0x8a, 0xe1, 0x9a, 0xc7, 0xd5, 0xd3, 0x4a, 0x7a, 0xd0, 0xcf, 0x25, 0xd8, 0x41, + 0x26, 0xdf, 0xff, 0x33, 0x0d, 0x93, 0x3c, 0x14, 0xfa, 0x15, 0xc0, 0x94, 0x18, 0xc4, 0x68, 0x2b, + 0x7a, 0x3a, 0xfa, 0x0d, 0x50, 0xb6, 0x9f, 0x51, 0x09, 0x2e, 0x7c, 0xf0, 0xcb, 0xdf, 0xff, 0xfd, + 0x1e, 0x57, 0xd1, 0x87, 0x5a, 0xf8, 0x8b, 0x34, 0x6c, 0x53, 0x57, 0xbb, 0xf2, 0x3d, 0xb9, 0xd6, + 0x5c, 0x81, 0x40, 0x61, 0x92, 0xcf, 0x3f, 0xf4, 0xfe, 0x84, 0x2c, 0xc1, 0x6f, 0x80, 0xb2, 0x35, + 0x5d, 0x24, 0x49, 0xde, 0xe1, 0x24, 0x6b, 0x68, 0x65, 0x84, 0x84, 0x34, 0x3d, 0x17, 0xdd, 0x00, + 0x08, 0x87, 0x53, 0x04, 0x15, 0x26, 0x44, 0x8c, 0x4c, 0x4d, 0xa5, 0xf8, 0x02, 0xa5, 0x04, 0x28, + 0x71, 0x80, 0x5d, 0xb4, 0xfd, 0x22, 0x2b, 0xd0, 0x4f, 0x30, 0xc9, 0x0b, 0x77, 0xa2, 0x07, 0xc1, + 0x69, 0x34, 0xd1, 0x83, 0xd0, 0xb4, 0xc1, 0x05, 0x8e, 0x80, 0x51, 0x7e, 0x04, 0x41, 0x34, 0x45, + 0x30, 0xfb, 0x2d, 0x80, 0x0b, 0x81, 0x99, 0x80, 0x8a, 0xd3, 0xe2, 0x87, 0x06, 0x91, 0xb2, 0xf7, + 0x12, 0xa9, 0x04, 0xd2, 0x38, 0x50, 0x11, 0xed, 0x8e, 0x07, 0x62, 0xe3, 0xca, 0xa7, 0x62, 0xeb, + 0x6b, 0xe4, 0xc1, 0x94, 0x18, 0x00, 0x68, 0xea, 0x8d, 0xdd, 0xe7, 0xca, 0x34, 0x3c, 0x45, 0xf0, + 0xbb, 0x9c, 0x63, 0x03, 0xad, 0x8d, 0xe5, 0x40, 0x3f, 0x43, 0xd6, 0x33, 0xe8, 0xbd, 0x09, 0xc1, + 0x86, 0xbd, 0xaf, 0xe0, 0x69, 0x12, 0x99, 0xac, 0xcc, 0x93, 0x7d, 0x80, 0x8a, 0x63, 0x2a, 0x31, + 0xd8, 0x0c, 0x57, 0x7e, 0xef, 0x5f, 0x57, 0xbe, 0xbc, 0x1b, 0x64, 0xc1, 0xfd, 0x20, 0x0b, 0xfe, + 0x1d, 0x64, 0xc1, 0xcd, 0x43, 0x36, 0x76, 0xff, 0x90, 0x8d, 0xfd, 0xf3, 0x90, 0x8d, 0x9d, 0xed, + 0x5b, 0x2d, 0xef, 0xbc, 0x5b, 0x53, 0xeb, 0xd4, 0xd6, 0xea, 0x9d, 0x9e, 0xe3, 0xd1, 0x12, 0xed, + 0x58, 0x25, 0x1e, 0x59, 0xc4, 0x2f, 0xf1, 0x04, 0x3f, 0xf2, 0x14, 0x5e, 0xcf, 0x31, 0xdd, 0x5a, + 0x8a, 0xff, 0xb9, 0xfb, 0xe8, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0xac, 0xd5, 0x5e, 0xa9, 0x8a, + 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{ { @@ -1111,7 +1112,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "nft/v1/query.proto", + Metadata: "chainmain/nft/v1/query.proto", } func (m *QuerySupplyRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/nft/types/query.pb.gw.go b/x/nft/types/query.pb.gw.go index eedbba9b2..27710ecf9 100644 --- a/x/nft/types/query.pb.gw.go +++ b/x/nft/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: nft/v1/query.proto +// source: chainmain/nft/v1/query.proto /* Package types is a reverse proxy. diff --git a/x/nft/types/tx.pb.go b/x/nft/types/tx.pb.go index c54d8201b..d0a2bd2af 100644 --- a/x/nft/types/tx.pb.go +++ b/x/nft/types/tx.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: nft/v1/tx.proto +// source: chainmain/nft/v1/tx.proto package types @@ -41,7 +41,7 @@ func (m *MsgIssueDenom) Reset() { *m = MsgIssueDenom{} } func (m *MsgIssueDenom) String() string { return proto.CompactTextString(m) } func (*MsgIssueDenom) ProtoMessage() {} func (*MsgIssueDenom) Descriptor() ([]byte, []int) { - return fileDescriptor_714f8ececec76715, []int{0} + return fileDescriptor_9d722a64876019cc, []int{0} } func (m *MsgIssueDenom) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -78,7 +78,7 @@ func (m *MsgIssueDenomResponse) Reset() { *m = MsgIssueDenomResponse{} } func (m *MsgIssueDenomResponse) String() string { return proto.CompactTextString(m) } func (*MsgIssueDenomResponse) ProtoMessage() {} func (*MsgIssueDenomResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_714f8ececec76715, []int{1} + return fileDescriptor_9d722a64876019cc, []int{1} } func (m *MsgIssueDenomResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -119,7 +119,7 @@ func (m *MsgTransferNFT) Reset() { *m = MsgTransferNFT{} } func (m *MsgTransferNFT) String() string { return proto.CompactTextString(m) } func (*MsgTransferNFT) ProtoMessage() {} func (*MsgTransferNFT) Descriptor() ([]byte, []int) { - return fileDescriptor_714f8ececec76715, []int{2} + return fileDescriptor_9d722a64876019cc, []int{2} } func (m *MsgTransferNFT) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -156,7 +156,7 @@ func (m *MsgTransferNFTResponse) Reset() { *m = MsgTransferNFTResponse{} func (m *MsgTransferNFTResponse) String() string { return proto.CompactTextString(m) } func (*MsgTransferNFTResponse) ProtoMessage() {} func (*MsgTransferNFTResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_714f8ececec76715, []int{3} + return fileDescriptor_9d722a64876019cc, []int{3} } func (m *MsgTransferNFTResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -199,7 +199,7 @@ func (m *MsgEditNFT) Reset() { *m = MsgEditNFT{} } func (m *MsgEditNFT) String() string { return proto.CompactTextString(m) } func (*MsgEditNFT) ProtoMessage() {} func (*MsgEditNFT) Descriptor() ([]byte, []int) { - return fileDescriptor_714f8ececec76715, []int{4} + return fileDescriptor_9d722a64876019cc, []int{4} } func (m *MsgEditNFT) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -236,7 +236,7 @@ func (m *MsgEditNFTResponse) Reset() { *m = MsgEditNFTResponse{} } func (m *MsgEditNFTResponse) String() string { return proto.CompactTextString(m) } func (*MsgEditNFTResponse) ProtoMessage() {} func (*MsgEditNFTResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_714f8ececec76715, []int{5} + return fileDescriptor_9d722a64876019cc, []int{5} } func (m *MsgEditNFTResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -280,7 +280,7 @@ func (m *MsgMintNFT) Reset() { *m = MsgMintNFT{} } func (m *MsgMintNFT) String() string { return proto.CompactTextString(m) } func (*MsgMintNFT) ProtoMessage() {} func (*MsgMintNFT) Descriptor() ([]byte, []int) { - return fileDescriptor_714f8ececec76715, []int{6} + return fileDescriptor_9d722a64876019cc, []int{6} } func (m *MsgMintNFT) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -317,7 +317,7 @@ func (m *MsgMintNFTResponse) Reset() { *m = MsgMintNFTResponse{} } func (m *MsgMintNFTResponse) String() string { return proto.CompactTextString(m) } func (*MsgMintNFTResponse) ProtoMessage() {} func (*MsgMintNFTResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_714f8ececec76715, []int{7} + return fileDescriptor_9d722a64876019cc, []int{7} } func (m *MsgMintNFTResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -357,7 +357,7 @@ func (m *MsgBurnNFT) Reset() { *m = MsgBurnNFT{} } func (m *MsgBurnNFT) String() string { return proto.CompactTextString(m) } func (*MsgBurnNFT) ProtoMessage() {} func (*MsgBurnNFT) Descriptor() ([]byte, []int) { - return fileDescriptor_714f8ececec76715, []int{8} + return fileDescriptor_9d722a64876019cc, []int{8} } func (m *MsgBurnNFT) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -394,7 +394,7 @@ func (m *MsgBurnNFTResponse) Reset() { *m = MsgBurnNFTResponse{} } func (m *MsgBurnNFTResponse) String() string { return proto.CompactTextString(m) } func (*MsgBurnNFTResponse) ProtoMessage() {} func (*MsgBurnNFTResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_714f8ececec76715, []int{9} + return fileDescriptor_9d722a64876019cc, []int{9} } func (m *MsgBurnNFTResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -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") -} - -func init() { proto.RegisterFile("nft/v1/tx.proto", fileDescriptor_714f8ececec76715) } - -var fileDescriptor_714f8ececec76715 = []byte{ - // 514 bytes of a gzipped FileDescriptorProto + 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("chainmain/nft/v1/tx.proto", fileDescriptor_9d722a64876019cc) } + +var fileDescriptor_9d722a64876019cc = []byte{ + // 530 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, + 0x14, 0xc7, 0xe3, 0x38, 0x24, 0xf4, 0x21, 0x4a, 0x75, 0x94, 0xe2, 0x46, 0x95, 0x53, 0x59, 0x48, + 0x74, 0x89, 0xad, 0x96, 0xad, 0x63, 0x04, 0x48, 0x19, 0x8c, 0x50, 0x54, 0x90, 0x60, 0x41, 0xae, + 0x7d, 0x71, 0x0e, 0xe1, 0xb3, 0x75, 0x77, 0xa9, 0x1a, 0xf1, 0x15, 0x18, 0xf8, 0x08, 0x2c, 0x8c, + 0x7c, 0x8f, 0x4a, 0x2c, 0x1d, 0x99, 0x2a, 0x48, 0x16, 0x66, 0x3e, 0x01, 0xca, 0xf9, 0x9c, 0x9e, + 0x83, 0x4b, 0x16, 0x90, 0xba, 0x58, 0xcf, 0xef, 0xbd, 0x7b, 0xf7, 0xfb, 0xbf, 0x77, 0x77, 0xb0, + 0x1d, 0x8e, 0x02, 0x42, 0x93, 0x80, 0x50, 0x8f, 0x0e, 0x85, 0x77, 0xb2, 0xef, 0x89, 0x53, 0x37, + 0x63, 0xa9, 0x48, 0xd1, 0xc6, 0x22, 0xe4, 0xd2, 0xa1, 0x70, 0x4f, 0xf6, 0xdb, 0x9b, 0x71, 0x1a, + 0xa7, 0x32, 0xe8, 0xcd, 0xad, 0x3c, 0xcf, 0x79, 0x0f, 0xb7, 0x7d, 0x1e, 0xf7, 0x39, 0x1f, 0xe3, + 0xc7, 0x98, 0xa6, 0x09, 0x5a, 0x87, 0x3a, 0x89, 0x2c, 0x63, 0xd7, 0xd8, 0x5b, 0x1b, 0xd4, 0x49, + 0x84, 0x10, 0x34, 0x68, 0x90, 0x60, 0xab, 0x2e, 0x3d, 0xd2, 0x46, 0x5b, 0xd0, 0xe4, 0xe1, 0x08, + 0x27, 0x81, 0x65, 0x4a, 0xaf, 0xfa, 0x93, 0x7e, 0x4c, 0x23, 0xcc, 0xac, 0x86, 0xf2, 0xcb, 0x3f, + 0xb4, 0x01, 0xe6, 0x98, 0x11, 0xeb, 0x86, 0x74, 0xce, 0xcd, 0xc3, 0xc6, 0xcf, 0x4f, 0x1d, 0xc3, + 0xb9, 0x0f, 0xf7, 0x4a, 0x9b, 0x0f, 0x30, 0xcf, 0x52, 0xca, 0xb1, 0xf3, 0xc1, 0x80, 0x75, 0x9f, + 0xc7, 0x47, 0x2c, 0xa0, 0x7c, 0x88, 0xd9, 0xb3, 0xa7, 0x47, 0x7f, 0x70, 0xb9, 0x70, 0x33, 0x9a, + 0xaf, 0x79, 0x43, 0xa2, 0x9c, 0xad, 0x77, 0xf7, 0xd7, 0x45, 0xe7, 0xce, 0x24, 0x48, 0xde, 0x1d, + 0x3a, 0x45, 0xc4, 0x19, 0xb4, 0xa4, 0xd9, 0x8f, 0x34, 0x36, 0xb3, 0xc4, 0xb6, 0x03, 0x6b, 0x0c, + 0x87, 0x24, 0x23, 0x98, 0x0a, 0x85, 0x7d, 0xe9, 0x50, 0x9c, 0x16, 0x6c, 0x95, 0x69, 0x16, 0xa0, + 0x5f, 0x0c, 0x00, 0x9f, 0xc7, 0x4f, 0x22, 0x22, 0xfe, 0x05, 0x64, 0xd1, 0x6c, 0x53, 0x6b, 0xf6, + 0x76, 0xde, 0x3c, 0x89, 0xd6, 0x6b, 0x4d, 0x2f, 0x3a, 0xe6, 0x8b, 0x41, 0x5f, 0x76, 0x71, 0x9e, + 0x1e, 0x05, 0x22, 0x50, 0x8d, 0x95, 0xb6, 0xa6, 0xb3, 0xa9, 0xeb, 0x54, 0x4a, 0x36, 0x01, 0x5d, + 0xe2, 0x2e, 0x54, 0x7c, 0xcd, 0x55, 0xf8, 0x84, 0x5e, 0x73, 0x15, 0xe5, 0x69, 0xb5, 0xaa, 0xa7, + 0x95, 0x6b, 0x54, 0x62, 0x16, 0x1a, 0xdf, 0x4a, 0x89, 0xbd, 0x31, 0xa3, 0xff, 0xf1, 0x34, 0x95, + 0x08, 0xd4, 0x5e, 0x05, 0xc1, 0xc1, 0x67, 0x13, 0x4c, 0x9f, 0xc7, 0xe8, 0x25, 0x80, 0x76, 0xdf, + 0x3a, 0xee, 0xf2, 0x4d, 0x75, 0x4b, 0x77, 0xa2, 0xfd, 0x70, 0x45, 0x42, 0x51, 0x1f, 0xf9, 0xd0, + 0x2a, 0x26, 0xb8, 0x53, 0xb9, 0x46, 0x45, 0xdb, 0x0f, 0xfe, 0x16, 0xd5, 0xcb, 0x15, 0xc7, 0xba, + 0xba, 0x9c, 0x8a, 0x5e, 0x51, 0x6e, 0xe9, 0x8c, 0xa1, 0x57, 0x70, 0x4b, 0xbf, 0xce, 0xbb, 0x95, + 0x8b, 0xb4, 0x8c, 0xf6, 0xde, 0xaa, 0x0c, 0x9d, 0xb4, 0x98, 0x6b, 0x35, 0xa9, 0x8a, 0x5e, 0x41, + 0xba, 0x34, 0xa7, 0xde, 0xf3, 0xb3, 0x1f, 0x76, 0xed, 0x6c, 0x6a, 0x1b, 0xe7, 0x53, 0xdb, 0xf8, + 0x3e, 0xb5, 0x8d, 0x8f, 0x33, 0xbb, 0x76, 0x3e, 0xb3, 0x6b, 0xdf, 0x66, 0x76, 0xed, 0xf5, 0x41, + 0x4c, 0xc4, 0x68, 0x7c, 0xec, 0x86, 0x69, 0xe2, 0x85, 0x6c, 0x92, 0x89, 0xb4, 0x9b, 0xb2, 0xb8, + 0x2b, 0x0b, 0x7b, 0xf2, 0xdb, 0x95, 0x0f, 0xf2, 0xa9, 0x7c, 0x92, 0xc5, 0x24, 0xc3, 0xfc, 0xb8, + 0x29, 0xdf, 0xda, 0x47, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xa8, 0x79, 0xb4, 0x88, 0xb0, 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{ { @@ -887,7 +888,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "nft/v1/tx.proto", + Metadata: "chainmain/nft/v1/tx.proto", } func (m *MsgIssueDenom) Marshal() (dAtA []byte, err error) { diff --git a/x/supply/types/accounts.pb.go b/x/supply/types/accounts.pb.go index 769d671f8..711158928 100644 --- a/x/supply/types/accounts.pb.go +++ b/x/supply/types/accounts.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: supply/v1/accounts.proto +// source: chainmain/supply/v1/accounts.proto package types @@ -32,7 +32,7 @@ func (m *VestingAccounts) Reset() { *m = VestingAccounts{} } func (m *VestingAccounts) String() string { return proto.CompactTextString(m) } func (*VestingAccounts) ProtoMessage() {} func (*VestingAccounts) Descriptor() ([]byte, []int) { - return fileDescriptor_743399cf14988530, []int{0} + return fileDescriptor_7cfb94ff8b239338, []int{0} } func (m *VestingAccounts) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -69,24 +69,27 @@ 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) } +func init() { + proto.RegisterFile("chainmain/supply/v1/accounts.proto", fileDescriptor_7cfb94ff8b239338) +} -var fileDescriptor_743399cf14988530 = []byte{ - // 170 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, +var fileDescriptor_7cfb94ff8b239338 = []byte{ + // 179 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4a, 0xce, 0x48, 0xcc, + 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0x2f, 0x2e, 0x2d, 0x28, 0xc8, 0xa9, 0xd4, 0x2f, 0x33, 0xd4, + 0x4f, 0x4c, 0x4e, 0xce, 0x2f, 0xcd, 0x2b, 0x29, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, + 0x86, 0xab, 0xd1, 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, 0x76, 0x60, 0x05, 0xcc, 0x89, 0x25, 0x95, 0x05, 0xa9, 0xc5, + 0x49, 0x6c, 0x60, 0xd7, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xc4, 0x0b, 0x18, 0xc1, 0xc3, + 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..f80c116d4 100644 --- a/x/supply/types/genesis.pb.go +++ b/x/supply/types/genesis.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: supply/v1/genesis.proto +// source: chainmain/supply/v1/genesis.proto package types @@ -33,7 +33,7 @@ func (m *GenesisState) Reset() { *m = GenesisState{} } func (m *GenesisState) String() string { return proto.CompactTextString(m) } func (*GenesisState) ProtoMessage() {} func (*GenesisState) Descriptor() ([]byte, []int) { - return fileDescriptor_45d381ad7d51733b, []int{0} + return fileDescriptor_7609f4b7b8388ce6, []int{0} } func (m *GenesisState) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -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) } +func init() { proto.RegisterFile("chainmain/supply/v1/genesis.proto", fileDescriptor_7609f4b7b8388ce6) } -var fileDescriptor_45d381ad7d51733b = []byte{ - // 145 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, +var fileDescriptor_7609f4b7b8388ce6 = []byte{ + // 154 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4c, 0xce, 0x48, 0xcc, + 0xcc, 0xcb, 0x4d, 0xcc, 0xcc, 0xd3, 0x2f, 0x2e, 0x2d, 0x28, 0xc8, 0xa9, 0xd4, 0x2f, 0x33, 0xd4, + 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x86, + 0x2b, 0xd1, 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, 0x6c, 0x7d, 0x05, + 0xcc, 0x01, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0xcb, 0x8d, 0x01, 0x01, 0x00, 0x00, + 0xff, 0xff, 0x39, 0x49, 0x0b, 0x59, 0xa1, 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..54b77ce12 100644 --- a/x/supply/types/query.pb.go +++ b/x/supply/types/query.pb.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-gogo. DO NOT EDIT. -// source: supply/v1/query.proto +// source: chainmain/supply/v1/query.proto package types @@ -40,7 +40,7 @@ func (m *SupplyRequest) Reset() { *m = SupplyRequest{} } func (m *SupplyRequest) String() string { return proto.CompactTextString(m) } func (*SupplyRequest) ProtoMessage() {} func (*SupplyRequest) Descriptor() ([]byte, []int) { - return fileDescriptor_64cd1add7eb523c6, []int{0} + return fileDescriptor_f169a8ce271fb0e1, []int{0} } func (m *SupplyRequest) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -80,7 +80,7 @@ func (m *SupplyResponse) Reset() { *m = SupplyResponse{} } func (m *SupplyResponse) String() string { return proto.CompactTextString(m) } func (*SupplyResponse) ProtoMessage() {} func (*SupplyResponse) Descriptor() ([]byte, []int) { - return fileDescriptor_64cd1add7eb523c6, []int{1} + return fileDescriptor_f169a8ce271fb0e1, []int{1} } func (m *SupplyResponse) XXX_Unmarshal(b []byte) error { return m.Unmarshal(b) @@ -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") -} - -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, + proto.RegisterType((*SupplyRequest)(nil), "chainmain.supply.v1.SupplyRequest") + proto.RegisterType((*SupplyResponse)(nil), "chainmain.supply.v1.SupplyResponse") +} + +func init() { proto.RegisterFile("chainmain/supply/v1/query.proto", fileDescriptor_f169a8ce271fb0e1) } + +var fileDescriptor_f169a8ce271fb0e1 = []byte{ + // 366 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x91, 0xbf, 0x4e, 0xeb, 0x30, + 0x14, 0xc6, 0x93, 0x56, 0xb7, 0x43, 0x7a, 0xff, 0x48, 0xb9, 0x77, 0xb8, 0x84, 0x92, 0xa2, 0x74, + 0xe9, 0x12, 0x9b, 0x14, 0xf1, 0x02, 0x65, 0x45, 0x42, 0x14, 0x26, 0x36, 0x27, 0xb5, 0x52, 0x8b, + 0xd4, 0x27, 0x8d, 0x9d, 0x8a, 0x20, 0x26, 0x06, 0xc4, 0x88, 0xc4, 0x5b, 0xf0, 0x24, 0x1d, 0x2b, + 0xb1, 0x30, 0x01, 0x6a, 0x79, 0x10, 0x14, 0x3b, 0x45, 0x20, 0x55, 0x4c, 0x4c, 0x3e, 0x3a, 0x3e, + 0xe7, 0xfb, 0x7e, 0xfe, 0x6c, 0xb5, 0xa3, 0x11, 0x61, 0x7c, 0x4c, 0x18, 0xc7, 0x22, 0x4f, 0xd3, + 0xa4, 0xc0, 0xd3, 0x00, 0x4f, 0x72, 0x9a, 0x15, 0x28, 0xcd, 0x40, 0x82, 0xfd, 0xf7, 0x7d, 0x00, + 0xe9, 0x01, 0x34, 0x0d, 0x1c, 0x37, 0x02, 0x31, 0x06, 0x81, 0x43, 0x22, 0x28, 0x9e, 0x06, 0x21, + 0x95, 0x24, 0xc0, 0x11, 0x30, 0xae, 0x97, 0x9c, 0x7f, 0x31, 0xc4, 0xa0, 0x4a, 0x5c, 0x56, 0x55, + 0xb7, 0x15, 0x03, 0xc4, 0x09, 0xc5, 0x24, 0x65, 0x98, 0x70, 0x0e, 0x92, 0x48, 0x06, 0x5c, 0xe8, + 0x5b, 0xef, 0x8f, 0xf5, 0xeb, 0x58, 0x19, 0x0c, 0xe8, 0x24, 0xa7, 0x42, 0x7a, 0xb9, 0xf5, 0x7b, + 0xd5, 0x10, 0x29, 0x70, 0x41, 0xed, 0xc8, 0x6a, 0x68, 0x86, 0xff, 0xe6, 0x76, 0xbd, 0xdb, 0xec, + 0x6d, 0x20, 0xcd, 0x81, 0x4a, 0x0e, 0x54, 0x71, 0xa0, 0x7d, 0x60, 0xbc, 0xbf, 0x33, 0x7b, 0x6a, + 0x1b, 0xf7, 0xcf, 0xed, 0x6e, 0xcc, 0xe4, 0x28, 0x0f, 0x51, 0x04, 0x63, 0x5c, 0x41, 0xeb, 0xc3, + 0x17, 0xc3, 0x33, 0x2c, 0x8b, 0x94, 0x0a, 0xb5, 0x20, 0x06, 0x95, 0x74, 0xef, 0xba, 0x66, 0xfd, + 0x38, 0x2a, 0x03, 0xb0, 0x2f, 0xac, 0xe6, 0x09, 0x48, 0x92, 0x68, 0x0a, 0xdb, 0x43, 0x6b, 0xa2, + 0x40, 0x9f, 0x98, 0x9d, 0xce, 0x97, 0x33, 0xfa, 0x19, 0x9e, 0x77, 0xf5, 0xf0, 0x7a, 0x57, 0x6b, + 0xd9, 0x0e, 0x5e, 0x17, 0xbe, 0x2c, 0x2d, 0xed, 0x4b, 0xeb, 0xe7, 0x01, 0x9b, 0xe4, 0x6c, 0xf8, + 0xdd, 0xe6, 0x1d, 0x65, 0xbe, 0x65, 0x6f, 0xae, 0x35, 0x4f, 0x94, 0xa7, 0x53, 0xbf, 0xa9, 0x99, + 0xfd, 0xc3, 0xd9, 0xc2, 0x35, 0xe7, 0x0b, 0xd7, 0x7c, 0x59, 0xb8, 0xe6, 0xed, 0xd2, 0x35, 0xe6, + 0x4b, 0xd7, 0x78, 0x5c, 0xba, 0xc6, 0xe9, 0xde, 0xc7, 0x50, 0xb3, 0x22, 0x95, 0xe0, 0x43, 0x16, + 0xfb, 0x4a, 0x50, 0xcb, 0xfa, 0x4a, 0xf7, 0x7c, 0xa5, 0xac, 0x72, 0x0e, 0x1b, 0xea, 0xa3, 0x77, + 0xdf, 0x02, 0x00, 0x00, 0xff, 0xff, 0x74, 0x93, 0xb4, 0x2f, 0x74, 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{ { @@ -274,7 +274,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "supply/v1/query.proto", + Metadata: "chainmain/supply/v1/query.proto", } func (m *SupplyRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/supply/types/query.pb.gw.go b/x/supply/types/query.pb.gw.go index 215d7c6b7..6619085a2 100644 --- a/x/supply/types/query.pb.gw.go +++ b/x/supply/types/query.pb.gw.go @@ -1,5 +1,5 @@ // Code generated by protoc-gen-grpc-gateway. DO NOT EDIT. -// source: supply/v1/query.proto +// source: chainmain/supply/v1/query.proto /* Package types is a reverse proxy.