diff --git a/api/cosmos/nft/v1beta1/query.pulsar.go b/api/cosmos/nft/v1beta1/query.pulsar.go index 5f0101a7084d..764855b26a88 100644 --- a/api/cosmos/nft/v1beta1/query.pulsar.go +++ b/api/cosmos/nft/v1beta1/query.pulsar.go @@ -10998,6 +10998,8 @@ func (x *QueryBalanceRequest) GetOwner() string { } // QueryBalanceByQueryStringRequest is the request type for the Query/Balance RPC method +// +// Since: nft v0.1.1 type QueryBalanceByQueryStringRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -11081,6 +11083,8 @@ func (x *QueryBalanceResponse) GetAmount() uint64 { } // QueryBalanceByQueryStringResponse is the response type for the Query/Balance RPC method +// +// Since: nft v0.1.1 type QueryBalanceByQueryStringResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -11164,6 +11168,8 @@ func (x *QueryOwnerRequest) GetId() string { } // QueryOwnerByQueryStringRequest is the request type for the Query/Owner RPC method +// +// Since: nft v0.1.1 type QueryOwnerByQueryStringRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -11247,6 +11253,8 @@ func (x *QueryOwnerResponse) GetOwner() string { } // QueryOwnerByQueryStringResponse is the response type for the Query/Owner RPC method +// +// Since: nft v0.1.1 type QueryOwnerByQueryStringResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -11321,6 +11329,8 @@ func (x *QuerySupplyRequest) GetClassId() string { } // QuerySupplyByQueryStringRequest is the request type for the Query/Supply RPC method +// +// Since: nft v0.1.1 type QuerySupplyByQueryStringRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -11395,6 +11405,8 @@ func (x *QuerySupplyResponse) GetAmount() uint64 { } // QuerySupplyByQueryStringResponse is the response type for the Query/Supply RPC method +// +// Since: nft v0.1.1 type QuerySupplyByQueryStringResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -11579,6 +11591,8 @@ func (x *QueryNFTRequest) GetId() string { } // QueryNFTByQueryStringRequest is the request type for the Query/NFT RPC method +// +// Since: nft v0.1.1 type QueryNFTByQueryStringRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -11662,6 +11676,8 @@ func (x *QueryNFTResponse) GetNft() *NFT { } // QueryNFTByQueryStringResponse is the response type for the Query/NFT RPC method +// +// Since: nft v0.1.1 type QueryNFTByQueryStringResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -11736,6 +11752,8 @@ func (x *QueryClassRequest) GetClassId() string { } // QueryClassByQueryStringRequest is the request type for the Query/Class RPC method +// +// Since: nft v0.1.1 type QueryClassByQueryStringRequest struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache @@ -11810,6 +11828,8 @@ func (x *QueryClassResponse) GetClass() *Class { } // QueryClassByQueryStringResponse is the response type for the Query/Class RPC method +// +// Since: nft v0.1.1 type QueryClassByQueryStringResponse struct { state protoimpl.MessageState sizeCache protoimpl.SizeCache diff --git a/api/cosmos/nft/v1beta1/query_grpc.pb.go b/api/cosmos/nft/v1beta1/query_grpc.pb.go index d25acc384af2..df71c4359a94 100644 --- a/api/cosmos/nft/v1beta1/query_grpc.pb.go +++ b/api/cosmos/nft/v1beta1/query_grpc.pb.go @@ -40,14 +40,20 @@ type QueryClient interface { // Balance queries the number of NFTs of a given class owned by the owner, same as balanceOf in ERC721 Balance(ctx context.Context, in *QueryBalanceRequest, opts ...grpc.CallOption) (*QueryBalanceResponse, error) // BalancebyQueryString queries the number of NFTs of a given class owned by the owner, same as balanceOf in ERC721 + // + // Since: nft v0.1.1 BalanceByQueryString(ctx context.Context, in *QueryBalanceByQueryStringRequest, opts ...grpc.CallOption) (*QueryBalanceByQueryStringResponse, error) // Owner queries the owner of the NFT based on its class and id, same as ownerOf in ERC721 Owner(ctx context.Context, in *QueryOwnerRequest, opts ...grpc.CallOption) (*QueryOwnerResponse, error) // OwnerByQueryString queries the owner of the NFT based on its class and id, same as ownerOf in ERC721 + // + // Since: nft v0.1.1 OwnerByQueryString(ctx context.Context, in *QueryOwnerByQueryStringRequest, opts ...grpc.CallOption) (*QueryOwnerByQueryStringResponse, error) // Supply queries the number of NFTs from the given class, same as totalSupply of ERC721. Supply(ctx context.Context, in *QuerySupplyRequest, opts ...grpc.CallOption) (*QuerySupplyResponse, error) // SupplyByQueryString queries the number of NFTs from the given class, same as totalSupply of ERC721. + // + // Since: nft v0.1.1 SupplyByQueryString(ctx context.Context, in *QuerySupplyByQueryStringRequest, opts ...grpc.CallOption) (*QuerySupplyByQueryStringResponse, error) // NFTs queries all NFTs of a given class or owner,choose at least one of the two, similar to tokenByIndex in // ERC721Enumerable @@ -55,10 +61,14 @@ type QueryClient interface { // NFT queries an NFT based on its class and id. NFT(ctx context.Context, in *QueryNFTRequest, opts ...grpc.CallOption) (*QueryNFTResponse, error) // NFTByQueryString queries an NFT based on its class and id. + // + // Since: nft v0.1.1 NFTByQueryString(ctx context.Context, in *QueryNFTByQueryStringRequest, opts ...grpc.CallOption) (*QueryNFTByQueryStringResponse, error) // Class queries an NFT class based on its id Class(ctx context.Context, in *QueryClassRequest, opts ...grpc.CallOption) (*QueryClassResponse, error) // Class queries an NFT class based on its id + // + // Since: nft v0.1.1 ClassByQueryString(ctx context.Context, in *QueryClassByQueryStringRequest, opts ...grpc.CallOption) (*QueryClassByQueryStringResponse, error) // Classes queries all NFT classes Classes(ctx context.Context, in *QueryClassesRequest, opts ...grpc.CallOption) (*QueryClassesResponse, error) @@ -187,14 +197,20 @@ type QueryServer interface { // Balance queries the number of NFTs of a given class owned by the owner, same as balanceOf in ERC721 Balance(context.Context, *QueryBalanceRequest) (*QueryBalanceResponse, error) // BalancebyQueryString queries the number of NFTs of a given class owned by the owner, same as balanceOf in ERC721 + // + // Since: nft v0.1.1 BalanceByQueryString(context.Context, *QueryBalanceByQueryStringRequest) (*QueryBalanceByQueryStringResponse, error) // Owner queries the owner of the NFT based on its class and id, same as ownerOf in ERC721 Owner(context.Context, *QueryOwnerRequest) (*QueryOwnerResponse, error) // OwnerByQueryString queries the owner of the NFT based on its class and id, same as ownerOf in ERC721 + // + // Since: nft v0.1.1 OwnerByQueryString(context.Context, *QueryOwnerByQueryStringRequest) (*QueryOwnerByQueryStringResponse, error) // Supply queries the number of NFTs from the given class, same as totalSupply of ERC721. Supply(context.Context, *QuerySupplyRequest) (*QuerySupplyResponse, error) // SupplyByQueryString queries the number of NFTs from the given class, same as totalSupply of ERC721. + // + // Since: nft v0.1.1 SupplyByQueryString(context.Context, *QuerySupplyByQueryStringRequest) (*QuerySupplyByQueryStringResponse, error) // NFTs queries all NFTs of a given class or owner,choose at least one of the two, similar to tokenByIndex in // ERC721Enumerable @@ -202,10 +218,14 @@ type QueryServer interface { // NFT queries an NFT based on its class and id. NFT(context.Context, *QueryNFTRequest) (*QueryNFTResponse, error) // NFTByQueryString queries an NFT based on its class and id. + // + // Since: nft v0.1.1 NFTByQueryString(context.Context, *QueryNFTByQueryStringRequest) (*QueryNFTByQueryStringResponse, error) // Class queries an NFT class based on its id Class(context.Context, *QueryClassRequest) (*QueryClassResponse, error) // Class queries an NFT class based on its id + // + // Since: nft v0.1.1 ClassByQueryString(context.Context, *QueryClassByQueryStringRequest) (*QueryClassByQueryStringResponse, error) // Classes queries all NFT classes Classes(context.Context, *QueryClassesRequest) (*QueryClassesResponse, error) diff --git a/api/cosmos/tx/v1beta1/tx.pulsar.go b/api/cosmos/tx/v1beta1/tx.pulsar.go index 4b00dac60a64..362609bcfc0f 100644 --- a/api/cosmos/tx/v1beta1/tx.pulsar.go +++ b/api/cosmos/tx/v1beta1/tx.pulsar.go @@ -8329,7 +8329,7 @@ type SignDocDirectAux struct { AccountNumber uint64 `protobuf:"varint,4,opt,name=account_number,json=accountNumber,proto3" json:"account_number,omitempty"` // sequence is the sequence number of the signing account. Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"` - // tips have been depreacted and should not be used + // tips have been deprecated and should not be used // // Deprecated: Do not use. Tip *Tip `protobuf:"bytes,6,opt,name=tip,proto3" json:"tip,omitempty"` diff --git a/proto/cosmos/tx/v1beta1/tx.proto b/proto/cosmos/tx/v1beta1/tx.proto index cfaac70449f4..4d8b290bddd7 100644 --- a/proto/cosmos/tx/v1beta1/tx.proto +++ b/proto/cosmos/tx/v1beta1/tx.proto @@ -88,7 +88,7 @@ message SignDocDirectAux { // sequence is the sequence number of the signing account. uint64 sequence = 5; - // tips have been depreacted and should not be used + // tips have been deprecated and should not be used Tip tip = 6 [deprecated = true]; } diff --git a/testutil/testdata/query.pb.go b/testutil/testdata/query.pb.go index 0bb946d1a9a6..d104840c5dce 100644 --- a/testutil/testdata/query.pb.go +++ b/testutil/testdata/query.pb.go @@ -6,16 +6,15 @@ package testdata import ( context "context" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - types "github.com/cosmos/cosmos-sdk/codec/types" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/testutil/testdata/testdata.pb.go b/testutil/testdata/testdata.pb.go index 93017231c60c..3db89888b056 100644 --- a/testutil/testdata/testdata.pb.go +++ b/testutil/testdata/testdata.pb.go @@ -5,13 +5,12 @@ package testdata import ( fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - types "github.com/cosmos/cosmos-sdk/codec/types" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/testutil/testdata/testpb/query.pulsar.go b/testutil/testdata/testpb/query.pulsar.go index f4e9bad12663..9b2a04bab5cc 100644 --- a/testutil/testdata/testpb/query.pulsar.go +++ b/testutil/testdata/testpb/query.pulsar.go @@ -3,15 +3,14 @@ package testpb import ( fmt "fmt" - io "io" - reflect "reflect" - sync "sync" - runtime "github.com/cosmos/cosmos-proto/runtime" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoiface "google.golang.org/protobuf/runtime/protoiface" protoimpl "google.golang.org/protobuf/runtime/protoimpl" anypb "google.golang.org/protobuf/types/known/anypb" + io "io" + reflect "reflect" + sync "sync" ) var ( diff --git a/testutil/testdata/testpb/query_grpc.pb.go b/testutil/testdata/testpb/query_grpc.pb.go index e01aae23a5c3..565a93499d4b 100644 --- a/testutil/testdata/testpb/query_grpc.pb.go +++ b/testutil/testdata/testpb/query_grpc.pb.go @@ -8,7 +8,6 @@ package testpb import ( context "context" - grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" diff --git a/testutil/testdata/testpb/testdata.pulsar.go b/testutil/testdata/testpb/testdata.pulsar.go index 00473c4fd0e8..8802ea9cd312 100644 --- a/testutil/testdata/testpb/testdata.pulsar.go +++ b/testutil/testdata/testpb/testdata.pulsar.go @@ -3,16 +3,15 @@ package testpb import ( fmt "fmt" - io "io" - reflect "reflect" - sync "sync" - runtime "github.com/cosmos/cosmos-proto/runtime" _ "github.com/cosmos/gogoproto/gogoproto" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoiface "google.golang.org/protobuf/runtime/protoiface" protoimpl "google.golang.org/protobuf/runtime/protoimpl" anypb "google.golang.org/protobuf/types/known/anypb" + io "io" + reflect "reflect" + sync "sync" ) var ( diff --git a/testutil/testdata/testpb/tx.pulsar.go b/testutil/testdata/testpb/tx.pulsar.go index d1a26a980dc6..5e4213c4802a 100644 --- a/testutil/testdata/testpb/tx.pulsar.go +++ b/testutil/testdata/testpb/tx.pulsar.go @@ -2,18 +2,17 @@ package testpb import ( - fmt "fmt" - io "io" - reflect "reflect" - sync "sync" - _ "cosmossdk.io/api/amino" _ "cosmossdk.io/api/cosmos/msg/v1" + fmt "fmt" runtime "github.com/cosmos/cosmos-proto/runtime" _ "github.com/cosmos/gogoproto/gogoproto" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoiface "google.golang.org/protobuf/runtime/protoiface" protoimpl "google.golang.org/protobuf/runtime/protoimpl" + io "io" + reflect "reflect" + sync "sync" ) var ( diff --git a/testutil/testdata/testpb/tx_grpc.pb.go b/testutil/testdata/testpb/tx_grpc.pb.go index 103111c993a2..3971c84d770a 100644 --- a/testutil/testdata/testpb/tx_grpc.pb.go +++ b/testutil/testdata/testpb/tx_grpc.pb.go @@ -8,7 +8,6 @@ package testpb import ( context "context" - grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" diff --git a/testutil/testdata/testpb/unknonwnproto.pulsar.go b/testutil/testdata/testpb/unknonwnproto.pulsar.go index 5e5c214b36f5..84dbe6fbdb53 100644 --- a/testutil/testdata/testpb/unknonwnproto.pulsar.go +++ b/testutil/testdata/testpb/unknonwnproto.pulsar.go @@ -2,21 +2,20 @@ package testpb import ( + v1beta1 "cosmossdk.io/api/cosmos/tx/v1beta1" binary "encoding/binary" fmt "fmt" - io "io" - math "math" - reflect "reflect" - sort "sort" - sync "sync" - - v1beta1 "cosmossdk.io/api/cosmos/tx/v1beta1" runtime "github.com/cosmos/cosmos-proto/runtime" _ "github.com/cosmos/gogoproto/gogoproto" protoreflect "google.golang.org/protobuf/reflect/protoreflect" protoiface "google.golang.org/protobuf/runtime/protoiface" protoimpl "google.golang.org/protobuf/runtime/protoimpl" anypb "google.golang.org/protobuf/types/known/anypb" + io "io" + math "math" + reflect "reflect" + sort "sort" + sync "sync" ) var ( diff --git a/testutil/testdata/tx.pb.go b/testutil/testdata/tx.pb.go index 70ed5f9952b7..e2d416faa41e 100644 --- a/testutil/testdata/tx.pb.go +++ b/testutil/testdata/tx.pb.go @@ -6,10 +6,6 @@ package testdata import ( context "context" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - _ "github.com/cosmos/cosmos-sdk/types/msgservice" _ "github.com/cosmos/cosmos-sdk/types/tx/amino" _ "github.com/cosmos/gogoproto/gogoproto" @@ -18,6 +14,9 @@ import ( grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/testutil/testdata/unknonwnproto.pb.go b/testutil/testdata/unknonwnproto.pb.go index 69d4059c44ef..3522a7253598 100644 --- a/testutil/testdata/unknonwnproto.pb.go +++ b/testutil/testdata/unknonwnproto.pb.go @@ -6,14 +6,13 @@ package testdata import ( encoding_binary "encoding/binary" fmt "fmt" - io "io" - math "math" - math_bits "math/bits" - types "github.com/cosmos/cosmos-sdk/codec/types" tx "github.com/cosmos/cosmos-sdk/types/tx" _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" + io "io" + math "math" + math_bits "math/bits" ) // Reference imports to suppress errors if they are not otherwise used. diff --git a/types/tx/tx.pb.go b/types/tx/tx.pb.go index 8173108d3904..c6fbf063309e 100644 --- a/types/tx/tx.pb.go +++ b/types/tx/tx.pb.go @@ -264,7 +264,7 @@ type SignDocDirectAux struct { AccountNumber uint64 `protobuf:"varint,4,opt,name=account_number,json=accountNumber,proto3" json:"account_number,omitempty"` // sequence is the sequence number of the signing account. Sequence uint64 `protobuf:"varint,5,opt,name=sequence,proto3" json:"sequence,omitempty"` - // tips have been depreacted and should not be used + // tips have been deprecated and should not be used Tip *Tip `protobuf:"bytes,6,opt,name=tip,proto3" json:"tip,omitempty"` // Deprecated: Do not use. } diff --git a/x/nft/query.pb.go b/x/nft/query.pb.go index e6ef5e297c83..523f9409f732 100644 --- a/x/nft/query.pb.go +++ b/x/nft/query.pb.go @@ -85,6 +85,8 @@ func (m *QueryBalanceRequest) GetOwner() string { } // QueryBalanceByQueryStringRequest is the request type for the Query/Balance RPC method +// +// Since: nft v0.1.1 type QueryBalanceByQueryStringRequest struct { // class_id associated with the nft ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"` @@ -186,6 +188,8 @@ func (m *QueryBalanceResponse) GetAmount() uint64 { } // QueryBalanceByQueryStringResponse is the response type for the Query/Balance RPC method +// +// Since: nft v0.1.1 type QueryBalanceByQueryStringResponse struct { // amount is the number of all NFTs of a given class owned by the owner Amount uint64 `protobuf:"varint,1,opt,name=amount,proto3" json:"amount,omitempty"` @@ -287,6 +291,8 @@ func (m *QueryOwnerRequest) GetId() string { } // QueryOwnerByQueryStringRequest is the request type for the Query/Owner RPC method +// +// Since: nft v0.1.1 type QueryOwnerByQueryStringRequest struct { // class_id associated with the nft ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"` @@ -388,6 +394,8 @@ func (m *QueryOwnerResponse) GetOwner() string { } // QueryOwnerByQueryStringResponse is the response type for the Query/Owner RPC method +// +// Since: nft v0.1.1 type QueryOwnerByQueryStringResponse struct { // owner is the owner address of the nft Owner string `protobuf:"bytes,1,opt,name=owner,proto3" json:"owner,omitempty"` @@ -480,6 +488,8 @@ func (m *QuerySupplyRequest) GetClassId() string { } // QuerySupplyByQueryStringRequest is the request type for the Query/Supply RPC method +// +// Since: nft v0.1.1 type QuerySupplyByQueryStringRequest struct { // class_id associated with the nft ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"` @@ -572,6 +582,8 @@ func (m *QuerySupplyResponse) GetAmount() uint64 { } // QuerySupplyByQueryStringResponse is the response type for the Query/Supply RPC method +// +// Since: nft v0.1.1 type QuerySupplyByQueryStringResponse struct { // amount is the number of all NFTs from the given class Amount uint64 `protobuf:"varint,1,opt,name=amount,proto3" json:"amount,omitempty"` @@ -792,6 +804,8 @@ func (m *QueryNFTRequest) GetId() string { } // QueryNFTByQueryStringRequest is the request type for the Query/NFT RPC method +// +// Since: nft v0.1.1 type QueryNFTByQueryStringRequest struct { // class_id associated with the nft ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"` @@ -893,6 +907,8 @@ func (m *QueryNFTResponse) GetNft() *NFT { } // QueryNFTByQueryStringResponse is the response type for the Query/NFT RPC method +// +// Since: nft v0.1.1 type QueryNFTByQueryStringResponse struct { // owner is the owner address of the nft Nft *NFT `protobuf:"bytes,1,opt,name=nft,proto3" json:"nft,omitempty"` @@ -985,6 +1001,8 @@ func (m *QueryClassRequest) GetClassId() string { } // QueryClassByQueryStringRequest is the request type for the Query/Class RPC method +// +// Since: nft v0.1.1 type QueryClassByQueryStringRequest struct { // class_id associated with the nft ClassId string `protobuf:"bytes,1,opt,name=class_id,json=classId,proto3" json:"class_id,omitempty"` @@ -1077,6 +1095,8 @@ func (m *QueryClassResponse) GetClass() *Class { } // QueryClassByQueryStringResponse is the response type for the Query/Class RPC method +// +// Since: nft v0.1.1 type QueryClassByQueryStringResponse struct { // class defines the class of the nft type. Class *Class `protobuf:"bytes,1,opt,name=class,proto3" json:"class,omitempty"` @@ -1330,14 +1350,20 @@ type QueryClient interface { // Balance queries the number of NFTs of a given class owned by the owner, same as balanceOf in ERC721 Balance(ctx context.Context, in *QueryBalanceRequest, opts ...grpc.CallOption) (*QueryBalanceResponse, error) // BalancebyQueryString queries the number of NFTs of a given class owned by the owner, same as balanceOf in ERC721 + // + // Since: nft v0.1.1 BalanceByQueryString(ctx context.Context, in *QueryBalanceByQueryStringRequest, opts ...grpc.CallOption) (*QueryBalanceByQueryStringResponse, error) // Owner queries the owner of the NFT based on its class and id, same as ownerOf in ERC721 Owner(ctx context.Context, in *QueryOwnerRequest, opts ...grpc.CallOption) (*QueryOwnerResponse, error) // OwnerByQueryString queries the owner of the NFT based on its class and id, same as ownerOf in ERC721 + // + // Since: nft v0.1.1 OwnerByQueryString(ctx context.Context, in *QueryOwnerByQueryStringRequest, opts ...grpc.CallOption) (*QueryOwnerByQueryStringResponse, error) // Supply queries the number of NFTs from the given class, same as totalSupply of ERC721. Supply(ctx context.Context, in *QuerySupplyRequest, opts ...grpc.CallOption) (*QuerySupplyResponse, error) // SupplyByQueryString queries the number of NFTs from the given class, same as totalSupply of ERC721. + // + // Since: nft v0.1.1 SupplyByQueryString(ctx context.Context, in *QuerySupplyByQueryStringRequest, opts ...grpc.CallOption) (*QuerySupplyByQueryStringResponse, error) // NFTs queries all NFTs of a given class or owner,choose at least one of the two, similar to tokenByIndex in // ERC721Enumerable @@ -1345,10 +1371,14 @@ type QueryClient interface { // NFT queries an NFT based on its class and id. NFT(ctx context.Context, in *QueryNFTRequest, opts ...grpc.CallOption) (*QueryNFTResponse, error) // NFTByQueryString queries an NFT based on its class and id. + // + // Since: nft v0.1.1 NFTByQueryString(ctx context.Context, in *QueryNFTByQueryStringRequest, opts ...grpc.CallOption) (*QueryNFTByQueryStringResponse, error) // Class queries an NFT class based on its id Class(ctx context.Context, in *QueryClassRequest, opts ...grpc.CallOption) (*QueryClassResponse, error) // Class queries an NFT class based on its id + // + // Since: nft v0.1.1 ClassByQueryString(ctx context.Context, in *QueryClassByQueryStringRequest, opts ...grpc.CallOption) (*QueryClassByQueryStringResponse, error) // Classes queries all NFT classes Classes(ctx context.Context, in *QueryClassesRequest, opts ...grpc.CallOption) (*QueryClassesResponse, error) @@ -1475,14 +1505,20 @@ type QueryServer interface { // Balance queries the number of NFTs of a given class owned by the owner, same as balanceOf in ERC721 Balance(context.Context, *QueryBalanceRequest) (*QueryBalanceResponse, error) // BalancebyQueryString queries the number of NFTs of a given class owned by the owner, same as balanceOf in ERC721 + // + // Since: nft v0.1.1 BalanceByQueryString(context.Context, *QueryBalanceByQueryStringRequest) (*QueryBalanceByQueryStringResponse, error) // Owner queries the owner of the NFT based on its class and id, same as ownerOf in ERC721 Owner(context.Context, *QueryOwnerRequest) (*QueryOwnerResponse, error) // OwnerByQueryString queries the owner of the NFT based on its class and id, same as ownerOf in ERC721 + // + // Since: nft v0.1.1 OwnerByQueryString(context.Context, *QueryOwnerByQueryStringRequest) (*QueryOwnerByQueryStringResponse, error) // Supply queries the number of NFTs from the given class, same as totalSupply of ERC721. Supply(context.Context, *QuerySupplyRequest) (*QuerySupplyResponse, error) // SupplyByQueryString queries the number of NFTs from the given class, same as totalSupply of ERC721. + // + // Since: nft v0.1.1 SupplyByQueryString(context.Context, *QuerySupplyByQueryStringRequest) (*QuerySupplyByQueryStringResponse, error) // NFTs queries all NFTs of a given class or owner,choose at least one of the two, similar to tokenByIndex in // ERC721Enumerable @@ -1490,10 +1526,14 @@ type QueryServer interface { // NFT queries an NFT based on its class and id. NFT(context.Context, *QueryNFTRequest) (*QueryNFTResponse, error) // NFTByQueryString queries an NFT based on its class and id. + // + // Since: nft v0.1.1 NFTByQueryString(context.Context, *QueryNFTByQueryStringRequest) (*QueryNFTByQueryStringResponse, error) // Class queries an NFT class based on its id Class(context.Context, *QueryClassRequest) (*QueryClassResponse, error) // Class queries an NFT class based on its id + // + // Since: nft v0.1.1 ClassByQueryString(context.Context, *QueryClassByQueryStringRequest) (*QueryClassByQueryStringResponse, error) // Classes queries all NFT classes Classes(context.Context, *QueryClassesRequest) (*QueryClassesResponse, error)