From 3babbe5f94905771f5323aae2a4dd5b2e9a44d2c Mon Sep 17 00:00:00 2001 From: Youngtaek Yoon Date: Fri, 5 Jan 2024 16:01:57 +0900 Subject: [PATCH] chore: deprecate legacy features on x/token,collection (#1201) * Deprecate all the x/token features * Deprecate x/collection fungible token features * Deprecate x/collection attach features * Update CHANGELOG.md * Lint * Apply feedbacks on the PR --- .golangci.yml | 7 +- CHANGELOG.md | 1 + Makefile | 2 +- baseapp/testutil/messages.pb.go | 2 +- docs/core/proto-docs.md | 10 +- proto/lbm/collection/v1/collection.proto | 11 +- proto/lbm/collection/v1/event.proto | 12 + proto/lbm/collection/v1/genesis.proto | 20 +- proto/lbm/collection/v1/query.proto | 53 +++- proto/lbm/collection/v1/tx.proto | 101 ++++++-- proto/lbm/token/v1/event.proto | 28 ++- proto/lbm/token/v1/genesis.proto | 22 +- proto/lbm/token/v1/query.proto | 50 +++- proto/lbm/token/v1/token.proto | 12 +- proto/lbm/token/v1/tx.proto | 84 +++++-- tests/mocks/account_retriever.go | 2 +- tests/mocks/types_handler.go | 2 +- tests/mocks/types_invariant.go | 2 +- tests/mocks/types_module_module.go | 4 +- tests/mocks/types_router.go | 2 +- x/collection/collection.pb.go | 123 +++++----- x/collection/event.pb.go | 137 ++++++----- x/collection/genesis.pb.go | 128 +++++----- x/collection/query.pb.go | 232 ++++++++++-------- x/collection/tx.pb.go | 220 ++++++++++------- .../testutil/expected_keepers_mocks.go | 2 +- x/token/event.pb.go | 118 +++++---- x/token/genesis.pb.go | 89 ++++--- x/token/query.pb.go | 150 ++++++----- x/token/token.pb.go | 86 ++++--- x/token/tx.pb.go | 160 ++++++++---- 31 files changed, 1191 insertions(+), 681 deletions(-) diff --git a/.golangci.yml b/.golangci.yml index 94d5cdaf2b..96c08da061 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -57,7 +57,12 @@ issues: - text: "SA1019: codec.LegacyAmino is deprecated" linters: - staticcheck - - text: "SA1019: collection." + - path: x/collection + text: "SA1019: collection." + linters: + - staticcheck + - path: x/token + text: "SA1019: token." linters: - staticcheck - path: "legacy" diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e35226097..2c5c5569f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -71,3 +71,4 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Document Updates * (docs) [\#1059](https://github.com/Finschia/finschia-sdk/pull/1059) create ERRORS.md for x/module * (docs) [\#1083](https://github.com/Finschia/finschia-sdk/pull/1083) Add detailed explanation about default events +* (x/token,collection) [#1201](https://github.com/Finschia/finschia-sdk/pull/1201) Deprecate legacy features on x/token,collection diff --git a/Makefile b/Makefile index 1ddf69d1b0..039bdefc1d 100644 --- a/Makefile +++ b/Makefile @@ -340,7 +340,7 @@ lint: golangci-lint find . -name '*.go' -type f -not -path "*.git*" | xargs gofmt -d -s golangci-lint: - @go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.51.2 + @go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.55.2 lint-fix: golangci-lint golangci-lint run --fix --out-format=tab --issues-exit-code=0 diff --git a/baseapp/testutil/messages.pb.go b/baseapp/testutil/messages.pb.go index 4d8853ecd1..95fb00d7e6 100644 --- a/baseapp/testutil/messages.pb.go +++ b/baseapp/testutil/messages.pb.go @@ -6,10 +6,10 @@ package testutil import ( context "context" fmt "fmt" + _ "github.com/Finschia/finschia-sdk/codec/types" _ "github.com/gogo/protobuf/gogoproto" grpc1 "github.com/gogo/protobuf/grpc" proto "github.com/gogo/protobuf/proto" - _ "github.com/Finschia/finschia-sdk/codec/types" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" diff --git a/docs/core/proto-docs.md b/docs/core/proto-docs.md index ec300aa7c5..a01f8940c0 100644 --- a/docs/core/proto-docs.md +++ b/docs/core/proto-docs.md @@ -9063,8 +9063,6 @@ Contract defines the information of the contract for the collection. ### FT -Deprecated: use FTClass - FT defines the information of fungible token. @@ -9188,8 +9186,8 @@ Params defines the parameters for the collection module. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | -| `depth_limit` | [uint32](#uint32) | | | -| `width_limit` | [uint32](#uint32) | | | +| `depth_limit` | [uint32](#uint32) | | **Deprecated.** | +| `width_limit` | [uint32](#uint32) | | **Deprecated.** | @@ -9841,7 +9839,7 @@ GenesisState defines the collection module's genesis state. | `next_token_ids` | [ContractNextTokenIDs](#lbm.collection.v1.ContractNextTokenIDs) | repeated | next ids for (non-fungible) tokens. | | `balances` | [ContractBalances](#lbm.collection.v1.ContractBalances) | repeated | balances is an array containing the balances of all the accounts. | | `nfts` | [ContractNFTs](#lbm.collection.v1.ContractNFTs) | repeated | nfts is an array containing the nfts. | -| `parents` | [ContractTokenRelations](#lbm.collection.v1.ContractTokenRelations) | repeated | parents represents the parents of (non-fungible) tokens. | +| `parents` | [ContractTokenRelations](#lbm.collection.v1.ContractTokenRelations) | repeated | **Deprecated.** parents represents the parents of (non-fungible) tokens. | | `grants` | [ContractGrants](#lbm.collection.v1.ContractGrants) | repeated | grants defines the grant information. | | `authorizations` | [ContractAuthorizations](#lbm.collection.v1.ContractAuthorizations) | repeated | authorizations defines the approve information. | | `supplies` | [ContractStatistics](#lbm.collection.v1.ContractStatistics) | repeated | supplies represents the total supplies of tokens. | @@ -9861,7 +9859,7 @@ NextClassIDs defines the next class ids of the contract. | Field | Type | Label | Description | | ----- | ---- | ----- | ----------- | | `contract_id` | [string](#string) | | contract id associated with the contract. | -| `fungible` | [string](#string) | | id for the fungible tokens. | +| `fungible` | [string](#string) | | **Deprecated.** id for the fungible tokens. | | `non_fungible` | [string](#string) | | id for the non-fungible tokens. | diff --git a/proto/lbm/collection/v1/collection.proto b/proto/lbm/collection/v1/collection.proto index 80d470519d..00e1d53f76 100644 --- a/proto/lbm/collection/v1/collection.proto +++ b/proto/lbm/collection/v1/collection.proto @@ -10,8 +10,8 @@ import "cosmos_proto/cosmos.proto"; // Params defines the parameters for the collection module. message Params { - uint32 depth_limit = 1; - uint32 width_limit = 2; + uint32 depth_limit = 1 [deprecated = true]; + uint32 width_limit = 2 [deprecated = true]; } // Contract defines the information of the contract for the collection. @@ -30,6 +30,7 @@ message Contract { // // Since: 0.46.0 (finschia) message FTClass { + option deprecated = true; option (gogoproto.goproto_getters) = true; option (cosmos_proto.implements_interface) = "TokenClass"; @@ -94,10 +95,9 @@ message OwnerNFT { string owner = 5; } -// Deprecated: use FTClass -// // FT defines the information of fungible token. message FT { + option deprecated = true; option (cosmos_proto.implements_interface) = "Token"; // contract id associated with the contract. @@ -140,7 +140,8 @@ message Coin { // token id associated with the token. string token_id = 1; // amount of the token. - string amount = 2 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 2 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // Grant defines permission given to a grantee. diff --git a/proto/lbm/collection/v1/event.proto b/proto/lbm/collection/v1/event.proto index fab09c7570..c62949e0fe 100644 --- a/proto/lbm/collection/v1/event.proto +++ b/proto/lbm/collection/v1/event.proto @@ -82,6 +82,8 @@ message EventCreatedContract { // // Since: 0.46.0 (finschia) message EventCreatedFTClass { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address which triggered the create. @@ -147,6 +149,8 @@ message EventRenounced { // // Since: 0.46.0 (finschia) message EventMintedFT { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address which triggered the mint. @@ -236,6 +240,8 @@ message EventModifiedNFT { // // Since: 0.46.0 (finschia) message EventAttached { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address which triggered the attach. @@ -252,6 +258,8 @@ message EventAttached { // // Since: 0.46.0 (finschia) message EventDetached { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address which triggered the detach. @@ -268,6 +276,8 @@ message EventDetached { // // Since: 0.46.0 (finschia) message EventOwnerChanged { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // token id associated with the token. @@ -282,6 +292,8 @@ message EventOwnerChanged { // // Since: 0.46.0 (finschia) message EventRootChanged { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // token id associated with the token. diff --git a/proto/lbm/collection/v1/genesis.proto b/proto/lbm/collection/v1/genesis.proto index 7fe9e13a75..6db087294f 100644 --- a/proto/lbm/collection/v1/genesis.proto +++ b/proto/lbm/collection/v1/genesis.proto @@ -33,7 +33,7 @@ message GenesisState { repeated ContractNFTs nfts = 7 [(gogoproto.nullable) = false]; // parents represents the parents of (non-fungible) tokens. - repeated ContractTokenRelations parents = 8 [(gogoproto.nullable) = false]; + repeated ContractTokenRelations parents = 8 [deprecated = true, (gogoproto.nullable) = false]; // grants defines the grant information. repeated ContractGrants grants = 9 [(gogoproto.nullable) = false]; @@ -70,7 +70,8 @@ message ClassStatistics { // class id associated with the token class. string class_id = 1; // statistics - string amount = 2 [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int"]; + string amount = 2 + [(gogoproto.nullable) = false, (gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int"]; } // Balance defines a balance of an address. @@ -119,9 +120,14 @@ message NextClassIDs { // contract id associated with the contract. string contract_id = 1; // id for the fungible tokens. - string fungible = 2 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Uint", (gogoproto.nullable) = false]; + string fungible = 2 [ + deprecated = true, + (gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Uint", + (gogoproto.nullable) = false + ]; // id for the non-fungible tokens. - string non_fungible = 3 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Uint", (gogoproto.nullable) = false]; + string non_fungible = 3 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Uint", (gogoproto.nullable) = false]; } // ContractNextTokenIDs defines the next token ids belong to a contract. @@ -140,6 +146,8 @@ message NextTokenID { // ContractTokenRelations defines token relations belong to a contract. message ContractTokenRelations { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // relations @@ -148,8 +156,10 @@ message ContractTokenRelations { // TokenRelation defines relations between two tokens. message TokenRelation { + option deprecated = true; + // self string self = 1; // other string other = 2; -} \ No newline at end of file +} diff --git a/proto/lbm/collection/v1/query.proto b/proto/lbm/collection/v1/query.proto index a043341eea..57a435e8aa 100644 --- a/proto/lbm/collection/v1/query.proto +++ b/proto/lbm/collection/v1/query.proto @@ -25,16 +25,19 @@ service Query { // FTSupply queries the number of tokens from a given contract id and token id. rpc FTSupply(QueryFTSupplyRequest) returns (QueryFTSupplyResponse) { + option deprecated = true; option (google.api.http).get = "/lbm/collection/v1/contracts/{contract_id}/fts/{token_id}/supply"; } // FTMinted queries the number of minted tokens from a given contract id and token id. rpc FTMinted(QueryFTMintedRequest) returns (QueryFTMintedResponse) { + option deprecated = true; option (google.api.http).get = "/lbm/collection/v1/contracts/{contract_id}/fts/{token_id}/minted"; } // FTBurnt queries the number of burnt tokens from a given contract id and token id. rpc FTBurnt(QueryFTBurntRequest) returns (QueryFTBurntResponse) { + option deprecated = true; option (google.api.http).get = "/lbm/collection/v1/contracts/{contract_id}/fts/{token_id}/burnt"; } @@ -77,21 +80,25 @@ service Query { // Root queries the root of a given nft. rpc Root(QueryRootRequest) returns (QueryRootResponse) { + option deprecated = true; option (google.api.http).get = "/lbm/collection/v1/contracts/{contract_id}/nfts/{token_id}/root"; } // HasParent queries whether a given nft has its parent. rpc HasParent(QueryHasParentRequest) returns (QueryHasParentResponse) { + option deprecated = true; option (google.api.http).get = "/lbm/collection/v1/contracts/{contract_id}/nfts/{token_id}/has_parent"; } // Parent queries the parent of a given nft. rpc Parent(QueryParentRequest) returns (QueryParentResponse) { + option deprecated = true; option (google.api.http).get = "/lbm/collection/v1/contracts/{contract_id}/nfts/{token_id}/parent"; } // Children queries the children of a given nft. rpc Children(QueryChildrenRequest) returns (QueryChildrenResponse) { + option deprecated = true; option (google.api.http).get = "/lbm/collection/v1/contracts/{contract_id}/nfts/{token_id}/children"; } @@ -145,6 +152,8 @@ message QueryAllBalancesResponse { // QueryFTSupplyRequest is the request type for the Query/FTSupply RPC method. message QueryFTSupplyRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // token id associated with the fungible token. @@ -153,12 +162,17 @@ message QueryFTSupplyRequest { // QueryFTSupplyResponse is the response type for the Query/FTSupply RPC method. message QueryFTSupplyResponse { + option deprecated = true; + // supply is the supply of the tokens. - string supply = 1 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string supply = 1 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // QueryFTMintedRequest is the request type for the Query/FTMinted RPC method. message QueryFTMintedRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // token id associated with the fungible token. @@ -167,12 +181,17 @@ message QueryFTMintedRequest { // QueryFTMintedResponse is the response type for the Query/FTMinted RPC method. message QueryFTMintedResponse { + option deprecated = true; + // minted is the amount of the minted tokens. - string minted = 1 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string minted = 1 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // QueryFTBurntRequest is the request type for the Query/FTBurnt RPC method. message QueryFTBurntRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // token id associated with the fungible token. @@ -181,8 +200,11 @@ message QueryFTBurntRequest { // QueryFTBurntResponse is the response type for the Query/FTBurnt RPC method. message QueryFTBurntResponse { + option deprecated = true; + // burnt is the amount of the burnt tokens. - string burnt = 1 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string burnt = 1 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // QueryNFTSupplyRequest is the request type for the Query/NFTSupply RPC method. @@ -197,7 +219,8 @@ message QueryNFTSupplyRequest { // QueryNFTSupplyResponse is the response type for the Query/NFTSupply RPC method. message QueryNFTSupplyResponse { // supply is the supply of the non-fungible token. - string supply = 1 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string supply = 1 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // QueryNFTMintedRequest is the request type for the Query/NFTMinted RPC method. @@ -212,7 +235,8 @@ message QueryNFTMintedRequest { // QueryNFTMintedResponse is the response type for the Query/NFTMinted RPC method. message QueryNFTMintedResponse { // minted is the amount of minted tokens. - string minted = 1 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string minted = 1 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // QueryNFTBurntRequest is the request type for the Query/NFTBurnt RPC method. @@ -227,7 +251,8 @@ message QueryNFTBurntRequest { // QueryNFTBurntResponse is the response type for the Query/NFTBurnt RPC method. message QueryNFTBurntResponse { // burnt is the amount of the burnt tokens. - string burnt = 1 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string burnt = 1 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // QueryContractRequest is the request type for the Query/Contract RPC method. @@ -291,6 +316,8 @@ message QueryTokenResponse { // QueryRootRequest is the request type for the Query/Root RPC method. message QueryRootRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // token id associated with the non-fungible token. @@ -299,6 +326,8 @@ message QueryRootRequest { // QueryRootResponse is the response type for the Query/Root RPC method. message QueryRootResponse { + option deprecated = true; + // root is the information of the root token. // it would return itself if it's the root token. NFT root = 1 [(gogoproto.nullable) = false]; @@ -306,6 +335,8 @@ message QueryRootResponse { // QueryHasParentRequest is the request type for the Query/HasParent RPC method. message QueryHasParentRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // token id associated wit the non-fungible token. @@ -314,12 +345,16 @@ message QueryHasParentRequest { // QueryHasParentResponse is the response type for the Query/HasParent RPC method. message QueryHasParentResponse { + option deprecated = true; + // whether the token has its parent. bool has_parent = 1; } // QueryParentRequest is the request type for the Query/Parent RPC method. message QueryParentRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // token id associated wit the non-fungible token. @@ -328,12 +363,16 @@ message QueryParentRequest { // QueryParentResponse is the response type for the Query/Parent RPC method. message QueryParentResponse { + option deprecated = true; + // parent is the information of the parent token. NFT parent = 1 [(gogoproto.nullable) = false]; } // QueryChildrenRequest is the request type for the Query/Children RPC method. message QueryChildrenRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // token id associated with the non-fungible token. @@ -345,6 +384,8 @@ message QueryChildrenRequest { // QueryChildrenResponse is the response type for the Query/Children RPC method. message QueryChildrenResponse { + option deprecated = true; + // children is the information of the child tokens. repeated NFT children = 1 [(gogoproto.nullable) = false]; diff --git a/proto/lbm/collection/v1/tx.proto b/proto/lbm/collection/v1/tx.proto index 8a89f2c83b..cea81edcd2 100644 --- a/proto/lbm/collection/v1/tx.proto +++ b/proto/lbm/collection/v1/tx.proto @@ -15,13 +15,17 @@ service Msg { // Fires: // - EventSent // - transfer_ft (deprecated, not typed) - rpc SendFT(MsgSendFT) returns (MsgSendFTResponse); + rpc SendFT(MsgSendFT) returns (MsgSendFTResponse) { + option deprecated = true; + } // OperatorSendFT defines a method to send fungible tokens from one account to another account by the operator. // Fires: // - EventSent // - transfer_ft_from (deprecated, not typed) - rpc OperatorSendFT(MsgOperatorSendFT) returns (MsgOperatorSendFTResponse); + rpc OperatorSendFT(MsgOperatorSendFT) returns (MsgOperatorSendFTResponse) { + option deprecated = true; + } // SendNFT defines a method to send non-fungible tokens from one account to another account. // Fires: @@ -62,7 +66,9 @@ service Msg { // - EventMintedFT // - issue_ft (deprecated, not typed) // Note: it does not grant any permissions to its issuer. - rpc IssueFT(MsgIssueFT) returns (MsgIssueFTResponse); + rpc IssueFT(MsgIssueFT) returns (MsgIssueFTResponse) { + option deprecated = true; + } // IssueNFT defines a method to create a class of non-fungible token. // Fires: @@ -75,7 +81,9 @@ service Msg { // Fires: // - EventMintedFT // - mint_ft (deprecated, not typed) - rpc MintFT(MsgMintFT) returns (MsgMintFTResponse); + rpc MintFT(MsgMintFT) returns (MsgMintFTResponse) { + option deprecated = true; + } // MintNFT defines a method to mint non-fungible tokens. // Fires: @@ -89,7 +97,9 @@ service Msg { // - burn_ft (deprecated, not typed) // - burn_nft (deprecated, not typed) // - operation_burn_nft (deprecated, not typed) - rpc BurnFT(MsgBurnFT) returns (MsgBurnFTResponse); + rpc BurnFT(MsgBurnFT) returns (MsgBurnFTResponse) { + option deprecated = true; + } // OperatorBurnFT defines a method to burn fungible tokens of the holder by the operator. // Fires: @@ -97,7 +107,9 @@ service Msg { // - burn_ft_from (deprecated, not typed) // - burn_nft_from (deprecated, not typed) // - operation_burn_nft (deprecated, not typed) - rpc OperatorBurnFT(MsgOperatorBurnFT) returns (MsgOperatorBurnFTResponse); + rpc OperatorBurnFT(MsgOperatorBurnFT) returns (MsgOperatorBurnFTResponse) { + option deprecated = true; + } // BurnNFT defines a method to burn non-fungible tokens. // Fires: @@ -142,32 +154,42 @@ service Msg { // - EventAttach // - attach (deprecated, not typed) // - operation_root_changed (deprecated, not typed) - rpc Attach(MsgAttach) returns (MsgAttachResponse); + rpc Attach(MsgAttach) returns (MsgAttachResponse) { + option deprecated = true; + } // Detach defines a method to detach a token from another token. // Fires: // - EventDetach // - detach (deprecated, not typed) // - operation_root_changed (deprecated, not typed) - rpc Detach(MsgDetach) returns (MsgDetachResponse); + rpc Detach(MsgDetach) returns (MsgDetachResponse) { + option deprecated = true; + } // OperatorAttach defines a method to attach a token to another token by operator. // Fires: // - EventAttach // - attach_from (deprecated, not typed) // - operation_root_changed (deprecated, not typed) - rpc OperatorAttach(MsgOperatorAttach) returns (MsgOperatorAttachResponse); + rpc OperatorAttach(MsgOperatorAttach) returns (MsgOperatorAttachResponse) { + option deprecated = true; + } // OperatorDetach defines a method to detach a token from another token by operator. // Fires: // - EventDetach // - detach_from (deprecated, not typed) // - operation_root_changed (deprecated, not typed) - rpc OperatorDetach(MsgOperatorDetach) returns (MsgOperatorDetachResponse); + rpc OperatorDetach(MsgOperatorDetach) returns (MsgOperatorDetachResponse) { + option deprecated = true; + } } // MsgSendFT is the Msg/SendFT request type. message MsgSendFT { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // the address which the transfer is from. @@ -180,10 +202,14 @@ message MsgSendFT { } // MsgSendFTResponse is the Msg/SendFT response type. -message MsgSendFTResponse {} +message MsgSendFTResponse { + option deprecated = true; +} // MsgOperatorSendFT is the Msg/OperatorSendFT request type. message MsgOperatorSendFT { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // the address of the operator. @@ -198,7 +224,9 @@ message MsgOperatorSendFT { } // MsgOperatorSendFTResponse is the Msg/OperatorSendFT response type. -message MsgOperatorSendFTResponse {} +message MsgOperatorSendFTResponse { + option deprecated = true; +} // MsgSendNFT is the Msg/SendNFT request type. message MsgSendNFT { @@ -283,6 +311,8 @@ message MsgCreateContractResponse { // // Signer: `owner` message MsgIssueFT { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // name defines the human-readable name of the token type. @@ -302,11 +332,14 @@ message MsgIssueFT { // the amount of tokens to mint on the issuance. // Note: if you provide negative amount, a panic may result. // Note: amount may be zero. - string amount = 8 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 8 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // MsgIssueFTResponse is the Msg/IssueFT response type. message MsgIssueFTResponse { + option deprecated = true; + // id of the token. string token_id = 1; } @@ -337,6 +370,8 @@ message MsgIssueNFTResponse { // // Signer: `from` message MsgMintFT { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address of the grantee which has the permission for the mint. @@ -349,7 +384,9 @@ message MsgMintFT { } // MsgMintFTResponse is the Msg/MintFT response type. -message MsgMintFTResponse {} +message MsgMintFTResponse { + option deprecated = true; +} // MsgMintNFT is the Msg/MintNFT request type. // @@ -387,6 +424,8 @@ message MintNFTParam { // MsgBurnFT is the Msg/BurnFT request type. message MsgBurnFT { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address which the tokens will be burnt from. @@ -398,10 +437,14 @@ message MsgBurnFT { } // MsgBurnFTResponse is the Msg/BurnFT response type. -message MsgBurnFTResponse {} +message MsgBurnFTResponse { + option deprecated = true; +} // MsgOperatorBurnFT is the Msg/OperatorBurnFT request type. message MsgOperatorBurnFT { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address which triggers the burn. @@ -416,7 +459,9 @@ message MsgOperatorBurnFT { } // MsgOperatorBurnFTResponse is the Msg/OperatorBurnFT response type. -message MsgOperatorBurnFTResponse {} +message MsgOperatorBurnFTResponse { + option deprecated = true; +} // MsgBurnNFT is the Msg/BurnNFT request type. message MsgBurnNFT { @@ -506,6 +551,8 @@ message MsgRevokePermissionResponse {} // // Signer: `from` message MsgAttach { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address of the owner of the token. @@ -517,12 +564,16 @@ message MsgAttach { } // MsgAttachResponse is the Msg/Attach response type. -message MsgAttachResponse {} +message MsgAttachResponse { + option deprecated = true; +} // MsgDetach is the Msg/Detach request type. // // Signer: `from` message MsgDetach { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address of the owner of the token. @@ -532,10 +583,14 @@ message MsgDetach { } // MsgDetachResponse is the Msg/Detach response type. -message MsgDetachResponse {} +message MsgDetachResponse { + option deprecated = true; +} // MsgOperatorAttach is the Msg/OperatorAttach request type. message MsgOperatorAttach { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address of the operator. @@ -549,10 +604,14 @@ message MsgOperatorAttach { } // MsgOperatorAttachResponse is the Msg/OperatorAttach response type. -message MsgOperatorAttachResponse {} +message MsgOperatorAttachResponse { + option deprecated = true; +} // MsgOperatorDetach is the Msg/OperatorDetach request type. message MsgOperatorDetach { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address of the operator. @@ -564,4 +623,6 @@ message MsgOperatorDetach { } // MsgOperatorDetachResponse is the Msg/OperatorDetach response type. -message MsgOperatorDetachResponse {} +message MsgOperatorDetachResponse { + option deprecated = true; +} diff --git a/proto/lbm/token/v1/event.proto b/proto/lbm/token/v1/event.proto index 0c691f3a55..c4b4dd8985 100644 --- a/proto/lbm/token/v1/event.proto +++ b/proto/lbm/token/v1/event.proto @@ -9,6 +9,7 @@ option go_package = "github.com/Finschia/finschia-sdk/x/token"; // AttributeKey enumerates the valid attribute keys on x/token. enum AttributeKey { + option deprecated = true; option (gogoproto.goproto_enum_stringer) = false; option (gogoproto.goproto_enum_prefix) = false; @@ -28,6 +29,8 @@ enum AttributeKey { // // Since: 0.46.0 (finschia) message EventSent { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address which triggered the send. @@ -37,13 +40,16 @@ message EventSent { // recipient of the tokens string to = 4; // number of tokens sent. - string amount = 5 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 5 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // EventAuthorizedOperator is emitted when a holder authorizes an operator to manipulate its tokens. // // Since: 0.46.0 (finschia) message EventAuthorizedOperator { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address of a holder which authorized the `operator` address as an operator. @@ -56,6 +62,8 @@ message EventAuthorizedOperator { // // Since: 0.46.0 (finschia) message EventRevokedOperator { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address of a holder which revoked the `operator` address as an operator. @@ -68,6 +76,8 @@ message EventRevokedOperator { // // Since: 0.46.0 (finschia) message EventIssued { + option deprecated = true; + // address which created the contract. string creator = 1; // contract id associated with the contract. @@ -92,6 +102,8 @@ message EventIssued { // // Since: 0.46.0 (finschia) message EventGranted { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address which granted the permission to `grantee`. @@ -107,6 +119,8 @@ message EventGranted { // // Since: 0.46.0 (finschia) message EventRenounced { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address of the grantee which abandons its grant. @@ -119,6 +133,8 @@ message EventRenounced { // // Since: 0.46.0 (finschia) message EventMinted { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address which triggered the mint. @@ -126,13 +142,16 @@ message EventMinted { // recipient of the tokens. string to = 3; // number of tokens minted. - string amount = 4 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 4 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // EventBurned is emitted when tokens are burnt. // // Since: 0.46.0 (finschia) message EventBurned { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address which triggered the burn. @@ -140,13 +159,16 @@ message EventBurned { // holder whose tokens were burned. string from = 3; // number of tokens burned. - string amount = 4 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 4 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // EventModified is emitted when the information of a contract is modified. // // Since: 0.46.0 (finschia) message EventModified { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address which triggered the modify. diff --git a/proto/lbm/token/v1/genesis.proto b/proto/lbm/token/v1/genesis.proto index 2559e17541..cdbaa7e0c9 100644 --- a/proto/lbm/token/v1/genesis.proto +++ b/proto/lbm/token/v1/genesis.proto @@ -8,6 +8,8 @@ option go_package = "github.com/Finschia/finschia-sdk/x/token"; // GenesisState defines the token module's genesis state. message GenesisState { + option deprecated = true; + // params defines all the paramaters of the module. Params params = 1 [(gogoproto.nullable) = false]; @@ -38,8 +40,11 @@ message GenesisState { // ClassGenesisState defines the classs keeper's genesis state. message ClassGenesisState { + option deprecated = true; + // nonce is the next class nonce to issue. - string nonce = 1 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Uint", (gogoproto.nullable) = false]; + string nonce = 1 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Uint", (gogoproto.nullable) = false]; // ids represents the issued ids. repeated string ids = 2; @@ -48,6 +53,8 @@ message ClassGenesisState { // ContractBalances defines balances belong to a contract. // genesis state. message ContractBalances { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // balances of the contract. @@ -56,16 +63,20 @@ message ContractBalances { // Balance defines a balance of an address. message Balance { + option deprecated = true; option (gogoproto.equal) = true; // address of the holder. string address = 1; // amount of the balance. - string amount = 2 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 2 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // ContractAuthorizations defines authorizations belong to a contract. message ContractAuthorizations { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // authorizations of the contract. @@ -74,6 +85,8 @@ message ContractAuthorizations { // ContractGrant defines grants belong to a contract. message ContractGrants { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // grants of the contract. @@ -81,8 +94,11 @@ message ContractGrants { } message ContractCoin { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // amount of the token. - string amount = 2 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 2 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } diff --git a/proto/lbm/token/v1/query.proto b/proto/lbm/token/v1/query.proto index 33667b5fb4..193d4e4c22 100644 --- a/proto/lbm/token/v1/query.proto +++ b/proto/lbm/token/v1/query.proto @@ -11,6 +11,8 @@ option go_package = "github.com/Finschia/finschia-sdk/x/token"; // Query defines the gRPC querier service. service Query { + option deprecated = true; + // Balance queries the number of tokens of a given contract owned by the address. rpc Balance(QueryBalanceRequest) returns (QueryBalanceResponse) { option (google.api.http).get = "/lbm/token/v1/token_classes/{contract_id}/balances/{address}"; @@ -42,14 +44,16 @@ service Query { } // IsOperatorFor queries authorization on a given operator holder pair. - rpc IsOperatorFor(QueryIsOperatorForRequest) returns (QueryIsOperatorForResponse) {} + rpc IsOperatorFor(QueryIsOperatorForRequest) returns (QueryIsOperatorForResponse); // HoldersByOperator queries holders on a given operator. - rpc HoldersByOperator(QueryHoldersByOperatorRequest) returns (QueryHoldersByOperatorResponse) {} + rpc HoldersByOperator(QueryHoldersByOperatorRequest) returns (QueryHoldersByOperatorResponse); } // QueryBalanceRequest is the request type for the Query/Balance RPC method message QueryBalanceRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address is the address to query balance for. @@ -58,59 +62,83 @@ message QueryBalanceRequest { // QueryBalanceResponse is the response type for the Query/Balance RPC method message QueryBalanceResponse { + option deprecated = true; + // the balance of the tokens. - string amount = 1 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 1 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // QuerySupplyRequest is the request type for the Query/Supply RPC method message QuerySupplyRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; } // QuerySupplyResponse is the response type for the Query/Supply RPC method message QuerySupplyResponse { + option deprecated = true; + // the supply of the tokens. - string amount = 1 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 1 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // QueryMintedRequest is the request type for the Query/Minted RPC method message QueryMintedRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; } // QueryMintedResponse is the response type for the Query/Minted RPC method message QueryMintedResponse { + option deprecated = true; + // the amount of the minted tokens. - string amount = 1 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 1 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // QueryBurntRequest is the request type for the Query/Burnt RPC method message QueryBurntRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; } // QueryBurntResponse is the response type for the Query/Burnt RPC method message QueryBurntResponse { + option deprecated = true; + // the amount of the burnt tokens. - string amount = 1 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 1 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // QueryContractRequest is the request type for the Query/Contract RPC method message QueryContractRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; } // QueryContractResponse is the response type for the Query/Contract RPC method message QueryContractResponse { + option deprecated = true; + Contract contract = 1 [(gogoproto.nullable) = false]; } // QueryGranteeGrantsRequest is the request type for the Query/GranteeGrants RPC method message QueryGranteeGrantsRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // grantee which has permissions on the contract. @@ -122,6 +150,8 @@ message QueryGranteeGrantsRequest { // QueryGranteeGrantsResponse is the response type for the Query/GranteeGrants RPC method message QueryGranteeGrantsResponse { + option deprecated = true; + // all the grants on the grantee. repeated Grant grants = 1 [(gogoproto.nullable) = false]; // pagination defines the pagination in the response. @@ -130,6 +160,8 @@ message QueryGranteeGrantsResponse { // QueryIsOperatorForRequest is the request type for the Query/IsOperatorFor RPC method message QueryIsOperatorForRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address of the operator which the authorization is granted to. @@ -140,11 +172,15 @@ message QueryIsOperatorForRequest { // QueryIsOperatorForResponse is the response type for the Query/IsOperatorFor RPC method message QueryIsOperatorForResponse { + option deprecated = true; + bool authorized = 1; } // QueryHoldersByOperatorRequest is the request type for the Query/HoldersByOperator RPC method message QueryHoldersByOperatorRequest { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // address of the operator which the authorization is granted to. @@ -156,6 +192,8 @@ message QueryHoldersByOperatorRequest { // QueryHoldersByOperatorResponse is the response type for the Query/HoldersByOperator RPC method message QueryHoldersByOperatorResponse { + option deprecated = true; + // holder addresses repeated string holders = 1; // pagination defines the pagination in the response. diff --git a/proto/lbm/token/v1/token.proto b/proto/lbm/token/v1/token.proto index feca7fa248..c40771bab8 100644 --- a/proto/lbm/token/v1/token.proto +++ b/proto/lbm/token/v1/token.proto @@ -8,10 +8,14 @@ option (gogoproto.goproto_getters_all) = false; import "gogoproto/gogo.proto"; // Params defines the parameters for the token module. -message Params {} +message Params { + option deprecated = true; +} // Contract defines token information. message Contract { + option deprecated = true; + // id defines the unique identifier of the contract. string id = 1; // name defines the human-readable name of the contract. mandatory (not ERC20 compliant). @@ -30,6 +34,8 @@ message Contract { // Attribute defines a key and value of the attribute. message Attribute { + option deprecated = true; + string key = 1; string value = 2; } @@ -69,6 +75,8 @@ enum LegacyPermission { // Authorization defines an authorization given to the operator on tokens of the holder. message Authorization { + option deprecated = true; + // address of the token holder which approves the authorization. string holder = 1; // address of the operator which the authorization is granted to. @@ -77,6 +85,8 @@ message Authorization { // Grant defines permission given to a grantee. message Grant { + option deprecated = true; + // address of the grantee. string grantee = 1; // permission on the contract. diff --git a/proto/lbm/token/v1/tx.proto b/proto/lbm/token/v1/tx.proto index 11e2a6121e..40e776948e 100644 --- a/proto/lbm/token/v1/tx.proto +++ b/proto/lbm/token/v1/tx.proto @@ -11,6 +11,8 @@ option (gogoproto.goproto_getters_all) = false; // Msg defines the token Msg service. service Msg { + option deprecated = true; + // Send defines a method to send tokens from one account to another account. // Fires: // - EventSent @@ -86,6 +88,8 @@ service Msg { // // Signer: `from` message MsgSend { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // holder whose tokens are being sent. @@ -93,16 +97,21 @@ message MsgSend { // recipient of the tokens. string to = 3; // number of tokens to send. - string amount = 4 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 4 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // MsgSendResponse defines the Msg/Send response type. -message MsgSendResponse {} +message MsgSendResponse { + option deprecated = true; +} // MsgOperatorSend defines the Msg/OperatorSend request type. // // Signer: `operator` message MsgOperatorSend { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // the address of the operator. @@ -112,11 +121,14 @@ message MsgOperatorSend { // the address which the transfer is to. string to = 4; // the amount of the transfer. - string amount = 5 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 5 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // MsgOperatorSendResponse defines the Msg/OperatorSend response type. -message MsgOperatorSendResponse {} +message MsgOperatorSendResponse { + option deprecated = true; +} // MsgRevokeOperator defines the Msg/RevokeOperator request type. // @@ -124,6 +136,8 @@ message MsgOperatorSendResponse {} // // Since: 0.46.0 (finschia) message MsgRevokeOperator { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // address of a holder which revokes the `operator` address as an operator. @@ -135,12 +149,16 @@ message MsgRevokeOperator { // MsgRevokeOperatorResponse defines the Msg/RevokeOperator response type. // // Since: 0.46.0 (finschia) -message MsgRevokeOperatorResponse {} +message MsgRevokeOperatorResponse { + option deprecated = true; +} // MsgAuthorizeOperator defines the Msg/AuthorizeOperator request type. // // Signer: `holder` message MsgAuthorizeOperator { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // address of the token holder which approves the authorization. @@ -150,12 +168,16 @@ message MsgAuthorizeOperator { } // MsgAuthorizeOperatorResponse defines the Msg/AuthorizeOperator response type. -message MsgAuthorizeOperatorResponse {} +message MsgAuthorizeOperatorResponse { + option deprecated = true; +} // MsgIssue defines the Msg/Issue request type. // // Signer: `owner` message MsgIssue { + option deprecated = true; + // name defines the human-readable name of the token class. mandatory (not ERC20 compliant). string name = 1; // symbol is an abbreviated name for token class. mandatory (not ERC20 compliant). @@ -175,11 +197,14 @@ message MsgIssue { // the address to send the minted token to. mandatory. string to = 8; // amount of tokens to mint on issuance. mandatory. - string amount = 9 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 9 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // MsgIssueResponse defines the Msg/Issue response type. message MsgIssueResponse { + option deprecated = true; + // id of the new contract. string contract_id = 1; } @@ -188,6 +213,8 @@ message MsgIssueResponse { // // Signer: `granter` message MsgGrantPermission { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // address of the granter which must have the permission to give. @@ -199,12 +226,16 @@ message MsgGrantPermission { } // MsgGrantPermissionResponse defines the Msg/GrantPermission response type. -message MsgGrantPermissionResponse {} +message MsgGrantPermissionResponse { + option deprecated = true; +} // MsgRevokePermission defines the Msg/RevokePermission request type. // // Signer: `grantee` message MsgRevokePermission { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // address of the grantee which abandons the permission. @@ -214,12 +245,16 @@ message MsgRevokePermission { } // MsgRevokePermissionResponse defines the Msg/RevokePermission response type. -message MsgRevokePermissionResponse {} +message MsgRevokePermissionResponse { + option deprecated = true; +} // MsgMint defines the Msg/Mint request type. // // Signer: `from` message MsgMint { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // address which triggers the mint. @@ -227,31 +262,41 @@ message MsgMint { // recipient of the tokens. string to = 3; // number of tokens to mint. - string amount = 4 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 4 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // MsgMintResponse defines the Msg/Mint response type. -message MsgMintResponse {} +message MsgMintResponse { + option deprecated = true; +} // MsgBurn defines the Msg/Burn request type. // // Signer: `from` message MsgBurn { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // address whose tokens are being burned. string from = 2; // number of tokens to burn. - string amount = 3 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 3 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // MsgBurnResponse defines the Msg/Burn response type. -message MsgBurnResponse {} +message MsgBurnResponse { + option deprecated = true; +} // MsgOperatorBurn defines the Msg/OperatorBurn request type. // // Signer: `operator` message MsgOperatorBurn { + option deprecated = true; + // contract id associated with the token class. string contract_id = 1; // address which triggers the burn. @@ -259,16 +304,21 @@ message MsgOperatorBurn { // address which the tokens will be burnt from. string from = 3; // the amount of the burn. - string amount = 4 [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; + string amount = 4 + [(gogoproto.customtype) = "github.com/Finschia/finschia-sdk/types.Int", (gogoproto.nullable) = false]; } // MsgOperatorBurnResponse defines the Msg/OperatorBurn response type. -message MsgOperatorBurnResponse {} +message MsgOperatorBurnResponse { + option deprecated = true; +} // MsgModify defines the Msg/Modify request type. // // Signer: `owner` message MsgModify { + option deprecated = true; + // contract id associated with the contract. string contract_id = 1; // the address of the grantee which must have modify permission. @@ -279,4 +329,6 @@ message MsgModify { } // MsgModifyResponse defines the Msg/Modify response type. -message MsgModifyResponse {} +message MsgModifyResponse { + option deprecated = true; +} diff --git a/tests/mocks/account_retriever.go b/tests/mocks/account_retriever.go index b3bafc420e..c99d29ac85 100644 --- a/tests/mocks/account_retriever.go +++ b/tests/mocks/account_retriever.go @@ -7,10 +7,10 @@ package mocks import ( reflect "reflect" - gomock "github.com/golang/mock/gomock" client "github.com/Finschia/finschia-sdk/client" types "github.com/Finschia/finschia-sdk/crypto/types" types0 "github.com/Finschia/finschia-sdk/types" + gomock "github.com/golang/mock/gomock" ) // MockAccount is a mock of Account interface. diff --git a/tests/mocks/types_handler.go b/tests/mocks/types_handler.go index 9069def1e1..2c09460568 100644 --- a/tests/mocks/types_handler.go +++ b/tests/mocks/types_handler.go @@ -7,8 +7,8 @@ package mocks import ( reflect "reflect" - gomock "github.com/golang/mock/gomock" types "github.com/Finschia/finschia-sdk/types" + gomock "github.com/golang/mock/gomock" ) // MockAnteDecorator is a mock of AnteDecorator interface. diff --git a/tests/mocks/types_invariant.go b/tests/mocks/types_invariant.go index b354600715..b4a652dcc5 100644 --- a/tests/mocks/types_invariant.go +++ b/tests/mocks/types_invariant.go @@ -7,8 +7,8 @@ package mocks import ( reflect "reflect" - gomock "github.com/golang/mock/gomock" types "github.com/Finschia/finschia-sdk/types" + gomock "github.com/golang/mock/gomock" ) // MockInvariantRegistry is a mock of InvariantRegistry interface. diff --git a/tests/mocks/types_module_module.go b/tests/mocks/types_module_module.go index 790b793f4f..39fff91aec 100644 --- a/tests/mocks/types_module_module.go +++ b/tests/mocks/types_module_module.go @@ -8,13 +8,13 @@ import ( json "encoding/json" reflect "reflect" - gomock "github.com/golang/mock/gomock" - runtime "github.com/grpc-ecosystem/grpc-gateway/runtime" client "github.com/Finschia/finschia-sdk/client" codec "github.com/Finschia/finschia-sdk/codec" types "github.com/Finschia/finschia-sdk/codec/types" types0 "github.com/Finschia/finschia-sdk/types" module "github.com/Finschia/finschia-sdk/types/module" + gomock "github.com/golang/mock/gomock" + runtime "github.com/grpc-ecosystem/grpc-gateway/runtime" cobra "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" ) diff --git a/tests/mocks/types_router.go b/tests/mocks/types_router.go index 5b09d5c214..34c09c81ec 100644 --- a/tests/mocks/types_router.go +++ b/tests/mocks/types_router.go @@ -7,8 +7,8 @@ package mocks import ( reflect "reflect" - gomock "github.com/golang/mock/gomock" types "github.com/Finschia/finschia-sdk/types" + gomock "github.com/golang/mock/gomock" ) // MockRouter is a mock of Router interface. diff --git a/x/collection/collection.pb.go b/x/collection/collection.pb.go index f6c0486328..e4559ef542 100644 --- a/x/collection/collection.pb.go +++ b/x/collection/collection.pb.go @@ -105,8 +105,8 @@ func (LegacyPermission) EnumDescriptor() ([]byte, []int) { // Params defines the parameters for the collection module. type Params struct { - DepthLimit uint32 `protobuf:"varint,1,opt,name=depth_limit,json=depthLimit,proto3" json:"depth_limit,omitempty"` - WidthLimit uint32 `protobuf:"varint,2,opt,name=width_limit,json=widthLimit,proto3" json:"width_limit,omitempty"` + DepthLimit uint32 `protobuf:"varint,1,opt,name=depth_limit,json=depthLimit,proto3" json:"depth_limit,omitempty"` // Deprecated: Do not use. + WidthLimit uint32 `protobuf:"varint,2,opt,name=width_limit,json=widthLimit,proto3" json:"width_limit,omitempty"` // Deprecated: Do not use. } func (m *Params) Reset() { *m = Params{} } @@ -190,6 +190,8 @@ var xxx_messageInfo_Contract proto.InternalMessageInfo // FTClass defines the class of fungible token. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type FTClass struct { // id defines the unique identifier of the token class. // Note: size of the class id is 8 in length. @@ -434,9 +436,9 @@ func (m *OwnerNFT) XXX_DiscardUnknown() { var xxx_messageInfo_OwnerNFT proto.InternalMessageInfo -// Deprecated: use FTClass -// // FT defines the information of fungible token. +// +// Deprecated: Do not use. type FT struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -725,62 +727,63 @@ func init() { } var fileDescriptor_bb15fea9f4c37044 = []byte{ - // 875 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0xcf, 0x6f, 0xe3, 0x44, - 0x14, 0xb6, 0xf3, 0xab, 0xc9, 0x5b, 0x6d, 0xd7, 0x6b, 0x4a, 0x49, 0x8d, 0xea, 0x58, 0xbe, 0xb0, - 0x14, 0x35, 0xd1, 0xee, 0x02, 0x42, 0x95, 0x38, 0x34, 0xd9, 0x64, 0xf1, 0xaa, 0x4d, 0x2b, 0x27, - 0x45, 0x5a, 0x2e, 0xc1, 0xb1, 0xa7, 0xc9, 0xa8, 0xb6, 0x27, 0xb2, 0x27, 0x2d, 0xe1, 0x2f, 0x58, - 0x45, 0x42, 0x70, 0xe4, 0x12, 0xa9, 0x12, 0x1c, 0x56, 0xe2, 0xba, 0x67, 0xce, 0x3d, 0xae, 0xf6, - 0x84, 0x38, 0xac, 0xa0, 0xbd, 0x70, 0xe7, 0x1f, 0x40, 0x33, 0x76, 0x12, 0x93, 0x86, 0xdd, 0x15, - 0x48, 0xdc, 0xde, 0x7b, 0xf3, 0x7d, 0xdf, 0x7b, 0xfe, 0x9e, 0xed, 0x01, 0xdd, 0xed, 0x7a, 0x15, - 0x9b, 0xb8, 0x2e, 0xb2, 0x29, 0x26, 0x7e, 0xe5, 0xf4, 0x6e, 0x22, 0x2b, 0x0f, 0x02, 0x42, 0x89, - 0x7c, 0xdb, 0xed, 0x7a, 0xe5, 0x44, 0xf5, 0xf4, 0xae, 0xb2, 0xd6, 0x23, 0x3d, 0xc2, 0x4f, 0x2b, - 0x2c, 0x8a, 0x80, 0xca, 0x86, 0x4d, 0x42, 0x8f, 0x84, 0x9d, 0xe8, 0x20, 0x4a, 0xa2, 0x23, 0xfd, - 0x11, 0xe4, 0x0e, 0xad, 0xc0, 0xf2, 0x42, 0xb9, 0x04, 0x37, 0x1c, 0x34, 0xa0, 0xfd, 0x8e, 0x8b, - 0x3d, 0x4c, 0x8b, 0xa2, 0x26, 0xde, 0xb9, 0x69, 0x02, 0x2f, 0xed, 0xb1, 0x0a, 0x03, 0x9c, 0x61, - 0x67, 0x06, 0x48, 0x45, 0x00, 0x5e, 0xe2, 0x00, 0xbd, 0x0d, 0xf9, 0x1a, 0xf1, 0x69, 0x60, 0xd9, - 0x54, 0x5e, 0x85, 0x14, 0x76, 0xb8, 0x48, 0xc1, 0x4c, 0x61, 0x47, 0x96, 0x21, 0xe3, 0x5b, 0x1e, - 0xe2, 0xac, 0x82, 0xc9, 0x63, 0x56, 0xf3, 0x10, 0xb5, 0x8a, 0xe9, 0xa8, 0xc6, 0x62, 0x59, 0x82, - 0xf4, 0x30, 0xc0, 0xc5, 0x0c, 0x2f, 0xb1, 0x50, 0xff, 0x46, 0x84, 0x95, 0x46, 0xbb, 0xe6, 0x5a, - 0x61, 0xf8, 0xaf, 0x55, 0x15, 0xc8, 0x3b, 0xc8, 0xc6, 0x9e, 0xe5, 0x86, 0x5c, 0x3a, 0x6b, 0xce, - 0x72, 0x76, 0xe6, 0x61, 0x9f, 0x5a, 0x5d, 0x17, 0x15, 0xb3, 0x9a, 0x78, 0x27, 0x6f, 0xce, 0xf2, - 0x1d, 0xf9, 0xc9, 0x79, 0x49, 0x7c, 0xf1, 0x6c, 0x1b, 0xda, 0xe4, 0x04, 0xf9, 0x7c, 0x06, 0xfd, - 0x73, 0xc8, 0x37, 0xff, 0xe3, 0x3c, 0x4b, 0x75, 0x3f, 0x83, 0x74, 0xb3, 0xd1, 0x96, 0x37, 0x20, - 0x4f, 0x59, 0xb1, 0x33, 0x13, 0x5e, 0xe1, 0xb9, 0xf1, 0xc6, 0xea, 0xfa, 0xb7, 0x22, 0xe4, 0x0f, - 0xce, 0x7c, 0x14, 0x30, 0xbd, 0x12, 0xdc, 0xb0, 0xe3, 0xa5, 0xcc, 0x25, 0x61, 0x5a, 0x32, 0x9c, - 0xbf, 0x35, 0x4c, 0x2d, 0x6f, 0x98, 0x5e, 0xd2, 0x30, 0x93, 0xb0, 0x77, 0x0d, 0xb2, 0x84, 0xf5, - 0xe3, 0xfe, 0x15, 0xcc, 0x28, 0xd9, 0x29, 0xbc, 0x78, 0xb6, 0x9d, 0xe5, 0x0f, 0xa8, 0xff, 0x24, - 0x42, 0xea, 0x7f, 0x9a, 0x25, 0xb9, 0xea, 0xec, 0x2b, 0x56, 0x9d, 0x5b, 0x58, 0x75, 0x62, 0xda, - 0x10, 0x0a, 0x3c, 0x68, 0x8f, 0x06, 0xe8, 0xf5, 0x33, 0x6f, 0x02, 0x44, 0x33, 0xd3, 0xd1, 0x60, - 0xba, 0x9b, 0x02, 0x9d, 0xf1, 0xdf, 0x70, 0x6e, 0xfd, 0x0c, 0x32, 0x35, 0x82, 0xfd, 0x57, 0xed, - 0xff, 0x11, 0xe4, 0x2c, 0x8f, 0x0c, 0xfd, 0xe8, 0xdb, 0x2b, 0x54, 0xef, 0x5d, 0xbc, 0x2c, 0x09, - 0xbf, 0xbe, 0x2c, 0x6d, 0xf5, 0x30, 0xed, 0x0f, 0xbb, 0x65, 0x9b, 0x78, 0x95, 0x06, 0xf6, 0x43, - 0xbb, 0x8f, 0xad, 0xca, 0x71, 0x1c, 0x6c, 0x87, 0xce, 0x49, 0x85, 0x8d, 0x16, 0x96, 0x0d, 0x9f, - 0x9a, 0xb1, 0xc2, 0x4e, 0xfe, 0xfb, 0xf3, 0x92, 0xf0, 0xc7, 0x79, 0x49, 0xd4, 0xbf, 0x84, 0xec, - 0xc3, 0xc0, 0xf2, 0xa9, 0x5c, 0x84, 0x95, 0x1e, 0x0b, 0x10, 0x9a, 0x36, 0x8e, 0x53, 0xf9, 0x53, - 0x80, 0x01, 0x0a, 0x3c, 0x1c, 0x86, 0x98, 0xf8, 0xbc, 0xf9, 0xea, 0xbd, 0xcd, 0xf2, 0xb5, 0xbf, - 0x4f, 0xf9, 0x70, 0x06, 0x32, 0x13, 0x04, 0xbd, 0x06, 0x37, 0x77, 0x87, 0xb4, 0x4f, 0x02, 0xfc, - 0xb5, 0xc5, 0xa0, 0xf2, 0x3a, 0xe4, 0xfa, 0xc4, 0x75, 0x50, 0x10, 0x37, 0x8a, 0x33, 0xb6, 0x1f, - 0x32, 0x40, 0x81, 0x45, 0x49, 0x10, 0x1b, 0x39, 0xcb, 0xf5, 0xfb, 0x50, 0xd8, 0xa5, 0x34, 0xc0, - 0xdd, 0x21, 0x45, 0xec, 0x2f, 0x71, 0x82, 0x46, 0x31, 0x9b, 0x85, 0xec, 0x15, 0x3c, 0xb5, 0xdc, - 0xe1, 0x74, 0x01, 0x51, 0xb2, 0xf5, 0xa7, 0x08, 0x30, 0x1f, 0x4a, 0xfe, 0x08, 0xd6, 0x0f, 0xeb, - 0xe6, 0xbe, 0xd1, 0x6a, 0x19, 0x07, 0xcd, 0xce, 0x51, 0xb3, 0x75, 0x58, 0xaf, 0x19, 0x0d, 0xa3, - 0xfe, 0x40, 0x12, 0x94, 0x8d, 0xf1, 0x44, 0x7b, 0x7b, 0x8e, 0x3d, 0xf2, 0xc3, 0x01, 0xb2, 0xf1, - 0x31, 0x46, 0x8e, 0xfc, 0x3e, 0x48, 0x09, 0x9a, 0xd1, 0x6a, 0x1d, 0xd5, 0x25, 0x51, 0x79, 0x6b, - 0x3c, 0xd1, 0x6e, 0xcd, 0x09, 0x46, 0x18, 0x0e, 0x91, 0xfc, 0x01, 0xdc, 0x4e, 0x40, 0xf7, 0x0f, - 0x1e, 0x18, 0x8d, 0xc7, 0x52, 0x4a, 0x59, 0x1b, 0x4f, 0x34, 0x69, 0x8e, 0xdd, 0x27, 0x0e, 0x3e, - 0x1e, 0xc9, 0xef, 0xc1, 0xad, 0x24, 0xd8, 0x68, 0xb6, 0xa5, 0xb4, 0x22, 0x8f, 0x27, 0xda, 0x6a, - 0x02, 0x8a, 0x7d, 0xba, 0x00, 0xac, 0x1e, 0x99, 0x4d, 0x29, 0xb3, 0x08, 0xac, 0x0e, 0x03, 0x5f, - 0xc9, 0x3c, 0xf9, 0x41, 0x15, 0xb6, 0x7e, 0x4e, 0x81, 0xb4, 0x87, 0x7a, 0x96, 0x3d, 0x4a, 0x3c, - 0x7b, 0x15, 0x36, 0xf7, 0xea, 0x0f, 0x77, 0x6b, 0x8f, 0x3b, 0xff, 0x68, 0x41, 0x69, 0x3c, 0xd1, - 0xde, 0x5d, 0x24, 0x26, 0x8d, 0xf8, 0x18, 0xde, 0xb9, 0xae, 0x31, 0xf5, 0x83, 0x1b, 0xb8, 0xc8, - 0x8e, 0x5c, 0xf9, 0x04, 0x8a, 0xd7, 0x79, 0x33, 0x73, 0x94, 0xf1, 0x44, 0x5b, 0x5f, 0x24, 0xc6, - 0x16, 0x7d, 0x08, 0xeb, 0x4b, 0x98, 0x91, 0x53, 0xc5, 0xf1, 0x44, 0x5b, 0xbb, 0xc6, 0x63, 0x7e, - 0x2d, 0x65, 0xc5, 0xb6, 0x2d, 0x65, 0x71, 0xf3, 0xf2, 0xcc, 0xbc, 0xa7, 0x3f, 0xaa, 0x42, 0xf5, - 0xe0, 0xe2, 0x77, 0x55, 0x78, 0x7a, 0xa9, 0x0a, 0x17, 0x97, 0xaa, 0xf8, 0xfc, 0x52, 0x15, 0x7f, - 0xbb, 0x54, 0xc5, 0xef, 0xae, 0x54, 0xe1, 0xf9, 0x95, 0x2a, 0xfc, 0x72, 0xa5, 0x0a, 0x5f, 0x6c, - 0xbf, 0xf6, 0x93, 0xfb, 0x2a, 0x71, 0x5f, 0x77, 0x73, 0xfc, 0xb2, 0xbd, 0xff, 0x57, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x6e, 0xca, 0xf4, 0x49, 0xd6, 0x07, 0x00, 0x00, + // 886 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0x4f, 0x6f, 0xe3, 0xd4, + 0x17, 0xb5, 0xf3, 0xaf, 0xc9, 0xad, 0xa6, 0x93, 0xf1, 0x2f, 0xbf, 0xe2, 0x06, 0xd5, 0x89, 0xcc, + 0x82, 0xa1, 0xa8, 0x89, 0x66, 0x06, 0x10, 0xaa, 0xc4, 0xa2, 0xc9, 0x24, 0x83, 0x51, 0x9b, 0x56, + 0x4e, 0x8a, 0x34, 0x6c, 0x82, 0x63, 0xbf, 0x26, 0x4f, 0xb5, 0xfd, 0x22, 0xfb, 0xa5, 0x25, 0x7c, + 0x82, 0x51, 0x36, 0xb0, 0x64, 0x13, 0xa9, 0x12, 0x2c, 0x66, 0xc3, 0x6e, 0xd6, 0xac, 0xbb, 0x1c, + 0xcd, 0x0a, 0xb1, 0x18, 0x41, 0xbb, 0x61, 0xcf, 0x17, 0x40, 0xef, 0xd9, 0x71, 0x4c, 0x12, 0x66, + 0x46, 0x20, 0xb1, 0xbb, 0xf7, 0xbe, 0x73, 0xce, 0xbd, 0x3e, 0xd7, 0xf6, 0x03, 0xd5, 0xee, 0x39, + 0x55, 0x93, 0xd8, 0x36, 0x32, 0x29, 0x26, 0x6e, 0xf5, 0xfc, 0x5e, 0x2c, 0xab, 0x0c, 0x3d, 0x42, + 0x89, 0x74, 0xc7, 0xee, 0x39, 0x95, 0x58, 0xf5, 0xfc, 0x5e, 0xb1, 0xd0, 0x27, 0x7d, 0xc2, 0x4f, + 0xab, 0x2c, 0x0a, 0x80, 0xc5, 0x2d, 0x93, 0xf8, 0x0e, 0xf1, 0xbb, 0xc1, 0x41, 0x90, 0x04, 0x47, + 0xaa, 0x0e, 0x99, 0x63, 0xc3, 0x33, 0x1c, 0x5f, 0x7a, 0x07, 0xd6, 0x2d, 0x34, 0xa4, 0x83, 0xae, + 0x8d, 0x1d, 0x4c, 0x65, 0xb1, 0x2c, 0xde, 0xbd, 0x55, 0x4b, 0xc8, 0xa2, 0x0e, 0xbc, 0x7c, 0xc0, + 0xaa, 0x0c, 0x74, 0x81, 0xad, 0x08, 0x94, 0x98, 0x83, 0x78, 0x99, 0x83, 0xd4, 0x0e, 0x64, 0xeb, + 0xc4, 0xa5, 0x9e, 0x61, 0x52, 0x69, 0x03, 0x12, 0xd8, 0xe2, 0x62, 0x39, 0x3d, 0x81, 0x2d, 0x49, + 0x82, 0x94, 0x6b, 0x38, 0x88, 0x33, 0x73, 0x3a, 0x8f, 0x59, 0xcd, 0x41, 0xd4, 0x90, 0x93, 0x41, + 0x8d, 0xc5, 0x52, 0x1e, 0x92, 0x23, 0x0f, 0xcb, 0x29, 0x5e, 0x62, 0xa1, 0xfa, 0x8d, 0x08, 0x6b, + 0xcd, 0x4e, 0xdd, 0x36, 0x7c, 0xff, 0x1f, 0xab, 0x16, 0x21, 0x6b, 0x21, 0x13, 0x3b, 0x86, 0xed, + 0x73, 0xe9, 0xb4, 0x1e, 0xe5, 0xec, 0xcc, 0xc1, 0x2e, 0x35, 0x7a, 0x36, 0x92, 0xd3, 0x65, 0xf1, + 0x6e, 0x56, 0x8f, 0xf2, 0xbd, 0xc2, 0x93, 0xcb, 0x92, 0xf8, 0xe2, 0xd9, 0x2e, 0x74, 0xc8, 0x19, + 0x72, 0xf9, 0x0c, 0xb2, 0xa8, 0x7e, 0x0e, 0xd9, 0xd6, 0xbf, 0x9c, 0x68, 0x4f, 0x5a, 0x56, 0x56, + 0x3f, 0x85, 0x64, 0xab, 0xd9, 0x91, 0xb6, 0x20, 0x4b, 0x59, 0xb1, 0x1b, 0x09, 0xaf, 0xf1, 0x5c, + 0x7b, 0x63, 0x75, 0xe6, 0x59, 0xf6, 0xe8, 0xc2, 0x45, 0x1e, 0xd3, 0x2b, 0xc1, 0xba, 0x19, 0xae, + 0x65, 0x2e, 0x09, 0xb3, 0x92, 0x66, 0xfd, 0xa5, 0x61, 0x62, 0x75, 0xc3, 0xe4, 0x8a, 0x86, 0xa9, + 0x98, 0xc1, 0x05, 0x48, 0x13, 0xd6, 0x8f, 0x3b, 0x98, 0xd3, 0x83, 0x64, 0x2f, 0xf7, 0xe2, 0xd9, + 0x6e, 0x9a, 0x3f, 0xa0, 0xfa, 0xa3, 0x08, 0x89, 0xff, 0x68, 0x96, 0xf8, 0xb2, 0xd3, 0xaf, 0x58, + 0x76, 0x66, 0x61, 0xd9, 0xeb, 0xd1, 0xb4, 0xb2, 0xa8, 0xfa, 0x90, 0xe3, 0x61, 0x67, 0x3c, 0x44, + 0xaf, 0x9f, 0x7a, 0x1b, 0x20, 0x98, 0x9a, 0x8e, 0x87, 0xb3, 0xed, 0xe4, 0x68, 0xc4, 0x7f, 0xc3, + 0xc9, 0xd5, 0x0b, 0x48, 0xd5, 0x09, 0x76, 0x5f, 0xf5, 0x06, 0x7c, 0x06, 0x19, 0xc3, 0x21, 0x23, + 0x37, 0xf8, 0x06, 0x73, 0xb5, 0xfb, 0x57, 0x2f, 0x4b, 0xc2, 0x2f, 0x2f, 0x4b, 0x3b, 0x7d, 0x4c, + 0x07, 0xa3, 0x5e, 0xc5, 0x24, 0x4e, 0xb5, 0x89, 0x5d, 0xdf, 0x1c, 0x60, 0xa3, 0x7a, 0x1a, 0x06, + 0xbb, 0xbe, 0x75, 0x56, 0x65, 0xa3, 0xf9, 0x15, 0xcd, 0xa5, 0x7a, 0xa8, 0xb0, 0x97, 0xfd, 0xee, + 0xb2, 0x24, 0xfc, 0x7e, 0x59, 0x12, 0xd5, 0x2f, 0x21, 0xfd, 0xc8, 0x33, 0x5c, 0x2a, 0xc9, 0xb0, + 0xd6, 0x67, 0x01, 0x42, 0xb3, 0xc6, 0x61, 0x2a, 0x7d, 0x02, 0x30, 0x44, 0x9e, 0x83, 0x7d, 0x1f, + 0x13, 0x97, 0x37, 0xdf, 0xb8, 0xbf, 0x5d, 0x59, 0xfa, 0x13, 0x55, 0x8e, 0x23, 0x90, 0x1e, 0x23, + 0xa8, 0x75, 0xb8, 0xb5, 0x3f, 0xa2, 0x03, 0xe2, 0xe1, 0xaf, 0x0d, 0x06, 0x95, 0x36, 0x21, 0x33, + 0x20, 0xb6, 0x85, 0xbc, 0xb0, 0x51, 0x98, 0xb1, 0x0d, 0x91, 0x21, 0xf2, 0x0c, 0x4a, 0xbc, 0xd0, + 0xc8, 0x28, 0x57, 0x1f, 0x40, 0x6e, 0x9f, 0x52, 0x0f, 0xf7, 0x46, 0x14, 0xb1, 0x3f, 0xc5, 0x19, + 0x1a, 0x87, 0x6c, 0x16, 0xb2, 0x97, 0xf0, 0xdc, 0xb0, 0x47, 0xb3, 0x05, 0x04, 0xc9, 0xce, 0x1f, + 0x22, 0xc0, 0x7c, 0x28, 0xe9, 0x43, 0xd8, 0x3c, 0x6e, 0xe8, 0x87, 0x5a, 0xbb, 0xad, 0x1d, 0xb5, + 0xba, 0x27, 0xad, 0xf6, 0x71, 0xa3, 0xae, 0x35, 0xb5, 0xc6, 0xc3, 0xbc, 0x50, 0xdc, 0x9a, 0x4c, + 0xcb, 0xff, 0x9f, 0x63, 0x4f, 0x5c, 0x7f, 0x88, 0x4c, 0x7c, 0x8a, 0x91, 0x25, 0xbd, 0x07, 0xf9, + 0x18, 0x4d, 0x6b, 0xb7, 0x4f, 0x1a, 0x79, 0xb1, 0xf8, 0xbf, 0xc9, 0xb4, 0x7c, 0x7b, 0x4e, 0xd0, + 0x7c, 0x7f, 0x84, 0xa4, 0xf7, 0xe1, 0x4e, 0x0c, 0x7a, 0x78, 0xf4, 0x50, 0x6b, 0x3e, 0xce, 0x27, + 0x8a, 0x85, 0xc9, 0xb4, 0x9c, 0x9f, 0x63, 0x0f, 0x89, 0x85, 0x4f, 0xc7, 0xd2, 0xbb, 0x70, 0x3b, + 0x0e, 0xd6, 0x5a, 0x9d, 0x7c, 0xb2, 0x28, 0x4d, 0xa6, 0xe5, 0x8d, 0x18, 0x14, 0xbb, 0x74, 0x01, + 0x58, 0x3b, 0xd1, 0x5b, 0xf9, 0xd4, 0x22, 0xb0, 0x36, 0xf2, 0xdc, 0x62, 0xea, 0xc9, 0xf7, 0x8a, + 0xb0, 0xf3, 0x53, 0x02, 0xf2, 0x07, 0xa8, 0x6f, 0x98, 0xe3, 0xd8, 0xb3, 0xd7, 0x60, 0xfb, 0xa0, + 0xf1, 0x68, 0xbf, 0xfe, 0xb8, 0xfb, 0xb7, 0x16, 0x94, 0x26, 0xd3, 0xf2, 0xdb, 0x8b, 0xc4, 0xb8, + 0x11, 0x1f, 0xc1, 0x5b, 0xcb, 0x1a, 0x33, 0x3f, 0xb8, 0x81, 0x8b, 0xec, 0xc0, 0x95, 0x8f, 0x41, + 0x5e, 0xe6, 0x45, 0xe6, 0x14, 0x27, 0xd3, 0xf2, 0xe6, 0x22, 0x31, 0xb4, 0xe8, 0x03, 0xd8, 0x5c, + 0xc1, 0x0c, 0x9c, 0x92, 0x27, 0xd3, 0x72, 0x61, 0x89, 0xc7, 0xfc, 0x5a, 0xc9, 0x0a, 0x6d, 0x5b, + 0xc9, 0xe2, 0xe6, 0x65, 0x99, 0x79, 0x4f, 0x7f, 0x50, 0x84, 0xda, 0xd1, 0xd5, 0x6f, 0x8a, 0xf0, + 0xf4, 0x5a, 0x11, 0xae, 0xae, 0x15, 0xf1, 0xf9, 0xb5, 0x22, 0xfe, 0x7a, 0xad, 0x88, 0xdf, 0xde, + 0x28, 0xc2, 0xf3, 0x1b, 0x45, 0xf8, 0xf9, 0x46, 0x11, 0xbe, 0xd8, 0x7d, 0xed, 0x27, 0xf7, 0x55, + 0xec, 0xee, 0xee, 0x65, 0xf8, 0xc5, 0xfb, 0xe0, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x96, 0x09, + 0xbe, 0x0d, 0xe2, 0x07, 0x00, 0x00, } func (this *Coin) Equal(that interface{}) bool { diff --git a/x/collection/event.pb.go b/x/collection/event.pb.go index 6a517f9c9e..ecad00a67f 100644 --- a/x/collection/event.pb.go +++ b/x/collection/event.pb.go @@ -358,6 +358,8 @@ func (m *EventCreatedContract) GetUri() string { // EventCreatedFTClass is emitted when a new fungible token class is created. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventCreatedFTClass struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -688,6 +690,8 @@ func (m *EventRenounced) GetPermission() Permission { // EventMintedFT is emitted when fungible tokens are minted. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventMintedFT struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -1143,6 +1147,8 @@ func (m *EventModifiedNFT) GetChanges() []Attribute { // EventAttached is emitted when a token is attached to another. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventAttached struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -1227,6 +1233,8 @@ func (m *EventAttached) GetTarget() string { // EventDetached is emitted when a token is detached from its parent. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventDetached struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -1311,6 +1319,8 @@ func (m *EventDetached) GetPreviousParent() string { // EventOwnerChanged is emitted when the owner of token is changed by operation applied to its ancestor. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventOwnerChanged struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -1386,6 +1396,8 @@ func (m *EventOwnerChanged) GetTo() string { // EventRootChanged is emitted when the root of token is changed by operation applied to its ancestor. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventRootChanged struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -1483,69 +1495,70 @@ func init() { func init() { proto.RegisterFile("lbm/collection/v1/event.proto", fileDescriptor_478cfab12ea1b00e) } var fileDescriptor_478cfab12ea1b00e = []byte{ - // 987 bytes of a gzipped FileDescriptorProto + // 998 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x97, 0x4f, 0x6f, 0x1b, 0x45, - 0x14, 0xc0, 0xbd, 0xb6, 0xe3, 0x3f, 0x2f, 0x25, 0xdd, 0x6c, 0x42, 0xb2, 0xdd, 0x12, 0xd7, 0xda, - 0x0b, 0x51, 0x45, 0x6d, 0xb5, 0xc0, 0xa5, 0x82, 0x83, 0xed, 0x3a, 0xd1, 0xaa, 0xb2, 0x1b, 0x6d, - 0xec, 0x03, 0x5c, 0xac, 0xf5, 0x7a, 0x62, 0x2f, 0xf1, 0xce, 0x58, 0xb3, 0xb3, 0x86, 0xf0, 0x09, - 0x90, 0xb9, 0x20, 0x2a, 0x38, 0x20, 0xe5, 0x42, 0x2b, 0xd1, 0x8f, 0xd2, 0x0b, 0x52, 0x8e, 0x9c, - 0x10, 0x4a, 0xbe, 0x08, 0xda, 0xf1, 0x8e, 0xb3, 0x8e, 0x2d, 0x12, 0xe3, 0x06, 0x6e, 0xf3, 0xde, - 0xbc, 0x37, 0xf3, 0x7b, 0x6f, 0xde, 0xbc, 0xd9, 0x85, 0x9d, 0x7e, 0xdb, 0x2d, 0xda, 0xa4, 0xdf, - 0x47, 0x36, 0x73, 0x08, 0x2e, 0x0e, 0x1f, 0x17, 0xd1, 0x10, 0x61, 0x56, 0x18, 0x50, 0xc2, 0x88, - 0xb2, 0xde, 0x6f, 0xbb, 0x85, 0xcb, 0xe9, 0xc2, 0xf0, 0xb1, 0xb6, 0xd9, 0x25, 0x5d, 0xc2, 0x67, - 0x8b, 0xc1, 0x68, 0x6c, 0xa8, 0xe9, 0xb3, 0xeb, 0x44, 0xdc, 0xb8, 0x8d, 0xfe, 0x4a, 0x82, 0x6c, - 0x35, 0x58, 0xfc, 0x10, 0x61, 0xa6, 0x3c, 0x80, 0x55, 0x9b, 0x60, 0x46, 0x2d, 0x9b, 0xb5, 0x9c, - 0x8e, 0x2a, 0xe5, 0xa5, 0xdd, 0xac, 0x09, 0x42, 0x65, 0x74, 0x14, 0x0d, 0x32, 0x64, 0x80, 0xa8, - 0xc5, 0x08, 0x55, 0xe3, 0x7c, 0x76, 0x22, 0x2b, 0x0a, 0x24, 0x8f, 0x28, 0x71, 0xd5, 0x04, 0xd7, - 0xf3, 0xb1, 0xb2, 0x06, 0x71, 0x46, 0xd4, 0x24, 0xd7, 0xc4, 0x19, 0x51, 0x3e, 0x85, 0x94, 0xe5, - 0x12, 0x1f, 0x33, 0x75, 0x25, 0x9f, 0xd8, 0x5d, 0x7d, 0xb2, 0x5d, 0x98, 0x09, 0xa6, 0x50, 0x21, - 0x0e, 0x2e, 0x27, 0xdf, 0xfe, 0xf9, 0x20, 0x66, 0x86, 0xc6, 0x3a, 0x86, 0x6d, 0x0e, 0x59, 0xf2, - 0x59, 0x8f, 0x50, 0xe7, 0x5b, 0xd4, 0x79, 0x21, 0x76, 0xbd, 0x16, 0x79, 0x0b, 0x52, 0x3d, 0xd2, - 0xef, 0x20, 0x01, 0x1c, 0x4a, 0x53, 0xa1, 0x24, 0xa6, 0x43, 0xd1, 0x8f, 0x61, 0x93, 0xef, 0x67, - 0xa2, 0x21, 0x39, 0xbe, 0xed, 0xcd, 0xbe, 0x97, 0xc2, 0xdd, 0x2a, 0x14, 0x59, 0x0c, 0x75, 0x2a, - 0xe1, 0x72, 0x8a, 0x0a, 0x69, 0x3b, 0x50, 0x11, 0x1a, 0xee, 0x24, 0xc4, 0xab, 0x1c, 0xf1, 0x19, - 0x0e, 0x05, 0x92, 0xd8, 0x72, 0x91, 0x38, 0x8b, 0x60, 0x1c, 0xe8, 0x5c, 0xc4, 0xac, 0xf0, 0x34, - 0xf8, 0x58, 0x91, 0x21, 0xe1, 0x53, 0x47, 0x5d, 0xe1, 0xaa, 0x60, 0xa8, 0xff, 0x2e, 0xc1, 0x46, - 0x94, 0x66, 0xaf, 0x51, 0xe9, 0x5b, 0x9e, 0xb7, 0x5c, 0x69, 0xdc, 0x83, 0x0c, 0x23, 0xc7, 0x08, - 0x07, 0x9e, 0x63, 0xa4, 0x34, 0x97, 0x23, 0xa4, 0xc9, 0x39, 0xa4, 0x2b, 0x11, 0x52, 0x0d, 0x32, - 0x1d, 0x64, 0x3b, 0xae, 0xd5, 0xf7, 0xd4, 0x54, 0x5e, 0xda, 0x5d, 0x31, 0x27, 0x72, 0x30, 0xe7, - 0x3a, 0x98, 0x59, 0xed, 0x3e, 0x52, 0xd3, 0x79, 0x69, 0x37, 0x63, 0x4e, 0x64, 0xfd, 0x97, 0x2b, - 0xd9, 0xad, 0xbf, 0x93, 0x80, 0x76, 0x00, 0xc6, 0x01, 0xb1, 0x93, 0x81, 0xc8, 0x72, 0x96, 0x6b, - 0x1a, 0x27, 0x03, 0x74, 0xd3, 0xa0, 0xf4, 0x5f, 0x25, 0xb8, 0xc3, 0xe1, 0xf6, 0xa9, 0x85, 0x19, - 0xea, 0x5c, 0x0f, 0xa5, 0x42, 0xba, 0xcb, 0x6d, 0x05, 0x93, 0x10, 0x2f, 0x67, 0x04, 0x8f, 0x10, - 0x95, 0xcf, 0x01, 0x06, 0x88, 0xba, 0x8e, 0xe7, 0x39, 0x04, 0x73, 0xa6, 0xb5, 0x27, 0x3b, 0x73, - 0x2e, 0xde, 0xc1, 0xc4, 0xc8, 0x8c, 0x38, 0xe8, 0x23, 0x09, 0xd6, 0xc2, 0xdb, 0x80, 0x89, 0x8f, - 0xed, 0x85, 0x30, 0xd1, 0x34, 0xe6, 0x55, 0x98, 0xc4, 0xa2, 0x30, 0x2f, 0x25, 0x78, 0x8f, 0xc3, - 0xd4, 0x1c, 0xcc, 0xab, 0x73, 0xb9, 0x73, 0x1c, 0xf7, 0xa7, 0xc4, 0x9c, 0xfe, 0x94, 0x5c, 0xa4, - 0x3f, 0xbd, 0x14, 0x29, 0x1a, 0x53, 0xd5, 0xdf, 0x35, 0xd6, 0x27, 0x90, 0xe2, 0xc5, 0xe5, 0x85, - 0x58, 0x5b, 0x73, 0xb0, 0xea, 0x7b, 0x0d, 0x41, 0x35, 0xb6, 0xd5, 0x7f, 0x92, 0x60, 0x95, 0x53, - 0x95, 0x7d, 0x8a, 0x6f, 0x72, 0x6a, 0x8b, 0x76, 0xf7, 0x7f, 0x99, 0xad, 0x1f, 0x25, 0x78, 0x7f, - 0x9c, 0x2d, 0xd2, 0x71, 0x8e, 0x9c, 0x48, 0xc7, 0x5b, 0x8a, 0xf0, 0x33, 0x48, 0xdb, 0x3d, 0x0b, - 0x77, 0x91, 0xa7, 0x26, 0x38, 0xce, 0x07, 0x73, 0x70, 0x4a, 0x8c, 0x51, 0xa7, 0xed, 0x33, 0x14, - 0x32, 0x09, 0x17, 0xfd, 0x4c, 0x0a, 0xdf, 0x18, 0x01, 0xd5, 0x08, 0x92, 0x78, 0xfb, 0xad, 0x22, - 0x42, 0x9d, 0x5c, 0x98, 0x5a, 0xb9, 0x0f, 0xd9, 0x60, 0xd9, 0x16, 0xef, 0x36, 0xe3, 0xce, 0x92, - 0x09, 0x14, 0x75, 0xcb, 0x45, 0xfa, 0x1b, 0x09, 0xe4, 0xa9, 0x90, 0x96, 0xae, 0xcb, 0x7f, 0xe8, - 0xe3, 0x4b, 0xc5, 0xa1, 0xff, 0x2c, 0xae, 0x75, 0x89, 0x31, 0xcb, 0xee, 0x2d, 0x5b, 0xac, 0x97, - 0xcf, 0x70, 0x62, 0xea, 0x19, 0x56, 0x21, 0xed, 0xf9, 0xed, 0xaf, 0x90, 0xcd, 0xc2, 0xd6, 0x2c, - 0xc4, 0xc0, 0x83, 0x59, 0xb4, 0x8b, 0x58, 0x98, 0xc5, 0x50, 0xd2, 0x7f, 0x13, 0x60, 0xcf, 0xd0, - 0xff, 0x03, 0xf6, 0x21, 0xdc, 0x1d, 0x50, 0x34, 0x74, 0x88, 0xef, 0xb5, 0x06, 0x16, 0x45, 0x58, - 0x10, 0xae, 0x09, 0xf5, 0x01, 0xd7, 0xea, 0x1e, 0xac, 0x73, 0xd0, 0x17, 0x5f, 0x63, 0x44, 0x2b, - 0x3c, 0xaf, 0x37, 0x80, 0x8d, 0x9e, 0x68, 0x7c, 0xe6, 0x65, 0xbe, 0xee, 0x7b, 0x4e, 0xa7, 0x61, - 0x85, 0x99, 0x84, 0xb0, 0xff, 0x68, 0xcf, 0x87, 0xaf, 0xe3, 0x70, 0x67, 0x52, 0x48, 0xcf, 0xd1, - 0x89, 0xf2, 0x14, 0xee, 0x95, 0x1a, 0x0d, 0xd3, 0x28, 0x37, 0x1b, 0xd5, 0xd6, 0xf3, 0xea, 0x17, - 0xad, 0x66, 0xfd, 0xf0, 0xa0, 0x5a, 0x31, 0xf6, 0x8c, 0xea, 0x33, 0x39, 0xa6, 0xdd, 0x1f, 0x9d, - 0xe6, 0xb7, 0xa3, 0x0e, 0x4d, 0xec, 0x0d, 0x90, 0xcd, 0x6f, 0x84, 0xf2, 0x11, 0x28, 0xd3, 0xbe, - 0xf5, 0x52, 0xad, 0x2a, 0x4b, 0xda, 0xe6, 0xe8, 0x34, 0x2f, 0x47, 0x9d, 0x82, 0x1b, 0x35, 0x6b, - 0x5d, 0xab, 0x36, 0x4a, 0x72, 0x7c, 0xd6, 0xba, 0x16, 0x7c, 0xb2, 0x3c, 0x05, 0x6d, 0xda, 0xba, - 0x5c, 0x3a, 0xac, 0xb6, 0x8c, 0xda, 0x7e, 0xab, 0x69, 0x1a, 0x72, 0x46, 0xd3, 0x46, 0xa7, 0xf9, - 0xad, 0xa8, 0x57, 0xd9, 0xf2, 0x90, 0xe1, 0x76, 0x9b, 0xa6, 0xa1, 0x3c, 0x84, 0xf5, 0x2b, 0x31, - 0x99, 0x86, 0xbc, 0xa9, 0x6d, 0x8c, 0x4e, 0xf3, 0x77, 0xa7, 0x62, 0x31, 0x0d, 0x2d, 0xf3, 0xdd, - 0xab, 0x5c, 0xec, 0xcd, 0xeb, 0x5c, 0x4c, 0x4f, 0x66, 0x12, 0x72, 0x5a, 0x4f, 0x66, 0xb2, 0xf2, - 0x46, 0x79, 0xff, 0xed, 0x79, 0x4e, 0x3a, 0x3b, 0xcf, 0x49, 0x7f, 0x9d, 0xe7, 0xa4, 0x1f, 0x2e, - 0x72, 0xb1, 0xb3, 0x8b, 0x5c, 0xec, 0x8f, 0x8b, 0x5c, 0xec, 0xcb, 0x47, 0x5d, 0x87, 0xf5, 0xfc, - 0x76, 0xc1, 0x26, 0x6e, 0x71, 0xcf, 0xc1, 0x9e, 0xdd, 0x73, 0xac, 0xe2, 0x51, 0x38, 0x78, 0xe4, - 0x75, 0x8e, 0x8b, 0xdf, 0x44, 0x7e, 0x14, 0xda, 0x29, 0xfe, 0xa7, 0xf0, 0xf1, 0xdf, 0x01, 0x00, - 0x00, 0xff, 0xff, 0x7f, 0x69, 0x1a, 0x22, 0x97, 0x0c, 0x00, 0x00, + 0x14, 0xc0, 0x3d, 0xb6, 0xe3, 0x3f, 0x2f, 0x25, 0xdd, 0x6c, 0x42, 0xb2, 0xdd, 0x12, 0xd7, 0xda, + 0x0b, 0x51, 0x45, 0x6d, 0xb5, 0xc0, 0x25, 0x82, 0x83, 0xed, 0x3a, 0xd1, 0xaa, 0xb2, 0x1b, 0x6d, + 0xec, 0x03, 0x5c, 0xac, 0xf5, 0x7a, 0x62, 0x2f, 0xf1, 0xce, 0x58, 0xbb, 0x63, 0x97, 0xf0, 0x09, + 0x90, 0xb9, 0x20, 0x10, 0x42, 0x42, 0xca, 0x85, 0xf6, 0x50, 0x89, 0x2f, 0xd2, 0x63, 0xb8, 0x71, + 0x42, 0x28, 0xf9, 0x22, 0x68, 0x67, 0x77, 0x9c, 0x75, 0x6c, 0x91, 0x18, 0xb7, 0x70, 0x9b, 0xf7, + 0xe6, 0xbd, 0x99, 0xdf, 0x7b, 0xf3, 0xe6, 0xcd, 0x2e, 0xec, 0xf4, 0xdb, 0x4e, 0xd1, 0xa2, 0xfd, + 0x3e, 0xb6, 0x98, 0x4d, 0x49, 0x71, 0xf4, 0xb8, 0x88, 0x47, 0x98, 0xb0, 0xc2, 0xc0, 0xa5, 0x8c, + 0xca, 0xeb, 0xfd, 0xb6, 0x53, 0xb8, 0x9a, 0x2e, 0x8c, 0x1e, 0xab, 0x9b, 0x5d, 0xda, 0xa5, 0x7c, + 0xb6, 0xe8, 0x8f, 0x02, 0x43, 0x55, 0x9b, 0x5d, 0x27, 0xe2, 0xc6, 0x6d, 0xb4, 0x97, 0x08, 0xb2, + 0x55, 0x7f, 0xf1, 0x23, 0x4c, 0x98, 0xfc, 0x00, 0x56, 0x2d, 0x4a, 0x98, 0x6b, 0x5a, 0xac, 0x65, + 0x77, 0x14, 0x94, 0x47, 0xbb, 0x59, 0x03, 0x84, 0x4a, 0xef, 0xc8, 0x2a, 0x64, 0xe8, 0x00, 0xbb, + 0x26, 0xa3, 0xae, 0x12, 0xe7, 0xb3, 0x13, 0x59, 0x96, 0x21, 0x79, 0xec, 0x52, 0x47, 0x49, 0x70, + 0x3d, 0x1f, 0xcb, 0x6b, 0x10, 0x67, 0x54, 0x49, 0x72, 0x4d, 0x9c, 0x51, 0xf9, 0x53, 0x48, 0x99, + 0x0e, 0x1d, 0x12, 0xa6, 0xac, 0xe4, 0x13, 0xbb, 0xab, 0x4f, 0xb6, 0x0b, 0x33, 0xc1, 0x14, 0x2a, + 0xd4, 0x26, 0xe5, 0xe4, 0x9b, 0x3f, 0x1f, 0xc4, 0x8c, 0xd0, 0x58, 0x23, 0xb0, 0xcd, 0x21, 0x4b, + 0x43, 0xd6, 0xa3, 0xae, 0xfd, 0x0d, 0xee, 0x3c, 0x17, 0xbb, 0xde, 0x88, 0xbc, 0x05, 0xa9, 0x1e, + 0xed, 0x77, 0xb0, 0x00, 0x0e, 0xa5, 0xa9, 0x50, 0x12, 0xd3, 0xa1, 0x68, 0x27, 0xb0, 0xc9, 0xf7, + 0x33, 0xf0, 0x88, 0x9e, 0xbc, 0xeb, 0xcd, 0xbe, 0x43, 0xe1, 0x6e, 0x15, 0x17, 0x9b, 0x0c, 0x77, + 0x2a, 0xe1, 0x72, 0xb2, 0x02, 0x69, 0xcb, 0x57, 0x51, 0x37, 0xdc, 0x49, 0x88, 0xd7, 0x39, 0xe2, + 0x33, 0x1c, 0x32, 0x24, 0x89, 0xe9, 0x60, 0x71, 0x16, 0xfe, 0xd8, 0xd7, 0x39, 0x98, 0x99, 0xe1, + 0x69, 0xf0, 0xb1, 0x2c, 0x41, 0x62, 0xe8, 0xda, 0xca, 0x0a, 0x57, 0xf9, 0x43, 0xed, 0x77, 0x04, + 0x1b, 0x51, 0x9a, 0xfd, 0x46, 0xa5, 0x6f, 0x7a, 0xde, 0x72, 0xa5, 0x71, 0x0f, 0x32, 0x8c, 0x9e, + 0x60, 0xe2, 0x7b, 0x06, 0x48, 0x69, 0x2e, 0x47, 0x48, 0x93, 0x73, 0x48, 0x57, 0x22, 0xa4, 0x2a, + 0x64, 0x3a, 0xd8, 0xb2, 0x1d, 0xb3, 0xef, 0x29, 0xa9, 0x3c, 0xda, 0x5d, 0x31, 0x26, 0xb2, 0x3f, + 0xe7, 0xd8, 0x84, 0x99, 0xed, 0x3e, 0x56, 0xd2, 0x79, 0xb4, 0x9b, 0x31, 0x26, 0xf2, 0x5e, 0x5c, + 0x41, 0xda, 0x2f, 0xd7, 0x32, 0x5c, 0x7f, 0x2b, 0x41, 0xed, 0x00, 0x04, 0x41, 0xb1, 0xd3, 0x81, + 0xc8, 0x74, 0x96, 0x6b, 0x1a, 0xa7, 0x03, 0x7c, 0xdb, 0xc0, 0xb4, 0x5f, 0x11, 0xdc, 0xe1, 0x70, + 0x07, 0xae, 0x49, 0x18, 0xee, 0xdc, 0x0c, 0xa5, 0x40, 0xba, 0xcb, 0x6d, 0x05, 0x93, 0x10, 0xaf, + 0x66, 0x04, 0x8f, 0x10, 0xe5, 0xcf, 0x01, 0x06, 0xd8, 0x75, 0x6c, 0xcf, 0xb3, 0x29, 0xe1, 0x4c, + 0x6b, 0x4f, 0x76, 0xe6, 0x5c, 0xbe, 0xc3, 0x89, 0x91, 0x11, 0x71, 0xd0, 0xc6, 0x08, 0xd6, 0xc2, + 0x1b, 0x41, 0xe8, 0x90, 0x58, 0x0b, 0x61, 0xe2, 0x69, 0xcc, 0xeb, 0x30, 0x89, 0x45, 0x61, 0x7e, + 0x46, 0xf0, 0x1e, 0x87, 0xa9, 0xd9, 0x84, 0x57, 0xe8, 0x72, 0xe7, 0x18, 0xf4, 0xa8, 0xc4, 0x9c, + 0x1e, 0x95, 0x5c, 0xa0, 0x47, 0xf1, 0x42, 0xfb, 0x51, 0xa4, 0x29, 0x20, 0xab, 0xbf, 0x6d, 0xb4, + 0x4f, 0x20, 0xc5, 0x0b, 0xcc, 0x0b, 0xd1, 0xb6, 0xe6, 0xa0, 0xd5, 0xf7, 0x1b, 0x82, 0x2c, 0xb0, + 0xd5, 0x7e, 0x42, 0xb0, 0xca, 0xa9, 0xca, 0x43, 0x97, 0xdc, 0xe6, 0xe4, 0x16, 0xed, 0xf2, 0xff, + 0x2e, 0x63, 0xda, 0x0f, 0x08, 0xde, 0x0f, 0xb2, 0x45, 0x3b, 0xf6, 0xb1, 0x1d, 0xe9, 0x7c, 0x4b, + 0x11, 0x7e, 0x06, 0x69, 0xab, 0x67, 0x92, 0x2e, 0xf6, 0x94, 0x04, 0xc7, 0xf9, 0x60, 0x0e, 0x4e, + 0x89, 0x31, 0xd7, 0x6e, 0x0f, 0x19, 0x0e, 0x99, 0x84, 0x8b, 0x76, 0x8e, 0xc2, 0xb7, 0x46, 0x40, + 0x35, 0xfc, 0x24, 0xbe, 0xfb, 0x76, 0x11, 0xa1, 0x4e, 0x2e, 0x4c, 0x2d, 0xdf, 0x87, 0xac, 0xbf, + 0x6c, 0x8b, 0x77, 0x9c, 0xa0, 0xbb, 0x64, 0x7c, 0x45, 0xdd, 0x74, 0xb0, 0xf6, 0x1a, 0x81, 0x34, + 0x15, 0xd2, 0xd2, 0x75, 0xf9, 0x0f, 0xfd, 0x7c, 0xa9, 0x38, 0xfc, 0x4e, 0x1d, 0x5c, 0xed, 0x12, + 0x63, 0xa6, 0xd5, 0x5b, 0xb6, 0x58, 0xaf, 0x9e, 0xe3, 0xc4, 0xd4, 0x73, 0xac, 0x40, 0xda, 0x1b, + 0xb6, 0xbf, 0xc2, 0x16, 0x0b, 0xdb, 0xb3, 0x10, 0x7d, 0x0f, 0x66, 0xba, 0x5d, 0xcc, 0xc2, 0x2c, + 0x86, 0x12, 0xbf, 0xdd, 0xbf, 0x09, 0xb8, 0xa7, 0xf8, 0xff, 0x81, 0xfb, 0x10, 0xee, 0x0e, 0x5c, + 0x3c, 0xb2, 0xe9, 0xd0, 0x6b, 0x0d, 0x4c, 0x17, 0x13, 0x41, 0xb9, 0x26, 0xd4, 0x87, 0x5c, 0xcb, + 0x69, 0x5f, 0xc0, 0x3a, 0x87, 0x7d, 0xfe, 0x82, 0x60, 0xb7, 0xc2, 0xf3, 0x7b, 0x0b, 0xe0, 0xe8, + 0xc9, 0xc6, 0x67, 0x5e, 0xea, 0x9b, 0xbe, 0xef, 0xf8, 0xc6, 0xa3, 0xb0, 0xda, 0x0c, 0x4a, 0xd9, + 0x7f, 0xb8, 0xef, 0xc3, 0x57, 0x71, 0xb8, 0x33, 0x29, 0xac, 0x67, 0xf8, 0x54, 0xde, 0x83, 0x7b, + 0xa5, 0x46, 0xc3, 0xd0, 0xcb, 0xcd, 0x46, 0xb5, 0xf5, 0xac, 0xfa, 0x45, 0xab, 0x59, 0x3f, 0x3a, + 0xac, 0x56, 0xf4, 0x7d, 0xbd, 0xfa, 0x54, 0x8a, 0xa9, 0xf7, 0xc7, 0x67, 0xf9, 0xed, 0xa8, 0x43, + 0x93, 0x78, 0x03, 0x6c, 0xf1, 0x1b, 0x22, 0x7f, 0x04, 0xf2, 0xb4, 0x6f, 0xbd, 0x54, 0xab, 0x4a, + 0x48, 0xdd, 0x1c, 0x9f, 0xe5, 0xa5, 0xa8, 0x93, 0x7f, 0xc3, 0x66, 0xad, 0x6b, 0xd5, 0x46, 0x49, + 0x8a, 0xcf, 0x5a, 0xd7, 0xfc, 0x4f, 0x99, 0x3d, 0x50, 0xa7, 0xad, 0xcb, 0xa5, 0xa3, 0x6a, 0x4b, + 0xaf, 0x1d, 0xb4, 0x9a, 0x86, 0x2e, 0x65, 0x54, 0x75, 0x7c, 0x96, 0xdf, 0x8a, 0x7a, 0x95, 0x4d, + 0x0f, 0xeb, 0x4e, 0xb7, 0x69, 0xe8, 0xf2, 0x43, 0x58, 0xbf, 0x16, 0x93, 0xa1, 0x4b, 0x9b, 0xea, + 0xc6, 0xf8, 0x2c, 0x7f, 0x77, 0x2a, 0x16, 0x43, 0x57, 0x33, 0xdf, 0xbe, 0xcc, 0xc5, 0x5e, 0xbf, + 0xca, 0xc5, 0xb4, 0x64, 0x26, 0x21, 0xa5, 0xb5, 0x64, 0x26, 0x2b, 0x6d, 0x94, 0x0f, 0xde, 0x5c, + 0xe4, 0xd0, 0xf9, 0x45, 0x0e, 0xfd, 0x75, 0x91, 0x43, 0xdf, 0x5f, 0xe6, 0x62, 0xe7, 0x97, 0xb9, + 0xd8, 0x1f, 0x97, 0xb9, 0xd8, 0x97, 0x8f, 0xba, 0x36, 0xeb, 0x0d, 0xdb, 0x05, 0x8b, 0x3a, 0xc5, + 0x7d, 0x9b, 0x78, 0x56, 0xcf, 0x36, 0x8b, 0xc7, 0xe1, 0xe0, 0x91, 0xd7, 0x39, 0x29, 0x7e, 0x1d, + 0xf9, 0x81, 0x68, 0xa7, 0xf8, 0x1f, 0xc4, 0xc7, 0x7f, 0x07, 0x00, 0x00, 0xff, 0xff, 0xab, 0x08, + 0x5b, 0x3e, 0xaf, 0x0c, 0x00, 0x00, } func (m *EventSent) Marshal() (dAtA []byte, err error) { diff --git a/x/collection/genesis.pb.go b/x/collection/genesis.pb.go index b8d8774c94..330f265f69 100644 --- a/x/collection/genesis.pb.go +++ b/x/collection/genesis.pb.go @@ -43,7 +43,7 @@ type GenesisState struct { // nfts is an array containing the nfts. Nfts []ContractNFTs `protobuf:"bytes,7,rep,name=nfts,proto3" json:"nfts"` // parents represents the parents of (non-fungible) tokens. - Parents []ContractTokenRelations `protobuf:"bytes,8,rep,name=parents,proto3" json:"parents"` + Parents []ContractTokenRelations `protobuf:"bytes,8,rep,name=parents,proto3" json:"parents"` // Deprecated: Do not use. // grants defines the grant information. Grants []ContractGrants `protobuf:"bytes,9,rep,name=grants,proto3" json:"grants"` // authorizations defines the approve information. @@ -136,6 +136,7 @@ func (m *GenesisState) GetNfts() []ContractNFTs { return nil } +// Deprecated: Do not use. func (m *GenesisState) GetParents() []ContractTokenRelations { if m != nil { return m.Parents @@ -608,7 +609,7 @@ type NextClassIDs struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` // id for the fungible tokens. - Fungible github_com_Finschia_finschia_sdk_types.Uint `protobuf:"bytes,2,opt,name=fungible,proto3,customtype=github.com/Finschia/finschia-sdk/types.Uint" json:"fungible"` + Fungible github_com_Finschia_finschia_sdk_types.Uint `protobuf:"bytes,2,opt,name=fungible,proto3,customtype=github.com/Finschia/finschia-sdk/types.Uint" json:"fungible"` // Deprecated: Do not use. // id for the non-fungible tokens. NonFungible github_com_Finschia_finschia_sdk_types.Uint `protobuf:"bytes,3,opt,name=non_fungible,json=nonFungible,proto3,customtype=github.com/Finschia/finschia-sdk/types.Uint" json:"non_fungible"` } @@ -755,6 +756,8 @@ func (m *NextTokenID) GetClassId() string { } // ContractTokenRelations defines token relations belong to a contract. +// +// Deprecated: Do not use. type ContractTokenRelations struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -810,6 +813,8 @@ func (m *ContractTokenRelations) GetRelations() []TokenRelation { } // TokenRelation defines relations between two tokens. +// +// Deprecated: Do not use. type TokenRelation struct { // self Self string `protobuf:"bytes,1,opt,name=self,proto3" json:"self,omitempty"` @@ -884,65 +889,66 @@ func init() { func init() { proto.RegisterFile("lbm/collection/v1/genesis.proto", fileDescriptor_2b8b3f666cffb1ec) } var fileDescriptor_2b8b3f666cffb1ec = []byte{ - // 919 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0x4f, 0x6f, 0x1b, 0x45, - 0x14, 0x8f, 0x13, 0xc7, 0x7f, 0x9e, 0xdd, 0x14, 0x46, 0x51, 0xd9, 0x04, 0xc9, 0x0e, 0x8b, 0x10, - 0x05, 0x94, 0x5d, 0x9a, 0x4a, 0xa0, 0x22, 0x44, 0x15, 0xbb, 0x24, 0x18, 0xa4, 0x82, 0xdc, 0x00, - 0x12, 0x17, 0x6b, 0xbc, 0x3b, 0x76, 0x46, 0x5d, 0xcf, 0x98, 0x9d, 0x71, 0x94, 0xf4, 0xd2, 0x33, - 0x37, 0x3e, 0x02, 0x67, 0xce, 0x7c, 0x88, 0x8a, 0x53, 0x8f, 0x15, 0x87, 0x82, 0x92, 0x0b, 0x1f, - 0x03, 0xed, 0xcc, 0xec, 0x7a, 0x6d, 0x6f, 0x76, 0x81, 0xde, 0x76, 0x66, 0x7e, 0x7f, 0xde, 0x3c, - 0xbf, 0xf7, 0xc6, 0xd0, 0x0e, 0x86, 0x13, 0xd7, 0xe3, 0x41, 0x40, 0x3c, 0x49, 0x39, 0x73, 0xcf, - 0xee, 0xb8, 0x63, 0xc2, 0x88, 0xa0, 0xc2, 0x99, 0x86, 0x5c, 0x72, 0xf4, 0x7a, 0x30, 0x9c, 0x38, - 0x73, 0x80, 0x73, 0x76, 0x67, 0x77, 0x67, 0xcc, 0xf9, 0x38, 0x20, 0xae, 0x02, 0x0c, 0x67, 0x23, - 0x17, 0xb3, 0x0b, 0x8d, 0xde, 0xdd, 0x1e, 0xf3, 0x31, 0x57, 0x9f, 0x6e, 0xf4, 0x65, 0x76, 0x77, - 0x3c, 0x2e, 0x26, 0x5c, 0x0c, 0xf4, 0x81, 0x5e, 0x98, 0x23, 0x7b, 0xd5, 0x3f, 0x65, 0xa6, 0x30, - 0xf6, 0x55, 0x05, 0x9a, 0xc7, 0x3a, 0xa8, 0x47, 0x12, 0x4b, 0x82, 0x3e, 0x86, 0xca, 0x14, 0x87, - 0x78, 0x22, 0xac, 0xd2, 0x5e, 0xe9, 0x76, 0xe3, 0x60, 0xc7, 0x59, 0x09, 0xd2, 0xf9, 0x46, 0x01, - 0x3a, 0xe5, 0x67, 0x2f, 0xdb, 0x6b, 0x7d, 0x03, 0x47, 0xf7, 0xa1, 0xee, 0x71, 0x26, 0x43, 0xec, - 0x49, 0x61, 0xad, 0xef, 0x6d, 0xdc, 0x6e, 0x1c, 0xbc, 0x99, 0xc1, 0xed, 0x1a, 0x8c, 0x61, 0xcf, - 0x39, 0xe8, 0x2b, 0xd8, 0x62, 0xe4, 0x5c, 0x0e, 0xbc, 0x00, 0x0b, 0x31, 0xa0, 0xbe, 0xb0, 0x36, - 0x94, 0x4a, 0x3b, 0x43, 0xe5, 0x21, 0x39, 0x97, 0xdd, 0x08, 0xd7, 0x7b, 0x10, 0xc7, 0xd1, 0x64, - 0xc9, 0x9e, 0x2f, 0x50, 0x07, 0xaa, 0x4a, 0x87, 0x08, 0xab, 0xac, 0x54, 0xec, 0x9c, 0x58, 0xba, - 0x1a, 0x69, 0x84, 0x62, 0x22, 0x7a, 0x64, 0x02, 0x92, 0xfc, 0x31, 0x61, 0x2a, 0xa0, 0x4d, 0x25, - 0xf5, 0x6e, 0x8e, 0x54, 0x14, 0xd8, 0x49, 0x84, 0x5f, 0x0a, 0x4c, 0xef, 0xf9, 0x02, 0x7d, 0x0e, - 0xb5, 0x21, 0x0e, 0x30, 0xf3, 0x88, 0xb0, 0x2a, 0x4a, 0xee, 0xed, 0xbc, 0x2c, 0x19, 0xa8, 0x91, - 0x4a, 0xa8, 0xe8, 0x1e, 0x94, 0xd9, 0x48, 0x0a, 0xab, 0x7a, 0x6d, 0x8a, 0x92, 0x88, 0x8e, 0x4e, - 0x62, 0xba, 0xa2, 0xa0, 0x1e, 0x54, 0xa7, 0x38, 0x24, 0x4c, 0x0a, 0xab, 0xa6, 0xd8, 0xef, 0xe5, - 0xb0, 0x55, 0xdc, 0x7d, 0x12, 0xe0, 0xe8, 0x20, 0xc9, 0x90, 0xe1, 0xa3, 0xfb, 0x50, 0x19, 0x87, - 0x38, 0x52, 0xaa, 0x2b, 0xa5, 0xb7, 0x72, 0x94, 0x8e, 0x15, 0x30, 0x2e, 0x1a, 0x4d, 0x43, 0xdf, - 0xc3, 0x16, 0x9e, 0xc9, 0x53, 0x1e, 0xd2, 0x27, 0xda, 0xc1, 0x82, 0xc2, 0x90, 0x0e, 0x17, 0x08, - 0x46, 0x70, 0x49, 0x06, 0x1d, 0x43, 0x4d, 0xcc, 0xa6, 0xd3, 0x80, 0x12, 0x61, 0x35, 0x94, 0xe4, - 0x3b, 0x39, 0x92, 0x51, 0xe9, 0x53, 0x21, 0xa9, 0x97, 0x24, 0x3a, 0x26, 0xa3, 0x2e, 0x54, 0x86, - 0xb3, 0x30, 0xba, 0x62, 0xf3, 0xbf, 0xcb, 0x18, 0xaa, 0xfd, 0x23, 0xbc, 0xb6, 0xfc, 0x8b, 0xa2, - 0x36, 0x34, 0xe2, 0xda, 0x1f, 0x50, 0x5f, 0x75, 0x5b, 0xbd, 0x0f, 0xf1, 0x56, 0xcf, 0x47, 0x9f, - 0xa6, 0x2a, 0x45, 0xf7, 0xd3, 0x6e, 0x86, 0xb7, 0xd1, 0x5b, 0x2e, 0x10, 0xfb, 0x29, 0xa0, 0xd5, - 0xb0, 0x8a, 0x4d, 0xbf, 0x00, 0x10, 0x09, 0xdc, 0xd8, 0x66, 0xb6, 0x4e, 0xd4, 0x23, 0x2b, 0xf7, - 0x4d, 0x71, 0xed, 0x73, 0xb8, 0xb9, 0x04, 0x42, 0x3b, 0x50, 0x8b, 0x9b, 0xdb, 0x58, 0xeb, 0x5e, - 0xeb, 0xf9, 0xe8, 0x4b, 0xa8, 0xe0, 0x09, 0x9f, 0x31, 0x69, 0xad, 0x47, 0x07, 0x9d, 0x83, 0x48, - 0xef, 0x8f, 0x97, 0xed, 0xf7, 0xc7, 0x54, 0x9e, 0xce, 0x86, 0x8e, 0xc7, 0x27, 0xee, 0x11, 0x65, - 0xc2, 0x3b, 0xa5, 0xd8, 0x1d, 0x99, 0x8f, 0x7d, 0xe1, 0x3f, 0x76, 0xe5, 0xc5, 0x94, 0x08, 0xa7, - 0xc7, 0x64, 0xdf, 0x28, 0xd8, 0x14, 0xaa, 0x26, 0x2b, 0xc8, 0x82, 0x2a, 0xf6, 0xfd, 0x90, 0x08, - 0x11, 0x1b, 0x9a, 0x25, 0xfa, 0x2c, 0x65, 0x18, 0x5d, 0xf2, 0x8d, 0xcc, 0xdf, 0x95, 0xb2, 0xce, - 0x8d, 0x28, 0x92, 0x5f, 0xff, 0x6c, 0x6f, 0x46, 0x2b, 0x11, 0x9b, 0x7c, 0x52, 0xfe, 0xfb, 0x97, - 0x76, 0xc9, 0x3e, 0x83, 0x9b, 0x4b, 0x43, 0xa4, 0x38, 0xc5, 0xa9, 0xd1, 0xa4, 0xad, 0xb7, 0x1d, - 0x3d, 0xf4, 0x9d, 0x78, 0xe8, 0x3b, 0x87, 0xec, 0xa2, 0x83, 0x22, 0xdf, 0xdf, 0x7f, 0xdb, 0x07, - 0xd5, 0x82, 0x4a, 0x3d, 0x19, 0x4d, 0x36, 0x86, 0x66, 0xba, 0xbf, 0x8b, 0x4d, 0x3f, 0x34, 0xf3, - 0x42, 0x3b, 0xde, 0xca, 0x1a, 0xa9, 0x47, 0x27, 0xe9, 0x31, 0x61, 0xff, 0x54, 0x82, 0x5b, 0xd9, - 0x2d, 0x57, 0xec, 0xf6, 0x70, 0xa5, 0xad, 0xb5, 0xef, 0x5e, 0x86, 0xef, 0x82, 0x76, 0x76, 0x37, - 0xdb, 0x14, 0xb6, 0x16, 0xc7, 0x48, 0x71, 0x08, 0x1f, 0x25, 0xa3, 0x49, 0x5b, 0x5b, 0x19, 0xd6, - 0x4a, 0x6b, 0x71, 0x22, 0xd9, 0x2f, 0x4a, 0xd0, 0x4c, 0xbf, 0x2e, 0xc5, 0x4e, 0x5f, 0x43, 0x6d, - 0x34, 0x63, 0x63, 0x3a, 0x0c, 0x88, 0x29, 0xde, 0xbb, 0xa6, 0x78, 0x3f, 0xf8, 0x97, 0xc5, 0xfb, - 0x2d, 0x65, 0xb2, 0x9f, 0x88, 0xa0, 0xef, 0xa0, 0xc9, 0x38, 0x1b, 0x24, 0xa2, 0x1b, 0xff, 0x5f, - 0xb4, 0xc1, 0x38, 0x3b, 0x32, 0x3a, 0xf6, 0x13, 0xd8, 0xce, 0x7a, 0xa6, 0x8a, 0x6f, 0x78, 0x08, - 0xf5, 0xf9, 0x1b, 0xa8, 0xd3, 0xd9, 0xba, 0xe6, 0x51, 0x36, 0xa2, 0xf1, 0x38, 0x92, 0xe6, 0xd9, - 0xb3, 0x27, 0xd0, 0x48, 0x1d, 0xe7, 0x4d, 0x82, 0x2e, 0xac, 0x53, 0xff, 0x55, 0x12, 0xb9, 0x4e, - 0x7d, 0xfb, 0xe9, 0xbc, 0x76, 0x17, 0x5f, 0xb0, 0xe2, 0xcb, 0x3e, 0x80, 0x7a, 0x18, 0xa3, 0x73, - 0xca, 0x76, 0x41, 0x36, 0xfe, 0x33, 0x93, 0x10, 0xed, 0x7b, 0x70, 0x63, 0x01, 0x81, 0x10, 0x94, - 0x05, 0x09, 0x46, 0xc6, 0x50, 0x7d, 0xa3, 0x6d, 0xd8, 0xe4, 0xf2, 0x94, 0x84, 0xfa, 0xb6, 0x7d, - 0xbd, 0xe8, 0x1c, 0x3f, 0xbb, 0x6c, 0x95, 0x9e, 0x5f, 0xb6, 0x4a, 0x7f, 0x5d, 0xb6, 0x4a, 0x3f, - 0x5f, 0xb5, 0xd6, 0x9e, 0x5f, 0xb5, 0xd6, 0x5e, 0x5c, 0xb5, 0xd6, 0x7e, 0xd8, 0x2f, 0x4c, 0xc3, - 0x79, 0xea, 0x1f, 0xde, 0xb0, 0xa2, 0xe6, 0xc9, 0xdd, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0x75, - 0x7b, 0xf5, 0x84, 0x88, 0x0a, 0x00, 0x00, + // 940 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x96, 0xcf, 0x6f, 0x1b, 0x45, + 0x14, 0xc7, 0xb3, 0x8e, 0xe3, 0x1f, 0xcf, 0x6e, 0x0a, 0xa3, 0xa8, 0x6c, 0x82, 0x64, 0x87, 0x45, + 0x88, 0x02, 0xca, 0x2e, 0x4d, 0x05, 0x88, 0x0a, 0xa8, 0x62, 0x97, 0x84, 0x50, 0xa9, 0x02, 0x37, + 0x80, 0xc4, 0xc5, 0x5a, 0xef, 0x8e, 0x9d, 0x51, 0xd7, 0x33, 0x66, 0x67, 0x1c, 0x25, 0xbd, 0x70, + 0xe0, 0xc4, 0x8d, 0x3f, 0x81, 0x33, 0x67, 0xfe, 0x88, 0x8a, 0x53, 0x8f, 0xa8, 0x87, 0x82, 0x12, + 0x21, 0xf1, 0x67, 0xa0, 0xf9, 0xb1, 0x9b, 0xb5, 0xbd, 0xf5, 0xd2, 0xdc, 0x76, 0x77, 0xde, 0xf7, + 0xf3, 0x7d, 0x33, 0x7e, 0xef, 0x8d, 0xa1, 0x1d, 0x0d, 0xc6, 0x5e, 0xc0, 0xa2, 0x08, 0x07, 0x82, + 0x30, 0xea, 0x9d, 0xdc, 0xf2, 0x46, 0x98, 0x62, 0x4e, 0xb8, 0x3b, 0x89, 0x99, 0x60, 0xe8, 0xd5, + 0x68, 0x30, 0x76, 0x2f, 0x03, 0xdc, 0x93, 0x5b, 0x5b, 0x9b, 0x23, 0xc6, 0x46, 0x11, 0xf6, 0x54, + 0xc0, 0x60, 0x3a, 0xf4, 0x7c, 0x7a, 0xa6, 0xa3, 0xb7, 0x36, 0x46, 0x6c, 0xc4, 0xd4, 0xa3, 0x27, + 0x9f, 0xcc, 0xd7, 0xcd, 0x80, 0xf1, 0x31, 0xe3, 0x7d, 0xbd, 0xa0, 0x5f, 0xcc, 0x92, 0xb3, 0xe8, + 0x9f, 0x31, 0x53, 0x31, 0xce, 0x3f, 0x15, 0x68, 0x1e, 0xe8, 0xa4, 0x1e, 0x0a, 0x5f, 0x60, 0xf4, + 0x11, 0x54, 0x26, 0x7e, 0xec, 0x8f, 0xb9, 0x6d, 0x6d, 0x5b, 0x37, 0x1b, 0xbb, 0x9b, 0xee, 0x42, + 0x92, 0xee, 0x57, 0x2a, 0xa0, 0x53, 0x7e, 0xf2, 0xbc, 0xbd, 0xd2, 0x33, 0xe1, 0xe8, 0x2e, 0xd4, + 0x03, 0x46, 0x45, 0xec, 0x07, 0x82, 0xdb, 0xa5, 0xed, 0xd5, 0x9b, 0x8d, 0xdd, 0xd7, 0x73, 0xb4, + 0x5d, 0x13, 0x63, 0xd4, 0x97, 0x1a, 0x74, 0x1f, 0xd6, 0x29, 0x3e, 0x15, 0xfd, 0x20, 0xf2, 0x39, + 0xef, 0x93, 0x90, 0xdb, 0xab, 0x8a, 0xd2, 0xce, 0xa1, 0x3c, 0xc0, 0xa7, 0xa2, 0x2b, 0xe3, 0x0e, + 0xef, 0x25, 0x79, 0x34, 0x69, 0xfa, 0x2d, 0xe4, 0xa8, 0x03, 0x55, 0xc5, 0xc1, 0xdc, 0x2e, 0x2b, + 0x8a, 0xb3, 0x24, 0x97, 0xae, 0x8e, 0x34, 0xa0, 0x44, 0x88, 0x1e, 0x9a, 0x84, 0x04, 0x7b, 0x84, + 0xa9, 0x4a, 0x68, 0x4d, 0xa1, 0xde, 0x5e, 0x82, 0x92, 0x89, 0x1d, 0xc9, 0xf8, 0xb9, 0xc4, 0xf4, + 0xb7, 0x90, 0xa3, 0xcf, 0xa1, 0x36, 0xf0, 0x23, 0x9f, 0x06, 0x98, 0xdb, 0x15, 0x85, 0x7b, 0x73, + 0xd9, 0x29, 0x99, 0x50, 0x83, 0x4a, 0xa5, 0xe8, 0x63, 0x28, 0xd3, 0xa1, 0xe0, 0x76, 0xf5, 0x85, + 0x47, 0x94, 0x66, 0xb4, 0x7f, 0x94, 0xc8, 0x95, 0x04, 0xdd, 0x87, 0xea, 0xc4, 0x8f, 0x31, 0x15, + 0xdc, 0xae, 0x29, 0xf5, 0x3b, 0x4b, 0xd4, 0x2a, 0xef, 0x1e, 0x8e, 0x7c, 0xb9, 0xc0, 0x3b, 0x15, + 0xc9, 0xb1, 0xad, 0x5e, 0x42, 0x40, 0x77, 0xa1, 0x32, 0x8a, 0x7d, 0xc9, 0xaa, 0x2b, 0xd6, 0x1b, + 0x4b, 0x58, 0x07, 0x2a, 0x30, 0x29, 0x1b, 0x2d, 0x43, 0xdf, 0xc1, 0xba, 0x3f, 0x15, 0xc7, 0x2c, + 0x26, 0x8f, 0xb5, 0x87, 0x0d, 0x85, 0x49, 0xed, 0xcd, 0x08, 0x0c, 0x70, 0x0e, 0x83, 0x0e, 0xa0, + 0xc6, 0xa7, 0x93, 0x49, 0x44, 0x30, 0xb7, 0x1b, 0x0a, 0xf9, 0xd6, 0x12, 0xa4, 0x2c, 0x7e, 0xc2, + 0x05, 0x09, 0xd2, 0xa3, 0x4e, 0xc4, 0xa8, 0x0b, 0x95, 0xc1, 0x34, 0x96, 0x5b, 0x6c, 0xbe, 0x3c, + 0xc6, 0x48, 0x9d, 0x1f, 0xe0, 0x95, 0xf9, 0xdf, 0x14, 0xb5, 0xa1, 0x91, 0x54, 0x7f, 0x9f, 0x84, + 0xaa, 0xdf, 0xea, 0x3d, 0x48, 0x3e, 0x1d, 0x86, 0xe8, 0x93, 0x4c, 0xad, 0xe8, 0x8e, 0xda, 0xca, + 0xf1, 0x36, 0xbc, 0xf9, 0x12, 0x71, 0x7e, 0x04, 0xb4, 0x98, 0x56, 0xb1, 0xe9, 0x17, 0x00, 0x3c, + 0x0d, 0x37, 0xb6, 0xb9, 0xcd, 0x23, 0xbb, 0x64, 0x61, 0xbf, 0x19, 0xad, 0x73, 0x0a, 0xd7, 0xe7, + 0x82, 0xd0, 0x26, 0xd4, 0x92, 0xf6, 0x36, 0xd6, 0xba, 0xdb, 0x0e, 0x43, 0xf4, 0x25, 0x54, 0xfc, + 0x31, 0x9b, 0x52, 0x61, 0x97, 0xe4, 0x42, 0x67, 0x57, 0xf2, 0x9e, 0x3d, 0x6f, 0xbf, 0x3b, 0x22, + 0xe2, 0x78, 0x3a, 0x70, 0x03, 0x36, 0xf6, 0xf6, 0x09, 0xe5, 0xc1, 0x31, 0xf1, 0xbd, 0xa1, 0x79, + 0xd8, 0xe1, 0xe1, 0x23, 0x4f, 0x9c, 0x4d, 0x30, 0x77, 0x0f, 0xa9, 0xe8, 0x19, 0x82, 0x43, 0xa0, + 0x6a, 0x4e, 0x05, 0xd9, 0x50, 0xf5, 0xc3, 0x30, 0xc6, 0x9c, 0x27, 0x86, 0xe6, 0x15, 0x7d, 0x96, + 0x31, 0x94, 0x9b, 0x7c, 0x2d, 0xf7, 0x77, 0x25, 0xb4, 0x73, 0x4d, 0x66, 0xf2, 0xdb, 0x5f, 0xed, + 0x35, 0xf9, 0xc6, 0x13, 0x93, 0x3b, 0xe5, 0x7f, 0x7f, 0x6d, 0x5b, 0xce, 0x09, 0x5c, 0x9f, 0x1b, + 0x23, 0xc5, 0x47, 0x9c, 0x19, 0x4e, 0xda, 0x7a, 0xc3, 0xd5, 0x63, 0xdf, 0x4d, 0xc6, 0xbe, 0xbb, + 0x47, 0xcf, 0x3a, 0x48, 0xfa, 0xfe, 0xf1, 0xfb, 0x0e, 0xa8, 0x26, 0x54, 0xf4, 0x74, 0x38, 0x39, + 0x3e, 0x34, 0xb3, 0x1d, 0x5e, 0x6c, 0xfa, 0xbe, 0x99, 0x18, 0xda, 0xf1, 0x46, 0xde, 0x50, 0xdd, + 0x3f, 0xca, 0x0e, 0x0a, 0xe7, 0x67, 0x0b, 0x6e, 0xe4, 0xb7, 0x5c, 0xb1, 0xdb, 0x83, 0x85, 0xb6, + 0xd6, 0xbe, 0xdb, 0x39, 0xbe, 0x33, 0xec, 0xfc, 0x6e, 0x76, 0x08, 0xac, 0xcf, 0x8e, 0x91, 0xe2, + 0x14, 0x3e, 0x4c, 0x47, 0x93, 0xb6, 0xb6, 0x73, 0xac, 0x15, 0x6b, 0x76, 0x22, 0x39, 0xcf, 0x2c, + 0x68, 0x66, 0xef, 0x97, 0x62, 0xa7, 0xaf, 0xa1, 0x36, 0x9c, 0xd2, 0x11, 0x19, 0x44, 0xd8, 0x14, + 0xef, 0x07, 0xa6, 0x78, 0xdf, 0xfb, 0x9f, 0xc5, 0xfb, 0x0d, 0xa1, 0xc2, 0xb6, 0x7a, 0x29, 0x06, + 0x7d, 0x0b, 0x4d, 0xca, 0x68, 0x3f, 0xc5, 0xae, 0x2a, 0xec, 0xed, 0x2b, 0x60, 0x7b, 0x0d, 0xca, + 0xe8, 0xbe, 0xe1, 0x38, 0x8f, 0x61, 0x23, 0xef, 0xaa, 0x2a, 0xde, 0xe3, 0x1e, 0xd4, 0x2f, 0xef, + 0x41, 0x7d, 0xa0, 0xad, 0x17, 0x5c, 0xcc, 0x06, 0x9a, 0x0c, 0x24, 0x61, 0xae, 0x3e, 0x67, 0x0c, + 0x8d, 0xcc, 0xf2, 0xb2, 0x59, 0xd0, 0x85, 0x12, 0x09, 0xcd, 0x51, 0x5e, 0x69, 0xcf, 0x25, 0x12, + 0x3a, 0x3f, 0x65, 0xca, 0x77, 0xf6, 0x1a, 0x2b, 0xde, 0xed, 0x3d, 0xa8, 0xc7, 0x49, 0xf4, 0x92, + 0xca, 0x9d, 0xc1, 0x26, 0xff, 0x68, 0x52, 0xe1, 0x9d, 0x92, 0x6d, 0x39, 0x9f, 0xc2, 0xb5, 0x99, + 0x28, 0x84, 0xa0, 0xcc, 0x71, 0x34, 0x34, 0xa6, 0xea, 0x19, 0x6d, 0xc0, 0x1a, 0x13, 0xc7, 0x38, + 0xd6, 0x5b, 0xee, 0xe9, 0x17, 0x29, 0xef, 0x1c, 0x3c, 0x39, 0x6f, 0x59, 0x4f, 0xcf, 0x5b, 0xd6, + 0xdf, 0xe7, 0x2d, 0xeb, 0x97, 0x8b, 0xd6, 0xca, 0xd3, 0x8b, 0xd6, 0xca, 0x9f, 0x17, 0xad, 0x95, + 0xef, 0x77, 0x0a, 0xcf, 0xe3, 0x34, 0xf3, 0x77, 0x6f, 0x50, 0x51, 0xa3, 0xe5, 0xf6, 0x7f, 0x01, + 0x00, 0x00, 0xff, 0xff, 0xa8, 0x3f, 0x52, 0xda, 0x95, 0x0a, 0x00, 0x00, } func (this *Balance) Equal(that interface{}) bool { diff --git a/x/collection/query.pb.go b/x/collection/query.pb.go index 1145f76b58..7c84009c40 100644 --- a/x/collection/query.pb.go +++ b/x/collection/query.pb.go @@ -262,6 +262,8 @@ func (m *QueryAllBalancesResponse) GetPagination() *query.PageResponse { } // QueryFTSupplyRequest is the request type for the Query/FTSupply RPC method. +// +// Deprecated: Do not use. type QueryFTSupplyRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -317,6 +319,8 @@ func (m *QueryFTSupplyRequest) GetTokenId() string { } // QueryFTSupplyResponse is the response type for the Query/FTSupply RPC method. +// +// Deprecated: Do not use. type QueryFTSupplyResponse struct { // supply is the supply of the tokens. Supply github_com_Finschia_finschia_sdk_types.Int `protobuf:"bytes,1,opt,name=supply,proto3,customtype=github.com/Finschia/finschia-sdk/types.Int" json:"supply"` @@ -356,6 +360,8 @@ func (m *QueryFTSupplyResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryFTSupplyResponse proto.InternalMessageInfo // QueryFTMintedRequest is the request type for the Query/FTMinted RPC method. +// +// Deprecated: Do not use. type QueryFTMintedRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -411,6 +417,8 @@ func (m *QueryFTMintedRequest) GetTokenId() string { } // QueryFTMintedResponse is the response type for the Query/FTMinted RPC method. +// +// Deprecated: Do not use. type QueryFTMintedResponse struct { // minted is the amount of the minted tokens. Minted github_com_Finschia_finschia_sdk_types.Int `protobuf:"bytes,1,opt,name=minted,proto3,customtype=github.com/Finschia/finschia-sdk/types.Int" json:"minted"` @@ -450,6 +458,8 @@ func (m *QueryFTMintedResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryFTMintedResponse proto.InternalMessageInfo // QueryFTBurntRequest is the request type for the Query/FTBurnt RPC method. +// +// Deprecated: Do not use. type QueryFTBurntRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -505,6 +515,8 @@ func (m *QueryFTBurntRequest) GetTokenId() string { } // QueryFTBurntResponse is the response type for the Query/FTBurnt RPC method. +// +// Deprecated: Do not use. type QueryFTBurntResponse struct { // burnt is the amount of the burnt tokens. Burnt github_com_Finschia_finschia_sdk_types.Int `protobuf:"bytes,1,opt,name=burnt,proto3,customtype=github.com/Finschia/finschia-sdk/types.Int" json:"burnt"` @@ -1229,6 +1241,8 @@ func (m *QueryTokenResponse) GetToken() types.Any { } // QueryRootRequest is the request type for the Query/Root RPC method. +// +// Deprecated: Do not use. type QueryRootRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -1284,6 +1298,8 @@ func (m *QueryRootRequest) GetTokenId() string { } // QueryRootResponse is the response type for the Query/Root RPC method. +// +// Deprecated: Do not use. type QueryRootResponse struct { // root is the information of the root token. // it would return itself if it's the root token. @@ -1331,6 +1347,8 @@ func (m *QueryRootResponse) GetRoot() NFT { } // QueryHasParentRequest is the request type for the Query/HasParent RPC method. +// +// Deprecated: Do not use. type QueryHasParentRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -1386,6 +1404,8 @@ func (m *QueryHasParentRequest) GetTokenId() string { } // QueryHasParentResponse is the response type for the Query/HasParent RPC method. +// +// Deprecated: Do not use. type QueryHasParentResponse struct { // whether the token has its parent. HasParent bool `protobuf:"varint,1,opt,name=has_parent,json=hasParent,proto3" json:"has_parent,omitempty"` @@ -1432,6 +1452,8 @@ func (m *QueryHasParentResponse) GetHasParent() bool { } // QueryParentRequest is the request type for the Query/Parent RPC method. +// +// Deprecated: Do not use. type QueryParentRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -1487,6 +1509,8 @@ func (m *QueryParentRequest) GetTokenId() string { } // QueryParentResponse is the response type for the Query/Parent RPC method. +// +// Deprecated: Do not use. type QueryParentResponse struct { // parent is the information of the parent token. Parent NFT `protobuf:"bytes,1,opt,name=parent,proto3" json:"parent"` @@ -1533,6 +1557,8 @@ func (m *QueryParentResponse) GetParent() NFT { } // QueryChildrenRequest is the request type for the Query/Children RPC method. +// +// Deprecated: Do not use. type QueryChildrenRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -1597,6 +1623,8 @@ func (m *QueryChildrenRequest) GetPagination() *query.PageRequest { } // QueryChildrenResponse is the response type for the Query/Children RPC method. +// +// Deprecated: Do not use. type QueryChildrenResponse struct { // children is the information of the child tokens. Children []NFT `protobuf:"bytes,1,rep,name=children,proto3" json:"children"` @@ -2040,105 +2068,106 @@ func init() { func init() { proto.RegisterFile("lbm/collection/v1/query.proto", fileDescriptor_a09de688aac2ee73) } var fileDescriptor_a09de688aac2ee73 = []byte{ - // 1561 bytes of a gzipped FileDescriptorProto + // 1584 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x98, 0xdb, 0x6f, 0x1b, 0xc5, - 0x17, 0xc7, 0x33, 0x69, 0x2e, 0xf6, 0x89, 0x2a, 0xfd, 0x3a, 0xbf, 0xd2, 0xba, 0x4b, 0xe3, 0x54, - 0x4b, 0xe9, 0x25, 0xb4, 0xbb, 0x4d, 0xb8, 0x14, 0x44, 0x4b, 0x89, 0x43, 0x2e, 0x6e, 0x69, 0x92, - 0xba, 0xa1, 0x48, 0x80, 0x54, 0xd6, 0xf6, 0xd6, 0xb6, 0x6a, 0xef, 0xb8, 0xbb, 0xeb, 0x8a, 0x34, - 0xca, 0x0b, 0xfc, 0x03, 0x20, 0xde, 0x2a, 0xe8, 0x03, 0x20, 0x21, 0x21, 0x10, 0x20, 0xf1, 0x47, - 0xf4, 0xb1, 0x82, 0x17, 0xc4, 0x43, 0x85, 0x5a, 0xfe, 0x08, 0x1e, 0xd1, 0xce, 0x9c, 0x59, 0xef, - 0xae, 0xbd, 0xbe, 0x34, 0x9b, 0xa7, 0x78, 0x66, 0xcf, 0x9c, 0xf9, 0xcc, 0x39, 0x67, 0xcf, 0xce, - 0x37, 0x30, 0x5d, 0x2f, 0x36, 0xf4, 0x12, 0xab, 0xd7, 0xcd, 0x92, 0x5b, 0x63, 0x96, 0x7e, 0x77, - 0x4e, 0xbf, 0xd3, 0x32, 0xed, 0x2d, 0xad, 0x69, 0x33, 0x97, 0xd1, 0x03, 0xf5, 0x62, 0x43, 0x6b, - 0x3f, 0xd6, 0xee, 0xce, 0x29, 0xb3, 0x25, 0xe6, 0x34, 0x98, 0xa3, 0x17, 0x0d, 0xc7, 0x14, 0xb6, - 0xfa, 0xdd, 0xb9, 0xa2, 0xe9, 0x1a, 0x73, 0x7a, 0xd3, 0xa8, 0xd4, 0x2c, 0x83, 0x1b, 0xf2, 0xe5, - 0xca, 0xd1, 0x0a, 0x63, 0x95, 0xba, 0xa9, 0x1b, 0xcd, 0x9a, 0x6e, 0x58, 0x16, 0x73, 0xf9, 0x43, - 0x07, 0x9f, 0xaa, 0x9d, 0x7b, 0x07, 0xb6, 0x12, 0x36, 0x47, 0xd0, 0x03, 0x1f, 0x15, 0x5b, 0xb7, - 0x74, 0xc3, 0x42, 0x36, 0xe5, 0x60, 0x85, 0x55, 0x18, 0xff, 0xa9, 0x7b, 0xbf, 0xc4, 0xac, 0x7a, - 0x1b, 0xfe, 0x7f, 0xcd, 0x83, 0xca, 0x19, 0x75, 0xc3, 0x2a, 0x99, 0x05, 0xf3, 0x4e, 0xcb, 0x74, - 0x5c, 0x3a, 0x03, 0x53, 0x25, 0x66, 0xb9, 0xb6, 0x51, 0x72, 0x6f, 0xd6, 0xca, 0x19, 0x72, 0x8c, - 0x9c, 0x4a, 0x17, 0x40, 0x4e, 0xe5, 0xcb, 0x34, 0x03, 0x93, 0x46, 0xb9, 0x6c, 0x9b, 0x8e, 0x93, - 0x19, 0xe5, 0x0f, 0xe5, 0x90, 0x1e, 0x81, 0x94, 0xcb, 0x6e, 0x9b, 0x96, 0xb7, 0x6e, 0x9f, 0x78, - 0xc4, 0xc7, 0xf9, 0xb2, 0xba, 0x0e, 0x07, 0xc3, 0x9b, 0x39, 0x4d, 0x66, 0x39, 0x26, 0x3d, 0x0f, - 0x93, 0x45, 0x31, 0xc5, 0x77, 0x9a, 0x9a, 0x3f, 0xac, 0x75, 0x04, 0x52, 0x5b, 0x64, 0x35, 0x2b, - 0x37, 0xf6, 0xf0, 0xf1, 0xcc, 0x48, 0x41, 0x5a, 0xab, 0x5f, 0x11, 0x38, 0xcc, 0x3d, 0x2e, 0xd4, - 0xeb, 0xe8, 0xd4, 0x49, 0xe0, 0x08, 0xcb, 0x00, 0xed, 0xdc, 0xf0, 0x43, 0x4c, 0xcd, 0x9f, 0xd0, - 0x44, 0x22, 0x35, 0x2f, 0x91, 0x9a, 0x48, 0x3a, 0x26, 0x52, 0xdb, 0x30, 0x2a, 0x32, 0x72, 0x85, - 0xc0, 0x4a, 0xf5, 0x01, 0x81, 0x4c, 0x27, 0x1e, 0x1e, 0xfa, 0x0d, 0x48, 0xe1, 0x31, 0x9c, 0x0c, - 0x39, 0xb6, 0xaf, 0xff, 0xa9, 0x7d, 0x73, 0xba, 0x12, 0xe2, 0x1b, 0xe5, 0x7c, 0x27, 0xfb, 0xf2, - 0x89, 0x7d, 0x43, 0x80, 0x05, 0x4c, 0xc8, 0xf2, 0xe6, 0xf5, 0x56, 0xb3, 0x59, 0xdf, 0x1a, 0x38, - 0x76, 0xc1, 0x24, 0x8f, 0x86, 0x93, 0x5c, 0x82, 0xe7, 0x22, 0x3e, 0xf1, 0xc0, 0x97, 0x61, 0xc2, - 0xe1, 0x33, 0xc2, 0x5f, 0x6e, 0xde, 0x3b, 0xd5, 0x5f, 0x8f, 0x67, 0x66, 0x2b, 0x35, 0xb7, 0xda, - 0x2a, 0x6a, 0x25, 0xd6, 0xd0, 0x97, 0x6b, 0x96, 0x53, 0xaa, 0xd6, 0x0c, 0xfd, 0x16, 0xfe, 0x38, - 0xeb, 0x94, 0x6f, 0xeb, 0xee, 0x56, 0xd3, 0x74, 0xb4, 0xbc, 0xe5, 0x16, 0xd0, 0x43, 0x00, 0xfc, - 0x6a, 0xcd, 0x72, 0xcd, 0x72, 0xb2, 0xe0, 0xd2, 0x67, 0x1b, 0xbc, 0xc1, 0x67, 0x76, 0x03, 0x2e, - 0x3c, 0xa8, 0xd7, 0xf0, 0x7d, 0x5b, 0xde, 0xcc, 0xb5, 0x6c, 0xcb, 0x4d, 0x82, 0xfb, 0x63, 0x3f, - 0x16, 0xe8, 0x12, 0xb1, 0x57, 0x61, 0xbc, 0xe8, 0x4d, 0xec, 0x82, 0x5a, 0x38, 0x50, 0xdf, 0xc7, - 0xc8, 0xac, 0x0d, 0x5d, 0x27, 0xd3, 0x00, 0x02, 0xdb, 0xf3, 0x89, 0xe0, 0x69, 0x3e, 0xb3, 0xb9, - 0xd5, 0x34, 0xd5, 0x32, 0x1c, 0x8a, 0x3a, 0xde, 0x83, 0x62, 0x09, 0xe0, 0x0f, 0x59, 0x2d, 0x83, - 0xe3, 0xef, 0x61, 0xc9, 0xdc, 0xc0, 0xfc, 0xae, 0x0d, 0x5b, 0x33, 0x7d, 0xe8, 0x8d, 0x76, 0x58, - 0xf6, 0xaa, 0x70, 0xce, 0x23, 0xfa, 0x22, 0x42, 0x0d, 0x8a, 0xae, 0xde, 0x40, 0xb6, 0xf6, 0x42, - 0x64, 0xbb, 0x08, 0x29, 0x69, 0x86, 0xdf, 0x8a, 0xe7, 0xbb, 0x76, 0x4d, 0x61, 0x22, 0x3b, 0xa7, - 0x5c, 0xa2, 0x7e, 0x04, 0x59, 0xee, 0x77, 0xd3, 0x8b, 0xc2, 0x62, 0xdd, 0x70, 0x1c, 0x2f, 0x14, - 0x6b, 0x46, 0xc3, 0x1c, 0xe6, 0x4d, 0x2c, 0x79, 0x0b, 0x03, 0x6f, 0x22, 0x1f, 0xe7, 0xcb, 0xea, - 0xab, 0x30, 0x13, 0xeb, 0x1d, 0xf9, 0x29, 0x8c, 0x59, 0x46, 0xc3, 0x44, 0xbf, 0xfc, 0xb7, 0x5f, - 0x9f, 0x9b, 0x32, 0x35, 0x49, 0x65, 0xf8, 0x43, 0xac, 0xcf, 0x80, 0x63, 0xc4, 0x58, 0x08, 0x2d, - 0x14, 0x81, 0x3c, 0xda, 0x25, 0x90, 0xfe, 0x4a, 0x8c, 0x64, 0xc0, 0xf9, 0x3a, 0x1c, 0x68, 0x3b, - 0x4f, 0xa2, 0x8f, 0x2d, 0x03, 0x0d, 0x3a, 0x44, 0xd2, 0x73, 0x30, 0xce, 0x0d, 0x10, 0xf2, 0xa0, - 0x26, 0x6e, 0x38, 0x9a, 0xbc, 0xe1, 0x68, 0x0b, 0xd6, 0x16, 0xc2, 0x09, 0x43, 0x75, 0x0d, 0xfe, - 0xc7, 0xfd, 0x14, 0x18, 0x4b, 0xa4, 0xbf, 0x2e, 0xe1, 0x41, 0x85, 0x3f, 0x1f, 0x6b, 0xcc, 0x66, - 0x4c, 0xd6, 0xe0, 0xa1, 0x2e, 0xa1, 0xf3, 0x5e, 0x2b, 0xc1, 0xc5, 0x2d, 0xd5, 0xeb, 0x98, 0xe5, - 0x55, 0xc3, 0xd9, 0x30, 0x6c, 0x33, 0x99, 0xde, 0x7f, 0x1e, 0x33, 0x1c, 0x70, 0x8a, 0x80, 0xd3, - 0x00, 0x55, 0xc3, 0xb9, 0xd9, 0xe4, 0xb3, 0xdc, 0x69, 0xaa, 0x90, 0xae, 0x4a, 0x33, 0x75, 0x03, - 0x83, 0x9d, 0x1c, 0xca, 0x15, 0xfc, 0xb2, 0x45, 0x38, 0x5e, 0x81, 0x89, 0x00, 0x43, 0xbf, 0x50, - 0xa1, 0xad, 0x7a, 0x9f, 0xc8, 0xce, 0x51, 0xad, 0xd5, 0xcb, 0x76, 0x22, 0x05, 0x96, 0xd8, 0xb5, - 0xee, 0x3e, 0x91, 0xdd, 0xc9, 0x87, 0xc3, 0xc3, 0xbe, 0x0e, 0xa9, 0x12, 0xce, 0xe1, 0x9d, 0xae, - 0xf7, 0x71, 0x7d, 0xeb, 0xe4, 0xae, 0x74, 0x0f, 0x08, 0x1c, 0xe1, 0x70, 0x2b, 0xb6, 0x61, 0xb9, - 0xa6, 0xc9, 0xff, 0x0c, 0x75, 0x29, 0xae, 0x88, 0x85, 0x32, 0x7a, 0x38, 0x4c, 0x2c, 0x7a, 0x5f, - 0x13, 0x50, 0xba, 0x01, 0x62, 0x08, 0x5f, 0x83, 0x09, 0xbe, 0xa3, 0xbc, 0x14, 0x67, 0xba, 0x04, - 0x90, 0x2f, 0x91, 0x15, 0x23, 0xac, 0x93, 0x0b, 0x60, 0x13, 0xe3, 0x97, 0x77, 0xd6, 0x9b, 0xa6, - 0x6d, 0xb8, 0xcc, 0x5e, 0x66, 0xf6, 0xc0, 0xf1, 0x53, 0x20, 0xc5, 0x70, 0x19, 0x06, 0xd0, 0x1f, - 0xd3, 0x43, 0x30, 0x51, 0x65, 0xf5, 0xb2, 0x69, 0xa3, 0x2e, 0xc2, 0x91, 0x7a, 0x01, 0x03, 0x12, - 0xd9, 0x11, 0x03, 0x92, 0x05, 0x30, 0x5a, 0x6e, 0x95, 0xd9, 0xb5, 0x7b, 0x78, 0x9d, 0x48, 0x15, - 0x02, 0x33, 0xea, 0x77, 0x04, 0xa6, 0x45, 0x0f, 0xe0, 0xde, 0x9c, 0xdc, 0x96, 0xf4, 0x92, 0x08, - 0x74, 0x52, 0x69, 0xff, 0x8c, 0xe0, 0xa7, 0xb7, 0x0b, 0x26, 0x9e, 0x34, 0x03, 0x93, 0x22, 0x22, - 0x22, 0xf7, 0xe9, 0x82, 0x1c, 0x26, 0x96, 0xdc, 0xf9, 0x7f, 0x33, 0x30, 0xce, 0x29, 0xe8, 0x8f, - 0x04, 0x26, 0x51, 0x93, 0xd1, 0x13, 0x5d, 0x6a, 0xac, 0x8b, 0x2a, 0x56, 0x4e, 0xf6, 0xb5, 0x13, - 0x5b, 0xaa, 0x1b, 0x9f, 0xfe, 0xf1, 0xcf, 0x97, 0xa3, 0x97, 0xe9, 0xaa, 0xde, 0x4d, 0xb3, 0x8b, - 0xb8, 0x3b, 0xfa, 0x76, 0x20, 0x2b, 0x3b, 0xba, 0x54, 0x77, 0xfa, 0x36, 0xca, 0xd0, 0x1d, 0x7d, - 0x5b, 0x76, 0xb2, 0x1d, 0xfa, 0x13, 0x81, 0xa9, 0x80, 0x8a, 0xa4, 0xb3, 0x71, 0x28, 0x9d, 0x4a, - 0x58, 0x79, 0x69, 0x20, 0x5b, 0x44, 0x5f, 0xe2, 0xe8, 0x97, 0xe8, 0xc5, 0x5d, 0xa1, 0xd3, 0xef, - 0x09, 0xa4, 0xe4, 0xa5, 0x9e, 0xc6, 0xc6, 0x2d, 0xa2, 0x27, 0x94, 0x53, 0xfd, 0x0d, 0x11, 0x73, - 0x95, 0x63, 0xe6, 0xe8, 0xdb, 0x43, 0x60, 0xde, 0xf2, 0x66, 0xfc, 0x90, 0xea, 0x42, 0x1d, 0x20, - 0xa9, 0xb8, 0xbf, 0xf7, 0x22, 0x0d, 0x49, 0x87, 0x5e, 0xa4, 0x61, 0x29, 0x90, 0x04, 0xa9, 0x10, - 0x02, 0xf4, 0x5b, 0x02, 0x93, 0x78, 0x57, 0x8f, 0x2f, 0xd9, 0xb0, 0x48, 0x50, 0x4e, 0xf6, 0xb5, - 0x43, 0xcc, 0x15, 0x8e, 0xb9, 0x40, 0x2f, 0x3d, 0x3b, 0x26, 0xbf, 0xf3, 0xd3, 0xdf, 0x08, 0xa4, - 0x7d, 0x3d, 0x47, 0x63, 0xe3, 0x14, 0xd5, 0x92, 0xca, 0xe9, 0x01, 0x2c, 0x91, 0xb5, 0xc0, 0x59, - 0xdf, 0xa5, 0x97, 0x87, 0x60, 0x6d, 0x5f, 0x77, 0x7d, 0x66, 0x6f, 0xe0, 0x97, 0x01, 0x62, 0x63, - 0x1d, 0xf4, 0xc2, 0x0e, 0x17, 0xc2, 0xe9, 0x01, 0x2c, 0xf7, 0x02, 0x1b, 0x6b, 0xe2, 0x17, 0x02, - 0x29, 0x29, 0xe0, 0xe2, 0xab, 0x37, 0x22, 0x1d, 0x95, 0x53, 0xfd, 0x0d, 0x91, 0xf9, 0x1a, 0x67, - 0xbe, 0x42, 0xf3, 0x49, 0x30, 0x8b, 0x02, 0xf9, 0x82, 0x40, 0x4a, 0x0a, 0xb4, 0x78, 0xe4, 0x88, - 0x64, 0x8c, 0x47, 0x8e, 0x4a, 0x44, 0x75, 0x9e, 0x23, 0x9f, 0xa1, 0xb3, 0x83, 0x23, 0xd3, 0xdf, - 0x09, 0xd0, 0x4e, 0xd5, 0x46, 0xe7, 0xe2, 0x36, 0x8d, 0xd5, 0x8f, 0xca, 0xfc, 0x30, 0x4b, 0x90, - 0xf8, 0x3d, 0x4e, 0xbc, 0x4e, 0xaf, 0x0e, 0x1d, 0x64, 0xae, 0x3c, 0xbd, 0x30, 0x4b, 0x49, 0xba, - 0xc3, 0x45, 0xf8, 0x4d, 0x4f, 0x57, 0x7a, 0xdf, 0x8c, 0xb4, 0x2f, 0xe0, 0xe2, 0x4b, 0x3a, 0x2a, - 0x3b, 0xe3, 0x4b, 0xba, 0x43, 0x47, 0xaa, 0x57, 0x38, 0xf9, 0x12, 0x5d, 0x4c, 0xa0, 0x3c, 0xe8, - 0x7d, 0x02, 0xe3, 0x7c, 0x0b, 0x7a, 0xbc, 0x27, 0x81, 0xe4, 0x7c, 0xb1, 0x8f, 0x15, 0x32, 0xbe, - 0xc3, 0x19, 0xdf, 0xa2, 0x17, 0x86, 0x65, 0x0c, 0x36, 0x37, 0x0f, 0x6e, 0xcc, 0x53, 0x80, 0xf4, - 0x85, 0xb8, 0x5d, 0x03, 0x7a, 0x53, 0x39, 0xde, 0xdb, 0x68, 0x17, 0x3d, 0xd7, 0x8a, 0x34, 0x5d, - 0x4f, 0x5b, 0xd2, 0x9f, 0x09, 0xa4, 0x7d, 0x09, 0x18, 0x9f, 0xe9, 0xa8, 0xf4, 0x8c, 0xcf, 0x74, - 0x87, 0x9e, 0x54, 0xaf, 0x72, 0xd6, 0x15, 0xba, 0xb4, 0x0b, 0xd6, 0xb6, 0x20, 0xa5, 0xdf, 0x10, - 0x98, 0x40, 0xdc, 0xd8, 0x34, 0x86, 0x59, 0x4f, 0xf4, 0x33, 0x43, 0xd0, 0x3c, 0x07, 0x5d, 0xa4, - 0x0b, 0xbb, 0x00, 0x45, 0xc8, 0x1f, 0xbc, 0x4e, 0x25, 0x15, 0x5a, 0x7c, 0xa7, 0x0a, 0x4b, 0xd4, - 0x1e, 0x9d, 0x2a, 0x22, 0x17, 0x9f, 0xe9, 0xed, 0x89, 0xa2, 0xfa, 0x0a, 0xf2, 0x57, 0x02, 0xfb, - 0x43, 0x92, 0x8a, 0x9e, 0x89, 0x03, 0xe9, 0x26, 0x0d, 0x95, 0xb3, 0x03, 0x5a, 0x23, 0xfb, 0x22, - 0x67, 0xbf, 0x48, 0xdf, 0x1c, 0x82, 0x5d, 0x48, 0x35, 0x7d, 0x1b, 0x25, 0xe5, 0x0e, 0xb5, 0x60, - 0x7f, 0x48, 0xf4, 0xc4, 0x23, 0x77, 0x53, 0x63, 0xf1, 0xc8, 0x5d, 0x95, 0x94, 0x3a, 0x42, 0xef, - 0xc1, 0x81, 0x0e, 0xf9, 0x41, 0xcf, 0xc5, 0xbe, 0x04, 0x31, 0x82, 0x4a, 0x99, 0x1b, 0x62, 0x85, - 0xdc, 0x3b, 0xb7, 0xf2, 0xf0, 0x49, 0x96, 0x3c, 0x7a, 0x92, 0x25, 0x7f, 0x3f, 0xc9, 0x92, 0xcf, - 0x9f, 0x66, 0x47, 0x1e, 0x3d, 0xcd, 0x8e, 0xfc, 0xf9, 0x34, 0x3b, 0xf2, 0xc1, 0xd9, 0xbe, 0xff, - 0x58, 0xfd, 0x24, 0x10, 0xe0, 0xe2, 0x04, 0xff, 0xd7, 0xd7, 0xcb, 0xff, 0x05, 0x00, 0x00, 0xff, - 0xff, 0x47, 0x9c, 0x47, 0x89, 0x8c, 0x1c, 0x00, 0x00, + 0x17, 0xc7, 0x33, 0x69, 0x2e, 0xf6, 0x89, 0x2a, 0xfd, 0x3a, 0xbf, 0x5e, 0x9c, 0xa5, 0x71, 0xaa, + 0xa5, 0xf4, 0x12, 0xda, 0xdd, 0x26, 0x5c, 0x0a, 0xb4, 0xa5, 0xc4, 0xa1, 0x49, 0x9d, 0xb6, 0x49, + 0x6b, 0xd2, 0x22, 0x01, 0x52, 0xb5, 0xb6, 0xb7, 0xb6, 0x55, 0x7b, 0xc7, 0xdd, 0x5d, 0x57, 0xa4, + 0x51, 0x5e, 0xe0, 0x85, 0x17, 0x24, 0x10, 0x6f, 0x88, 0xf6, 0x09, 0x78, 0x40, 0x54, 0x02, 0xc4, + 0x1f, 0xd1, 0xc7, 0x0a, 0x5e, 0x10, 0x0f, 0x15, 0x6a, 0xf9, 0x43, 0xd0, 0xce, 0x9c, 0x59, 0xef, + 0xae, 0xbd, 0xbe, 0x34, 0xdb, 0xa7, 0x78, 0x66, 0xcf, 0x9c, 0xf9, 0xcc, 0x39, 0x67, 0xcf, 0xce, + 0x37, 0x30, 0x53, 0x2f, 0x36, 0xf4, 0x12, 0xab, 0xd7, 0xcd, 0x92, 0x5b, 0x63, 0x96, 0x7e, 0x77, + 0x5e, 0xbf, 0xd3, 0x32, 0xed, 0x4d, 0xad, 0x69, 0x33, 0x97, 0xd1, 0x3d, 0xf5, 0x62, 0x43, 0x6b, + 0x3f, 0xd6, 0xee, 0xce, 0x2b, 0x73, 0x25, 0xe6, 0x34, 0x98, 0xa3, 0x17, 0x0d, 0xc7, 0x14, 0xb6, + 0xfa, 0xdd, 0xf9, 0xa2, 0xe9, 0x1a, 0xf3, 0x7a, 0xd3, 0xa8, 0xd4, 0x2c, 0x83, 0x1b, 0xf2, 0xe5, + 0xca, 0xc1, 0x0a, 0x63, 0x95, 0xba, 0xa9, 0x1b, 0xcd, 0x9a, 0x6e, 0x58, 0x16, 0x73, 0xf9, 0x43, + 0x07, 0x9f, 0xaa, 0x9d, 0x7b, 0x07, 0xb6, 0x12, 0x36, 0xd3, 0xe8, 0x81, 0x8f, 0x8a, 0xad, 0x5b, + 0xba, 0x61, 0x21, 0x9b, 0xb2, 0xb7, 0xc2, 0x2a, 0x8c, 0xff, 0xd4, 0xbd, 0x5f, 0x62, 0x56, 0xbd, + 0x0d, 0xff, 0xbf, 0xe6, 0x41, 0xe5, 0x8c, 0xba, 0x61, 0x95, 0xcc, 0x82, 0x79, 0xa7, 0x65, 0x3a, + 0x2e, 0x9d, 0x85, 0xa9, 0x12, 0xb3, 0x5c, 0xdb, 0x28, 0xb9, 0x37, 0x6b, 0xe5, 0x0c, 0x39, 0x44, + 0x8e, 0xa5, 0x0b, 0x20, 0xa7, 0xf2, 0x65, 0x9a, 0x81, 0x49, 0xa3, 0x5c, 0xb6, 0x4d, 0xc7, 0xc9, + 0x8c, 0xf2, 0x87, 0x72, 0x48, 0xa7, 0x21, 0xe5, 0xb2, 0xdb, 0xa6, 0xe5, 0xad, 0xdb, 0x25, 0x1e, + 0xf1, 0x71, 0xbe, 0xac, 0xae, 0xc3, 0xde, 0xf0, 0x66, 0x4e, 0x93, 0x59, 0x8e, 0x49, 0x4f, 0xc3, + 0x64, 0x51, 0x4c, 0xf1, 0x9d, 0xa6, 0x16, 0x0e, 0x68, 0x1d, 0x81, 0xd4, 0x96, 0x58, 0xcd, 0xca, + 0x8d, 0x3d, 0x7a, 0x32, 0x3b, 0x52, 0x90, 0xd6, 0xea, 0x77, 0x04, 0x0e, 0x70, 0x8f, 0x8b, 0xf5, + 0x3a, 0x3a, 0x75, 0x12, 0x38, 0xc2, 0x32, 0x40, 0x3b, 0x37, 0xfc, 0x10, 0x53, 0x0b, 0x47, 0x34, + 0x91, 0x48, 0xcd, 0x4b, 0xa4, 0x26, 0x92, 0x8e, 0x89, 0xd4, 0xae, 0x1a, 0x15, 0x19, 0xb9, 0x42, + 0x60, 0xa5, 0xfa, 0x80, 0x40, 0xa6, 0x13, 0x0f, 0x0f, 0xfd, 0x36, 0xa4, 0xf0, 0x18, 0x4e, 0x86, + 0x1c, 0xda, 0xd5, 0xff, 0xd4, 0xbe, 0x39, 0x5d, 0x09, 0xf1, 0x8d, 0x72, 0xbe, 0xa3, 0x7d, 0xf9, + 0xc4, 0xbe, 0x21, 0xc0, 0x1b, 0x98, 0x90, 0xe5, 0x8d, 0x0f, 0x5a, 0xcd, 0x66, 0x7d, 0x73, 0xe0, + 0xd8, 0x05, 0x93, 0x3c, 0x1a, 0x4a, 0xf2, 0x3b, 0xa3, 0x19, 0xa2, 0x56, 0x60, 0x5f, 0xc4, 0x2f, + 0x1e, 0x7a, 0x15, 0x26, 0x1c, 0x3e, 0x23, 0x7c, 0xe6, 0x16, 0xbc, 0x93, 0xfd, 0xfd, 0x64, 0x76, + 0xae, 0x52, 0x73, 0xab, 0xad, 0xa2, 0x56, 0x62, 0x0d, 0x7d, 0xb9, 0x66, 0x39, 0xa5, 0x6a, 0xcd, + 0xd0, 0x6f, 0xe1, 0x8f, 0x93, 0x4e, 0xf9, 0xb6, 0xee, 0x6e, 0x36, 0x4d, 0x47, 0xcb, 0x5b, 0x6e, + 0x01, 0x3d, 0xf0, 0x8d, 0xda, 0x07, 0xb8, 0x52, 0xb3, 0x5c, 0xb3, 0x9c, 0xfc, 0x01, 0xa4, 0xdf, + 0xf6, 0x01, 0x1a, 0x7c, 0x66, 0x27, 0x07, 0x10, 0x1e, 0xf8, 0x46, 0xd7, 0xf1, 0xfd, 0x5b, 0xde, + 0xc8, 0xb5, 0x6c, 0xcb, 0x4d, 0x8a, 0xbf, 0xec, 0xc7, 0x05, 0xdd, 0x22, 0xfe, 0x45, 0x18, 0x2f, + 0x7a, 0x13, 0x3b, 0xa0, 0x17, 0x0e, 0xf8, 0x2e, 0x1f, 0x62, 0x94, 0xd6, 0x86, 0xae, 0x9f, 0x19, + 0x00, 0x81, 0xef, 0xf9, 0xc5, 0x03, 0xa4, 0xf9, 0xcc, 0xc6, 0x66, 0xd3, 0x54, 0xcb, 0xb0, 0x3f, + 0xea, 0x38, 0xf9, 0x02, 0x0a, 0xe2, 0x0f, 0x59, 0x3d, 0x83, 0xe3, 0xbf, 0xb8, 0xf2, 0xf1, 0x6b, + 0x7f, 0x6d, 0xd8, 0xda, 0xe9, 0x43, 0x6f, 0xb4, 0xc3, 0xf2, 0x82, 0x8a, 0x47, 0x3d, 0x8d, 0xe8, + 0x4b, 0x08, 0x35, 0x28, 0xba, 0x7a, 0x03, 0xd9, 0xda, 0x0b, 0x91, 0xed, 0x1c, 0xa4, 0xa4, 0x19, + 0x7e, 0x43, 0x5e, 0xea, 0xda, 0x4d, 0x85, 0x89, 0xec, 0xa8, 0x72, 0x89, 0xfa, 0x09, 0x64, 0xb9, + 0xdf, 0x0d, 0x2f, 0x0a, 0x4b, 0x75, 0xc3, 0x71, 0xbc, 0x50, 0xac, 0x19, 0x0d, 0x73, 0x98, 0x37, + 0xb2, 0xe4, 0x2d, 0x0c, 0xbc, 0x91, 0x7c, 0x9c, 0x2f, 0xab, 0x6f, 0xc0, 0x6c, 0xac, 0x77, 0xe4, + 0xa7, 0x30, 0x66, 0x19, 0x0d, 0x13, 0xfd, 0xf2, 0xdf, 0x7e, 0x7d, 0x6e, 0xc8, 0xd4, 0x24, 0x95, + 0xe1, 0x8f, 0xb1, 0x3e, 0x03, 0x8e, 0x11, 0x63, 0x31, 0xb4, 0x50, 0x04, 0xf2, 0x60, 0x97, 0x40, + 0xfa, 0x2b, 0x31, 0x92, 0x01, 0xe7, 0xeb, 0xb0, 0xa7, 0xed, 0x3c, 0x81, 0x7e, 0xa6, 0x2e, 0x03, + 0x0d, 0x3a, 0x44, 0xd2, 0x53, 0x30, 0xce, 0x0d, 0x10, 0x72, 0xaf, 0x26, 0x6e, 0x3e, 0x9a, 0xbc, + 0xf9, 0x68, 0x8b, 0xd6, 0x26, 0xc2, 0x09, 0x43, 0xb5, 0x00, 0xff, 0xe3, 0x7e, 0x0a, 0x8c, 0x25, + 0xd6, 0x67, 0xf3, 0x78, 0x58, 0xe1, 0xd3, 0x47, 0x1b, 0xb3, 0x19, 0x93, 0x75, 0xb8, 0xbf, 0x4b, + 0xf8, 0xbc, 0x57, 0x4b, 0xb0, 0x71, 0xcb, 0x50, 0x33, 0xbd, 0x68, 0x38, 0x57, 0x0d, 0xdb, 0x4c, + 0xee, 0x5b, 0x70, 0x06, 0xb3, 0x1d, 0x70, 0x8c, 0xa0, 0x33, 0x00, 0x55, 0xc3, 0xb9, 0xd9, 0xe4, + 0xb3, 0xdc, 0x71, 0xaa, 0x90, 0xae, 0x4a, 0x33, 0xbe, 0x78, 0x03, 0x83, 0x9f, 0x2c, 0xd2, 0x3a, + 0x7e, 0xf5, 0x22, 0x3c, 0xaf, 0xc3, 0x44, 0x80, 0xa5, 0x5f, 0xe8, 0xd0, 0x96, 0x3b, 0x7c, 0x40, + 0x64, 0x47, 0xa9, 0xd6, 0xea, 0x65, 0x3b, 0x91, 0xc2, 0x4b, 0xea, 0x1a, 0x28, 0x01, 0xf7, 0x45, + 0x00, 0xf1, 0xd0, 0x6f, 0x41, 0xaa, 0x84, 0x73, 0x78, 0x0f, 0xec, 0x7d, 0x6c, 0xdf, 0x3a, 0xb1, + 0x6b, 0xa0, 0x04, 0x9c, 0xe6, 0x80, 0x2b, 0xb6, 0x61, 0xb9, 0xa6, 0xc9, 0xff, 0x0c, 0x75, 0x99, + 0xae, 0x88, 0x85, 0x32, 0x8a, 0x38, 0x4c, 0xec, 0x32, 0x7d, 0x9f, 0x80, 0xd2, 0x0d, 0x10, 0xc3, + 0xf8, 0x26, 0x4c, 0xf0, 0x1d, 0xe5, 0x65, 0x3a, 0xd3, 0x25, 0x88, 0x7c, 0x89, 0xac, 0x1e, 0x61, + 0x9d, 0xdc, 0x5d, 0xba, 0x89, 0xf1, 0xcb, 0x3b, 0xeb, 0x4d, 0xd3, 0x36, 0x5c, 0x66, 0x2f, 0x33, + 0x7b, 0xe0, 0xf8, 0x29, 0x90, 0x62, 0xb8, 0x0c, 0x03, 0xe8, 0x8f, 0xe9, 0x7e, 0x98, 0xa8, 0xb2, + 0x7a, 0xd9, 0xb4, 0x51, 0x4f, 0xe1, 0x48, 0x3d, 0x8b, 0x01, 0x89, 0xec, 0x88, 0x01, 0xc9, 0x02, + 0x18, 0x2d, 0xb7, 0xca, 0xec, 0xda, 0x3d, 0xbc, 0x6e, 0xa4, 0x0a, 0x81, 0x19, 0xf5, 0x7b, 0x02, + 0x33, 0xa2, 0x2f, 0x70, 0x6f, 0x4e, 0x6e, 0x53, 0x7a, 0x49, 0x04, 0x3a, 0xa9, 0xb4, 0x7f, 0x4e, + 0xf0, 0xd3, 0xdc, 0x05, 0x13, 0x4f, 0x9a, 0x81, 0x49, 0x11, 0x11, 0x91, 0xfb, 0x74, 0x41, 0x0e, + 0x13, 0x4b, 0xee, 0xc2, 0x97, 0xd3, 0x30, 0xce, 0x29, 0xe8, 0xcf, 0x04, 0x26, 0x51, 0xcb, 0xd1, + 0x23, 0x5d, 0x6a, 0xac, 0x8b, 0x9a, 0x56, 0x8e, 0xf6, 0xb5, 0x13, 0x5b, 0xaa, 0x57, 0x3f, 0xfb, + 0xf3, 0xdf, 0x6f, 0x46, 0x57, 0xe9, 0x45, 0xbd, 0x9b, 0xd6, 0x17, 0x71, 0x77, 0xf4, 0xad, 0x40, + 0x56, 0xb6, 0x75, 0xa9, 0x0a, 0xf5, 0x2d, 0x94, 0xaf, 0xdb, 0xfa, 0x96, 0xec, 0x68, 0xdb, 0xf4, + 0x21, 0x81, 0xa9, 0x80, 0xfa, 0xa4, 0x73, 0x71, 0x28, 0x9d, 0x0a, 0x5a, 0x79, 0x75, 0x20, 0x5b, + 0x44, 0xbf, 0xc0, 0xd1, 0xcf, 0xd3, 0x73, 0x3b, 0x42, 0xa7, 0x3f, 0x11, 0x48, 0xc9, 0x4b, 0x3f, + 0x8d, 0x8d, 0x5b, 0x44, 0x6f, 0x28, 0xc7, 0xfa, 0x1b, 0x22, 0xe6, 0x25, 0x8e, 0x99, 0xa3, 0xef, + 0x0d, 0x81, 0x79, 0xcb, 0x9b, 0xf1, 0x43, 0xaa, 0x0b, 0xf5, 0xf0, 0xc5, 0x28, 0x41, 0x58, 0x71, + 0xc5, 0xef, 0x05, 0x1b, 0x52, 0x17, 0xbd, 0x60, 0xc3, 0x6a, 0x21, 0x09, 0x58, 0xa1, 0x15, 0x3c, + 0xd8, 0x1f, 0x09, 0x4c, 0xe2, 0x8d, 0x3e, 0xbe, 0x70, 0xc3, 0x52, 0x42, 0x39, 0xda, 0xd7, 0x0e, + 0x49, 0x57, 0x39, 0xe9, 0x22, 0x3d, 0xff, 0xfc, 0xa4, 0x5c, 0x19, 0x78, 0xa0, 0xbf, 0x13, 0x48, + 0xfb, 0xc2, 0x8f, 0xc6, 0x46, 0x2b, 0x2a, 0x3a, 0x95, 0xe3, 0x03, 0x58, 0x22, 0x6e, 0x81, 0xe3, + 0x5e, 0xa6, 0xab, 0x43, 0xe0, 0xb6, 0xef, 0xc5, 0x3e, 0xb6, 0x37, 0x90, 0xf5, 0x20, 0xb1, 0xb1, + 0x1a, 0x7a, 0x61, 0x87, 0xcb, 0xe1, 0xf8, 0x00, 0x96, 0x2f, 0x02, 0x5b, 0x54, 0x06, 0xfd, 0x85, + 0x40, 0x4a, 0x2a, 0xbd, 0xf8, 0x1a, 0x8e, 0x68, 0x4c, 0xe5, 0x58, 0x7f, 0x43, 0x64, 0xbe, 0xc6, + 0x99, 0x2f, 0xd1, 0x7c, 0x12, 0xcc, 0xbc, 0x46, 0xe8, 0xd7, 0x04, 0x52, 0x52, 0xc9, 0xc5, 0x23, + 0x47, 0xb4, 0x65, 0x3c, 0x72, 0x54, 0x4b, 0xaa, 0x0b, 0x1c, 0xf9, 0x04, 0x9d, 0x1b, 0x1c, 0x99, + 0xfe, 0x41, 0x80, 0x76, 0xca, 0x3b, 0x3a, 0x1f, 0xb7, 0x69, 0xac, 0xd0, 0x54, 0x16, 0x86, 0x59, + 0x82, 0xc4, 0xd7, 0x39, 0xf1, 0x3a, 0xbd, 0x32, 0x74, 0x90, 0xb9, 0x44, 0xf5, 0xc2, 0x2c, 0xb5, + 0xeb, 0x36, 0x57, 0xeb, 0x37, 0x3d, 0x01, 0xea, 0x7d, 0x3c, 0xd2, 0xbe, 0xd2, 0x8b, 0x2f, 0xe9, + 0xa8, 0x3e, 0x8d, 0x2f, 0xe9, 0x0e, 0xc1, 0x89, 0x2d, 0xee, 0x02, 0x5d, 0x4a, 0xa0, 0x3c, 0xe8, + 0xb7, 0x04, 0xc6, 0xf9, 0x16, 0xf4, 0x70, 0x4f, 0x02, 0xc9, 0xf9, 0x4a, 0x1f, 0x2b, 0x64, 0x7c, + 0x9f, 0x33, 0xbe, 0x4b, 0xcf, 0x0e, 0xcb, 0x18, 0xec, 0x6f, 0xf4, 0x3e, 0x81, 0x31, 0x4f, 0x26, + 0xd2, 0x97, 0xe3, 0x76, 0x0d, 0x08, 0x53, 0xe5, 0x70, 0x6f, 0xa3, 0x1d, 0xb4, 0x5d, 0x2b, 0xd2, + 0x77, 0x3d, 0x01, 0xea, 0xb5, 0xdd, 0xdf, 0x08, 0xa4, 0x7d, 0x89, 0x18, 0x9f, 0xec, 0xa8, 0x3c, + 0x8d, 0x4f, 0x76, 0x87, 0xde, 0xc4, 0xeb, 0xcd, 0x0a, 0xbd, 0xb0, 0x03, 0xdc, 0xb6, 0x60, 0xf5, + 0xa0, 0x7f, 0x20, 0x30, 0x81, 0xc4, 0xb1, 0xc9, 0x0c, 0xe3, 0x1e, 0xe9, 0x67, 0x86, 0xac, 0x97, + 0x39, 0xeb, 0x12, 0x5d, 0xdc, 0x01, 0x6b, 0x9b, 0xf3, 0xa1, 0xd7, 0xb2, 0xa4, 0x6e, 0x8b, 0x6f, + 0x59, 0x61, 0xf1, 0xda, 0xa3, 0x65, 0x45, 0x44, 0xa4, 0xba, 0xf6, 0x1c, 0xaf, 0x51, 0x94, 0x56, + 0xea, 0x4a, 0x8f, 0xf7, 0x57, 0x02, 0xbb, 0x43, 0x3a, 0x8b, 0x9e, 0x88, 0x63, 0xe9, 0xa6, 0x17, + 0x95, 0x93, 0x03, 0x5a, 0x23, 0xfe, 0x12, 0xc7, 0x3f, 0x47, 0xcf, 0x0c, 0x81, 0x2f, 0xf4, 0x9b, + 0xbe, 0x85, 0x3a, 0x73, 0x9b, 0x5a, 0xb0, 0x3b, 0xa4, 0x84, 0xe2, 0x91, 0xbb, 0x49, 0xb4, 0x78, + 0xe4, 0xae, 0xf2, 0x4a, 0x1d, 0xa1, 0xf7, 0x60, 0x4f, 0x87, 0x26, 0xa1, 0xa7, 0x62, 0xdf, 0x86, + 0x18, 0x95, 0xa5, 0xcc, 0x0f, 0xb1, 0x42, 0xee, 0x9d, 0x5b, 0x79, 0xf4, 0x34, 0x4b, 0x1e, 0x3f, + 0xcd, 0x92, 0x7f, 0x9e, 0x66, 0xc9, 0x57, 0xcf, 0xb2, 0x23, 0x8f, 0x9f, 0x65, 0x47, 0xfe, 0x7a, + 0x96, 0x1d, 0xf9, 0xe8, 0x64, 0xdf, 0xff, 0xc6, 0x7e, 0x1a, 0x08, 0x70, 0x71, 0x82, 0xff, 0xbf, + 0xec, 0xb5, 0xff, 0x02, 0x00, 0x00, 0xff, 0xff, 0xd7, 0x78, 0xf1, 0xf0, 0xd9, 0x1c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2221,6 +2250,7 @@ func (c *queryClient) AllBalances(ctx context.Context, in *QueryAllBalancesReque return out, nil } +// Deprecated: Do not use. func (c *queryClient) FTSupply(ctx context.Context, in *QueryFTSupplyRequest, opts ...grpc.CallOption) (*QueryFTSupplyResponse, error) { out := new(QueryFTSupplyResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Query/FTSupply", in, out, opts...) @@ -2230,6 +2260,7 @@ func (c *queryClient) FTSupply(ctx context.Context, in *QueryFTSupplyRequest, op return out, nil } +// Deprecated: Do not use. func (c *queryClient) FTMinted(ctx context.Context, in *QueryFTMintedRequest, opts ...grpc.CallOption) (*QueryFTMintedResponse, error) { out := new(QueryFTMintedResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Query/FTMinted", in, out, opts...) @@ -2239,6 +2270,7 @@ func (c *queryClient) FTMinted(ctx context.Context, in *QueryFTMintedRequest, op return out, nil } +// Deprecated: Do not use. func (c *queryClient) FTBurnt(ctx context.Context, in *QueryFTBurntRequest, opts ...grpc.CallOption) (*QueryFTBurntResponse, error) { out := new(QueryFTBurntResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Query/FTBurnt", in, out, opts...) @@ -2311,6 +2343,7 @@ func (c *queryClient) Token(ctx context.Context, in *QueryTokenRequest, opts ... return out, nil } +// Deprecated: Do not use. func (c *queryClient) Root(ctx context.Context, in *QueryRootRequest, opts ...grpc.CallOption) (*QueryRootResponse, error) { out := new(QueryRootResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Query/Root", in, out, opts...) @@ -2320,6 +2353,7 @@ func (c *queryClient) Root(ctx context.Context, in *QueryRootRequest, opts ...gr return out, nil } +// Deprecated: Do not use. func (c *queryClient) HasParent(ctx context.Context, in *QueryHasParentRequest, opts ...grpc.CallOption) (*QueryHasParentResponse, error) { out := new(QueryHasParentResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Query/HasParent", in, out, opts...) @@ -2329,6 +2363,7 @@ func (c *queryClient) HasParent(ctx context.Context, in *QueryHasParentRequest, return out, nil } +// Deprecated: Do not use. func (c *queryClient) Parent(ctx context.Context, in *QueryParentRequest, opts ...grpc.CallOption) (*QueryParentResponse, error) { out := new(QueryParentResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Query/Parent", in, out, opts...) @@ -2338,6 +2373,7 @@ func (c *queryClient) Parent(ctx context.Context, in *QueryParentRequest, opts . return out, nil } +// Deprecated: Do not use. func (c *queryClient) Children(ctx context.Context, in *QueryChildrenRequest, opts ...grpc.CallOption) (*QueryChildrenResponse, error) { out := new(QueryChildrenResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Query/Children", in, out, opts...) diff --git a/x/collection/tx.pb.go b/x/collection/tx.pb.go index 50f3d926d7..fe6e1544f7 100644 --- a/x/collection/tx.pb.go +++ b/x/collection/tx.pb.go @@ -30,6 +30,8 @@ var _ = math.Inf const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // MsgSendFT is the Msg/SendFT request type. +// +// Deprecated: Do not use. type MsgSendFT struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -104,6 +106,8 @@ func (m *MsgSendFT) GetAmount() []Coin { } // MsgSendFTResponse is the Msg/SendFT response type. +// +// Deprecated: Do not use. type MsgSendFTResponse struct { } @@ -141,6 +145,8 @@ func (m *MsgSendFTResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgSendFTResponse proto.InternalMessageInfo // MsgOperatorSendFT is the Msg/OperatorSendFT request type. +// +// Deprecated: Do not use. type MsgOperatorSendFT struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -224,6 +230,8 @@ func (m *MsgOperatorSendFT) GetAmount() []Coin { } // MsgOperatorSendFTResponse is the Msg/OperatorSendFT response type. +// +// Deprecated: Do not use. type MsgOperatorSendFTResponse struct { } @@ -815,6 +823,8 @@ func (m *MsgCreateContractResponse) GetContractId() string { // MsgIssueFT is the Msg/IssueFT request type. // // Signer: `owner` +// +// Deprecated: Do not use. type MsgIssueFT struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -919,6 +929,8 @@ func (m *MsgIssueFT) GetTo() string { } // MsgIssueFTResponse is the Msg/IssueFT response type. +// +// Deprecated: Do not use. type MsgIssueFTResponse struct { // id of the token. TokenId string `protobuf:"bytes,1,opt,name=token_id,json=tokenId,proto3" json:"token_id,omitempty"` @@ -1089,6 +1101,8 @@ func (m *MsgIssueNFTResponse) GetTokenType() string { // MsgMintFT is the Msg/MintFT request type. // // Signer: `from` +// +// Deprecated: Do not use. type MsgMintFT struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -1163,6 +1177,8 @@ func (m *MsgMintFT) GetAmount() Coins { } // MsgMintFTResponse is the Msg/MintFT response type. +// +// Deprecated: Do not use. type MsgMintFTResponse struct { } @@ -1389,6 +1405,8 @@ func (m *MintNFTParam) GetMeta() string { } // MsgBurnFT is the Msg/BurnFT request type. +// +// Deprecated: Do not use. type MsgBurnFT struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -1455,6 +1473,8 @@ func (m *MsgBurnFT) GetAmount() []Coin { } // MsgBurnFTResponse is the Msg/BurnFT response type. +// +// Deprecated: Do not use. type MsgBurnFTResponse struct { } @@ -1492,6 +1512,8 @@ func (m *MsgBurnFTResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgBurnFTResponse proto.InternalMessageInfo // MsgOperatorBurnFT is the Msg/OperatorBurnFT request type. +// +// Deprecated: Do not use. type MsgOperatorBurnFT struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -1568,6 +1590,8 @@ func (m *MsgOperatorBurnFT) GetAmount() []Coin { } // MsgOperatorBurnFTResponse is the Msg/OperatorBurnFT response type. +// +// Deprecated: Do not use. type MsgOperatorBurnFTResponse struct { } @@ -2159,6 +2183,8 @@ var xxx_messageInfo_MsgRevokePermissionResponse proto.InternalMessageInfo // MsgAttach is the Msg/Attach request type. // // Signer: `from` +// +// Deprecated: Do not use. type MsgAttach struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -2232,6 +2258,8 @@ func (m *MsgAttach) GetToTokenId() string { } // MsgAttachResponse is the Msg/Attach response type. +// +// Deprecated: Do not use. type MsgAttachResponse struct { } @@ -2271,6 +2299,8 @@ var xxx_messageInfo_MsgAttachResponse proto.InternalMessageInfo // MsgDetach is the Msg/Detach request type. // // Signer: `from` +// +// Deprecated: Do not use. type MsgDetach struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -2335,6 +2365,8 @@ func (m *MsgDetach) GetTokenId() string { } // MsgDetachResponse is the Msg/Detach response type. +// +// Deprecated: Do not use. type MsgDetachResponse struct { } @@ -2372,6 +2404,8 @@ func (m *MsgDetachResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgDetachResponse proto.InternalMessageInfo // MsgOperatorAttach is the Msg/OperatorAttach request type. +// +// Deprecated: Do not use. type MsgOperatorAttach struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -2454,6 +2488,8 @@ func (m *MsgOperatorAttach) GetToTokenId() string { } // MsgOperatorAttachResponse is the Msg/OperatorAttach response type. +// +// Deprecated: Do not use. type MsgOperatorAttachResponse struct { } @@ -2491,6 +2527,8 @@ func (m *MsgOperatorAttachResponse) XXX_DiscardUnknown() { var xxx_messageInfo_MsgOperatorAttachResponse proto.InternalMessageInfo // MsgOperatorDetach is the Msg/OperatorDetach request type. +// +// Deprecated: Do not use. type MsgOperatorDetach struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -2564,6 +2602,8 @@ func (m *MsgOperatorDetach) GetTokenId() string { } // MsgOperatorDetachResponse is the Msg/OperatorDetach response type. +// +// Deprecated: Do not use. type MsgOperatorDetachResponse struct { } @@ -2651,90 +2691,92 @@ func init() { func init() { proto.RegisterFile("lbm/collection/v1/tx.proto", fileDescriptor_eaee77977a3cfe12) } var fileDescriptor_eaee77977a3cfe12 = []byte{ - // 1327 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x98, 0xcd, 0x6f, 0xe3, 0x44, - 0x14, 0xc0, 0xeb, 0x3a, 0x49, 0xd3, 0x57, 0xd8, 0x0f, 0x6f, 0x05, 0xdd, 0xb4, 0x75, 0x2a, 0x8b, - 0x2e, 0x15, 0x6a, 0x13, 0xb5, 0xc0, 0x6d, 0x41, 0x6a, 0x8b, 0x8a, 0x0a, 0xfd, 0x58, 0x85, 0x72, - 0x01, 0x89, 0xca, 0x89, 0xa7, 0x89, 0xb7, 0xb1, 0x27, 0xb2, 0x27, 0xdd, 0x16, 0x0e, 0x48, 0x5c, - 0xb8, 0x56, 0x5c, 0x39, 0x70, 0x45, 0xf0, 0x4f, 0x70, 0xdc, 0xe3, 0x1e, 0x11, 0x87, 0x05, 0xb5, - 0x47, 0xfe, 0x08, 0xd0, 0x8c, 0xc7, 0x13, 0x8f, 0x93, 0x49, 0xdc, 0x92, 0xe5, 0x16, 0xcf, 0xbc, - 0x99, 0xf7, 0x7b, 0x1f, 0x33, 0xef, 0x4d, 0xa0, 0xd4, 0xae, 0x7b, 0xd5, 0x06, 0x6e, 0xb7, 0x51, - 0x83, 0xb8, 0xd8, 0xaf, 0x9e, 0xad, 0x57, 0xc9, 0x79, 0xa5, 0x13, 0x60, 0x82, 0x8d, 0xfb, 0xed, - 0xba, 0x57, 0xe9, 0xcd, 0x55, 0xce, 0xd6, 0x4b, 0xb3, 0x4d, 0xdc, 0xc4, 0x6c, 0xb6, 0x4a, 0x7f, - 0x45, 0x82, 0x25, 0xab, 0x7f, 0x93, 0xc4, 0x32, 0x26, 0x63, 0x7d, 0xaf, 0xc1, 0xf4, 0x7e, 0xd8, - 0xfc, 0x0c, 0xf9, 0xce, 0xce, 0x91, 0x51, 0x86, 0x99, 0x06, 0xf6, 0x49, 0x60, 0x37, 0xc8, 0xb1, - 0xeb, 0xcc, 0x69, 0x4b, 0xda, 0xca, 0x74, 0x0d, 0xe2, 0xa1, 0x5d, 0xc7, 0x30, 0x20, 0x77, 0x12, - 0x60, 0x6f, 0x6e, 0x92, 0xcd, 0xb0, 0xdf, 0xc6, 0x1d, 0x98, 0x24, 0x78, 0x4e, 0x67, 0x23, 0x93, - 0x04, 0x1b, 0xef, 0x43, 0xc1, 0xf6, 0x70, 0xd7, 0x27, 0x73, 0xb9, 0x25, 0x7d, 0x65, 0x66, 0xe3, - 0xcd, 0x4a, 0x1f, 0x70, 0x65, 0x1b, 0xbb, 0xfe, 0x56, 0xee, 0xf9, 0xcb, 0xf2, 0x44, 0x8d, 0x0b, - 0x5b, 0x0f, 0xe0, 0xbe, 0x00, 0xa9, 0xa1, 0xb0, 0x83, 0xfd, 0x10, 0x59, 0xbf, 0x6a, 0x6c, 0xf4, - 0xb0, 0x83, 0x02, 0x9b, 0xe0, 0x20, 0x2b, 0x66, 0x09, 0x8a, 0x98, 0x2f, 0xe1, 0xa8, 0xe2, 0x5b, - 0x98, 0xa0, 0xf7, 0x99, 0x90, 0x1b, 0x60, 0x42, 0xfe, 0x26, 0x26, 0xcc, 0xc3, 0xc3, 0x3e, 0x58, - 0x61, 0x8a, 0x0f, 0xc0, 0xed, 0x3b, 0x18, 0x97, 0xa7, 0xe7, 0x61, 0x9a, 0xe0, 0x53, 0xe4, 0x1f, - 0xbb, 0x4e, 0xc8, 0x9c, 0x3d, 0x5d, 0x2b, 0xb2, 0x81, 0x5d, 0x27, 0xb4, 0x66, 0xc1, 0xe8, 0xe9, - 0x13, 0x14, 0x3f, 0x68, 0x6c, 0x38, 0xc9, 0x78, 0xf0, 0x7f, 0x78, 0x54, 0x42, 0xcd, 0xa7, 0x50, - 0x17, 0xa0, 0xd4, 0xcf, 0x24, 0x90, 0x4f, 0x61, 0x76, 0x3f, 0x6c, 0x6e, 0x76, 0x49, 0x0b, 0x07, - 0xee, 0xd7, 0x28, 0x16, 0x1b, 0xcd, 0xfc, 0x06, 0x14, 0x5a, 0xb8, 0xed, 0xa0, 0x98, 0x98, 0x7f, - 0x49, 0xb6, 0xe8, 0xb2, 0x2d, 0x96, 0x09, 0x0b, 0x83, 0x94, 0x09, 0x98, 0x16, 0xcb, 0xc7, 0x1a, - 0x3a, 0xc3, 0xa7, 0xaf, 0x98, 0x24, 0x4a, 0x26, 0x59, 0x93, 0xc0, 0x68, 0x30, 0x8c, 0xed, 0x00, - 0xd9, 0x04, 0x6d, 0x73, 0x3d, 0xc6, 0x2c, 0xe4, 0xf1, 0x33, 0x1f, 0x05, 0x1c, 0x20, 0xfa, 0xa0, - 0xd1, 0xf1, 0x6d, 0x0f, 0xc5, 0x89, 0x44, 0x7f, 0x1b, 0xf7, 0x40, 0xef, 0x06, 0x2e, 0x57, 0x49, - 0x7f, 0x52, 0x29, 0x0f, 0x11, 0x9b, 0x47, 0x8c, 0xfd, 0xb6, 0x1e, 0x33, 0x02, 0x59, 0x49, 0x4c, - 0x30, 0xd2, 0x66, 0xeb, 0x1f, 0x8d, 0x25, 0xfc, 0x6e, 0x18, 0x76, 0x51, 0xc6, 0x84, 0xef, 0xe3, - 0x8c, 0xa9, 0xf4, 0x1e, 0x15, 0xf5, 0x99, 0x83, 0x1a, 0xae, 0x67, 0xb7, 0x43, 0x46, 0x9b, 0xaf, - 0x89, 0x6f, 0x3a, 0xe7, 0xb9, 0x3e, 0xb1, 0xeb, 0x6d, 0x34, 0x97, 0x5f, 0xd2, 0x56, 0x8a, 0x35, - 0xf1, 0xdd, 0xf3, 0x4e, 0x21, 0xe9, 0x9d, 0x28, 0x4f, 0xa7, 0x44, 0x9e, 0x7e, 0x22, 0x4e, 0x7e, - 0x91, 0x8e, 0x6d, 0x6d, 0xd0, 0x03, 0xfe, 0xc7, 0xcb, 0xf2, 0x3b, 0x4d, 0x97, 0xb4, 0xba, 0xf5, - 0x4a, 0x03, 0x7b, 0xd5, 0x1d, 0xd7, 0x0f, 0x1b, 0x2d, 0xd7, 0xae, 0x9e, 0xf0, 0x1f, 0x6b, 0xa1, - 0x73, 0x5a, 0x25, 0x17, 0x1d, 0x14, 0x56, 0x76, 0x7d, 0x22, 0xae, 0x83, 0x2a, 0x3b, 0x6a, 0xdc, - 0x01, 0xc2, 0x71, 0x0f, 0xa1, 0x18, 0x9f, 0x04, 0xee, 0x85, 0x29, 0x7e, 0x10, 0xac, 0x36, 0xcc, - 0xc4, 0x0b, 0x0e, 0xc6, 0xe9, 0x32, 0x61, 0x7a, 0x2e, 0x61, 0xba, 0xf5, 0x1e, 0x3c, 0x48, 0x68, - 0x13, 0x7c, 0x8b, 0x00, 0x11, 0x1f, 0x35, 0x88, 0x2b, 0x8d, 0xce, 0xee, 0xd1, 0x45, 0x07, 0x59, - 0x97, 0x51, 0xc1, 0xd8, 0x77, 0x7d, 0x32, 0xae, 0x6b, 0xec, 0xc3, 0xac, 0x05, 0xe3, 0x75, 0x1a, - 0x8c, 0x5f, 0xfe, 0x2c, 0xe7, 0xe9, 0x57, 0x98, 0xaa, 0x1c, 0x11, 0x91, 0x38, 0x21, 0x97, 0x51, - 0xfa, 0xd1, 0xd1, 0xb1, 0xdd, 0xb7, 0x1f, 0x40, 0xa1, 0x63, 0x07, 0xb6, 0x17, 0x72, 0xd0, 0xf2, - 0x00, 0x50, 0xae, 0xf0, 0x09, 0x95, 0x8b, 0xcb, 0x43, 0xb4, 0xc8, 0x5a, 0x67, 0xf9, 0xc0, 0x05, - 0x84, 0xbf, 0xa5, 0x9b, 0x51, 0x4b, 0xdd, 0x8c, 0x9f, 0xc3, 0x6b, 0xc9, 0x0d, 0x47, 0x04, 0x27, - 0x6b, 0x42, 0x58, 0xcf, 0x58, 0x0c, 0xb7, 0xba, 0x81, 0x7f, 0x5b, 0xd7, 0xf4, 0x2a, 0xa4, 0x7e, - 0xf3, 0x22, 0x1f, 0x29, 0x16, 0xa1, 0xfa, 0x51, 0x2e, 0xf2, 0x59, 0xb1, 0x6e, 0x5a, 0x92, 0x6e, - 0xd9, 0x97, 0xc8, 0x45, 0x3d, 0x85, 0xfe, 0x15, 0x4b, 0x32, 0x3a, 0x78, 0xeb, 0x24, 0x93, 0xe2, - 0xaf, 0x0f, 0x2c, 0xe2, 0x7c, 0x7f, 0xa1, 0xf5, 0x3b, 0xb9, 0x88, 0x67, 0x56, 0x7f, 0x53, 0x8f, - 0x0d, 0xed, 0x2f, 0xe4, 0xa2, 0x9d, 0x46, 0xfc, 0x8d, 0x5f, 0x13, 0xd8, 0x71, 0x4f, 0x2e, 0x46, - 0x93, 0x89, 0x1b, 0x6a, 0x32, 0x79, 0x39, 0xcb, 0xd9, 0xae, 0xa7, 0xb3, 0xbd, 0x0c, 0x33, 0x1c, - 0xcf, 0x77, 0xd0, 0x39, 0xbf, 0xdc, 0xa2, 0x15, 0xbb, 0x74, 0xc4, 0x78, 0x0c, 0x53, 0x8d, 0x96, - 0xed, 0x37, 0x51, 0xc8, 0xfb, 0xb8, 0x85, 0x01, 0x21, 0xdf, 0x24, 0x24, 0x70, 0xeb, 0x5d, 0x82, - 0x78, 0xdc, 0xe3, 0x25, 0xf1, 0xb5, 0xc2, 0x2c, 0x10, 0x76, 0x5d, 0x30, 0xcf, 0x7f, 0x1c, 0xd8, - 0x3e, 0x79, 0x82, 0x02, 0xcf, 0x0d, 0x43, 0x17, 0xfb, 0xe3, 0xb9, 0x5d, 0x4c, 0x80, 0x8e, 0xd8, - 0x32, 0xb6, 0xa6, 0x37, 0xc2, 0x1d, 0x9e, 0x52, 0x2d, 0xc0, 0x9e, 0xb2, 0xdb, 0x3c, 0x6a, 0x17, - 0xfe, 0x2b, 0x99, 0x4c, 0xa2, 0xf7, 0x91, 0x2c, 0xc2, 0xfc, 0x00, 0x5d, 0x02, 0xe5, 0x1b, 0x16, - 0xfa, 0x4d, 0x42, 0xec, 0x46, 0xeb, 0x76, 0x00, 0xc9, 0x1a, 0xa9, 0x4b, 0x35, 0xd2, 0x30, 0x69, - 0xd0, 0x8f, 0xc5, 0x6c, 0x2e, 0x4e, 0x8a, 0x23, 0x5e, 0x43, 0xa3, 0xa8, 0x45, 0xca, 0x05, 0xd1, - 0x97, 0x8c, 0xe8, 0x23, 0xf4, 0x2a, 0x88, 0xb8, 0xc6, 0x68, 0x73, 0xa1, 0xf1, 0x27, 0xf9, 0x4e, - 0xcb, 0xea, 0x8c, 0x9b, 0x9e, 0xd0, 0x24, 0x56, 0x6e, 0xa8, 0xa3, 0xf2, 0x69, 0x47, 0xc9, 0xf7, - 0x5a, 0xca, 0x61, 0xdf, 0x4a, 0xf4, 0x59, 0x1d, 0x37, 0x3e, 0xfa, 0x14, 0x9d, 0xec, 0xdc, 0x8d, - 0xbf, 0xef, 0x82, 0xbe, 0x1f, 0x36, 0x8d, 0x3d, 0x28, 0xf0, 0x17, 0xe1, 0xa0, 0x83, 0x2d, 0x5e, - 0x93, 0xa5, 0xb7, 0x86, 0xcd, 0x8a, 0x42, 0xec, 0xc0, 0x9d, 0xd4, 0x3b, 0x53, 0xb1, 0x4e, 0x96, - 0x2a, 0xad, 0x66, 0x91, 0x12, 0x5a, 0x0e, 0x61, 0x2a, 0x7e, 0x74, 0x2d, 0xaa, 0xb1, 0x0e, 0x76, - 0x8e, 0x4a, 0xcb, 0x43, 0xa7, 0xc5, 0x86, 0x4d, 0xb8, 0x9b, 0x7e, 0xcd, 0x2d, 0x8f, 0x26, 0xa2, - 0x0a, 0xd6, 0x32, 0x89, 0x09, 0x45, 0x1e, 0xdc, 0xef, 0x7f, 0x84, 0xbd, 0x3d, 0x78, 0x8f, 0x3e, - 0xc1, 0x52, 0x35, 0xa3, 0x60, 0x32, 0x1c, 0xa9, 0x67, 0x96, 0x22, 0x1c, 0xb2, 0x94, 0x2a, 0x1c, - 0x83, 0x1f, 0x52, 0x54, 0x4b, 0xea, 0x15, 0xa5, 0xd0, 0x22, 0x4b, 0xa9, 0xb4, 0x28, 0x1e, 0x4b, - 0x87, 0x30, 0x15, 0xbf, 0x83, 0x14, 0x41, 0xe7, 0xd3, 0xaa, 0xa0, 0xa7, 0x1f, 0x11, 0x35, 0x28, - 0x8a, 0x67, 0x82, 0x39, 0x64, 0x09, 0x0d, 0xf3, 0xa3, 0xe1, 0xf3, 0x62, 0xcf, 0x3d, 0x28, 0xf0, - 0xae, 0x5e, 0x71, 0x9a, 0xa2, 0x59, 0xd5, 0x69, 0x92, 0xfb, 0x6f, 0x6a, 0x72, 0xdc, 0x7b, 0x2f, - 0xaa, 0x17, 0x0c, 0xc9, 0xf3, 0x74, 0x9f, 0xbc, 0x07, 0x05, 0xde, 0x19, 0x2a, 0xf0, 0xa2, 0x59, - 0x15, 0x9e, 0xdc, 0xb8, 0x25, 0x0f, 0x3b, 0xdf, 0x75, 0xc4, 0x61, 0xe7, 0xbb, 0xaf, 0x66, 0x91, - 0x4a, 0x3a, 0x21, 0x6e, 0xce, 0x16, 0xd5, 0x58, 0x43, 0x9c, 0x90, 0x6a, 0xab, 0x92, 0x87, 0x3d, - 0xde, 0x78, 0x79, 0x34, 0x51, 0x86, 0xc3, 0x9e, 0x56, 0x44, 0x93, 0x21, 0xea, 0xdd, 0x54, 0xc9, - 0xc0, 0x66, 0x95, 0xc9, 0x20, 0x75, 0x4d, 0x14, 0x3b, 0xdd, 0x32, 0x29, 0xb0, 0x53, 0x62, 0x2a, - 0x6c, 0x45, 0x17, 0x64, 0x3c, 0x85, 0x7b, 0x7d, 0x2d, 0xd0, 0xa3, 0x61, 0x17, 0x42, 0x42, 0x55, - 0x25, 0x9b, 0x5c, 0xd2, 0x45, 0xbc, 0xac, 0x2b, 0x5c, 0x14, 0xcd, 0xaa, 0x5c, 0x24, 0x57, 0x5c, - 0xba, 0x1b, 0x2f, 0xb3, 0x8a, 0xdd, 0xa2, 0x59, 0xd5, 0x6e, 0x72, 0x85, 0x4c, 0xa6, 0x37, 0x67, - 0x1c, 0x91, 0xde, 0x9c, 0x75, 0x35, 0x8b, 0xd4, 0x20, 0x2d, 0x9c, 0x7d, 0x84, 0x16, 0x6e, 0xc3, - 0x6a, 0x16, 0xa9, 0x58, 0xcb, 0xd6, 0xa7, 0x3f, 0x5f, 0x99, 0x13, 0xcf, 0xaf, 0x4c, 0xed, 0xc5, - 0x95, 0xa9, 0xfd, 0x75, 0x65, 0x6a, 0x97, 0xd7, 0xe6, 0xc4, 0x8b, 0x6b, 0x73, 0xe2, 0xf7, 0x6b, - 0x73, 0xe2, 0x8b, 0xb5, 0x91, 0x7f, 0xcc, 0x9c, 0x27, 0xfe, 0xf5, 0xae, 0x17, 0xd8, 0xdf, 0xde, - 0xef, 0xfe, 0x1b, 0x00, 0x00, 0xff, 0xff, 0x9c, 0xcb, 0x66, 0x39, 0x61, 0x17, 0x00, 0x00, + // 1357 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0x4f, 0x6f, 0xe3, 0x44, + 0x14, 0xaf, 0xe3, 0x24, 0x4d, 0x5f, 0xa1, 0xb4, 0xde, 0x8a, 0xcd, 0xa6, 0x6d, 0x52, 0x59, 0x74, + 0xa9, 0x50, 0x9b, 0xa8, 0x5d, 0xb8, 0xa0, 0x05, 0xa9, 0x2d, 0x2a, 0x2a, 0xd0, 0xee, 0x36, 0x94, + 0x0b, 0x07, 0x2a, 0x27, 0x99, 0x26, 0xde, 0xc6, 0x9e, 0xc8, 0x9e, 0x94, 0x16, 0x0e, 0x48, 0xec, + 0x05, 0x89, 0xcb, 0x0a, 0x71, 0x45, 0x1c, 0xb8, 0x20, 0x2e, 0x7c, 0x05, 0x8e, 0x7b, 0xdc, 0x23, + 0xe2, 0xb0, 0xa0, 0xf6, 0x8b, 0x20, 0x8f, 0xc7, 0x13, 0x8f, 0xed, 0x49, 0xdc, 0x6e, 0x76, 0x6f, + 0xb6, 0xdf, 0x9b, 0xf9, 0xfd, 0xde, 0x9f, 0x79, 0xef, 0x8d, 0xa1, 0xd4, 0x6d, 0x58, 0xb5, 0x26, + 0xee, 0x76, 0x51, 0x93, 0x98, 0xd8, 0xae, 0x9d, 0x6d, 0xd4, 0xc8, 0x79, 0xb5, 0xe7, 0x60, 0x82, + 0xb5, 0xb9, 0x6e, 0xc3, 0xaa, 0x0e, 0x64, 0xd5, 0xb3, 0x8d, 0xd2, 0x7c, 0x1b, 0xb7, 0x31, 0x95, + 0xd6, 0xbc, 0x27, 0x5f, 0xb1, 0xa4, 0xc7, 0x37, 0x09, 0x2d, 0xa3, 0x3a, 0xfa, 0x8f, 0x0a, 0x4c, + 0xed, 0xbb, 0xed, 0xcf, 0x91, 0xdd, 0xda, 0x3d, 0xd2, 0x2a, 0x30, 0xdd, 0xc4, 0x36, 0x71, 0x8c, + 0x26, 0x39, 0x36, 0x5b, 0x45, 0x65, 0x59, 0x59, 0x9d, 0xaa, 0x43, 0xf0, 0x69, 0xaf, 0xa5, 0x69, + 0x90, 0x3d, 0x71, 0xb0, 0x55, 0xcc, 0x50, 0x09, 0x7d, 0xd6, 0x66, 0x20, 0x43, 0x70, 0x51, 0xa5, + 0x5f, 0x32, 0x04, 0x6b, 0xef, 0x41, 0xde, 0xb0, 0x70, 0xdf, 0x26, 0xc5, 0xec, 0xb2, 0xba, 0x3a, + 0xbd, 0x79, 0xbb, 0x1a, 0x23, 0x5c, 0xdd, 0xc1, 0xa6, 0xbd, 0x9d, 0x7d, 0xfa, 0xbc, 0x32, 0x51, + 0x67, 0xca, 0xef, 0x67, 0x8a, 0x8a, 0x7e, 0x1b, 0xe6, 0x38, 0x99, 0x3a, 0x72, 0x7b, 0xd8, 0x76, + 0x11, 0x15, 0xfc, 0xa9, 0x50, 0xc9, 0x83, 0x1e, 0x72, 0x0c, 0x82, 0x9d, 0xb4, 0x74, 0x4b, 0x50, + 0xc0, 0x6c, 0x09, 0xa3, 0xcc, 0xdf, 0xb9, 0x29, 0x6a, 0xcc, 0x94, 0x6c, 0x82, 0x29, 0xb9, 0xeb, + 0x9a, 0x52, 0x81, 0x3b, 0x31, 0xc2, 0x82, 0x49, 0x36, 0x00, 0xb3, 0xf5, 0x60, 0x5c, 0x9e, 0x5f, + 0x80, 0x29, 0x82, 0x4f, 0x91, 0x7d, 0x6c, 0xb6, 0x5c, 0xea, 0xfc, 0xa9, 0x7a, 0x81, 0x7e, 0xd8, + 0x6b, 0xb9, 0xfa, 0x3c, 0x68, 0x03, 0xbc, 0x80, 0x89, 0xfe, 0x93, 0x42, 0x3f, 0x87, 0x79, 0x1e, + 0xbc, 0x0a, 0xcf, 0x0a, 0x54, 0x73, 0x11, 0xaa, 0x8b, 0x50, 0x8a, 0x73, 0xe2, 0x94, 0x4f, 0x61, + 0x7e, 0xdf, 0x6d, 0x6f, 0xf5, 0x49, 0x07, 0x3b, 0xe6, 0x37, 0x28, 0x50, 0x1b, 0xcd, 0xf9, 0x4d, + 0xc8, 0x77, 0x70, 0xb7, 0x85, 0x02, 0xc6, 0xec, 0x4d, 0xb0, 0x45, 0x15, 0x6d, 0xd1, 0xcb, 0xb0, + 0x98, 0x04, 0xc6, 0xc9, 0x74, 0x68, 0x5e, 0xd6, 0xd1, 0x19, 0x3e, 0x7d, 0xc9, 0x4c, 0x16, 0x68, + 0x42, 0x89, 0x48, 0x9c, 0x46, 0x93, 0xd2, 0xd8, 0x71, 0x90, 0x41, 0xd0, 0x0e, 0xc3, 0xd1, 0xe6, + 0x21, 0x87, 0xbf, 0xb6, 0x91, 0xc3, 0x08, 0xf8, 0x2f, 0x5e, 0x74, 0x6c, 0xc3, 0x42, 0x41, 0x22, + 0x79, 0xcf, 0xda, 0x2c, 0xa8, 0x7d, 0xc7, 0x64, 0x90, 0xde, 0xa3, 0xa7, 0x65, 0x21, 0x62, 0xb0, + 0x88, 0xd1, 0x67, 0xfd, 0x3e, 0x65, 0x20, 0x82, 0x04, 0x0c, 0x46, 0xda, 0xac, 0x3f, 0xce, 0xd0, + 0x84, 0xdf, 0x73, 0xdd, 0x3e, 0x4a, 0x99, 0xf0, 0x31, 0x9e, 0x01, 0x2b, 0x75, 0xc0, 0xca, 0xf3, + 0x59, 0x0b, 0x35, 0x4d, 0xcb, 0xe8, 0xba, 0x94, 0x6d, 0xae, 0xce, 0xdf, 0x3d, 0x99, 0x65, 0xda, + 0xc4, 0x68, 0x74, 0x51, 0x31, 0xb7, 0xac, 0xac, 0x16, 0xea, 0xfc, 0x7d, 0xe0, 0x9d, 0x7c, 0xd8, + 0x3b, 0x7e, 0x9e, 0x4e, 0xf2, 0x3c, 0xfd, 0x84, 0x57, 0x80, 0x82, 0xf7, 0x6d, 0x7b, 0xd3, 0x3b, + 0xe8, 0xff, 0x3c, 0xaf, 0xbc, 0xd3, 0x36, 0x49, 0xa7, 0xdf, 0xa8, 0x36, 0xb1, 0x55, 0xdb, 0x35, + 0x6d, 0xb7, 0xd9, 0x31, 0x8d, 0xda, 0x09, 0x7b, 0x58, 0x77, 0x5b, 0xa7, 0x35, 0x72, 0xd1, 0x43, + 0x6e, 0x75, 0xcf, 0x26, 0x42, 0x59, 0xb8, 0x47, 0x8f, 0x1b, 0x73, 0x02, 0x77, 0xde, 0x1d, 0x28, + 0x04, 0xa7, 0x81, 0x79, 0x62, 0x92, 0x1d, 0x06, 0xba, 0xa8, 0x0b, 0xd3, 0xc1, 0xa2, 0x83, 0x71, + 0xba, 0x8e, 0xbb, 0x20, 0x1b, 0x72, 0x81, 0xfe, 0x2e, 0xdc, 0x0a, 0xa1, 0x71, 0x8e, 0x4b, 0x00, + 0x3e, 0x47, 0xcf, 0x30, 0x06, 0xea, 0x9f, 0xe1, 0xa3, 0x8b, 0x1e, 0xd2, 0x7f, 0xf6, 0x1b, 0xc9, + 0xbe, 0x69, 0x93, 0x71, 0x95, 0xb3, 0x0f, 0xd3, 0x36, 0x92, 0xd7, 0xbd, 0xa0, 0xfc, 0xf1, 0x6f, + 0x25, 0xe7, 0xbd, 0xb9, 0x09, 0x1d, 0xc5, 0x67, 0x25, 0x94, 0xdf, 0x27, 0x0a, 0x4d, 0x47, 0x4f, + 0x32, 0xb6, 0xfa, 0xfb, 0x01, 0xe4, 0x7b, 0x86, 0x63, 0x58, 0x2e, 0x23, 0x5c, 0x49, 0x20, 0xcc, + 0x00, 0x1f, 0x7a, 0x7a, 0x41, 0xdb, 0xf0, 0x17, 0xe9, 0x1b, 0x34, 0x37, 0x98, 0x02, 0xf7, 0xbb, + 0x50, 0x29, 0x95, 0x48, 0xa5, 0xfc, 0x02, 0x5e, 0x0b, 0x6f, 0x38, 0x22, 0x48, 0x69, 0x13, 0x43, + 0xff, 0x96, 0xc6, 0x72, 0xbb, 0xef, 0xd8, 0x37, 0x75, 0xcd, 0xa0, 0x73, 0xaa, 0x37, 0x1b, 0x02, + 0x7c, 0x70, 0x21, 0x64, 0xbf, 0x8a, 0x43, 0x40, 0x5a, 0x7a, 0xd7, 0x6d, 0x55, 0x2f, 0x30, 0xbf, + 0x88, 0x4d, 0x3f, 0xc1, 0x84, 0xaf, 0x68, 0xd2, 0x79, 0x82, 0x1b, 0x27, 0x9d, 0x90, 0x0f, 0x6a, + 0x62, 0x93, 0x67, 0xfb, 0xf3, 0xee, 0xf0, 0xbd, 0xd8, 0xe4, 0x53, 0xc3, 0x5f, 0xd7, 0x73, 0x43, + 0xe7, 0x0f, 0xb1, 0xa9, 0x47, 0x29, 0xfe, 0xc5, 0xca, 0x07, 0x6e, 0x99, 0x27, 0x17, 0xa3, 0x99, + 0xf1, 0xca, 0x95, 0x09, 0x17, 0x6f, 0x31, 0xfb, 0xd5, 0x68, 0xf6, 0x57, 0x60, 0x9a, 0xd1, 0xb3, + 0x5b, 0xe8, 0x9c, 0x15, 0x3d, 0x7f, 0xc5, 0x9e, 0xf7, 0x45, 0xbb, 0x0f, 0x93, 0xcd, 0x8e, 0x61, + 0xb7, 0x91, 0xcb, 0xe6, 0xbd, 0xc5, 0x84, 0xd0, 0x6f, 0x11, 0xe2, 0x98, 0x8d, 0x3e, 0x41, 0x2c, + 0xfe, 0xc1, 0x12, 0xfd, 0x96, 0x5f, 0x6a, 0xa8, 0x05, 0xdc, 0xae, 0x0b, 0xea, 0xf9, 0x8f, 0x1d, + 0xc3, 0x26, 0x0f, 0x91, 0x63, 0x99, 0xae, 0x6b, 0x62, 0x7b, 0x3c, 0xd5, 0xa6, 0x0c, 0xd0, 0xe3, + 0x5b, 0x06, 0xd6, 0x0c, 0xbe, 0x30, 0x87, 0x47, 0xa0, 0x39, 0xb1, 0x47, 0xb4, 0xca, 0xfb, 0xe3, + 0xc4, 0x8b, 0x32, 0x13, 0x99, 0xa8, 0x31, 0x26, 0x4b, 0xb0, 0x90, 0x80, 0xc5, 0xa9, 0x7c, 0x47, + 0x43, 0xbf, 0x45, 0x88, 0xd1, 0xec, 0xdc, 0x8c, 0x40, 0xb8, 0x7f, 0xaa, 0x42, 0xff, 0xd4, 0xca, + 0x5e, 0xd0, 0x8f, 0xb9, 0x34, 0x1b, 0x24, 0xc5, 0x51, 0xa8, 0xbf, 0xfa, 0x15, 0xc7, 0x27, 0x20, + 0x1c, 0xd7, 0x63, 0xca, 0xec, 0x23, 0xf4, 0x32, 0x98, 0x85, 0x90, 0x7d, 0x00, 0x01, 0xf9, 0x37, + 0xb1, 0xd6, 0xa5, 0x75, 0xce, 0x75, 0x4f, 0x6c, 0x98, 0x5e, 0x76, 0xa8, 0xe3, 0x72, 0x49, 0x8e, + 0x13, 0xeb, 0x5d, 0x82, 0x03, 0x1f, 0x8b, 0x66, 0xa4, 0xf5, 0xe4, 0xf8, 0xcc, 0x48, 0xa0, 0x19, + 0xf7, 0xf6, 0xe6, 0x2f, 0xb3, 0xa0, 0xee, 0xbb, 0x6d, 0xed, 0x10, 0xf2, 0xec, 0x6a, 0x99, 0x74, + 0xf2, 0xf9, 0xd5, 0xb4, 0xf4, 0xd6, 0x30, 0x29, 0xcf, 0x6b, 0xf5, 0x87, 0x8c, 0xa2, 0x99, 0x30, + 0x13, 0xb9, 0xb5, 0x4a, 0x16, 0x8b, 0x5a, 0xa5, 0xb5, 0x34, 0x5a, 0x22, 0xd4, 0x03, 0x98, 0x0c, + 0xee, 0x6f, 0x4b, 0x72, 0x82, 0x07, 0xbb, 0x47, 0xa5, 0x95, 0xa1, 0x62, 0x3e, 0x7a, 0xb4, 0xe1, + 0x8d, 0xe8, 0xc5, 0x70, 0x65, 0x34, 0x2d, 0x0f, 0x60, 0x3d, 0x95, 0x1a, 0x07, 0xb2, 0x60, 0x2e, + 0x7e, 0x9f, 0x7b, 0x3b, 0x79, 0x8f, 0x98, 0x62, 0xa9, 0x96, 0x52, 0x91, 0xc3, 0xb5, 0x60, 0x26, + 0x72, 0x63, 0x93, 0xc4, 0x44, 0xd4, 0x92, 0xc5, 0x24, 0xf9, 0x4e, 0xe6, 0xa1, 0x44, 0x2e, 0x64, + 0x12, 0x14, 0x51, 0x4b, 0x86, 0x22, 0xb9, 0x77, 0x1d, 0xc1, 0x64, 0x70, 0xa5, 0x92, 0x04, 0x9d, + 0x89, 0x65, 0x41, 0x8f, 0xdc, 0x45, 0xfc, 0x54, 0xaa, 0x43, 0x81, 0x5f, 0x37, 0xca, 0x43, 0xd6, + 0x79, 0xb1, 0xbe, 0x3b, 0x5c, 0xce, 0x99, 0x1e, 0x42, 0x9e, 0xdd, 0x0e, 0x24, 0x87, 0xcb, 0x97, + 0xca, 0x0e, 0x97, 0x38, 0xc3, 0xf3, 0x8c, 0x0f, 0x06, 0xf8, 0x25, 0xf9, 0xaa, 0x21, 0x19, 0x1f, + 0x1d, 0xb6, 0x0f, 0x21, 0xcf, 0xc6, 0x4a, 0x09, 0x47, 0x5f, 0x2a, 0xe3, 0x28, 0x4e, 0x7c, 0xb1, + 0x02, 0xc0, 0xb6, 0x1e, 0x51, 0x00, 0x18, 0xc4, 0x5a, 0x1a, 0xad, 0x98, 0x3b, 0x82, 0xd9, 0x6e, + 0x49, 0x4e, 0x70, 0x88, 0x3b, 0x22, 0x53, 0x59, 0xb8, 0x00, 0x04, 0x1b, 0xaf, 0x8c, 0xa6, 0x95, + 0xa2, 0x00, 0x44, 0x81, 0x3e, 0x83, 0x3c, 0x1b, 0xfd, 0x64, 0xb9, 0x41, 0xa5, 0xd2, 0xdc, 0x10, + 0x86, 0x2e, 0x8f, 0x76, 0x74, 0xe2, 0x92, 0xd0, 0x8e, 0xa8, 0xc9, 0x68, 0x4b, 0x86, 0x28, 0xed, + 0x11, 0xcc, 0xc6, 0x26, 0xa8, 0xbb, 0xc3, 0x8a, 0x44, 0x08, 0xaa, 0x9a, 0x4e, 0x2f, 0x9c, 0x9a, + 0x6c, 0x0a, 0x90, 0xb8, 0xc8, 0x97, 0xca, 0x5c, 0x24, 0x36, 0x67, 0x3f, 0x5f, 0x0e, 0x21, 0xcf, + 0x3a, 0xb2, 0x64, 0x4b, 0x5f, 0x2a, 0xdb, 0x52, 0x6c, 0xa4, 0xb1, 0x6c, 0x67, 0x6c, 0x47, 0x64, + 0x3b, 0x63, 0xbd, 0x96, 0x46, 0x4b, 0x0a, 0xc5, 0xac, 0x18, 0x01, 0xc5, 0xac, 0x59, 0x4b, 0xa3, + 0x25, 0x40, 0x6d, 0x7f, 0xfa, 0xfb, 0x65, 0x79, 0xe2, 0xe9, 0x65, 0x59, 0x79, 0x76, 0x59, 0x56, + 0xfe, 0xbb, 0x2c, 0x2b, 0x4f, 0xae, 0xca, 0x13, 0xcf, 0xae, 0xca, 0x13, 0x7f, 0x5f, 0x95, 0x27, + 0xbe, 0x5c, 0x1f, 0xf9, 0x2f, 0xe8, 0x3c, 0xf4, 0xe3, 0xbd, 0x91, 0xa7, 0x7f, 0xde, 0xef, 0xfd, + 0x1f, 0x00, 0x00, 0xff, 0xff, 0x50, 0xa5, 0x9b, 0x1f, 0xe4, 0x17, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2891,6 +2933,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { return &msgClient{cc} } +// Deprecated: Do not use. func (c *msgClient) SendFT(ctx context.Context, in *MsgSendFT, opts ...grpc.CallOption) (*MsgSendFTResponse, error) { out := new(MsgSendFTResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Msg/SendFT", in, out, opts...) @@ -2900,6 +2943,7 @@ func (c *msgClient) SendFT(ctx context.Context, in *MsgSendFT, opts ...grpc.Call return out, nil } +// Deprecated: Do not use. func (c *msgClient) OperatorSendFT(ctx context.Context, in *MsgOperatorSendFT, opts ...grpc.CallOption) (*MsgOperatorSendFTResponse, error) { out := new(MsgOperatorSendFTResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Msg/OperatorSendFT", in, out, opts...) @@ -2954,6 +2998,7 @@ func (c *msgClient) CreateContract(ctx context.Context, in *MsgCreateContract, o return out, nil } +// Deprecated: Do not use. func (c *msgClient) IssueFT(ctx context.Context, in *MsgIssueFT, opts ...grpc.CallOption) (*MsgIssueFTResponse, error) { out := new(MsgIssueFTResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Msg/IssueFT", in, out, opts...) @@ -2972,6 +3017,7 @@ func (c *msgClient) IssueNFT(ctx context.Context, in *MsgIssueNFT, opts ...grpc. return out, nil } +// Deprecated: Do not use. func (c *msgClient) MintFT(ctx context.Context, in *MsgMintFT, opts ...grpc.CallOption) (*MsgMintFTResponse, error) { out := new(MsgMintFTResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Msg/MintFT", in, out, opts...) @@ -2990,6 +3036,7 @@ func (c *msgClient) MintNFT(ctx context.Context, in *MsgMintNFT, opts ...grpc.Ca return out, nil } +// Deprecated: Do not use. func (c *msgClient) BurnFT(ctx context.Context, in *MsgBurnFT, opts ...grpc.CallOption) (*MsgBurnFTResponse, error) { out := new(MsgBurnFTResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Msg/BurnFT", in, out, opts...) @@ -2999,6 +3046,7 @@ func (c *msgClient) BurnFT(ctx context.Context, in *MsgBurnFT, opts ...grpc.Call return out, nil } +// Deprecated: Do not use. func (c *msgClient) OperatorBurnFT(ctx context.Context, in *MsgOperatorBurnFT, opts ...grpc.CallOption) (*MsgOperatorBurnFTResponse, error) { out := new(MsgOperatorBurnFTResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Msg/OperatorBurnFT", in, out, opts...) @@ -3053,6 +3101,7 @@ func (c *msgClient) RevokePermission(ctx context.Context, in *MsgRevokePermissio return out, nil } +// Deprecated: Do not use. func (c *msgClient) Attach(ctx context.Context, in *MsgAttach, opts ...grpc.CallOption) (*MsgAttachResponse, error) { out := new(MsgAttachResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Msg/Attach", in, out, opts...) @@ -3062,6 +3111,7 @@ func (c *msgClient) Attach(ctx context.Context, in *MsgAttach, opts ...grpc.Call return out, nil } +// Deprecated: Do not use. func (c *msgClient) Detach(ctx context.Context, in *MsgDetach, opts ...grpc.CallOption) (*MsgDetachResponse, error) { out := new(MsgDetachResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Msg/Detach", in, out, opts...) @@ -3071,6 +3121,7 @@ func (c *msgClient) Detach(ctx context.Context, in *MsgDetach, opts ...grpc.Call return out, nil } +// Deprecated: Do not use. func (c *msgClient) OperatorAttach(ctx context.Context, in *MsgOperatorAttach, opts ...grpc.CallOption) (*MsgOperatorAttachResponse, error) { out := new(MsgOperatorAttachResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Msg/OperatorAttach", in, out, opts...) @@ -3080,6 +3131,7 @@ func (c *msgClient) OperatorAttach(ctx context.Context, in *MsgOperatorAttach, o return out, nil } +// Deprecated: Do not use. func (c *msgClient) OperatorDetach(ctx context.Context, in *MsgOperatorDetach, opts ...grpc.CallOption) (*MsgOperatorDetachResponse, error) { out := new(MsgOperatorDetachResponse) err := c.cc.Invoke(ctx, "/lbm.collection.v1.Msg/OperatorDetach", in, out, opts...) diff --git a/x/stakingplus/testutil/expected_keepers_mocks.go b/x/stakingplus/testutil/expected_keepers_mocks.go index 8b3d0cf70e..284e8585ba 100644 --- a/x/stakingplus/testutil/expected_keepers_mocks.go +++ b/x/stakingplus/testutil/expected_keepers_mocks.go @@ -7,8 +7,8 @@ package testutil import ( reflect "reflect" - gomock "github.com/golang/mock/gomock" types "github.com/Finschia/finschia-sdk/types" + gomock "github.com/golang/mock/gomock" ) // MockFoundationKeeper is a mock of FoundationKeeper interface. diff --git a/x/token/event.pb.go b/x/token/event.pb.go index 69c8847aab..e7d20d58f6 100644 --- a/x/token/event.pb.go +++ b/x/token/event.pb.go @@ -25,8 +25,7 @@ var _ = math.Inf const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // AttributeKey enumerates the valid attribute keys on x/token. -type AttributeKey int32 - +type AttributeKey int32 // Deprecated: Do not use. const ( AttributeKeyUnspecified AttributeKey = 0 AttributeKeyName AttributeKey = 1 @@ -59,6 +58,8 @@ func (AttributeKey) EnumDescriptor() ([]byte, []int) { // EventSent is emitted when tokens are transferred. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventSent struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -136,6 +137,8 @@ func (m *EventSent) GetTo() string { // EventAuthorizedOperator is emitted when a holder authorizes an operator to manipulate its tokens. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventAuthorizedOperator struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -202,6 +205,8 @@ func (m *EventAuthorizedOperator) GetOperator() string { // EventRevokedOperator is emitted when an authorization is revoked. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventRevokedOperator struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -268,6 +273,8 @@ func (m *EventRevokedOperator) GetOperator() string { // EventIssued is emitted when a new contract is created. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventIssued struct { // address which created the contract. Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` @@ -381,6 +388,8 @@ func (m *EventIssued) GetMintable() bool { // Info: `granter` would be empty if the permission is granted by an issuance. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventGranted struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -457,6 +466,8 @@ func (m *EventGranted) GetPermission() Permission { // EventRenounced is emitted when a grantee renounces its permission. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventRenounced struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -523,6 +534,8 @@ func (m *EventRenounced) GetPermission() Permission { // EventMinted is emitted when tokens are minted. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventMinted struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -591,6 +604,8 @@ func (m *EventMinted) GetTo() string { // EventBurned is emitted when tokens are burnt. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventBurned struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -659,6 +674,8 @@ func (m *EventBurned) GetFrom() string { // EventModified is emitted when the information of a contract is modified. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type EventModified struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -740,54 +757,55 @@ func init() { func init() { proto.RegisterFile("lbm/token/v1/event.proto", fileDescriptor_d7505f4c4cdec18e) } var fileDescriptor_d7505f4c4cdec18e = []byte{ - // 743 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x55, 0xcd, 0x6e, 0xd3, 0x4c, - 0x14, 0x8d, 0x63, 0x37, 0x71, 0xa7, 0xfd, 0x52, 0x7f, 0x26, 0x50, 0x63, 0x24, 0xd7, 0xf2, 0x2a, - 0xaa, 0x20, 0x51, 0xdb, 0x05, 0x88, 0x5d, 0x02, 0x69, 0x65, 0xaa, 0x94, 0xca, 0x4d, 0x16, 0xb0, - 0x89, 0xfc, 0x33, 0x4d, 0xac, 0xc4, 0x33, 0x91, 0x3d, 0x8e, 0x28, 0xfb, 0x4a, 0x28, 0x2b, 0x5e, - 0x20, 0xab, 0x22, 0x84, 0x78, 0x02, 0x1e, 0xa1, 0xcb, 0x8a, 0x15, 0x62, 0x51, 0xa1, 0xf6, 0x45, - 0x90, 0xc7, 0x71, 0x88, 0xdb, 0x8a, 0x52, 0x15, 0x76, 0xf7, 0xce, 0x39, 0xd7, 0xf7, 0x9c, 0xb9, - 0xba, 0x1e, 0x20, 0xf5, 0x2d, 0xaf, 0x42, 0x70, 0x0f, 0xa2, 0xca, 0x70, 0xad, 0x02, 0x87, 0x10, - 0x91, 0xf2, 0xc0, 0xc7, 0x04, 0x8b, 0x8b, 0x7d, 0xcb, 0x2b, 0x53, 0xa4, 0x3c, 0x5c, 0x93, 0x8b, - 0x1d, 0xdc, 0xc1, 0x14, 0xa8, 0x44, 0x51, 0xcc, 0x91, 0xd3, 0xd5, 0x31, 0x99, 0x22, 0xda, 0x17, - 0x06, 0xcc, 0xd7, 0xa3, 0xaf, 0xed, 0x41, 0x44, 0xc4, 0x15, 0xb0, 0x60, 0x63, 0x44, 0x7c, 0xd3, - 0x26, 0x6d, 0xd7, 0x91, 0x18, 0x95, 0x29, 0xcd, 0x1b, 0x20, 0x39, 0xd2, 0x1d, 0x51, 0x06, 0x3c, - 0x1e, 0x40, 0xdf, 0x24, 0xd8, 0x97, 0xb2, 0x14, 0x9d, 0xe6, 0xa2, 0x08, 0xb8, 0x7d, 0x1f, 0x7b, - 0x12, 0x4b, 0xcf, 0x69, 0x2c, 0x16, 0x40, 0x96, 0x60, 0x89, 0xa3, 0x27, 0x59, 0x82, 0xc5, 0x17, - 0x20, 0x67, 0x7a, 0x38, 0x44, 0x44, 0x9a, 0x8b, 0xce, 0x6a, 0xeb, 0xc7, 0xa7, 0x2b, 0x99, 0xef, - 0xa7, 0x2b, 0xab, 0x1d, 0x97, 0x74, 0x43, 0xab, 0x6c, 0x63, 0xaf, 0xb2, 0xe9, 0xa2, 0xc0, 0xee, - 0xba, 0x66, 0x65, 0x7f, 0x12, 0x3c, 0x0a, 0x9c, 0x5e, 0x85, 0x1c, 0x0c, 0x60, 0x50, 0xd6, 0x11, - 0x31, 0x26, 0x5f, 0xd0, 0x10, 0x58, 0xa6, 0xca, 0xab, 0x21, 0xe9, 0x62, 0xdf, 0x7d, 0x0b, 0x9d, - 0x97, 0x89, 0x94, 0x6b, 0x7d, 0xdc, 0x03, 0xb9, 0x2e, 0xee, 0x3b, 0x30, 0x71, 0x31, 0xc9, 0x52, - 0xfe, 0xd8, 0xb4, 0x3f, 0xad, 0x07, 0x8a, 0xb4, 0x9f, 0x01, 0x87, 0xb8, 0xf7, 0xaf, 0x9b, 0x7d, - 0x65, 0xc0, 0x02, 0xed, 0xa6, 0x07, 0x41, 0x08, 0x1d, 0x51, 0x02, 0x79, 0xdb, 0x87, 0x94, 0x1a, - 0x37, 0x48, 0xd2, 0x8b, 0xed, 0xb3, 0x97, 0xda, 0x8b, 0x80, 0x43, 0xa6, 0x07, 0x93, 0xb9, 0x44, - 0x71, 0x24, 0x29, 0x38, 0xf0, 0x2c, 0xdc, 0x9f, 0xcc, 0x66, 0x92, 0x89, 0x02, 0x60, 0x43, 0xdf, - 0x8d, 0x87, 0x63, 0x44, 0x61, 0x54, 0xed, 0x41, 0x62, 0x4a, 0xb9, 0xb8, 0x3a, 0x8a, 0x23, 0xe1, - 0x0e, 0xb4, 0x5d, 0xcf, 0xec, 0x07, 0x52, 0x5e, 0x65, 0x4a, 0x73, 0xc6, 0x34, 0x8f, 0x30, 0xcf, - 0x45, 0xc4, 0xb4, 0xfa, 0x50, 0xe2, 0x55, 0xa6, 0xc4, 0x1b, 0xd3, 0x5c, 0x1b, 0x33, 0x60, 0x91, - 0x9a, 0xda, 0xf2, 0x4d, 0x44, 0xa0, 0x73, 0xfd, 0xd5, 0x49, 0x20, 0xdf, 0xa1, 0xdc, 0xe4, 0xee, - 0x92, 0xf4, 0x17, 0x92, 0x18, 0x4b, 0x52, 0xf1, 0x09, 0x00, 0x03, 0xe8, 0x7b, 0x6e, 0x10, 0xb8, - 0x18, 0x51, 0x7f, 0x85, 0x75, 0xa9, 0x3c, 0xbb, 0x25, 0xe5, 0xdd, 0x29, 0x6e, 0xcc, 0x70, 0xb5, - 0x43, 0x06, 0x14, 0x26, 0x23, 0x46, 0x38, 0x44, 0xf6, 0x8d, 0x14, 0xc2, 0xb4, 0xc2, 0x8b, 0x3a, - 0xd8, 0x1b, 0xe8, 0xf8, 0x98, 0x0c, 0xbf, 0xe1, 0xfe, 0xd9, 0x35, 0xfd, 0x6e, 0x2d, 0xe3, 0x15, - 0x64, 0xaf, 0x58, 0x41, 0xee, 0xd6, 0x2b, 0xf8, 0x39, 0x11, 0x5a, 0x0b, 0x7d, 0x74, 0x5b, 0xa1, - 0x57, 0xfd, 0x3f, 0xfe, 0xa6, 0xd8, 0x43, 0x06, 0xfc, 0x17, 0xdf, 0x2a, 0x76, 0xdc, 0x7d, 0xf7, - 0xb6, 0x72, 0x1f, 0x83, 0xbc, 0xdd, 0x35, 0x51, 0x07, 0x06, 0x12, 0xab, 0xb2, 0xa5, 0x85, 0xf5, - 0xe5, 0xf4, 0x6c, 0xab, 0x84, 0xf8, 0xae, 0x15, 0x12, 0x58, 0xe3, 0x22, 0xd1, 0x46, 0xc2, 0x5e, - 0x3d, 0xca, 0x82, 0xc5, 0x29, 0xb8, 0x0d, 0x0f, 0xc4, 0xa7, 0xe0, 0x7e, 0xb5, 0xd9, 0x34, 0xf4, - 0x5a, 0xab, 0x59, 0x6f, 0x6f, 0xd7, 0x5f, 0xb5, 0x5b, 0x3b, 0x7b, 0xbb, 0xf5, 0x67, 0xfa, 0xa6, - 0x5e, 0x7f, 0x2e, 0x64, 0xe4, 0x07, 0xa3, 0xb1, 0xba, 0x3c, 0x5b, 0xd0, 0x42, 0xc1, 0x00, 0xda, - 0xb1, 0x85, 0x87, 0x40, 0x4c, 0xd7, 0xee, 0x54, 0x1b, 0x75, 0x81, 0x91, 0x8b, 0xa3, 0xb1, 0x2a, - 0xcc, 0x16, 0xed, 0x44, 0x6b, 0x7f, 0x89, 0xdd, 0xa8, 0x37, 0xab, 0x02, 0x7b, 0x99, 0xdd, 0x88, - 0xd6, 0x7c, 0x03, 0xdc, 0x4d, 0xb3, 0xf5, 0xc6, 0x56, 0xbb, 0x65, 0xe8, 0x02, 0x2f, 0x4b, 0xa3, - 0xb1, 0x5a, 0x9c, 0x2d, 0xd0, 0x3d, 0xb3, 0x03, 0x5b, 0x86, 0x2e, 0xae, 0x82, 0xff, 0x2f, 0x98, - 0x31, 0x74, 0x61, 0x49, 0xbe, 0x33, 0x1a, 0xab, 0x4b, 0x29, 0x13, 0x86, 0x2e, 0xf3, 0xef, 0x8e, - 0x94, 0xcc, 0xa7, 0x0f, 0x4a, 0x46, 0xe3, 0xf8, 0xac, 0x90, 0xd5, 0x38, 0x9e, 0x13, 0xf2, 0x1a, - 0xc7, 0xcf, 0x0b, 0x85, 0x5a, 0xed, 0xf8, 0x4c, 0x61, 0x4e, 0xce, 0x14, 0xe6, 0xc7, 0x99, 0xc2, - 0xbc, 0x3f, 0x57, 0x32, 0x27, 0xe7, 0x4a, 0xe6, 0xdb, 0xb9, 0x92, 0x79, 0x5d, 0xba, 0x76, 0xf6, - 0x6f, 0xe2, 0x27, 0xce, 0xca, 0xd1, 0x37, 0x6e, 0xe3, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0x64, - 0x9d, 0xef, 0xa0, 0x3d, 0x07, 0x00, 0x00, + // 757 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x55, 0xcd, 0x6e, 0xd3, 0x4a, + 0x14, 0x8e, 0x7f, 0x9a, 0xa4, 0xd3, 0xde, 0xd4, 0xd7, 0x37, 0x97, 0x0e, 0x46, 0x72, 0xad, 0xac, + 0xa2, 0x0a, 0x12, 0xb5, 0x5d, 0x80, 0xba, 0x4b, 0x20, 0xad, 0x4c, 0x95, 0x52, 0xb9, 0xc9, 0x02, + 0x36, 0x91, 0x63, 0x4f, 0x13, 0xab, 0xf1, 0x4c, 0x64, 0x8f, 0x23, 0xca, 0x13, 0xd0, 0xac, 0x78, + 0x81, 0x2c, 0x10, 0x20, 0x21, 0x16, 0x3c, 0x01, 0x0f, 0xd0, 0x65, 0x57, 0x08, 0xb1, 0xa8, 0x50, + 0xfb, 0x22, 0xc8, 0xe3, 0x38, 0xc4, 0x6d, 0x45, 0xa9, 0x5a, 0xb1, 0x3b, 0xdf, 0x9c, 0xef, 0xf8, + 0x7c, 0xdf, 0x1c, 0x1f, 0x1b, 0xc0, 0x5e, 0xdb, 0x2d, 0x53, 0xb2, 0x8f, 0x70, 0x79, 0xb0, 0x52, + 0x46, 0x03, 0x84, 0x69, 0xa9, 0xef, 0x11, 0x4a, 0xe4, 0xf9, 0x5e, 0xdb, 0x2d, 0xb1, 0x4c, 0x69, + 0xb0, 0xa2, 0xe4, 0x3b, 0xa4, 0x43, 0x58, 0xa2, 0x1c, 0x46, 0x11, 0x47, 0x49, 0x56, 0x47, 0x64, + 0x96, 0x29, 0x7c, 0xe1, 0xc0, 0x6c, 0x2d, 0x7c, 0xda, 0x2e, 0xc2, 0x54, 0x5e, 0x02, 0x73, 0x16, + 0xc1, 0xd4, 0x33, 0x2d, 0xda, 0x72, 0x6c, 0xc8, 0x69, 0x5c, 0x71, 0xd6, 0x00, 0xf1, 0x91, 0x6e, + 0xcb, 0x0a, 0xc8, 0x92, 0x3e, 0xf2, 0x4c, 0x4a, 0x3c, 0xc8, 0xb3, 0xec, 0x04, 0xcb, 0x32, 0x10, + 0xf7, 0x3c, 0xe2, 0x42, 0x81, 0x9d, 0xb3, 0x58, 0xce, 0x01, 0x9e, 0x12, 0x28, 0xb2, 0x13, 0x9e, + 0x12, 0xf9, 0x29, 0x48, 0x9b, 0x2e, 0x09, 0x30, 0x85, 0x33, 0xe1, 0x59, 0x75, 0xf5, 0xe8, 0x64, + 0x29, 0xf5, 0xfd, 0x64, 0x69, 0xb9, 0xe3, 0xd0, 0x6e, 0xd0, 0x2e, 0x59, 0xc4, 0x2d, 0x6f, 0x38, + 0xd8, 0xb7, 0xba, 0x8e, 0x59, 0xde, 0x1b, 0x07, 0x0f, 0x7c, 0x7b, 0xbf, 0x4c, 0x0f, 0xfa, 0xc8, + 0x2f, 0xe9, 0x98, 0x1a, 0xe3, 0x27, 0xac, 0xf3, 0x90, 0x2b, 0x78, 0x60, 0x91, 0xa9, 0xaf, 0x04, + 0xb4, 0x4b, 0x3c, 0xe7, 0x15, 0xb2, 0x9f, 0xc5, 0x72, 0xae, 0xf4, 0x72, 0x07, 0xa4, 0xbb, 0xa4, + 0x67, 0xa3, 0xd8, 0xc9, 0x18, 0x25, 0x3c, 0x0a, 0x49, 0x8f, 0xac, 0x27, 0x01, 0x79, 0xd6, 0xd3, + 0x40, 0x03, 0xb2, 0xff, 0x37, 0x1a, 0x7e, 0xe5, 0xc0, 0x1c, 0xeb, 0xa8, 0xfb, 0x7e, 0x80, 0x6c, + 0x19, 0x82, 0x8c, 0xe5, 0x21, 0x46, 0x8f, 0x9a, 0xc4, 0xf0, 0xbc, 0x04, 0xfe, 0x82, 0x04, 0x19, + 0x88, 0xd8, 0x74, 0x51, 0x3c, 0xa3, 0x30, 0x0e, 0x65, 0xf9, 0x07, 0x6e, 0x9b, 0xf4, 0xc6, 0x73, + 0x1a, 0x23, 0x59, 0x02, 0x42, 0xe0, 0x39, 0xd1, 0xa0, 0x8c, 0x30, 0x0c, 0xab, 0x5d, 0x44, 0x4d, + 0x98, 0x8e, 0xaa, 0xc3, 0x38, 0x14, 0x6f, 0x23, 0xcb, 0x71, 0xcd, 0x9e, 0x0f, 0x33, 0x1a, 0x57, + 0x9c, 0x31, 0x26, 0x38, 0xcc, 0xb9, 0x0e, 0xa6, 0x66, 0xbb, 0x87, 0x60, 0x56, 0xe3, 0x8a, 0x59, + 0x63, 0x82, 0x99, 0xb1, 0xb7, 0x1c, 0x98, 0x67, 0xc6, 0x36, 0x3d, 0x13, 0x53, 0x64, 0x5f, 0x7d, + 0x85, 0x10, 0x64, 0x3a, 0x8c, 0x1b, 0xdf, 0x61, 0x0c, 0x7f, 0x65, 0x62, 0x73, 0x31, 0x94, 0x1f, + 0x01, 0xd0, 0x47, 0x9e, 0xeb, 0xf8, 0xbe, 0x43, 0x30, 0xf3, 0x98, 0x5b, 0x85, 0xa5, 0xe9, 0xad, + 0x29, 0xed, 0x4c, 0xf2, 0xc6, 0x14, 0x97, 0x69, 0x3c, 0xe4, 0x40, 0x6e, 0x3c, 0x6e, 0x4c, 0x02, + 0x6c, 0x5d, 0x4b, 0x25, 0x4a, 0xaa, 0x3c, 0xaf, 0x45, 0xb8, 0xa6, 0x96, 0x4f, 0xf1, 0x8b, 0x50, + 0x77, 0xfe, 0xec, 0xba, 0x7e, 0xb7, 0xae, 0xd1, 0x6a, 0x0a, 0x97, 0xac, 0xa6, 0x78, 0x2b, 0xab, + 0xf9, 0x39, 0x16, 0x5b, 0x0d, 0x3c, 0x7c, 0x53, 0xb1, 0x97, 0x7d, 0x5b, 0x6e, 0x5b, 0xf0, 0x21, + 0x07, 0xfe, 0x89, 0x6e, 0x97, 0xd8, 0xce, 0x9e, 0x73, 0x53, 0xc9, 0x0f, 0x41, 0xc6, 0xea, 0x9a, + 0xb8, 0x83, 0x7c, 0x28, 0x68, 0x42, 0x71, 0x6e, 0x75, 0x31, 0x39, 0xe7, 0x0a, 0xa5, 0x9e, 0xd3, + 0x0e, 0x28, 0xaa, 0x8a, 0xa1, 0x70, 0x23, 0x66, 0x87, 0x5a, 0x96, 0x3f, 0xf0, 0x60, 0x7e, 0x42, + 0xd8, 0x42, 0x07, 0xf2, 0x3a, 0xb8, 0x5b, 0x69, 0x34, 0x0c, 0xbd, 0xda, 0x6c, 0xd4, 0x5a, 0x5b, + 0xb5, 0xe7, 0xad, 0xe6, 0xf6, 0xee, 0x4e, 0xed, 0xb1, 0xbe, 0xa1, 0xd7, 0x9e, 0x48, 0x29, 0xe5, + 0xde, 0x70, 0xa4, 0x2d, 0x4e, 0x17, 0x34, 0xb1, 0xdf, 0x47, 0x56, 0x64, 0xe3, 0x3e, 0x90, 0x93, + 0xb5, 0xdb, 0x95, 0x7a, 0x4d, 0xe2, 0x94, 0xfc, 0x70, 0xa4, 0x49, 0xd3, 0x45, 0xdb, 0xe1, 0xe7, + 0xe0, 0x02, 0xbb, 0x5e, 0x6b, 0x54, 0x24, 0xe1, 0x22, 0xbb, 0x1e, 0xae, 0xff, 0x1a, 0xf8, 0x3f, + 0xc9, 0xd6, 0xeb, 0x9b, 0xad, 0xa6, 0xa1, 0x4b, 0x59, 0x05, 0x0e, 0x47, 0x5a, 0x7e, 0xba, 0x40, + 0x77, 0xcd, 0x0e, 0x6a, 0x1a, 0xba, 0xbc, 0x0c, 0xfe, 0x3d, 0x67, 0xc6, 0xd0, 0xa5, 0x05, 0xe5, + 0xbf, 0xe1, 0x48, 0x5b, 0x48, 0x98, 0x30, 0x74, 0x05, 0xbc, 0x7e, 0xa7, 0xa6, 0x3e, 0xbe, 0x57, + 0x53, 0x90, 0x2b, 0x88, 0x59, 0x5e, 0xe2, 0x0b, 0x62, 0x56, 0x94, 0x32, 0x05, 0x31, 0x3b, 0x2b, + 0xe5, 0xaa, 0xd5, 0xa3, 0x53, 0x95, 0x3b, 0x3e, 0x55, 0xb9, 0x1f, 0xa7, 0x2a, 0xf7, 0xe6, 0x4c, + 0x4d, 0x1d, 0x9f, 0xa9, 0xa9, 0x6f, 0x67, 0x6a, 0xea, 0x45, 0xf1, 0xca, 0xb7, 0xe0, 0x65, 0xf4, + 0x23, 0x6c, 0xa7, 0xd9, 0x9f, 0x70, 0xed, 0x67, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3f, 0xb9, 0xa7, + 0x0f, 0x63, 0x07, 0x00, 0x00, } func (m *EventSent) Marshal() (dAtA []byte, err error) { diff --git a/x/token/genesis.pb.go b/x/token/genesis.pb.go index 263175d0c3..98ce902b22 100644 --- a/x/token/genesis.pb.go +++ b/x/token/genesis.pb.go @@ -25,6 +25,8 @@ var _ = math.Inf const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // GenesisState defines the token module's genesis state. +// +// Deprecated: Do not use. type GenesisState struct { // params defines all the paramaters of the module. Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"` @@ -143,6 +145,8 @@ func (m *GenesisState) GetBurns() []ContractCoin { } // ClassGenesisState defines the classs keeper's genesis state. +// +// Deprecated: Do not use. type ClassGenesisState struct { // nonce is the next class nonce to issue. Nonce github_com_Finschia_finschia_sdk_types.Uint `protobuf:"bytes,1,opt,name=nonce,proto3,customtype=github.com/Finschia/finschia-sdk/types.Uint" json:"nonce"` @@ -192,6 +196,8 @@ func (m *ClassGenesisState) GetIds() []string { // ContractBalances defines balances belong to a contract. // genesis state. +// +// Deprecated: Do not use. type ContractBalances struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -247,6 +253,8 @@ func (m *ContractBalances) GetBalances() []Balance { } // Balance defines a balance of an address. +// +// Deprecated: Do not use. type Balance struct { // address of the holder. Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` @@ -295,6 +303,8 @@ func (m *Balance) GetAddress() string { } // ContractAuthorizations defines authorizations belong to a contract. +// +// Deprecated: Do not use. type ContractAuthorizations struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -350,6 +360,8 @@ func (m *ContractAuthorizations) GetAuthorizations() []Authorization { } // ContractGrant defines grants belong to a contract. +// +// Deprecated: Do not use. type ContractGrants struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -404,6 +416,7 @@ func (m *ContractGrants) GetGrants() []Grant { return nil } +// Deprecated: Do not use. type ContractCoin struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -464,44 +477,44 @@ func init() { func init() { proto.RegisterFile("lbm/token/v1/genesis.proto", fileDescriptor_4528f1ba25ef9938) } var fileDescriptor_4528f1ba25ef9938 = []byte{ - // 579 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0xcd, 0x6e, 0xd3, 0x40, - 0x14, 0x85, 0xe3, 0x26, 0x4d, 0x9a, 0x9b, 0xaa, 0x2a, 0x43, 0xa9, 0xac, 0x80, 0x9c, 0xca, 0x62, - 0x11, 0x81, 0xb0, 0x95, 0x54, 0x2a, 0x52, 0xc5, 0xa2, 0xb8, 0x12, 0x55, 0x58, 0x21, 0x23, 0x36, - 0x6c, 0xaa, 0xf1, 0x0f, 0xc9, 0xa8, 0xf6, 0x8c, 0xe5, 0x19, 0x57, 0xfc, 0x6c, 0x79, 0x00, 0x1e, - 0x81, 0x07, 0xe1, 0x01, 0xba, 0xec, 0x12, 0xb1, 0xa8, 0x50, 0xb2, 0xe1, 0x31, 0x90, 0x67, 0xec, - 0x2a, 0x4e, 0x83, 0x92, 0x05, 0xbb, 0x89, 0xef, 0x39, 0xdf, 0xcd, 0xb1, 0x8f, 0x0d, 0xdd, 0xc8, - 0x8b, 0x6d, 0xc1, 0x2e, 0x42, 0x6a, 0x5f, 0x0e, 0xec, 0x71, 0x48, 0x43, 0x4e, 0xb8, 0x95, 0xa4, - 0x4c, 0x30, 0xb4, 0x1d, 0x79, 0xb1, 0x25, 0x67, 0xd6, 0xe5, 0xa0, 0xbb, 0x37, 0x66, 0x63, 0x26, - 0x07, 0x76, 0x7e, 0x52, 0x9a, 0xae, 0x5e, 0xf1, 0x2b, 0xb1, 0x9c, 0x98, 0x3f, 0x1a, 0xb0, 0x7d, - 0xa6, 0x78, 0x6f, 0x05, 0x16, 0x21, 0x1a, 0x42, 0x33, 0xc1, 0x29, 0x8e, 0xb9, 0xae, 0x1d, 0x68, - 0xfd, 0xce, 0x70, 0xcf, 0x9a, 0xe7, 0x5b, 0x6f, 0xe4, 0xcc, 0x69, 0x5c, 0xdd, 0xf4, 0x6a, 0x6e, - 0xa1, 0x44, 0x27, 0xd0, 0xf1, 0x23, 0xcc, 0xf9, 0x39, 0xcf, 0x11, 0xfa, 0x86, 0x34, 0xf6, 0xaa, - 0xc6, 0xd3, 0x5c, 0x30, 0xbf, 0xc9, 0x05, 0xe9, 0x51, 0x5b, 0x4f, 0x60, 0xcb, 0xc3, 0x11, 0xa6, - 0x7e, 0xc8, 0xf5, 0xfa, 0x41, 0xbd, 0xdf, 0x19, 0x1a, 0x0b, 0x76, 0x46, 0x45, 0x8a, 0x7d, 0xe1, - 0x14, 0xaa, 0xe2, 0x1f, 0xdc, 0xba, 0xd0, 0x11, 0xb4, 0x24, 0x2f, 0xe4, 0x7a, 0x43, 0x02, 0xf6, - 0xff, 0x01, 0x50, 0xc6, 0x52, 0x8c, 0x8e, 0xa1, 0x39, 0x4e, 0x31, 0x15, 0x5c, 0xdf, 0x94, 0xb6, - 0x47, 0xcb, 0x6d, 0x67, 0x52, 0x53, 0xe6, 0x56, 0x0e, 0xe4, 0xc2, 0x0e, 0xce, 0xc4, 0x84, 0xa5, - 0xe4, 0x33, 0x16, 0x84, 0x51, 0xae, 0x37, 0x25, 0xe3, 0xf1, 0x72, 0xc6, 0xcb, 0x8a, 0xb6, 0x60, - 0x2d, 0x10, 0xd0, 0x0b, 0xd8, 0xe2, 0x59, 0x92, 0x44, 0x24, 0xe4, 0x7a, 0x4b, 0xd2, 0xba, 0xcb, - 0x69, 0xa7, 0x8c, 0xd0, 0xf2, 0x2e, 0x94, 0x0e, 0x74, 0x04, 0x9b, 0x31, 0xc9, 0xc3, 0x6c, 0xad, - 0x69, 0x55, 0xf2, 0xdc, 0xe7, 0x65, 0x29, 0xe5, 0x7a, 0x7b, 0x5d, 0x9f, 0x94, 0x9b, 0x09, 0xdc, - 0xbb, 0xf3, 0x60, 0xd1, 0x08, 0x36, 0x29, 0xa3, 0x7e, 0x28, 0x1b, 0xd4, 0x76, 0x0e, 0x73, 0xc3, - 0xaf, 0x9b, 0xde, 0xd3, 0x31, 0x11, 0x93, 0xcc, 0xb3, 0x7c, 0x16, 0xdb, 0xaf, 0x08, 0xe5, 0xfe, - 0x84, 0x60, 0xfb, 0x43, 0x71, 0x78, 0xc6, 0x83, 0x0b, 0x5b, 0x7c, 0x4a, 0x42, 0x6e, 0xbd, 0x23, - 0x54, 0xb8, 0x8a, 0x80, 0x76, 0xa1, 0x4e, 0x02, 0xae, 0x6f, 0x1c, 0xd4, 0xfb, 0x6d, 0x37, 0x3f, - 0x9a, 0x11, 0xec, 0x2e, 0x76, 0x01, 0xf5, 0xa0, 0xe3, 0x17, 0xd7, 0xce, 0x49, 0xa0, 0xd6, 0xba, - 0x50, 0x5e, 0x1a, 0x05, 0xe8, 0xf9, 0x5c, 0xbd, 0x36, 0x64, 0xc2, 0x07, 0xd5, 0x84, 0x05, 0x6a, - 0xb1, 0x55, 0x66, 0x06, 0xad, 0x62, 0x84, 0x74, 0x68, 0xe1, 0x20, 0x48, 0x43, 0xce, 0x8b, 0x05, - 0xe5, 0x4f, 0xf4, 0x1a, 0x9a, 0x38, 0x66, 0x19, 0x15, 0xb2, 0xf9, 0x6d, 0x67, 0x58, 0x04, 0x7e, - 0xb2, 0x66, 0xe0, 0x11, 0x15, 0x6e, 0x41, 0x38, 0x6e, 0xfc, 0xf9, 0xde, 0xd3, 0xcc, 0xaf, 0x1a, - 0xec, 0x2f, 0x6f, 0xcd, 0xea, 0xac, 0xa3, 0x3b, 0xa5, 0x54, 0x89, 0x1f, 0x56, 0x13, 0x57, 0xb0, - 0xcb, 0xbb, 0x68, 0x06, 0xb0, 0x53, 0xed, 0xff, 0xea, 0xed, 0x83, 0xdb, 0xd7, 0x49, 0x6d, 0xbd, - 0x5f, 0xdd, 0x2a, 0x31, 0xd5, 0xb7, 0xc8, 0xfc, 0x02, 0xdb, 0xf3, 0x05, 0x5b, 0xbd, 0xe3, 0x3f, - 0xde, 0x6f, 0xc7, 0xb9, 0x9a, 0x1a, 0xda, 0xf5, 0xd4, 0xd0, 0x7e, 0x4f, 0x0d, 0xed, 0xdb, 0xcc, - 0xa8, 0x5d, 0xcf, 0x8c, 0xda, 0xcf, 0x99, 0x51, 0x7b, 0xdf, 0x5f, 0x49, 0xfb, 0xa8, 0xbe, 0xa4, - 0x5e, 0x53, 0x7e, 0x4a, 0x0f, 0xff, 0x06, 0x00, 0x00, 0xff, 0xff, 0x03, 0xc1, 0x84, 0x15, 0xa6, - 0x05, 0x00, 0x00, + // 592 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x94, 0x3f, 0x6f, 0xd3, 0x4e, + 0x1c, 0xc6, 0xe3, 0xa4, 0x75, 0x9a, 0x6f, 0xaa, 0xaa, 0xbf, 0xfb, 0x95, 0xea, 0x14, 0x90, 0x53, + 0x55, 0x0c, 0x11, 0x08, 0x5b, 0x49, 0xa5, 0x22, 0x45, 0x0c, 0xc5, 0x95, 0xa8, 0xc2, 0x84, 0x8c, + 0x58, 0x58, 0xaa, 0xf3, 0x1f, 0x92, 0x53, 0xe3, 0x3b, 0xcb, 0x77, 0x29, 0x7f, 0x16, 0x56, 0x46, + 0x5e, 0x02, 0x2f, 0x85, 0xb1, 0x63, 0x47, 0xc4, 0x50, 0xa1, 0x64, 0xe1, 0x65, 0x20, 0xdf, 0xd9, + 0x55, 0x9c, 0x06, 0x25, 0x03, 0xdb, 0xc5, 0xf7, 0x3c, 0x9f, 0xc7, 0xcf, 0xe5, 0x7b, 0x86, 0xd6, + 0xd8, 0x8f, 0x1d, 0xc9, 0x2f, 0x22, 0xe6, 0x5c, 0x76, 0x9d, 0x61, 0xc4, 0x22, 0x41, 0x85, 0x9d, + 0xa4, 0x5c, 0x72, 0xb4, 0x3d, 0xf6, 0x63, 0x5b, 0xed, 0xd9, 0x97, 0xdd, 0xd6, 0xde, 0x90, 0x0f, + 0xb9, 0xda, 0x70, 0xb2, 0x95, 0xd6, 0xb4, 0x70, 0xc9, 0xaf, 0xc5, 0x6a, 0xe7, 0xf0, 0xfb, 0x06, + 0x6c, 0x9f, 0x69, 0xde, 0x6b, 0x49, 0x64, 0x84, 0x7a, 0x60, 0x26, 0x24, 0x25, 0xb1, 0xc0, 0xc6, + 0x81, 0xd1, 0x69, 0xf6, 0xf6, 0xec, 0x79, 0xbe, 0xfd, 0x4a, 0xed, 0xb9, 0x1b, 0x57, 0x37, 0xed, + 0x8a, 0x97, 0x2b, 0xd1, 0x09, 0x34, 0x83, 0x31, 0x11, 0xe2, 0x5c, 0x64, 0x08, 0x5c, 0x55, 0xc6, + 0x76, 0xd9, 0x78, 0x9a, 0x09, 0xe6, 0x93, 0x3c, 0x50, 0x1e, 0x9d, 0x7a, 0x02, 0x5b, 0x3e, 0x19, + 0x13, 0x16, 0x44, 0x02, 0xd7, 0x0e, 0x6a, 0x9d, 0x66, 0xcf, 0x5a, 0xb0, 0x73, 0x26, 0x53, 0x12, + 0x48, 0x37, 0x57, 0xe5, 0x6f, 0x70, 0xeb, 0x42, 0xc7, 0x50, 0x57, 0xbc, 0x48, 0xe0, 0x0d, 0x05, + 0xd8, 0xff, 0x0b, 0x40, 0x1b, 0x0b, 0x31, 0xea, 0x83, 0x39, 0x4c, 0x09, 0x93, 0x02, 0x6f, 0x2a, + 0xdb, 0x83, 0xe5, 0xb6, 0x33, 0xa5, 0x29, 0x7a, 0x6b, 0x07, 0xf2, 0x60, 0x87, 0x4c, 0xe4, 0x88, + 0xa7, 0xf4, 0x13, 0x91, 0x94, 0x33, 0x81, 0x4d, 0xc5, 0x78, 0xb8, 0x9c, 0xf1, 0xbc, 0xa4, 0xcd, + 0x59, 0x0b, 0x04, 0xf4, 0x0c, 0xb6, 0xc4, 0x24, 0x49, 0xc6, 0x34, 0x12, 0xb8, 0xae, 0x68, 0xad, + 0xe5, 0xb4, 0x53, 0x4e, 0x59, 0x71, 0x0a, 0x85, 0x03, 0x1d, 0xc3, 0x66, 0x4c, 0xb3, 0x32, 0x5b, + 0x6b, 0x5a, 0xb5, 0x3c, 0xf3, 0xf9, 0x93, 0x94, 0x09, 0xdc, 0x58, 0xd7, 0xa7, 0xe4, 0xfd, 0x2a, + 0x36, 0x0e, 0x25, 0xfc, 0x77, 0xe7, 0xcf, 0x45, 0x03, 0xd8, 0x64, 0x9c, 0x05, 0x91, 0x9a, 0xa2, + 0x86, 0x7b, 0x94, 0x99, 0x7e, 0xde, 0xb4, 0x1f, 0x0f, 0xa9, 0x1c, 0x4d, 0x7c, 0x3b, 0xe0, 0xb1, + 0xf3, 0x82, 0x32, 0x11, 0x8c, 0x28, 0x71, 0xde, 0xe5, 0x8b, 0x27, 0x22, 0xbc, 0x70, 0xe4, 0xc7, + 0x24, 0x12, 0xf6, 0x1b, 0xca, 0xa4, 0xa7, 0x09, 0x68, 0x17, 0x6a, 0x34, 0x14, 0xb8, 0x7a, 0x50, + 0xeb, 0x34, 0xbc, 0x6c, 0xa9, 0x52, 0x13, 0xd8, 0x5d, 0x9c, 0x09, 0xd4, 0x86, 0x66, 0x90, 0x3f, + 0x3b, 0xa7, 0xa1, 0x8e, 0xf6, 0xa0, 0x78, 0x34, 0x08, 0xd1, 0xd3, 0xb9, 0x31, 0xab, 0xaa, 0xa6, + 0xf7, 0xca, 0x4d, 0x73, 0xd4, 0xe2, 0x74, 0xa9, 0xc4, 0xf7, 0x50, 0xcf, 0xb7, 0x11, 0x86, 0x3a, + 0x09, 0xc3, 0x34, 0x12, 0x22, 0x0f, 0x29, 0x7e, 0xa2, 0x97, 0x60, 0x92, 0x98, 0x4f, 0x98, 0x54, + 0xb7, 0xa0, 0xe1, 0xf6, 0xf2, 0xe2, 0x8f, 0xd6, 0x2c, 0x3e, 0x60, 0xd2, 0xcb, 0x09, 0x7d, 0xf3, + 0xf7, 0xb7, 0xb6, 0x81, 0x8d, 0xc3, 0x2f, 0x06, 0xec, 0x2f, 0x9f, 0xa1, 0xd5, 0x8d, 0x07, 0x77, + 0x46, 0x54, 0xf7, 0xbe, 0x5f, 0xee, 0x5d, 0xc2, 0x2e, 0x9f, 0x4c, 0x75, 0x06, 0x23, 0xd8, 0x29, + 0xdf, 0x88, 0xd5, 0x6f, 0xd0, 0xbd, 0xbd, 0x60, 0x3a, 0xf9, 0xff, 0x72, 0xb2, 0xc2, 0x94, 0xef, + 0x95, 0x4a, 0xfa, 0x0c, 0xdb, 0xf3, 0x63, 0xb7, 0x3a, 0xe7, 0x5f, 0x9e, 0x7c, 0x15, 0x1b, 0xae, + 0x7b, 0x35, 0xb5, 0x8c, 0xeb, 0xa9, 0x65, 0xfc, 0x9a, 0x5a, 0xc6, 0xd7, 0x99, 0x55, 0xb9, 0x9e, + 0x59, 0x95, 0x1f, 0x33, 0xab, 0xf2, 0xb6, 0xb3, 0x92, 0xf8, 0x41, 0x7f, 0x63, 0x7d, 0x53, 0x7d, + 0x64, 0x8f, 0xfe, 0x04, 0x00, 0x00, 0xff, 0xff, 0x2a, 0xaf, 0x98, 0x1b, 0xc0, 0x05, 0x00, 0x00, } func (this *Balance) Equal(that interface{}) bool { diff --git a/x/token/query.pb.go b/x/token/query.pb.go index f102eacbbb..899ceae862 100644 --- a/x/token/query.pb.go +++ b/x/token/query.pb.go @@ -32,6 +32,8 @@ var _ = math.Inf const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // QueryBalanceRequest is the request type for the Query/Balance RPC method +// +// Deprecated: Do not use. type QueryBalanceRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -87,6 +89,8 @@ func (m *QueryBalanceRequest) GetAddress() string { } // QueryBalanceResponse is the response type for the Query/Balance RPC method +// +// Deprecated: Do not use. type QueryBalanceResponse struct { // the balance of the tokens. Amount github_com_Finschia_finschia_sdk_types.Int `protobuf:"bytes,1,opt,name=amount,proto3,customtype=github.com/Finschia/finschia-sdk/types.Int" json:"amount"` @@ -126,6 +130,8 @@ func (m *QueryBalanceResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryBalanceResponse proto.InternalMessageInfo // QuerySupplyRequest is the request type for the Query/Supply RPC method +// +// Deprecated: Do not use. type QuerySupplyRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -172,6 +178,8 @@ func (m *QuerySupplyRequest) GetContractId() string { } // QuerySupplyResponse is the response type for the Query/Supply RPC method +// +// Deprecated: Do not use. type QuerySupplyResponse struct { // the supply of the tokens. Amount github_com_Finschia_finschia_sdk_types.Int `protobuf:"bytes,1,opt,name=amount,proto3,customtype=github.com/Finschia/finschia-sdk/types.Int" json:"amount"` @@ -211,6 +219,8 @@ func (m *QuerySupplyResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QuerySupplyResponse proto.InternalMessageInfo // QueryMintedRequest is the request type for the Query/Minted RPC method +// +// Deprecated: Do not use. type QueryMintedRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -257,6 +267,8 @@ func (m *QueryMintedRequest) GetContractId() string { } // QueryMintedResponse is the response type for the Query/Minted RPC method +// +// Deprecated: Do not use. type QueryMintedResponse struct { // the amount of the minted tokens. Amount github_com_Finschia_finschia_sdk_types.Int `protobuf:"bytes,1,opt,name=amount,proto3,customtype=github.com/Finschia/finschia-sdk/types.Int" json:"amount"` @@ -296,6 +308,8 @@ func (m *QueryMintedResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryMintedResponse proto.InternalMessageInfo // QueryBurntRequest is the request type for the Query/Burnt RPC method +// +// Deprecated: Do not use. type QueryBurntRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -342,6 +356,8 @@ func (m *QueryBurntRequest) GetContractId() string { } // QueryBurntResponse is the response type for the Query/Burnt RPC method +// +// Deprecated: Do not use. type QueryBurntResponse struct { // the amount of the burnt tokens. Amount github_com_Finschia_finschia_sdk_types.Int `protobuf:"bytes,1,opt,name=amount,proto3,customtype=github.com/Finschia/finschia-sdk/types.Int" json:"amount"` @@ -381,6 +397,8 @@ func (m *QueryBurntResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryBurntResponse proto.InternalMessageInfo // QueryContractRequest is the request type for the Query/Contract RPC method +// +// Deprecated: Do not use. type QueryContractRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -427,6 +445,8 @@ func (m *QueryContractRequest) GetContractId() string { } // QueryContractResponse is the response type for the Query/Contract RPC method +// +// Deprecated: Do not use. type QueryContractResponse struct { Contract Contract `protobuf:"bytes,1,opt,name=contract,proto3" json:"contract"` } @@ -472,6 +492,8 @@ func (m *QueryContractResponse) GetContract() Contract { } // QueryGranteeGrantsRequest is the request type for the Query/GranteeGrants RPC method +// +// Deprecated: Do not use. type QueryGranteeGrantsRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -536,6 +558,8 @@ func (m *QueryGranteeGrantsRequest) GetPagination() *query.PageRequest { } // QueryGranteeGrantsResponse is the response type for the Query/GranteeGrants RPC method +// +// Deprecated: Do not use. type QueryGranteeGrantsResponse struct { // all the grants on the grantee. Grants []Grant `protobuf:"bytes,1,rep,name=grants,proto3" json:"grants"` @@ -591,6 +615,8 @@ func (m *QueryGranteeGrantsResponse) GetPagination() *query.PageResponse { } // QueryIsOperatorForRequest is the request type for the Query/IsOperatorFor RPC method +// +// Deprecated: Do not use. type QueryIsOperatorForRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -655,6 +681,8 @@ func (m *QueryIsOperatorForRequest) GetHolder() string { } // QueryIsOperatorForResponse is the response type for the Query/IsOperatorFor RPC method +// +// Deprecated: Do not use. type QueryIsOperatorForResponse struct { Authorized bool `protobuf:"varint,1,opt,name=authorized,proto3" json:"authorized,omitempty"` } @@ -700,6 +728,8 @@ func (m *QueryIsOperatorForResponse) GetAuthorized() bool { } // QueryHoldersByOperatorRequest is the request type for the Query/HoldersByOperator RPC method +// +// Deprecated: Do not use. type QueryHoldersByOperatorRequest struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -764,6 +794,8 @@ func (m *QueryHoldersByOperatorRequest) GetPagination() *query.PageRequest { } // QueryHoldersByOperatorResponse is the response type for the Query/HoldersByOperator RPC method +// +// Deprecated: Do not use. type QueryHoldersByOperatorResponse struct { // holder addresses Holders []string `protobuf:"bytes,1,rep,name=holders,proto3" json:"holders,omitempty"` @@ -840,61 +872,62 @@ func init() { func init() { proto.RegisterFile("lbm/token/v1/query.proto", fileDescriptor_7759ed3b35cde06a) } var fileDescriptor_7759ed3b35cde06a = []byte{ - // 851 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x96, 0x41, 0x4f, 0xdb, 0x48, - 0x14, 0xc7, 0x63, 0x58, 0x42, 0x18, 0x96, 0x03, 0x03, 0x8b, 0xb2, 0xd6, 0xae, 0x13, 0xbc, 0xd2, - 0x92, 0x85, 0x5d, 0xcf, 0x26, 0xbb, 0x2b, 0xd0, 0x0a, 0xf5, 0x90, 0x56, 0x50, 0x2a, 0x55, 0x05, - 0xf7, 0xd6, 0x0b, 0x1d, 0xc7, 0x53, 0xc7, 0x22, 0xf1, 0x18, 0xcf, 0x04, 0x35, 0x45, 0x5c, 0x8a, - 0xd4, 0x5e, 0x2b, 0x55, 0xaa, 0x7a, 0xea, 0xa9, 0xea, 0x27, 0xe9, 0x81, 0x23, 0x52, 0x2f, 0x55, - 0x0f, 0xa8, 0x82, 0x7e, 0x90, 0x2a, 0x33, 0x63, 0x1a, 0x83, 0x01, 0x53, 0xc1, 0x29, 0x1e, 0xcf, - 0x7b, 0xef, 0xff, 0x9b, 0x37, 0x7e, 0xef, 0x05, 0x14, 0x5b, 0x4e, 0x1b, 0x71, 0xba, 0x41, 0x02, - 0xb4, 0x55, 0x45, 0x9b, 0x1d, 0x12, 0x75, 0xad, 0x30, 0xa2, 0x9c, 0xc2, 0x1f, 0x5b, 0x4e, 0xdb, - 0x12, 0x3b, 0xd6, 0x56, 0x55, 0x9f, 0x6d, 0x50, 0xd6, 0xa6, 0x0c, 0x39, 0x98, 0x11, 0x69, 0x86, - 0xb6, 0xaa, 0x0e, 0xe1, 0xb8, 0x8a, 0x42, 0xec, 0xf9, 0x01, 0xe6, 0x3e, 0x0d, 0xa4, 0xa7, 0xfe, - 0x8b, 0x47, 0xa9, 0xd7, 0x22, 0x08, 0x87, 0x3e, 0xc2, 0x41, 0x40, 0xb9, 0xd8, 0x64, 0x6a, 0x37, - 0xa9, 0x28, 0x05, 0xe4, 0xce, 0xa4, 0x47, 0x3d, 0x2a, 0x1e, 0x51, 0xef, 0x49, 0xbe, 0x35, 0x57, - 0xc1, 0xc4, 0x5a, 0x4f, 0xaf, 0x8e, 0x5b, 0x38, 0x68, 0x10, 0x9b, 0x6c, 0x76, 0x08, 0xe3, 0xb0, - 0x04, 0x46, 0x1b, 0x34, 0xe0, 0x11, 0x6e, 0xf0, 0x75, 0xdf, 0x2d, 0x6a, 0x65, 0xad, 0x32, 0x62, - 0x83, 0xf8, 0xd5, 0x8a, 0x0b, 0x8b, 0x60, 0x18, 0xbb, 0x6e, 0x44, 0x18, 0x2b, 0x0e, 0x88, 0xcd, - 0x78, 0x69, 0x3a, 0x60, 0x32, 0x19, 0x91, 0x85, 0x34, 0x60, 0x04, 0xde, 0x01, 0x79, 0xdc, 0xa6, - 0x9d, 0x80, 0xcb, 0x68, 0xf5, 0xda, 0xde, 0x41, 0x29, 0xf7, 0xe9, 0xa0, 0x34, 0xeb, 0xf9, 0xbc, - 0xd9, 0x71, 0xac, 0x06, 0x6d, 0xa3, 0x25, 0x3f, 0x60, 0x8d, 0xa6, 0x8f, 0xd1, 0x23, 0xf5, 0xf0, - 0x17, 0x73, 0x37, 0x10, 0xef, 0x86, 0x84, 0x59, 0x2b, 0x01, 0xb7, 0x55, 0x04, 0xf3, 0x3f, 0x00, - 0x85, 0xc6, 0xfd, 0x4e, 0x18, 0xb6, 0xba, 0x59, 0xa1, 0x4d, 0xac, 0x0e, 0x1b, 0xbb, 0x5d, 0x23, - 0xd9, 0x5d, 0x3f, 0xe0, 0xc4, 0xbd, 0x34, 0x59, 0xec, 0x76, 0x0d, 0x64, 0xff, 0x82, 0x71, 0x79, - 0x2f, 0x9d, 0x28, 0xe0, 0x99, 0xc1, 0x1e, 0xaa, 0xf3, 0x28, 0xaf, 0x6b, 0xe0, 0x9a, 0x57, 0xdf, - 0xcb, 0x4d, 0x25, 0x9a, 0x19, 0x6d, 0x0d, 0xfc, 0x74, 0xc2, 0x51, 0xd1, 0x2d, 0x80, 0x42, 0x6c, - 0x26, 0xdc, 0x46, 0x6b, 0x53, 0x56, 0x7f, 0xb9, 0x59, 0xb1, 0x47, 0xfd, 0x87, 0x1e, 0xb7, 0x7d, - 0x6c, 0x6d, 0xbe, 0xd1, 0xc0, 0xcf, 0x22, 0xe6, 0x72, 0x84, 0x03, 0x4e, 0x88, 0xf8, 0x61, 0x97, - 0x29, 0x0a, 0x4f, 0x3a, 0xc6, 0x45, 0xa1, 0x96, 0x70, 0x09, 0x80, 0x6f, 0x85, 0x5c, 0x1c, 0x14, - 0x50, 0xbf, 0x5b, 0xb2, 0xea, 0xad, 0x5e, 0xd5, 0x5b, 0xb2, 0x39, 0xa8, 0xaa, 0xb7, 0x56, 0xb1, - 0x17, 0xd7, 0xa2, 0xdd, 0xe7, 0x69, 0xbe, 0xd6, 0x80, 0x9e, 0x06, 0xa8, 0x4e, 0x5e, 0x05, 0x79, - 0xa1, 0xc8, 0x8a, 0x5a, 0x79, 0xb0, 0x32, 0x5a, 0x9b, 0x48, 0x9e, 0x5b, 0x58, 0xab, 0x43, 0x2b, - 0x43, 0xb8, 0x9c, 0x20, 0x1b, 0x10, 0x64, 0x33, 0x17, 0x92, 0x49, 0xbd, 0x04, 0x5a, 0xa8, 0x52, - 0xb7, 0xc2, 0xee, 0x85, 0x24, 0xc2, 0x9c, 0x46, 0x4b, 0x34, 0xca, 0x9c, 0x3a, 0x1d, 0x14, 0xa8, - 0x72, 0x53, 0xb9, 0x3b, 0x5e, 0xc3, 0x29, 0x90, 0x6f, 0xd2, 0x96, 0x4b, 0x22, 0x91, 0xb8, 0x11, - 0x5b, 0xad, 0xcc, 0x45, 0x95, 0x8b, 0x13, 0x8a, 0x2a, 0x17, 0x06, 0x00, 0xb8, 0xc3, 0x9b, 0x34, - 0xf2, 0x9f, 0x10, 0xa9, 0x58, 0xb0, 0xfb, 0xde, 0x98, 0x6f, 0x35, 0xf0, 0xab, 0x70, 0xbf, 0x2d, - 0xa2, 0xb1, 0x7a, 0x37, 0x8e, 0x72, 0x25, 0xd0, 0x57, 0x75, 0xe3, 0xbb, 0x1a, 0x30, 0xce, 0xc2, - 0x54, 0x27, 0x2d, 0x82, 0x61, 0x99, 0x11, 0x79, 0xed, 0x23, 0x76, 0xbc, 0xbc, 0xb2, 0xcb, 0xad, - 0xbd, 0x2f, 0x80, 0x21, 0x41, 0x01, 0x5f, 0x69, 0x60, 0x58, 0xb5, 0x76, 0x38, 0x9d, 0xfc, 0xbc, - 0x52, 0x06, 0x89, 0x6e, 0x9e, 0x67, 0x22, 0x85, 0xcc, 0x5b, 0x4f, 0x3f, 0x7c, 0x79, 0x39, 0x70, - 0x03, 0x2e, 0xa2, 0xd3, 0xc3, 0x6b, 0xbd, 0xd1, 0xc2, 0x8c, 0x11, 0x86, 0xb6, 0xfb, 0xae, 0x62, - 0x07, 0x39, 0x32, 0x04, 0x43, 0xdb, 0x6a, 0xec, 0xec, 0xc0, 0xe7, 0x1a, 0xc8, 0xcb, 0xc6, 0x0e, - 0xcb, 0x29, 0xa2, 0x89, 0x51, 0xa1, 0x4f, 0x9f, 0x63, 0xa1, 0xa8, 0x16, 0x04, 0x55, 0x0d, 0xfe, - 0x9d, 0x9d, 0x8a, 0x49, 0xf9, 0x1e, 0x89, 0x6c, 0xe4, 0xa9, 0x24, 0x89, 0xd1, 0x90, 0x4a, 0x92, - 0x9c, 0x02, 0xdf, 0x43, 0xd2, 0x96, 0xf2, 0xbb, 0x1a, 0x18, 0x12, 0x9d, 0x1b, 0x96, 0xd2, 0xee, - 0xa1, 0x6f, 0x12, 0xe8, 0xe5, 0xb3, 0x0d, 0x14, 0xc6, 0xbc, 0xc0, 0xa8, 0x42, 0x74, 0x89, 0x6b, - 0x12, 0xda, 0xcf, 0x34, 0x50, 0x88, 0x5b, 0x2e, 0x4c, 0xfb, 0x20, 0x4e, 0xb4, 0x7e, 0xfd, 0xb7, - 0x73, 0x6d, 0x14, 0x4e, 0x55, 0xe0, 0xcc, 0xc1, 0x3f, 0x32, 0xe3, 0xc0, 0x77, 0x1a, 0x18, 0x4b, - 0x34, 0x4e, 0x38, 0x93, 0xa2, 0x94, 0xd6, 0xfb, 0xf5, 0xca, 0xc5, 0x86, 0x8a, 0xab, 0x2e, 0xb8, - 0x16, 0xe1, 0xff, 0xd9, 0xd3, 0x24, 0x5b, 0x31, 0xda, 0x56, 0xd3, 0x62, 0x07, 0xba, 0x60, 0x2c, - 0xd1, 0xd4, 0x52, 0x39, 0xd3, 0x1a, 0x6d, 0x2a, 0x67, 0x6a, 0x7f, 0x34, 0x73, 0x30, 0x04, 0xe3, - 0xa7, 0x9a, 0x0a, 0x9c, 0x4b, 0x09, 0x70, 0x56, 0x87, 0xd4, 0xff, 0xcc, 0x66, 0x1c, 0x2b, 0xd6, - 0xeb, 0x7b, 0x87, 0x86, 0xb6, 0x7f, 0x68, 0x68, 0x9f, 0x0f, 0x0d, 0xed, 0xc5, 0x91, 0x91, 0xdb, - 0x3f, 0x32, 0x72, 0x1f, 0x8f, 0x8c, 0xdc, 0x83, 0xca, 0x85, 0xff, 0x1c, 0x1e, 0xcb, 0x14, 0x3a, - 0x79, 0xf1, 0xc7, 0xf5, 0x9f, 0xaf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa1, 0x32, 0x3a, 0x7f, 0x5c, - 0x0b, 0x00, 0x00, + // 865 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x96, 0x41, 0x4f, 0x23, 0x37, + 0x14, 0xc7, 0xe3, 0x50, 0x42, 0x30, 0xe5, 0x80, 0xa1, 0x68, 0x3a, 0x6a, 0x27, 0x21, 0x95, 0x4a, + 0x0a, 0xed, 0xb8, 0x49, 0x0f, 0xa5, 0x14, 0x55, 0x55, 0x5a, 0x41, 0xa9, 0x54, 0xb5, 0x9d, 0xb6, + 0x97, 0x5e, 0x90, 0x27, 0x63, 0x26, 0x23, 0x92, 0xf1, 0x30, 0x76, 0x50, 0x53, 0xc4, 0xa5, 0x95, + 0x4a, 0x8f, 0x95, 0x2a, 0xed, 0x69, 0x4f, 0x7b, 0x58, 0xed, 0x17, 0x59, 0x89, 0x23, 0xd2, 0x5e, + 0x56, 0x7b, 0x40, 0x2b, 0xd8, 0x0f, 0xb2, 0x8a, 0xed, 0x61, 0x33, 0x30, 0x40, 0x82, 0xe0, 0x94, + 0xb1, 0xfd, 0xde, 0xfb, 0xff, 0xfc, 0x6c, 0xbf, 0x17, 0x68, 0xb4, 0xdd, 0x0e, 0x16, 0x6c, 0x87, + 0x86, 0x78, 0xaf, 0x86, 0x77, 0xbb, 0x34, 0xee, 0xd9, 0x51, 0xcc, 0x04, 0x43, 0x6f, 0xb7, 0xdd, + 0x8e, 0x2d, 0x57, 0xec, 0xbd, 0x9a, 0xb9, 0xd4, 0x64, 0xbc, 0xc3, 0x38, 0x76, 0x09, 0xa7, 0xca, + 0x0c, 0xef, 0xd5, 0x5c, 0x2a, 0x48, 0x0d, 0x47, 0xc4, 0x0f, 0x42, 0x22, 0x02, 0x16, 0x2a, 0x4f, + 0xf3, 0x3d, 0x9f, 0x31, 0xbf, 0x4d, 0x31, 0x89, 0x02, 0x4c, 0xc2, 0x90, 0x09, 0xb9, 0xc8, 0xf5, + 0x6a, 0x5a, 0x51, 0x09, 0xa8, 0x95, 0x39, 0x9f, 0xf9, 0x4c, 0x7e, 0xe2, 0xfe, 0x97, 0x9a, 0xad, + 0xfc, 0x0a, 0x67, 0x7f, 0xee, 0xeb, 0x35, 0x48, 0x9b, 0x84, 0x4d, 0xea, 0xd0, 0xdd, 0x2e, 0xe5, + 0x02, 0x95, 0xe0, 0x54, 0x93, 0x85, 0x22, 0x26, 0x4d, 0xb1, 0x15, 0x78, 0x06, 0x28, 0x83, 0xea, + 0xa4, 0x03, 0x93, 0xa9, 0x4d, 0x0f, 0x19, 0x70, 0x82, 0x78, 0x5e, 0x4c, 0x39, 0x37, 0xf2, 0x72, + 0x31, 0x19, 0xae, 0xe6, 0x0d, 0x50, 0xd9, 0x86, 0x73, 0xe9, 0xa8, 0x3c, 0x62, 0x21, 0xa7, 0xe8, + 0x7b, 0x58, 0x20, 0x1d, 0xd6, 0x0d, 0x85, 0x8a, 0xd8, 0xa8, 0x1f, 0x9d, 0x94, 0x72, 0x2f, 0x4e, + 0x4a, 0x4b, 0x7e, 0x20, 0x5a, 0x5d, 0xd7, 0x6e, 0xb2, 0x0e, 0x5e, 0x0f, 0x42, 0xde, 0x6c, 0x05, + 0x04, 0x6f, 0xeb, 0x8f, 0x4f, 0xb8, 0xb7, 0x83, 0x45, 0x2f, 0xa2, 0xdc, 0xde, 0x0c, 0x85, 0xa3, + 0x23, 0x48, 0x9d, 0x2f, 0x20, 0x92, 0x3a, 0xbf, 0x74, 0xa3, 0xa8, 0xdd, 0x1b, 0x16, 0x5e, 0xba, + 0x52, 0xbd, 0xf1, 0xc4, 0xf5, 0x9e, 0x09, 0x7f, 0x08, 0x42, 0x41, 0xbd, 0x5b, 0x11, 0x26, 0xae, + 0xf7, 0x44, 0xb8, 0x02, 0x67, 0xd4, 0x59, 0x75, 0xe3, 0x50, 0x8c, 0x04, 0xe8, 0xe9, 0xbd, 0x69, + 0xcf, 0x7b, 0xe2, 0xfb, 0x52, 0xdf, 0xa5, 0x6f, 0xb4, 0xf8, 0x48, 0x88, 0xbf, 0xc1, 0x77, 0x2e, + 0x38, 0x6b, 0xca, 0x15, 0x58, 0x4c, 0x4c, 0xa5, 0xeb, 0x54, 0x7d, 0xde, 0x1e, 0x7c, 0x92, 0x76, + 0xe2, 0xd1, 0x78, 0xab, 0xcf, 0xef, 0x9c, 0x5b, 0xcb, 0xb0, 0x8f, 0x00, 0x7c, 0x57, 0xc6, 0xdd, + 0x88, 0x49, 0x28, 0x28, 0x95, 0x3f, 0x7c, 0x94, 0xc7, 0xe3, 0x2b, 0xc7, 0xe4, 0xf1, 0xe8, 0x21, + 0x5a, 0x87, 0xf0, 0xcd, 0x83, 0x37, 0xc6, 0x24, 0xd8, 0x87, 0xb6, 0xaa, 0x0e, 0x76, 0xbf, 0x3a, + 0xd8, 0xaa, 0x88, 0xe8, 0xea, 0x60, 0xff, 0x44, 0xfc, 0xe4, 0xcd, 0x3a, 0x03, 0x9e, 0x12, 0xf2, + 0x21, 0x80, 0x66, 0x16, 0xa4, 0xce, 0x40, 0x0d, 0x16, 0xa4, 0x2a, 0x37, 0x40, 0x79, 0xac, 0x3a, + 0x55, 0x9f, 0x4d, 0xef, 0x5f, 0x5a, 0xeb, 0xcd, 0x6b, 0x43, 0xb4, 0x91, 0xa2, 0xcb, 0x4b, 0xba, + 0xc5, 0x1b, 0xe9, 0x94, 0xde, 0x25, 0x3c, 0xa1, 0x53, 0xb8, 0xc9, 0x7f, 0x8c, 0x68, 0x4c, 0x04, + 0x8b, 0xd7, 0x59, 0x3c, 0x74, 0x0a, 0x4d, 0x58, 0x64, 0xda, 0x4d, 0xe7, 0xf0, 0x7c, 0x8c, 0xe6, + 0x61, 0xa1, 0xc5, 0xda, 0x1e, 0x8d, 0x65, 0x02, 0x27, 0x1d, 0x3d, 0x92, 0xaa, 0x5f, 0xeb, 0x9c, + 0x5c, 0x50, 0xd5, 0x39, 0xb1, 0x20, 0x24, 0x5d, 0xd1, 0x62, 0x71, 0xf0, 0x27, 0x55, 0xaa, 0x45, + 0x67, 0x60, 0x46, 0x46, 0x78, 0x02, 0xe0, 0xfb, 0x32, 0xc4, 0x77, 0x32, 0x2a, 0x6f, 0xf4, 0x92, + 0x48, 0x77, 0x02, 0x7f, 0x97, 0x37, 0xe0, 0x10, 0x40, 0xeb, 0x2a, 0x54, 0xbd, 0x63, 0x03, 0x4e, + 0xa8, 0xec, 0xa8, 0x6b, 0x30, 0xe9, 0x24, 0xc3, 0x3b, 0x3d, 0xec, 0xfa, 0xd3, 0x22, 0x1c, 0x97, + 0x24, 0xe8, 0x01, 0x80, 0x13, 0xba, 0x2d, 0xa0, 0x85, 0xf4, 0x95, 0xcb, 0x68, 0x44, 0x66, 0xe5, + 0x3a, 0x13, 0x25, 0x56, 0xf9, 0xf6, 0xaf, 0x67, 0xaf, 0xfe, 0xcf, 0x7f, 0x85, 0xd6, 0xf0, 0xe5, + 0xe6, 0xb7, 0xd5, 0x6c, 0x13, 0xce, 0x29, 0xc7, 0xfb, 0x03, 0x47, 0x72, 0x80, 0x5d, 0x15, 0x82, + 0xe3, 0x7d, 0xdd, 0xb6, 0x0e, 0xd0, 0x21, 0x80, 0x05, 0xd5, 0x0c, 0x50, 0x39, 0x43, 0x34, 0xd5, + 0x62, 0xcc, 0x85, 0x6b, 0x2c, 0x34, 0xd5, 0x8a, 0xa4, 0xaa, 0xa3, 0x4f, 0x87, 0xa7, 0xe2, 0x4a, + 0xbe, 0x4f, 0xa2, 0x8a, 0x7e, 0x26, 0x49, 0xaa, 0x95, 0x64, 0x92, 0xa4, 0x3b, 0xc6, 0x6d, 0x48, + 0x3a, 0x4a, 0xfe, 0x6f, 0x00, 0xc7, 0x65, 0x75, 0x47, 0xa5, 0xac, 0x73, 0x18, 0xe8, 0x18, 0x66, + 0xf9, 0x6a, 0x03, 0x8d, 0xf1, 0xb9, 0xc4, 0xa8, 0x21, 0x3c, 0xc2, 0x31, 0x49, 0xed, 0x7f, 0x00, + 0x2c, 0x26, 0xe5, 0x18, 0x65, 0x5d, 0x88, 0x0b, 0xad, 0xc1, 0xfc, 0xe0, 0x5a, 0x1b, 0x8d, 0x53, + 0x93, 0x38, 0xcb, 0xe8, 0xa3, 0xa1, 0x71, 0xd0, 0x63, 0x00, 0xa7, 0x53, 0xc5, 0x14, 0x2d, 0x66, + 0x28, 0x65, 0xf5, 0x04, 0xb3, 0x7a, 0xb3, 0xa1, 0xe6, 0x6a, 0x48, 0xae, 0x35, 0xb4, 0x3a, 0x7c, + 0x9a, 0x54, 0x79, 0xc6, 0xfb, 0xba, 0x8b, 0x1c, 0x20, 0x17, 0x4e, 0xa7, 0x0a, 0x5c, 0x26, 0x67, + 0x56, 0xe1, 0xcd, 0xe4, 0xcc, 0xae, 0x95, 0x21, 0x9c, 0xb9, 0x54, 0x56, 0xd0, 0x72, 0x86, 0xfb, + 0x55, 0x75, 0xd2, 0xfc, 0x78, 0x38, 0x63, 0xa5, 0x67, 0x8e, 0xfd, 0x9b, 0x07, 0x8d, 0xc6, 0xd1, + 0xa9, 0x05, 0x8e, 0x4f, 0x2d, 0xf0, 0xf2, 0xd4, 0x02, 0xff, 0x9d, 0x59, 0xb9, 0xe3, 0x33, 0x2b, + 0xf7, 0xfc, 0xcc, 0xca, 0xfd, 0x5e, 0xbd, 0xf1, 0xef, 0xc5, 0x1f, 0x2a, 0x87, 0x6e, 0x41, 0xfe, + 0xf3, 0xfd, 0xec, 0x75, 0x00, 0x00, 0x00, 0xff, 0xff, 0x8a, 0x82, 0xc4, 0xe0, 0x9d, 0x0b, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -908,6 +941,8 @@ const _ = grpc.SupportPackageIsVersion4 // QueryClient is the client API for Query service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +// +// Deprecated: Do not use. type QueryClient interface { // Balance queries the number of tokens of a given contract owned by the address. Balance(ctx context.Context, in *QueryBalanceRequest, opts ...grpc.CallOption) (*QueryBalanceResponse, error) @@ -931,6 +966,7 @@ type queryClient struct { cc grpc1.ClientConn } +// Deprecated: Do not use. func NewQueryClient(cc grpc1.ClientConn) QueryClient { return &queryClient{cc} } @@ -1008,6 +1044,8 @@ func (c *queryClient) HoldersByOperator(ctx context.Context, in *QueryHoldersByO } // QueryServer is the server API for Query service. +// +// Deprecated: Do not use. type QueryServer interface { // Balance queries the number of tokens of a given contract owned by the address. Balance(context.Context, *QueryBalanceRequest) (*QueryBalanceResponse, error) @@ -1027,6 +1065,7 @@ type QueryServer interface { HoldersByOperator(context.Context, *QueryHoldersByOperatorRequest) (*QueryHoldersByOperatorResponse, error) } +// Deprecated: Do not use. // UnimplementedQueryServer can be embedded to have forward compatible implementations. type UnimplementedQueryServer struct { } @@ -1056,6 +1095,7 @@ func (*UnimplementedQueryServer) HoldersByOperator(ctx context.Context, req *Que return nil, status.Errorf(codes.Unimplemented, "method HoldersByOperator not implemented") } +// Deprecated: Do not use. func RegisterQueryServer(s grpc1.Server, srv QueryServer) { s.RegisterService(&_Query_serviceDesc, srv) } diff --git a/x/token/token.pb.go b/x/token/token.pb.go index 6e137174f7..e0a40fb474 100644 --- a/x/token/token.pb.go +++ b/x/token/token.pb.go @@ -94,6 +94,8 @@ func (LegacyPermission) EnumDescriptor() ([]byte, []int) { } // Params defines the parameters for the token module. +// +// Deprecated: Do not use. type Params struct { } @@ -131,6 +133,8 @@ func (m *Params) XXX_DiscardUnknown() { var xxx_messageInfo_Params proto.InternalMessageInfo // Contract defines token information. +// +// Deprecated: Do not use. type Contract struct { // id defines the unique identifier of the contract. Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` @@ -182,6 +186,8 @@ func (m *Contract) XXX_DiscardUnknown() { var xxx_messageInfo_Contract proto.InternalMessageInfo // Attribute defines a key and value of the attribute. +// +// Deprecated: Do not use. type Attribute struct { Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"` @@ -221,6 +227,8 @@ func (m *Attribute) XXX_DiscardUnknown() { var xxx_messageInfo_Attribute proto.InternalMessageInfo // Authorization defines an authorization given to the operator on tokens of the holder. +// +// Deprecated: Do not use. type Authorization struct { // address of the token holder which approves the authorization. Holder string `protobuf:"bytes,1,opt,name=holder,proto3" json:"holder,omitempty"` @@ -262,6 +270,8 @@ func (m *Authorization) XXX_DiscardUnknown() { var xxx_messageInfo_Authorization proto.InternalMessageInfo // Grant defines permission given to a grantee. +// +// Deprecated: Do not use. type Grant struct { // address of the grantee. Grantee string `protobuf:"bytes,1,opt,name=grantee,proto3" json:"grantee,omitempty"` @@ -315,44 +325,44 @@ func init() { func init() { proto.RegisterFile("lbm/token/v1/token.proto", fileDescriptor_1cc82dfde9e68378) } var fileDescriptor_1cc82dfde9e68378 = []byte{ - // 581 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x53, 0x41, 0x4f, 0x13, 0x41, - 0x14, 0xde, 0x2d, 0xb4, 0x94, 0x17, 0xc5, 0x75, 0x52, 0x9b, 0x71, 0x8d, 0xeb, 0xa6, 0x17, 0x1b, - 0x8c, 0x6d, 0x10, 0x4d, 0xb8, 0xd2, 0x52, 0x48, 0x0d, 0x94, 0xa6, 0xc8, 0x01, 0x3d, 0x90, 0xd9, - 0xee, 0xd0, 0x4e, 0xd8, 0xdd, 0x69, 0x66, 0xa7, 0xc4, 0xfa, 0x03, 0x8c, 0xe9, 0xc9, 0x3f, 0xd0, - 0x93, 0x1c, 0xf8, 0x29, 0x1c, 0x39, 0x7a, 0xd4, 0xf2, 0x47, 0xcc, 0xec, 0x2e, 0x65, 0x53, 0xea, - 0xed, 0xfb, 0xde, 0xfb, 0xbe, 0x37, 0xef, 0x9b, 0xc9, 0x00, 0xf6, 0x1c, 0xbf, 0x2a, 0xf9, 0x39, - 0x0d, 0xaa, 0x17, 0x1b, 0x31, 0xa8, 0x0c, 0x04, 0x97, 0x1c, 0x3d, 0xf2, 0x1c, 0xbf, 0x12, 0x17, - 0x2e, 0x36, 0xcc, 0x42, 0x8f, 0xf7, 0x78, 0xd4, 0xa8, 0x2a, 0x14, 0x6b, 0x4a, 0x79, 0xc8, 0xb5, - 0x89, 0x20, 0x7e, 0x58, 0xba, 0xd4, 0x21, 0x5f, 0xe7, 0x81, 0x14, 0xa4, 0x2b, 0xd1, 0x1a, 0x64, - 0x98, 0x8b, 0x75, 0x5b, 0x2f, 0xaf, 0x76, 0x32, 0xcc, 0x45, 0x08, 0x96, 0x03, 0xe2, 0x53, 0x9c, - 0x89, 0x2a, 0x11, 0x46, 0x45, 0xc8, 0x85, 0x23, 0xdf, 0xe1, 0x1e, 0x5e, 0x8a, 0xaa, 0x09, 0x43, - 0x06, 0x2c, 0x0d, 0x05, 0xc3, 0xcb, 0x51, 0x51, 0x41, 0xe5, 0xf6, 0xa9, 0x24, 0x38, 0x1b, 0xbb, - 0x15, 0x46, 0x26, 0xe4, 0x5d, 0xda, 0x65, 0x3e, 0xf1, 0x42, 0x9c, 0xb3, 0xf5, 0x72, 0xb6, 0x33, - 0xe3, 0xaa, 0xe7, 0xb3, 0x40, 0x12, 0xc7, 0xa3, 0x78, 0xc5, 0xd6, 0xcb, 0xf9, 0xce, 0x8c, 0x97, - 0x36, 0x61, 0x75, 0x5b, 0x4a, 0xc1, 0x9c, 0xa1, 0xa4, 0xea, 0xa8, 0x73, 0x3a, 0x4a, 0xf6, 0x54, - 0x10, 0x15, 0x20, 0x7b, 0x41, 0xbc, 0xe1, 0xdd, 0xa6, 0x31, 0x29, 0xd5, 0xe1, 0xf1, 0xf6, 0x50, - 0xf6, 0xb9, 0x60, 0xdf, 0x88, 0x64, 0x3c, 0x50, 0xbb, 0xf7, 0xb9, 0xe7, 0x52, 0x91, 0x78, 0x13, - 0xa6, 0x4e, 0xe6, 0x03, 0x2a, 0x88, 0xe4, 0x22, 0x99, 0x30, 0xe3, 0xa5, 0x2f, 0x90, 0xdd, 0x13, - 0x24, 0x90, 0x08, 0xc3, 0x4a, 0x4f, 0x01, 0x4a, 0x13, 0xf7, 0x1d, 0x45, 0x5b, 0x00, 0x03, 0x2a, - 0x7c, 0x16, 0x86, 0x8c, 0x07, 0xd1, 0x80, 0xb5, 0x77, 0xb8, 0x92, 0x7e, 0x86, 0x4a, 0x7b, 0xd6, - 0xef, 0xa4, 0xb4, 0xeb, 0xd7, 0x3a, 0xc0, 0x7d, 0x0b, 0x7d, 0x80, 0x62, 0xbb, 0xd1, 0x39, 0x68, - 0x1e, 0x1d, 0x35, 0x0f, 0x5b, 0xa7, 0xc7, 0xad, 0xa3, 0x76, 0xa3, 0xde, 0xdc, 0x6d, 0x36, 0x76, - 0x0c, 0xcd, 0x7c, 0x3e, 0x9e, 0xd8, 0xcf, 0xee, 0xb5, 0xc7, 0x41, 0x38, 0xa0, 0x5d, 0x76, 0xc6, - 0xa8, 0x8b, 0xde, 0xc0, 0xd3, 0x94, 0xed, 0xe0, 0x70, 0xa7, 0xb9, 0x7b, 0x62, 0xe8, 0x66, 0x61, - 0x3c, 0xb1, 0x8d, 0x7b, 0xc7, 0x01, 0x77, 0xd9, 0xd9, 0x08, 0xbd, 0x86, 0x27, 0x69, 0x71, 0xb3, - 0xf5, 0xc9, 0xc8, 0x98, 0x68, 0x3c, 0xb1, 0xd7, 0x52, 0x52, 0x16, 0xc8, 0x39, 0x61, 0xed, 0xb8, - 0xd3, 0x32, 0x96, 0xe6, 0x85, 0xb5, 0xa1, 0x08, 0xcc, 0xe5, 0x1f, 0xbf, 0x2c, 0x6d, 0xfd, 0x7b, - 0x06, 0x8c, 0x7d, 0xda, 0x23, 0xdd, 0x51, 0x2a, 0x50, 0x0d, 0x5e, 0xee, 0x37, 0xf6, 0xb6, 0xeb, - 0x27, 0xa7, 0xff, 0xcd, 0xf5, 0x6a, 0x3c, 0xb1, 0x5f, 0xcc, 0x1b, 0xd3, 0xe9, 0xb6, 0x00, 0x3f, - 0x9c, 0x31, 0x0b, 0x69, 0x8e, 0x27, 0x76, 0x71, 0xde, 0x9e, 0x44, 0x7d, 0x0f, 0xc5, 0x05, 0xce, - 0x38, 0x31, 0x1e, 0x4f, 0xec, 0xc2, 0x03, 0x9f, 0xca, 0xbd, 0xd0, 0x95, 0xc4, 0x5f, 0xe8, 0x8a, - 0x2e, 0x21, 0xaf, 0x2e, 0xe1, 0xea, 0xd2, 0xd2, 0x6a, 0x1f, 0xaf, 0xff, 0x5a, 0xda, 0xd5, 0xd4, - 0xd2, 0xae, 0xa7, 0x96, 0x7e, 0x33, 0xb5, 0xf4, 0x3f, 0x53, 0x4b, 0xff, 0x79, 0x6b, 0x69, 0x37, - 0xb7, 0x96, 0xf6, 0xfb, 0xd6, 0xd2, 0x3e, 0x97, 0x7b, 0x4c, 0xf6, 0x87, 0x4e, 0xa5, 0xcb, 0xfd, - 0xea, 0x2e, 0x0b, 0xc2, 0x6e, 0x9f, 0x91, 0xea, 0x59, 0x02, 0xde, 0x86, 0xee, 0x79, 0xf5, 0x6b, - 0xfc, 0xa3, 0x9d, 0x5c, 0xf4, 0x5d, 0x37, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x77, 0x38, - 0x75, 0xee, 0x03, 0x00, 0x00, + // 590 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x53, 0x4d, 0x4f, 0xdb, 0x40, + 0x10, 0xb5, 0x03, 0x09, 0x61, 0x44, 0xa9, 0xbb, 0x4a, 0xa3, 0xad, 0xab, 0xba, 0x16, 0x97, 0x46, + 0x54, 0x4d, 0x44, 0x3f, 0x54, 0xd4, 0x1b, 0x81, 0x80, 0x52, 0x41, 0x88, 0x42, 0x39, 0xd0, 0x0b, + 0x5a, 0xc7, 0x4b, 0xb2, 0xc2, 0xf6, 0x46, 0xeb, 0x0d, 0x6a, 0xfa, 0x03, 0xaa, 0x2a, 0xa7, 0xfe, + 0x01, 0x9f, 0xda, 0x03, 0x3f, 0x85, 0x23, 0xc7, 0x1e, 0xdb, 0xf0, 0x47, 0xaa, 0xb5, 0x4d, 0xb0, + 0x42, 0x7a, 0x7b, 0x6f, 0xe6, 0xbd, 0xd9, 0x79, 0xbb, 0x5a, 0xc0, 0x9e, 0xe3, 0xd7, 0x24, 0x3f, + 0xa7, 0x41, 0xed, 0x62, 0x23, 0x01, 0xd5, 0x81, 0xe0, 0x92, 0xa3, 0x15, 0xcf, 0xf1, 0xab, 0x49, + 0xe1, 0x62, 0xc3, 0x2c, 0xf5, 0x78, 0x8f, 0xc7, 0x8d, 0x9a, 0x42, 0x89, 0x66, 0x6d, 0x05, 0x0a, + 0x6d, 0x22, 0x88, 0x1f, 0x7e, 0xc8, 0x61, 0x7d, 0xed, 0x52, 0x87, 0xe2, 0x36, 0x0f, 0xa4, 0x20, + 0x5d, 0x89, 0x56, 0x21, 0xc7, 0x5c, 0xac, 0xdb, 0x7a, 0x65, 0xb9, 0x93, 0x63, 0x2e, 0x42, 0xb0, + 0x18, 0x10, 0x9f, 0xe2, 0x5c, 0x5c, 0x89, 0x31, 0x2a, 0x43, 0x21, 0x1c, 0xf9, 0x0e, 0xf7, 0xf0, + 0x42, 0x5c, 0x4d, 0x19, 0x32, 0x60, 0x61, 0x28, 0x18, 0x5e, 0x8c, 0x8b, 0x0a, 0x2a, 0xb7, 0x4f, + 0x25, 0xc1, 0xf9, 0xc4, 0xad, 0x30, 0x32, 0xa1, 0xe8, 0xd2, 0x2e, 0xf3, 0x89, 0x17, 0xe2, 0x82, + 0xad, 0x57, 0xf2, 0x9d, 0x29, 0x57, 0x3d, 0x9f, 0x05, 0x92, 0x38, 0x1e, 0xc5, 0x4b, 0xb6, 0x5e, + 0x29, 0x76, 0xa6, 0x3c, 0x5e, 0xf5, 0x3d, 0x2c, 0x6f, 0x49, 0x29, 0x98, 0x33, 0x94, 0x54, 0x1d, + 0x77, 0x4e, 0x47, 0xe9, 0xae, 0x0a, 0xa2, 0x12, 0xe4, 0x2f, 0x88, 0x37, 0xbc, 0xdd, 0x36, 0x21, + 0xb1, 0x71, 0x0f, 0x1e, 0x6c, 0x0d, 0x65, 0x9f, 0x0b, 0xf6, 0x95, 0x48, 0xc6, 0x03, 0x95, 0xa1, + 0xcf, 0x3d, 0x97, 0x8a, 0xd4, 0x9f, 0x32, 0xb5, 0x01, 0x1f, 0x50, 0x41, 0x24, 0x17, 0xe9, 0x94, + 0x29, 0x8f, 0x07, 0x9d, 0x42, 0x7e, 0x4f, 0x90, 0x40, 0x22, 0x0c, 0x4b, 0x3d, 0x05, 0x28, 0x4d, + 0x27, 0xdc, 0x52, 0xb4, 0x09, 0x30, 0xa0, 0xc2, 0x67, 0x61, 0xc8, 0x78, 0x10, 0x0f, 0x59, 0x7d, + 0x8d, 0xab, 0xd9, 0x67, 0xa9, 0xb6, 0xa7, 0xfd, 0x4e, 0x46, 0xab, 0x0e, 0x58, 0xbf, 0xd2, 0x01, + 0xee, 0xda, 0xe8, 0x1d, 0x94, 0xdb, 0x8d, 0xce, 0x41, 0xf3, 0xe8, 0xa8, 0x79, 0xd8, 0x3a, 0x3d, + 0x6e, 0x1d, 0xb5, 0x1b, 0xdb, 0xcd, 0xdd, 0x66, 0x63, 0xc7, 0xd0, 0xcc, 0x27, 0xe3, 0xc8, 0x7e, + 0x7c, 0xa7, 0x3d, 0x0e, 0xc2, 0x01, 0xed, 0xb2, 0x33, 0x46, 0x5d, 0xf4, 0x12, 0x1e, 0x65, 0x6c, + 0x07, 0x87, 0x3b, 0xcd, 0xdd, 0x13, 0x43, 0x37, 0x4b, 0xe3, 0xc8, 0x36, 0xee, 0x1c, 0x07, 0xdc, + 0x65, 0x67, 0x23, 0xf4, 0x02, 0x1e, 0x66, 0xc5, 0xcd, 0xd6, 0x27, 0x23, 0x67, 0xa2, 0x71, 0x64, + 0xaf, 0x66, 0xa4, 0x2c, 0x90, 0x33, 0xc2, 0xfa, 0x71, 0xa7, 0x65, 0x2c, 0xcc, 0x0a, 0xeb, 0x43, + 0x11, 0x98, 0x8b, 0xdf, 0x7f, 0x5a, 0xda, 0xfa, 0xb7, 0x1c, 0x18, 0xfb, 0xb4, 0x47, 0xba, 0xa3, + 0x4c, 0xa0, 0x3a, 0x3c, 0xdb, 0x6f, 0xec, 0x6d, 0x6d, 0x9f, 0x9c, 0xfe, 0x37, 0xd7, 0xf3, 0x71, + 0x64, 0x3f, 0x9d, 0x35, 0x66, 0xd3, 0x6d, 0x02, 0xbe, 0x3f, 0x63, 0x1a, 0xd2, 0x1c, 0x47, 0x76, + 0x79, 0xd6, 0x9e, 0x46, 0x7d, 0x0b, 0xe5, 0x39, 0xce, 0x24, 0x31, 0x1e, 0x47, 0x76, 0xe9, 0x9e, + 0x4f, 0xe5, 0x9e, 0xeb, 0x4a, 0xe3, 0xcf, 0x75, 0xc5, 0x97, 0x50, 0x54, 0x97, 0x70, 0xf9, 0xcb, + 0xd2, 0xea, 0x1f, 0xaf, 0xfe, 0x5a, 0xda, 0xe5, 0xc4, 0xd2, 0xae, 0x26, 0x96, 0x7e, 0x3d, 0xb1, + 0xf4, 0x3f, 0x13, 0x4b, 0xff, 0x71, 0x63, 0x69, 0xd7, 0x37, 0x96, 0xf6, 0xfb, 0xc6, 0xd2, 0x3e, + 0x57, 0x7a, 0x4c, 0xf6, 0x87, 0x4e, 0xb5, 0xcb, 0xfd, 0xda, 0x2e, 0x0b, 0xc2, 0x6e, 0x9f, 0x91, + 0xda, 0x59, 0x0a, 0x5e, 0x85, 0xee, 0x79, 0xed, 0x4b, 0xf2, 0xcb, 0x9d, 0x42, 0xfc, 0x85, 0xdf, + 0xfc, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x05, 0x39, 0x38, 0xea, 0x02, 0x04, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/token/tx.pb.go b/x/token/tx.pb.go index 1f2e9dbb6b..675ff2d9b1 100644 --- a/x/token/tx.pb.go +++ b/x/token/tx.pb.go @@ -32,6 +32,8 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // MsgSend defines the Msg/Send request type. // // Signer: `from` +// +// Deprecated: Do not use. type MsgSend struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -77,6 +79,8 @@ func (m *MsgSend) XXX_DiscardUnknown() { var xxx_messageInfo_MsgSend proto.InternalMessageInfo // MsgSendResponse defines the Msg/Send response type. +// +// Deprecated: Do not use. type MsgSendResponse struct { } @@ -116,6 +120,8 @@ var xxx_messageInfo_MsgSendResponse proto.InternalMessageInfo // MsgOperatorSend defines the Msg/OperatorSend request type. // // Signer: `operator` +// +// Deprecated: Do not use. type MsgOperatorSend struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -163,6 +169,8 @@ func (m *MsgOperatorSend) XXX_DiscardUnknown() { var xxx_messageInfo_MsgOperatorSend proto.InternalMessageInfo // MsgOperatorSendResponse defines the Msg/OperatorSend response type. +// +// Deprecated: Do not use. type MsgOperatorSendResponse struct { } @@ -204,6 +212,8 @@ var xxx_messageInfo_MsgOperatorSendResponse proto.InternalMessageInfo // Signer: `holder` // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type MsgRevokeOperator struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -249,6 +259,8 @@ var xxx_messageInfo_MsgRevokeOperator proto.InternalMessageInfo // MsgRevokeOperatorResponse defines the Msg/RevokeOperator response type. // // Since: 0.46.0 (finschia) +// +// Deprecated: Do not use. type MsgRevokeOperatorResponse struct { } @@ -288,6 +300,8 @@ var xxx_messageInfo_MsgRevokeOperatorResponse proto.InternalMessageInfo // MsgAuthorizeOperator defines the Msg/AuthorizeOperator request type. // // Signer: `holder` +// +// Deprecated: Do not use. type MsgAuthorizeOperator struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -331,6 +345,8 @@ func (m *MsgAuthorizeOperator) XXX_DiscardUnknown() { var xxx_messageInfo_MsgAuthorizeOperator proto.InternalMessageInfo // MsgAuthorizeOperatorResponse defines the Msg/AuthorizeOperator response type. +// +// Deprecated: Do not use. type MsgAuthorizeOperatorResponse struct { } @@ -370,6 +386,8 @@ var xxx_messageInfo_MsgAuthorizeOperatorResponse proto.InternalMessageInfo // MsgIssue defines the Msg/Issue request type. // // Signer: `owner` +// +// Deprecated: Do not use. type MsgIssue struct { // name defines the human-readable name of the token class. mandatory (not ERC20 compliant). Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` @@ -425,6 +443,8 @@ func (m *MsgIssue) XXX_DiscardUnknown() { var xxx_messageInfo_MsgIssue proto.InternalMessageInfo // MsgIssueResponse defines the Msg/Issue response type. +// +// Deprecated: Do not use. type MsgIssueResponse struct { // id of the new contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -466,6 +486,8 @@ var xxx_messageInfo_MsgIssueResponse proto.InternalMessageInfo // MsgGrantPermission defines the Msg/GrantPermission request type. // // Signer: `granter` +// +// Deprecated: Do not use. type MsgGrantPermission struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -511,6 +533,8 @@ func (m *MsgGrantPermission) XXX_DiscardUnknown() { var xxx_messageInfo_MsgGrantPermission proto.InternalMessageInfo // MsgGrantPermissionResponse defines the Msg/GrantPermission response type. +// +// Deprecated: Do not use. type MsgGrantPermissionResponse struct { } @@ -550,6 +574,8 @@ var xxx_messageInfo_MsgGrantPermissionResponse proto.InternalMessageInfo // MsgRevokePermission defines the Msg/RevokePermission request type. // // Signer: `grantee` +// +// Deprecated: Do not use. type MsgRevokePermission struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -593,6 +619,8 @@ func (m *MsgRevokePermission) XXX_DiscardUnknown() { var xxx_messageInfo_MsgRevokePermission proto.InternalMessageInfo // MsgRevokePermissionResponse defines the Msg/RevokePermission response type. +// +// Deprecated: Do not use. type MsgRevokePermissionResponse struct { } @@ -632,6 +660,8 @@ var xxx_messageInfo_MsgRevokePermissionResponse proto.InternalMessageInfo // MsgMint defines the Msg/Mint request type. // // Signer: `from` +// +// Deprecated: Do not use. type MsgMint struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -677,6 +707,8 @@ func (m *MsgMint) XXX_DiscardUnknown() { var xxx_messageInfo_MsgMint proto.InternalMessageInfo // MsgMintResponse defines the Msg/Mint response type. +// +// Deprecated: Do not use. type MsgMintResponse struct { } @@ -716,6 +748,8 @@ var xxx_messageInfo_MsgMintResponse proto.InternalMessageInfo // MsgBurn defines the Msg/Burn request type. // // Signer: `from` +// +// Deprecated: Do not use. type MsgBurn struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -759,6 +793,8 @@ func (m *MsgBurn) XXX_DiscardUnknown() { var xxx_messageInfo_MsgBurn proto.InternalMessageInfo // MsgBurnResponse defines the Msg/Burn response type. +// +// Deprecated: Do not use. type MsgBurnResponse struct { } @@ -798,6 +834,8 @@ var xxx_messageInfo_MsgBurnResponse proto.InternalMessageInfo // MsgOperatorBurn defines the Msg/OperatorBurn request type. // // Signer: `operator` +// +// Deprecated: Do not use. type MsgOperatorBurn struct { // contract id associated with the token class. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -843,6 +881,8 @@ func (m *MsgOperatorBurn) XXX_DiscardUnknown() { var xxx_messageInfo_MsgOperatorBurn proto.InternalMessageInfo // MsgOperatorBurnResponse defines the Msg/OperatorBurn response type. +// +// Deprecated: Do not use. type MsgOperatorBurnResponse struct { } @@ -882,6 +922,8 @@ var xxx_messageInfo_MsgOperatorBurnResponse proto.InternalMessageInfo // MsgModify defines the Msg/Modify request type. // // Signer: `owner` +// +// Deprecated: Do not use. type MsgModify struct { // contract id associated with the contract. ContractId string `protobuf:"bytes,1,opt,name=contract_id,json=contractId,proto3" json:"contract_id,omitempty"` @@ -926,6 +968,8 @@ func (m *MsgModify) XXX_DiscardUnknown() { var xxx_messageInfo_MsgModify proto.InternalMessageInfo // MsgModifyResponse defines the Msg/Modify response type. +// +// Deprecated: Do not use. type MsgModifyResponse struct { } @@ -990,60 +1034,61 @@ func init() { func init() { proto.RegisterFile("lbm/token/v1/tx.proto", fileDescriptor_8bca67047bb82568) } var fileDescriptor_8bca67047bb82568 = []byte{ - // 839 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0xcd, 0x4e, 0xdb, 0x4a, - 0x14, 0x8e, 0xe3, 0x24, 0x84, 0x03, 0xe2, 0xc7, 0xfc, 0x19, 0x03, 0x4e, 0xae, 0x25, 0x74, 0x73, - 0x91, 0x6e, 0x22, 0x60, 0x71, 0x37, 0x48, 0x57, 0x64, 0xd1, 0x0a, 0xa4, 0xa8, 0x55, 0xda, 0x15, - 0x52, 0xd5, 0x3a, 0xc9, 0xe0, 0xb8, 0x89, 0x3d, 0x91, 0x67, 0x42, 0x49, 0xbb, 0xef, 0xa2, 0xab, - 0xae, 0xfb, 0x04, 0x5d, 0xf5, 0x11, 0xba, 0x66, 0xc9, 0xb2, 0xea, 0x02, 0xb5, 0xe1, 0x0d, 0xfa, - 0x04, 0x95, 0x27, 0xf6, 0xd4, 0x8e, 0x0d, 0xa6, 0x85, 0x4a, 0xdd, 0xcd, 0x9c, 0xdf, 0xef, 0x9c, - 0x39, 0xfe, 0x8e, 0x61, 0xa9, 0xdb, 0xb0, 0x2a, 0x14, 0x77, 0x90, 0x5d, 0x39, 0xd9, 0xae, 0xd0, - 0xd3, 0x72, 0xcf, 0xc1, 0x14, 0x4b, 0xd3, 0xdd, 0x86, 0x55, 0x66, 0xe2, 0xf2, 0xc9, 0xb6, 0xb2, - 0x68, 0x60, 0x03, 0x33, 0x45, 0xc5, 0x3d, 0x8d, 0x6c, 0x14, 0x39, 0xec, 0xca, 0x8c, 0x99, 0x46, - 0x7b, 0x27, 0xc0, 0x44, 0x8d, 0x18, 0x8f, 0x90, 0xdd, 0x92, 0x0a, 0x30, 0xd5, 0xc4, 0x36, 0x75, - 0xf4, 0x26, 0x7d, 0x6a, 0xb6, 0x64, 0xa1, 0x28, 0x94, 0x26, 0xeb, 0xe0, 0x8b, 0x0e, 0x5a, 0x92, - 0x04, 0x99, 0x63, 0x07, 0x5b, 0x72, 0x9a, 0x69, 0xd8, 0x59, 0x9a, 0x81, 0x34, 0xc5, 0xb2, 0xc8, - 0x24, 0x69, 0x8a, 0xa5, 0x43, 0xc8, 0xe9, 0x16, 0xee, 0xdb, 0x54, 0xce, 0xb8, 0xb2, 0xea, 0xce, - 0xd9, 0x45, 0x21, 0xf5, 0xf9, 0xa2, 0xb0, 0x65, 0x98, 0xb4, 0xdd, 0x6f, 0x94, 0x9b, 0xd8, 0xaa, - 0xdc, 0x33, 0x6d, 0xd2, 0x6c, 0x9b, 0x7a, 0xe5, 0xd8, 0x3b, 0xfc, 0x4b, 0x5a, 0x9d, 0x0a, 0x1d, - 0xf4, 0x10, 0x29, 0x1f, 0xd8, 0xb4, 0xee, 0x45, 0xd0, 0xe6, 0x61, 0xd6, 0xc3, 0x56, 0x47, 0xa4, - 0x87, 0x6d, 0x82, 0xb4, 0x8f, 0x02, 0x93, 0x3d, 0xe8, 0x21, 0x47, 0xa7, 0xd8, 0xb9, 0x19, 0x6e, - 0x05, 0xf2, 0xd8, 0x73, 0xf0, 0xb0, 0xf3, 0x3b, 0xaf, 0x49, 0x8c, 0xd4, 0x94, 0x89, 0xa9, 0x29, - 0x7b, 0xeb, 0x9a, 0x56, 0x61, 0x65, 0x0c, 0x3f, 0xaf, 0xad, 0x0d, 0xf3, 0x35, 0x62, 0xd4, 0xd1, - 0x09, 0xee, 0x20, 0xdf, 0x20, 0xb9, 0xb8, 0x65, 0xc8, 0xb5, 0x71, 0xb7, 0x85, 0xfc, 0xd2, 0xbc, - 0x5b, 0xa8, 0x68, 0x31, 0x5c, 0xb4, 0xb6, 0x06, 0xab, 0x91, 0x4c, 0x1c, 0x46, 0x07, 0x16, 0x6b, - 0xc4, 0xd8, 0xef, 0xd3, 0x36, 0x76, 0xcc, 0x97, 0xbf, 0x19, 0x89, 0x0a, 0xeb, 0x71, 0xc9, 0x38, - 0x98, 0xd7, 0x69, 0xc8, 0xd7, 0x88, 0x71, 0x40, 0x48, 0x1f, 0xb9, 0x6f, 0x65, 0xeb, 0x16, 0xf2, - 0x52, 0xb3, 0xb3, 0x9b, 0x94, 0x0c, 0xac, 0x06, 0xee, 0xfa, 0x49, 0x47, 0x37, 0x69, 0x0e, 0xc4, - 0xbe, 0x63, 0x7a, 0xf9, 0xdc, 0xa3, 0xeb, 0x6d, 0x21, 0xaa, 0x7b, 0xef, 0xca, 0xce, 0x2e, 0xb4, - 0x16, 0x6a, 0x9a, 0x96, 0xde, 0x25, 0xec, 0x6d, 0xb3, 0x75, 0x7e, 0x77, 0x75, 0x96, 0x69, 0x53, - 0xbd, 0xd1, 0x45, 0x72, 0xae, 0x28, 0x94, 0xf2, 0x75, 0x7e, 0x97, 0x16, 0x21, 0x8b, 0x5f, 0xd8, - 0xc8, 0x91, 0x27, 0x58, 0xb0, 0xd1, 0xc5, 0x9b, 0x9b, 0x7c, 0xcc, 0xdc, 0x4c, 0xde, 0x7a, 0x6e, - 0x76, 0x61, 0xce, 0xef, 0x83, 0xdf, 0x9c, 0xc4, 0x17, 0xd1, 0x06, 0x20, 0xd5, 0x88, 0x71, 0xdf, - 0xd1, 0x6d, 0xfa, 0x10, 0x39, 0x96, 0x49, 0x88, 0x89, 0xed, 0xbb, 0xf9, 0xce, 0x55, 0x80, 0x1e, - 0x0f, 0xe9, 0xf5, 0x34, 0x20, 0xd1, 0xd6, 0x41, 0x89, 0xa6, 0xe6, 0xcf, 0xfa, 0x1c, 0x16, 0xf8, - 0x00, 0xde, 0x16, 0x59, 0x18, 0x89, 0x18, 0x41, 0xb2, 0x01, 0x6b, 0x31, 0xb9, 0x38, 0x14, 0x8f, - 0x01, 0x6b, 0xa6, 0x4d, 0xff, 0x54, 0x06, 0x74, 0xb1, 0x71, 0xbc, 0x6f, 0x46, 0x78, 0xab, 0x7d, - 0xe7, 0x17, 0xfb, 0xf5, 0x03, 0x9f, 0x78, 0x47, 0xf8, 0x5c, 0x2c, 0x1c, 0xdf, 0x87, 0x30, 0x43, - 0xdf, 0x0c, 0xe7, 0xcf, 0x32, 0xf4, 0x5d, 0xf6, 0x38, 0xcc, 0xc8, 0xa1, 0x5a, 0x5e, 0xc1, 0xa4, - 0xdb, 0x7e, 0xdc, 0x32, 0x8f, 0x07, 0xc9, 0x45, 0x70, 0x52, 0x48, 0x07, 0x49, 0xe1, 0x3f, 0x98, - 0x68, 0xb6, 0x75, 0xdb, 0x40, 0x44, 0x16, 0x8b, 0x62, 0x69, 0x6a, 0x67, 0xa5, 0x1c, 0xdc, 0xd8, - 0xe5, 0x7d, 0x4a, 0x1d, 0xb3, 0xd1, 0xa7, 0xa8, 0x9a, 0x71, 0x8b, 0xa8, 0xfb, 0xd6, 0xda, 0x02, - 0x5b, 0x07, 0xa3, 0xe4, 0x3e, 0xa2, 0x9d, 0x6f, 0x39, 0x10, 0x6b, 0xc4, 0x90, 0xf6, 0x20, 0xc3, - 0x76, 0xdf, 0x52, 0x38, 0x98, 0xb7, 0x2e, 0x95, 0x8d, 0x58, 0x31, 0x27, 0x8e, 0xc7, 0x30, 0x1d, - 0xda, 0xa0, 0x51, 0xf3, 0xa0, 0x5a, 0xd9, 0xbc, 0x56, 0xcd, 0xa3, 0x1e, 0xc1, 0xcc, 0xf8, 0xf2, - 0x8a, 0x38, 0x86, 0x0d, 0x94, 0xbf, 0x13, 0x0c, 0x78, 0xec, 0x26, 0xcc, 0x47, 0x37, 0x92, 0x16, - 0xf1, 0x8e, 0xd8, 0x28, 0x5b, 0xc9, 0x36, 0x3c, 0xc9, 0xff, 0x90, 0x1d, 0x2d, 0x9a, 0xe5, 0x88, - 0x13, 0x93, 0x2b, 0x6a, 0xbc, 0x9c, 0x07, 0x78, 0x02, 0xb3, 0xe3, 0x64, 0x5b, 0x8c, 0xb8, 0x8c, - 0x59, 0x28, 0xa5, 0x24, 0x0b, 0x1e, 0xfe, 0x19, 0xcc, 0x45, 0x28, 0xf3, 0xaf, 0x2b, 0x3a, 0x18, - 0x48, 0xf0, 0x4f, 0xa2, 0x09, 0xcf, 0xb0, 0x07, 0x19, 0x46, 0x84, 0xd1, 0xb1, 0x72, 0xc5, 0x31, - 0x63, 0x15, 0xa4, 0x26, 0xd7, 0x9b, 0x7d, 0xee, 0x51, 0x6f, 0x57, 0x1c, 0xe3, 0x1d, 0xfc, 0xd8, - 0x82, 0x43, 0xc9, 0xa2, 0x5c, 0x3d, 0x94, 0x2c, 0xda, 0xe6, 0xb5, 0x6a, 0x1e, 0xb5, 0x0a, 0x39, - 0xef, 0xfb, 0x5d, 0x89, 0x82, 0x67, 0x0a, 0xa5, 0x70, 0x85, 0xc2, 0x8f, 0x51, 0x3d, 0x3c, 0xfb, - 0xaa, 0xa6, 0xde, 0x0f, 0xd5, 0xd4, 0xd9, 0x50, 0x15, 0xce, 0x87, 0xaa, 0xf0, 0x65, 0xa8, 0x0a, - 0x6f, 0x2f, 0xd5, 0xd4, 0xf9, 0xa5, 0x9a, 0xfa, 0x74, 0xa9, 0xa6, 0x8e, 0x4a, 0x89, 0xbc, 0x73, - 0x3a, 0xfa, 0xed, 0x6e, 0xe4, 0xd8, 0x7f, 0xf7, 0xee, 0xf7, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5f, - 0xe5, 0x72, 0x1b, 0xce, 0x0b, 0x00, 0x00, + // 855 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0x4d, 0x6f, 0xd3, 0x48, + 0x18, 0x8e, 0xe3, 0x24, 0x4d, 0xdf, 0x56, 0xfd, 0xf0, 0xb6, 0x8d, 0xd7, 0xbb, 0x75, 0xd2, 0x48, + 0xd5, 0x66, 0x2b, 0x6d, 0xa2, 0x76, 0x0f, 0x95, 0x56, 0x95, 0x56, 0xcd, 0x01, 0xd4, 0x4a, 0x11, + 0x28, 0x70, 0xaa, 0x84, 0xc0, 0x49, 0xa6, 0x8e, 0xd5, 0xd8, 0x13, 0x79, 0x26, 0xa5, 0x45, 0x42, + 0x5c, 0x11, 0x07, 0xc4, 0x2f, 0xe0, 0xcc, 0x99, 0x9f, 0xc0, 0xa9, 0xc7, 0x1e, 0x11, 0x87, 0x0a, + 0xd2, 0x1f, 0xc1, 0x15, 0x79, 0x62, 0x1b, 0x4f, 0xc6, 0xad, 0x0b, 0x44, 0x88, 0xdb, 0xcc, 0xfb, + 0xf9, 0x3c, 0x33, 0xaf, 0x9f, 0x31, 0x2c, 0xf7, 0x5a, 0x76, 0x8d, 0xe2, 0x23, 0xe4, 0xd4, 0x8e, + 0x37, 0x6b, 0xf4, 0xa4, 0xda, 0x77, 0x31, 0xc5, 0xca, 0x6c, 0xaf, 0x65, 0x57, 0x99, 0xb9, 0x7a, + 0xbc, 0xa9, 0x2d, 0x99, 0xd8, 0xc4, 0xcc, 0x51, 0xf3, 0x56, 0xa3, 0x18, 0x4d, 0xe5, 0x53, 0x59, + 0x30, 0xf3, 0x94, 0x5f, 0x4b, 0x30, 0xd5, 0x20, 0xe6, 0x3d, 0xe4, 0x74, 0x94, 0x22, 0xcc, 0xb4, + 0xb1, 0x43, 0x5d, 0xa3, 0x4d, 0x1f, 0x5a, 0x1d, 0x55, 0x2a, 0x49, 0x95, 0xe9, 0x26, 0x04, 0xa6, + 0xbd, 0x8e, 0xa2, 0x40, 0xe6, 0xd0, 0xc5, 0xb6, 0x9a, 0x66, 0x1e, 0xb6, 0x56, 0xe6, 0x20, 0x4d, + 0xb1, 0x2a, 0x33, 0x4b, 0x9a, 0x62, 0x65, 0x1f, 0x72, 0x86, 0x8d, 0x07, 0x0e, 0x55, 0x33, 0x9e, + 0xad, 0xbe, 0x75, 0x76, 0x51, 0x4c, 0x7d, 0xb8, 0x28, 0x6e, 0x98, 0x16, 0xed, 0x0e, 0x5a, 0xd5, + 0x36, 0xb6, 0x6b, 0xb7, 0x2c, 0x87, 0xb4, 0xbb, 0x96, 0x51, 0x3b, 0xf4, 0x17, 0xff, 0x90, 0xce, + 0x51, 0x8d, 0x9e, 0xf6, 0x11, 0xa9, 0xee, 0x39, 0xb4, 0xe9, 0x57, 0xf8, 0x2f, 0xad, 0x4a, 0xe5, + 0x65, 0x98, 0xf7, 0xf1, 0x35, 0x11, 0xe9, 0x63, 0x87, 0x20, 0x66, 0x7e, 0x27, 0x31, 0xfb, 0x9d, + 0x3e, 0x72, 0x0d, 0x8a, 0xdd, 0x9b, 0xe1, 0xd7, 0x20, 0x8f, 0xfd, 0x04, 0x9f, 0x43, 0xb8, 0x0f, + 0xb9, 0xc9, 0x02, 0xb7, 0x4c, 0x0c, 0xb7, 0xec, 0x44, 0xb8, 0xad, 0x42, 0x61, 0x8c, 0x03, 0xc7, + 0xb1, 0x07, 0x8b, 0x0d, 0x62, 0x36, 0xd1, 0x31, 0x3e, 0x42, 0x41, 0x50, 0x32, 0xc9, 0x15, 0xc8, + 0x75, 0x71, 0xaf, 0x83, 0x02, 0x8a, 0xfe, 0x8e, 0x23, 0x2f, 0xf3, 0xe4, 0x59, 0xb7, 0x22, 0xfc, + 0x2e, 0x74, 0xe3, 0xe0, 0x60, 0x58, 0x6a, 0x10, 0x73, 0x77, 0x40, 0xbb, 0xd8, 0xb5, 0x9e, 0xfc, + 0x04, 0x44, 0x65, 0xf8, 0x33, 0xae, 0x21, 0x07, 0xea, 0x45, 0x1a, 0xf2, 0x0d, 0x62, 0xee, 0x11, + 0x32, 0x40, 0xde, 0x1d, 0x3a, 0x86, 0x8d, 0x7c, 0x08, 0x6c, 0xed, 0x35, 0x27, 0xa7, 0x76, 0x0b, + 0xf7, 0x82, 0xe6, 0xa3, 0x9d, 0xb2, 0x00, 0xf2, 0xc0, 0xb5, 0xfc, 0xbe, 0xde, 0xd2, 0xcb, 0xb6, + 0x11, 0x35, 0xfc, 0xfb, 0x66, 0x6b, 0x0f, 0x62, 0x07, 0xb5, 0x2d, 0xdb, 0xe8, 0x11, 0x76, 0xe7, + 0xd9, 0x66, 0xb8, 0xf7, 0x7c, 0xb6, 0xe5, 0x50, 0xa3, 0xd5, 0x43, 0x6a, 0xae, 0x24, 0x55, 0xf2, + 0xcd, 0x70, 0xaf, 0x2c, 0x41, 0x16, 0x3f, 0x76, 0x90, 0xab, 0x4e, 0xb1, 0x62, 0xa3, 0x8d, 0x3f, + 0x4f, 0xf9, 0x98, 0x79, 0x9a, 0x9e, 0xc8, 0x3c, 0x6d, 0xc3, 0x42, 0x70, 0x16, 0xc1, 0x21, 0x25, + 0xde, 0x0e, 0x4b, 0x7c, 0x0a, 0x4a, 0x83, 0x98, 0xb7, 0x5d, 0xc3, 0xa1, 0x77, 0x91, 0x6b, 0x5b, + 0x84, 0x58, 0xd8, 0x99, 0x8c, 0x1e, 0xe8, 0x00, 0xfd, 0xb0, 0xa4, 0x7f, 0xb6, 0x11, 0x0b, 0x6b, + 0x5f, 0x02, 0x4d, 0x6c, 0xcf, 0x5d, 0xb3, 0x03, 0xbf, 0x85, 0xc3, 0xf9, 0xa3, 0x08, 0x79, 0x44, + 0x72, 0x2c, 0xa2, 0x35, 0xf8, 0x23, 0xa6, 0x1f, 0x07, 0xc9, 0x57, 0xce, 0x86, 0xe5, 0xd0, 0x5f, + 0x59, 0x39, 0x3d, 0x7c, 0x1c, 0xee, 0x97, 0x23, 0xdc, 0xf5, 0x81, 0xfb, 0x9d, 0xe7, 0xf7, 0x15, + 0xa7, 0x3c, 0x41, 0x9c, 0x1e, 0x1e, 0x0e, 0xe7, 0x5b, 0x5e, 0xe1, 0x6f, 0x86, 0xf7, 0x5b, 0x15, + 0x7e, 0xd2, 0x67, 0xce, 0x2b, 0xba, 0xc0, 0xe9, 0x19, 0x4c, 0x7b, 0x57, 0x82, 0x3b, 0xd6, 0xe1, + 0x69, 0x32, 0x99, 0x50, 0x44, 0xd2, 0x51, 0x11, 0xd9, 0x86, 0xa9, 0x76, 0xd7, 0x70, 0x4c, 0x44, + 0x54, 0xb9, 0x24, 0x57, 0x66, 0xb6, 0x0a, 0xd5, 0xe8, 0x1f, 0x40, 0x75, 0x97, 0x52, 0xd7, 0x6a, + 0x0d, 0x28, 0xaa, 0x67, 0x3c, 0x32, 0xcd, 0x20, 0x9a, 0x01, 0x28, 0xb0, 0x27, 0x65, 0x04, 0x20, + 0x8a, 0x6c, 0xeb, 0x73, 0x0e, 0xe4, 0x06, 0x31, 0x95, 0x1d, 0xc8, 0xb0, 0xb7, 0x74, 0x99, 0x2f, + 0xea, 0x3f, 0xc1, 0xda, 0x6a, 0xac, 0x39, 0x14, 0x9b, 0xfb, 0x30, 0xcb, 0xbd, 0xc8, 0x62, 0x78, + 0xd4, 0xad, 0xad, 0x5f, 0xeb, 0x0e, 0xab, 0x1e, 0xc0, 0xdc, 0xf8, 0x23, 0x28, 0x24, 0xf2, 0x01, + 0xda, 0x5f, 0x09, 0x01, 0x61, 0xed, 0x36, 0x2c, 0x8a, 0x2f, 0x5a, 0x59, 0xc8, 0x16, 0x62, 0xb4, + 0x8d, 0xe4, 0x98, 0xb0, 0xc9, 0xff, 0x90, 0x1d, 0x3d, 0x50, 0x2b, 0x42, 0x12, 0xb3, 0x6b, 0x7a, + 0xbc, 0x3d, 0x2c, 0xf0, 0x00, 0xe6, 0xc7, 0xc5, 0xb9, 0x24, 0xa4, 0x8c, 0x45, 0x68, 0x95, 0xa4, + 0x88, 0xb0, 0xfc, 0x23, 0x58, 0x10, 0xa4, 0x75, 0xed, 0x8a, 0x13, 0x8c, 0x34, 0xf8, 0x3b, 0x31, + 0x24, 0xec, 0xb0, 0x03, 0x19, 0x26, 0x94, 0xe2, 0x58, 0x79, 0xe6, 0x98, 0xb1, 0x8a, 0xca, 0x96, + 0x97, 0xcd, 0x3e, 0x7f, 0x31, 0xdb, 0x33, 0xc7, 0x64, 0x47, 0x3f, 0xbc, 0xe8, 0x50, 0xb2, 0x2a, + 0x57, 0x0f, 0x25, 0xab, 0xb6, 0x7e, 0xad, 0x3b, 0xac, 0x5a, 0x87, 0x9c, 0xff, 0x1d, 0x17, 0x44, + 0xf0, 0xcc, 0xa1, 0x15, 0xaf, 0x70, 0x04, 0x35, 0x34, 0xf9, 0x79, 0x5a, 0xaa, 0xef, 0x9f, 0x7d, + 0xd2, 0x53, 0x6f, 0x86, 0x7a, 0xea, 0x6c, 0xa8, 0x4b, 0xe7, 0x43, 0x5d, 0xfa, 0x38, 0xd4, 0xa5, + 0x57, 0x97, 0x7a, 0xea, 0xfc, 0x52, 0x4f, 0xbd, 0xbf, 0xd4, 0x53, 0x07, 0x95, 0x44, 0x31, 0x3a, + 0x19, 0xfd, 0xd3, 0xb7, 0x72, 0xec, 0xa7, 0xfe, 0xdf, 0x2f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x19, + 0x7c, 0x45, 0x23, 0x2b, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1057,6 +1102,8 @@ const _ = grpc.SupportPackageIsVersion4 // MsgClient is the client API for Msg service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. +// +// Deprecated: Do not use. type MsgClient interface { // Send defines a method to send tokens from one account to another account. // Fires: @@ -1123,6 +1170,7 @@ type msgClient struct { cc grpc1.ClientConn } +// Deprecated: Do not use. func NewMsgClient(cc grpc1.ClientConn) MsgClient { return &msgClient{cc} } @@ -1227,6 +1275,8 @@ func (c *msgClient) Modify(ctx context.Context, in *MsgModify, opts ...grpc.Call } // MsgServer is the server API for Msg service. +// +// Deprecated: Do not use. type MsgServer interface { // Send defines a method to send tokens from one account to another account. // Fires: @@ -1289,6 +1339,7 @@ type MsgServer interface { Modify(context.Context, *MsgModify) (*MsgModifyResponse, error) } +// Deprecated: Do not use. // UnimplementedMsgServer can be embedded to have forward compatible implementations. type UnimplementedMsgServer struct { } @@ -1327,6 +1378,7 @@ func (*UnimplementedMsgServer) Modify(ctx context.Context, req *MsgModify) (*Msg return nil, status.Errorf(codes.Unimplemented, "method Modify not implemented") } +// Deprecated: Do not use. func RegisterMsgServer(s grpc1.Server, srv MsgServer) { s.RegisterService(&_Msg_serviceDesc, srv) }