coreum-js 2.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (218) hide show
  1. package/README.md +18 -0
  2. package/dist/main/client/index.d.ts +48 -0
  3. package/dist/main/client/index.js +242 -0
  4. package/dist/main/coreum/asset/ft/v1/event.d.ts +148 -0
  5. package/dist/main/coreum/asset/ft/v1/event.js +377 -0
  6. package/dist/main/coreum/asset/ft/v1/genesis.d.ts +415 -0
  7. package/dist/main/coreum/asset/ft/v1/genesis.js +197 -0
  8. package/dist/main/coreum/asset/ft/v1/params.d.ts +54 -0
  9. package/dist/main/coreum/asset/ft/v1/params.js +69 -0
  10. package/dist/main/coreum/asset/ft/v1/query.d.ts +1863 -0
  11. package/dist/main/coreum/asset/ft/v1/query.js +892 -0
  12. package/dist/main/coreum/asset/ft/v1/token.d.ts +145 -0
  13. package/dist/main/coreum/asset/ft/v1/token.js +361 -0
  14. package/dist/main/coreum/asset/ft/v1/tx.d.ts +416 -0
  15. package/dist/main/coreum/asset/ft/v1/tx.js +760 -0
  16. package/dist/main/coreum/asset/index.d.ts +3 -0
  17. package/dist/main/coreum/asset/index.js +26 -0
  18. package/dist/main/coreum/asset/nft/v1/event.d.ts +191 -0
  19. package/dist/main/coreum/asset/nft/v1/event.js +490 -0
  20. package/dist/main/coreum/asset/nft/v1/genesis.d.ts +321 -0
  21. package/dist/main/coreum/asset/nft/v1/genesis.js +362 -0
  22. package/dist/main/coreum/asset/nft/v1/nft.d.ts +153 -0
  23. package/dist/main/coreum/asset/nft/v1/nft.js +361 -0
  24. package/dist/main/coreum/asset/nft/v1/params.d.ts +54 -0
  25. package/dist/main/coreum/asset/nft/v1/params.js +69 -0
  26. package/dist/main/coreum/asset/nft/v1/query.d.ts +785 -0
  27. package/dist/main/coreum/asset/nft/v1/query.js +627 -0
  28. package/dist/main/coreum/asset/nft/v1/tx.d.ts +357 -0
  29. package/dist/main/coreum/asset/nft/v1/tx.js +806 -0
  30. package/dist/main/coreum/asset/nft/v1/types.d.ts +33 -0
  31. package/dist/main/coreum/asset/nft/v1/types.js +108 -0
  32. package/dist/main/coreum/customparams/v1/genesis.d.ts +48 -0
  33. package/dist/main/coreum/customparams/v1/genesis.js +70 -0
  34. package/dist/main/coreum/customparams/v1/params.d.ts +35 -0
  35. package/dist/main/coreum/customparams/v1/params.js +67 -0
  36. package/dist/main/coreum/customparams/v1/query.d.ts +74 -0
  37. package/dist/main/coreum/customparams/v1/query.js +119 -0
  38. package/dist/main/coreum/extensions/ft.d.ts +13 -0
  39. package/dist/main/coreum/extensions/ft.js +36 -0
  40. package/dist/main/coreum/extensions/nft.d.ts +11 -0
  41. package/dist/main/coreum/extensions/nft.js +30 -0
  42. package/dist/main/coreum/extensions/nftbeta.d.ts +13 -0
  43. package/dist/main/coreum/extensions/nftbeta.js +36 -0
  44. package/dist/main/coreum/feemodel/v1/genesis.d.ts +251 -0
  45. package/dist/main/coreum/feemodel/v1/genesis.js +87 -0
  46. package/dist/main/coreum/feemodel/v1/params.d.ts +384 -0
  47. package/dist/main/coreum/feemodel/v1/params.js +201 -0
  48. package/dist/main/coreum/feemodel/v1/query.d.ts +306 -0
  49. package/dist/main/coreum/feemodel/v1/query.js +214 -0
  50. package/dist/main/coreum/google/api/annotations.d.ts +1 -0
  51. package/dist/main/coreum/google/api/annotations.js +6 -0
  52. package/dist/main/coreum/google/api/http.d.ts +2953 -0
  53. package/dist/main/coreum/google/api/http.js +329 -0
  54. package/dist/main/coreum/google/protobuf/any.d.ts +148 -0
  55. package/dist/main/coreum/google/protobuf/any.js +122 -0
  56. package/dist/main/coreum/index.d.ts +291 -0
  57. package/dist/main/coreum/index.js +116 -0
  58. package/dist/main/coreum/nft/index.d.ts +2 -0
  59. package/dist/main/coreum/nft/index.js +9 -0
  60. package/dist/main/coreum/nft/v1beta1/event.d.ts +109 -0
  61. package/dist/main/coreum/nft/v1beta1/event.js +255 -0
  62. package/dist/main/coreum/nft/v1beta1/genesis.d.ts +460 -0
  63. package/dist/main/coreum/nft/v1beta1/genesis.js +160 -0
  64. package/dist/main/coreum/nft/v1beta1/nft.d.ts +153 -0
  65. package/dist/main/coreum/nft/v1beta1/nft.js +258 -0
  66. package/dist/main/coreum/nft/v1beta1/query.d.ts +1733 -0
  67. package/dist/main/coreum/nft/v1beta1/query.js +872 -0
  68. package/dist/main/coreum/nft/v1beta1/tx.d.ts +80 -0
  69. package/dist/main/coreum/nft/v1beta1/tx.js +155 -0
  70. package/dist/main/cosmos/base/query/v1beta1/pagination.d.ts +470 -0
  71. package/dist/main/cosmos/base/query/v1beta1/pagination.js +224 -0
  72. package/dist/main/cosmos/base/v1beta1/coin.d.ts +114 -0
  73. package/dist/main/cosmos/base/v1beta1/coin.js +242 -0
  74. package/dist/main/cosmos/msg/v1/msg.d.ts +1 -0
  75. package/dist/main/cosmos/msg/v1/msg.js +6 -0
  76. package/dist/main/index.d.ts +5 -0
  77. package/dist/main/index.js +22 -0
  78. package/dist/main/services/cosmostation.d.ts +4 -0
  79. package/dist/main/services/cosmostation.js +47 -0
  80. package/dist/main/services/index.d.ts +2 -0
  81. package/dist/main/services/index.js +19 -0
  82. package/dist/main/services/keplr.d.ts +2 -0
  83. package/dist/main/services/keplr.js +119 -0
  84. package/dist/main/signers/dcent.d.ts +1 -0
  85. package/dist/main/signers/dcent.js +41 -0
  86. package/dist/main/signers/index.d.ts +3 -0
  87. package/dist/main/signers/index.js +20 -0
  88. package/dist/main/signers/offline.d.ts +4 -0
  89. package/dist/main/signers/offline.js +11 -0
  90. package/dist/main/signers/signer.d.ts +6 -0
  91. package/dist/main/signers/signer.js +17 -0
  92. package/dist/main/types/core.d.ts +24 -0
  93. package/dist/main/types/core.js +18 -0
  94. package/dist/main/types/coreum.d.ts +74 -0
  95. package/dist/main/types/coreum.js +80 -0
  96. package/dist/main/types/index.d.ts +3 -0
  97. package/dist/main/types/index.js +20 -0
  98. package/dist/main/types/signing.d.ts +20 -0
  99. package/dist/main/types/signing.js +17 -0
  100. package/dist/main/utils/calculations.d.ts +6 -0
  101. package/dist/main/utils/calculations.js +41 -0
  102. package/dist/main/utils/event.d.ts +5 -0
  103. package/dist/main/utils/event.js +22 -0
  104. package/dist/main/utils/index.d.ts +3 -0
  105. package/dist/main/utils/index.js +20 -0
  106. package/dist/main/utils/nft.d.ts +2 -0
  107. package/dist/main/utils/nft.js +9 -0
  108. package/dist/main/utils/wallet.d.ts +5 -0
  109. package/dist/main/utils/wallet.js +37 -0
  110. package/dist/module/client/index.d.ts +48 -0
  111. package/dist/module/client/index.js +241 -0
  112. package/dist/module/coreum/asset/ft/v1/event.d.ts +148 -0
  113. package/dist/module/coreum/asset/ft/v1/event.js +368 -0
  114. package/dist/module/coreum/asset/ft/v1/genesis.d.ts +415 -0
  115. package/dist/module/coreum/asset/ft/v1/genesis.js +189 -0
  116. package/dist/module/coreum/asset/ft/v1/params.d.ts +54 -0
  117. package/dist/module/coreum/asset/ft/v1/params.js +63 -0
  118. package/dist/module/coreum/asset/ft/v1/query.d.ts +1863 -0
  119. package/dist/module/coreum/asset/ft/v1/query.js +878 -0
  120. package/dist/module/coreum/asset/ft/v1/token.d.ts +145 -0
  121. package/dist/module/coreum/asset/ft/v1/token.js +351 -0
  122. package/dist/module/coreum/asset/ft/v1/tx.d.ts +416 -0
  123. package/dist/module/coreum/asset/ft/v1/tx.js +747 -0
  124. package/dist/module/coreum/asset/index.d.ts +3 -0
  125. package/dist/module/coreum/asset/index.js +23 -0
  126. package/dist/module/coreum/asset/nft/v1/event.d.ts +191 -0
  127. package/dist/module/coreum/asset/nft/v1/event.js +479 -0
  128. package/dist/module/coreum/asset/nft/v1/genesis.d.ts +321 -0
  129. package/dist/module/coreum/asset/nft/v1/genesis.js +352 -0
  130. package/dist/module/coreum/asset/nft/v1/nft.d.ts +153 -0
  131. package/dist/module/coreum/asset/nft/v1/nft.js +351 -0
  132. package/dist/module/coreum/asset/nft/v1/params.d.ts +54 -0
  133. package/dist/module/coreum/asset/nft/v1/params.js +63 -0
  134. package/dist/module/coreum/asset/nft/v1/query.d.ts +785 -0
  135. package/dist/module/coreum/asset/nft/v1/query.js +615 -0
  136. package/dist/module/coreum/asset/nft/v1/tx.d.ts +357 -0
  137. package/dist/module/coreum/asset/nft/v1/tx.js +794 -0
  138. package/dist/module/coreum/asset/nft/v1/types.d.ts +33 -0
  139. package/dist/module/coreum/asset/nft/v1/types.js +101 -0
  140. package/dist/module/coreum/customparams/v1/genesis.d.ts +48 -0
  141. package/dist/module/coreum/customparams/v1/genesis.js +64 -0
  142. package/dist/module/coreum/customparams/v1/params.d.ts +35 -0
  143. package/dist/module/coreum/customparams/v1/params.js +60 -0
  144. package/dist/module/coreum/customparams/v1/query.d.ts +74 -0
  145. package/dist/module/coreum/customparams/v1/query.js +114 -0
  146. package/dist/module/coreum/extensions/ft.d.ts +13 -0
  147. package/dist/module/coreum/extensions/ft.js +32 -0
  148. package/dist/module/coreum/extensions/nft.d.ts +11 -0
  149. package/dist/module/coreum/extensions/nft.js +26 -0
  150. package/dist/module/coreum/extensions/nftbeta.d.ts +13 -0
  151. package/dist/module/coreum/extensions/nftbeta.js +32 -0
  152. package/dist/module/coreum/feemodel/v1/genesis.d.ts +251 -0
  153. package/dist/module/coreum/feemodel/v1/genesis.js +81 -0
  154. package/dist/module/coreum/feemodel/v1/params.d.ts +384 -0
  155. package/dist/module/coreum/feemodel/v1/params.js +194 -0
  156. package/dist/module/coreum/feemodel/v1/query.d.ts +306 -0
  157. package/dist/module/coreum/feemodel/v1/query.js +209 -0
  158. package/dist/module/coreum/google/api/annotations.d.ts +1 -0
  159. package/dist/module/coreum/google/api/annotations.js +3 -0
  160. package/dist/module/coreum/google/api/http.d.ts +2953 -0
  161. package/dist/module/coreum/google/api/http.js +320 -0
  162. package/dist/module/coreum/google/protobuf/any.d.ts +148 -0
  163. package/dist/module/coreum/google/protobuf/any.js +115 -0
  164. package/dist/module/coreum/index.d.ts +291 -0
  165. package/dist/module/coreum/index.js +113 -0
  166. package/dist/module/coreum/nft/index.d.ts +2 -0
  167. package/dist/module/coreum/nft/index.js +6 -0
  168. package/dist/module/coreum/nft/v1beta1/event.d.ts +109 -0
  169. package/dist/module/coreum/nft/v1beta1/event.js +246 -0
  170. package/dist/module/coreum/nft/v1beta1/genesis.d.ts +460 -0
  171. package/dist/module/coreum/nft/v1beta1/genesis.js +152 -0
  172. package/dist/module/coreum/nft/v1beta1/nft.d.ts +153 -0
  173. package/dist/module/coreum/nft/v1beta1/nft.js +250 -0
  174. package/dist/module/coreum/nft/v1beta1/query.d.ts +1733 -0
  175. package/dist/module/coreum/nft/v1beta1/query.js +858 -0
  176. package/dist/module/coreum/nft/v1beta1/tx.d.ts +80 -0
  177. package/dist/module/coreum/nft/v1beta1/tx.js +149 -0
  178. package/dist/module/cosmos/base/query/v1beta1/pagination.d.ts +470 -0
  179. package/dist/module/cosmos/base/query/v1beta1/pagination.js +216 -0
  180. package/dist/module/cosmos/base/v1beta1/coin.d.ts +114 -0
  181. package/dist/module/cosmos/base/v1beta1/coin.js +232 -0
  182. package/dist/module/cosmos/msg/v1/msg.d.ts +1 -0
  183. package/dist/module/cosmos/msg/v1/msg.js +3 -0
  184. package/dist/module/index.d.ts +5 -0
  185. package/dist/module/index.js +6 -0
  186. package/dist/module/services/cosmostation.d.ts +4 -0
  187. package/dist/module/services/cosmostation.js +42 -0
  188. package/dist/module/services/index.d.ts +2 -0
  189. package/dist/module/services/index.js +3 -0
  190. package/dist/module/services/keplr.d.ts +2 -0
  191. package/dist/module/services/keplr.js +115 -0
  192. package/dist/module/signers/dcent.d.ts +1 -0
  193. package/dist/module/signers/dcent.js +31 -0
  194. package/dist/module/signers/index.d.ts +3 -0
  195. package/dist/module/signers/index.js +4 -0
  196. package/dist/module/signers/offline.d.ts +4 -0
  197. package/dist/module/signers/offline.js +7 -0
  198. package/dist/module/signers/signer.d.ts +6 -0
  199. package/dist/module/signers/signer.js +11 -0
  200. package/dist/module/types/core.d.ts +24 -0
  201. package/dist/module/types/core.js +15 -0
  202. package/dist/module/types/coreum.d.ts +74 -0
  203. package/dist/module/types/coreum.js +77 -0
  204. package/dist/module/types/index.d.ts +3 -0
  205. package/dist/module/types/index.js +4 -0
  206. package/dist/module/types/signing.d.ts +20 -0
  207. package/dist/module/types/signing.js +14 -0
  208. package/dist/module/utils/calculations.d.ts +6 -0
  209. package/dist/module/utils/calculations.js +29 -0
  210. package/dist/module/utils/event.d.ts +5 -0
  211. package/dist/module/utils/event.js +18 -0
  212. package/dist/module/utils/index.d.ts +3 -0
  213. package/dist/module/utils/index.js +4 -0
  214. package/dist/module/utils/nft.d.ts +2 -0
  215. package/dist/module/utils/nft.js +5 -0
  216. package/dist/module/utils/wallet.d.ts +5 -0
  217. package/dist/module/utils/wallet.js +31 -0
  218. package/package.json +55 -0
@@ -0,0 +1,1733 @@
1
+ import Long from "long";
2
+ import _m0 from "protobufjs/minimal";
3
+ import { PageRequest, PageResponse } from "../../../cosmos/base/query/v1beta1/pagination";
4
+ import { Class, NFT } from "./nft";
5
+ export declare const protobufPackage = "coreum.nft.v1beta1";
6
+ /** QueryBalanceRequest is the request type for the Query/Balance RPC method */
7
+ export interface QueryBalanceRequest {
8
+ classId: string;
9
+ owner: string;
10
+ }
11
+ /** QueryBalanceResponse is the response type for the Query/Balance RPC method */
12
+ export interface QueryBalanceResponse {
13
+ amount: Long;
14
+ }
15
+ /** QueryOwnerRequest is the request type for the Query/Owner RPC method */
16
+ export interface QueryOwnerRequest {
17
+ classId: string;
18
+ id: string;
19
+ }
20
+ /** QueryOwnerResponse is the response type for the Query/Owner RPC method */
21
+ export interface QueryOwnerResponse {
22
+ owner: string;
23
+ }
24
+ /** QuerySupplyRequest is the request type for the Query/Supply RPC method */
25
+ export interface QuerySupplyRequest {
26
+ classId: string;
27
+ }
28
+ /** QuerySupplyResponse is the response type for the Query/Supply RPC method */
29
+ export interface QuerySupplyResponse {
30
+ amount: Long;
31
+ }
32
+ /** QueryNFTstRequest is the request type for the Query/NFTs RPC method */
33
+ export interface QueryNFTsRequest {
34
+ classId: string;
35
+ owner: string;
36
+ pagination?: PageRequest;
37
+ }
38
+ /** QueryNFTsResponse is the response type for the Query/NFTs RPC methods */
39
+ export interface QueryNFTsResponse {
40
+ nfts: NFT[];
41
+ pagination?: PageResponse;
42
+ }
43
+ /** QueryNFTRequest is the request type for the Query/NFT RPC method */
44
+ export interface QueryNFTRequest {
45
+ classId: string;
46
+ id: string;
47
+ }
48
+ /** QueryNFTResponse is the response type for the Query/NFT RPC method */
49
+ export interface QueryNFTResponse {
50
+ nft?: NFT;
51
+ }
52
+ /** QueryClassRequest is the request type for the Query/Class RPC method */
53
+ export interface QueryClassRequest {
54
+ classId: string;
55
+ }
56
+ /** QueryClassResponse is the response type for the Query/Class RPC method */
57
+ export interface QueryClassResponse {
58
+ class?: Class;
59
+ }
60
+ /** QueryClassesRequest is the request type for the Query/Classes RPC method */
61
+ export interface QueryClassesRequest {
62
+ /** pagination defines an optional pagination for the request. */
63
+ pagination?: PageRequest;
64
+ }
65
+ /** QueryClassesResponse is the response type for the Query/Classes RPC method */
66
+ export interface QueryClassesResponse {
67
+ classes: Class[];
68
+ pagination?: PageResponse;
69
+ }
70
+ export declare const QueryBalanceRequest: {
71
+ encode(message: QueryBalanceRequest, writer?: _m0.Writer): _m0.Writer;
72
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalanceRequest;
73
+ fromJSON(object: any): QueryBalanceRequest;
74
+ toJSON(message: QueryBalanceRequest): unknown;
75
+ create<I extends {
76
+ classId?: string;
77
+ owner?: string;
78
+ } & {
79
+ classId?: string;
80
+ owner?: string;
81
+ } & { [K in Exclude<keyof I, keyof QueryBalanceRequest>]: never; }>(base?: I): QueryBalanceRequest;
82
+ fromPartial<I_1 extends {
83
+ classId?: string;
84
+ owner?: string;
85
+ } & {
86
+ classId?: string;
87
+ owner?: string;
88
+ } & { [K_1 in Exclude<keyof I_1, keyof QueryBalanceRequest>]: never; }>(object: I_1): QueryBalanceRequest;
89
+ };
90
+ export declare const QueryBalanceResponse: {
91
+ encode(message: QueryBalanceResponse, writer?: _m0.Writer): _m0.Writer;
92
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryBalanceResponse;
93
+ fromJSON(object: any): QueryBalanceResponse;
94
+ toJSON(message: QueryBalanceResponse): unknown;
95
+ create<I extends {
96
+ amount?: string | number | Long.Long;
97
+ } & {
98
+ amount?: string | number | (Long.Long & {
99
+ high: number;
100
+ low: number;
101
+ unsigned: boolean;
102
+ add: (addend: string | number | Long.Long) => Long.Long;
103
+ and: (other: string | number | Long.Long) => Long.Long;
104
+ compare: (other: string | number | Long.Long) => number;
105
+ comp: (other: string | number | Long.Long) => number;
106
+ divide: (divisor: string | number | Long.Long) => Long.Long;
107
+ div: (divisor: string | number | Long.Long) => Long.Long;
108
+ equals: (other: string | number | Long.Long) => boolean;
109
+ eq: (other: string | number | Long.Long) => boolean;
110
+ getHighBits: () => number;
111
+ getHighBitsUnsigned: () => number;
112
+ getLowBits: () => number;
113
+ getLowBitsUnsigned: () => number;
114
+ getNumBitsAbs: () => number;
115
+ greaterThan: (other: string | number | Long.Long) => boolean;
116
+ gt: (other: string | number | Long.Long) => boolean;
117
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
118
+ gte: (other: string | number | Long.Long) => boolean;
119
+ isEven: () => boolean;
120
+ isNegative: () => boolean;
121
+ isOdd: () => boolean;
122
+ isPositive: () => boolean;
123
+ isZero: () => boolean;
124
+ lessThan: (other: string | number | Long.Long) => boolean;
125
+ lt: (other: string | number | Long.Long) => boolean;
126
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
127
+ lte: (other: string | number | Long.Long) => boolean;
128
+ modulo: (other: string | number | Long.Long) => Long.Long;
129
+ mod: (other: string | number | Long.Long) => Long.Long;
130
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
131
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
132
+ negate: () => Long.Long;
133
+ neg: () => Long.Long;
134
+ not: () => Long.Long;
135
+ notEquals: (other: string | number | Long.Long) => boolean;
136
+ neq: (other: string | number | Long.Long) => boolean;
137
+ or: (other: string | number | Long.Long) => Long.Long;
138
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
139
+ shl: (numBits: number | Long.Long) => Long.Long;
140
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
141
+ shr: (numBits: number | Long.Long) => Long.Long;
142
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
143
+ shru: (numBits: number | Long.Long) => Long.Long;
144
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
145
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
146
+ toInt: () => number;
147
+ toNumber: () => number;
148
+ toBytes: (le?: boolean) => number[];
149
+ toBytesLE: () => number[];
150
+ toBytesBE: () => number[];
151
+ toSigned: () => Long.Long;
152
+ toString: (radix?: number) => string;
153
+ toUnsigned: () => Long.Long;
154
+ xor: (other: string | number | Long.Long) => Long.Long;
155
+ } & { [K in Exclude<keyof I["amount"], keyof Long.Long>]: never; });
156
+ } & { [K_1 in Exclude<keyof I, "amount">]: never; }>(base?: I): QueryBalanceResponse;
157
+ fromPartial<I_1 extends {
158
+ amount?: string | number | Long.Long;
159
+ } & {
160
+ amount?: string | number | (Long.Long & {
161
+ high: number;
162
+ low: number;
163
+ unsigned: boolean;
164
+ add: (addend: string | number | Long.Long) => Long.Long;
165
+ and: (other: string | number | Long.Long) => Long.Long;
166
+ compare: (other: string | number | Long.Long) => number;
167
+ comp: (other: string | number | Long.Long) => number;
168
+ divide: (divisor: string | number | Long.Long) => Long.Long;
169
+ div: (divisor: string | number | Long.Long) => Long.Long;
170
+ equals: (other: string | number | Long.Long) => boolean;
171
+ eq: (other: string | number | Long.Long) => boolean;
172
+ getHighBits: () => number;
173
+ getHighBitsUnsigned: () => number;
174
+ getLowBits: () => number;
175
+ getLowBitsUnsigned: () => number;
176
+ getNumBitsAbs: () => number;
177
+ greaterThan: (other: string | number | Long.Long) => boolean;
178
+ gt: (other: string | number | Long.Long) => boolean;
179
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
180
+ gte: (other: string | number | Long.Long) => boolean;
181
+ isEven: () => boolean;
182
+ isNegative: () => boolean;
183
+ isOdd: () => boolean;
184
+ isPositive: () => boolean;
185
+ isZero: () => boolean;
186
+ lessThan: (other: string | number | Long.Long) => boolean;
187
+ lt: (other: string | number | Long.Long) => boolean;
188
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
189
+ lte: (other: string | number | Long.Long) => boolean;
190
+ modulo: (other: string | number | Long.Long) => Long.Long;
191
+ mod: (other: string | number | Long.Long) => Long.Long;
192
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
193
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
194
+ negate: () => Long.Long;
195
+ neg: () => Long.Long;
196
+ not: () => Long.Long;
197
+ notEquals: (other: string | number | Long.Long) => boolean;
198
+ neq: (other: string | number | Long.Long) => boolean;
199
+ or: (other: string | number | Long.Long) => Long.Long;
200
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
201
+ shl: (numBits: number | Long.Long) => Long.Long;
202
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
203
+ shr: (numBits: number | Long.Long) => Long.Long;
204
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
205
+ shru: (numBits: number | Long.Long) => Long.Long;
206
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
207
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
208
+ toInt: () => number;
209
+ toNumber: () => number;
210
+ toBytes: (le?: boolean) => number[];
211
+ toBytesLE: () => number[];
212
+ toBytesBE: () => number[];
213
+ toSigned: () => Long.Long;
214
+ toString: (radix?: number) => string;
215
+ toUnsigned: () => Long.Long;
216
+ xor: (other: string | number | Long.Long) => Long.Long;
217
+ } & { [K_2 in Exclude<keyof I_1["amount"], keyof Long.Long>]: never; });
218
+ } & { [K_3 in Exclude<keyof I_1, "amount">]: never; }>(object: I_1): QueryBalanceResponse;
219
+ };
220
+ export declare const QueryOwnerRequest: {
221
+ encode(message: QueryOwnerRequest, writer?: _m0.Writer): _m0.Writer;
222
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryOwnerRequest;
223
+ fromJSON(object: any): QueryOwnerRequest;
224
+ toJSON(message: QueryOwnerRequest): unknown;
225
+ create<I extends {
226
+ classId?: string;
227
+ id?: string;
228
+ } & {
229
+ classId?: string;
230
+ id?: string;
231
+ } & { [K in Exclude<keyof I, keyof QueryOwnerRequest>]: never; }>(base?: I): QueryOwnerRequest;
232
+ fromPartial<I_1 extends {
233
+ classId?: string;
234
+ id?: string;
235
+ } & {
236
+ classId?: string;
237
+ id?: string;
238
+ } & { [K_1 in Exclude<keyof I_1, keyof QueryOwnerRequest>]: never; }>(object: I_1): QueryOwnerRequest;
239
+ };
240
+ export declare const QueryOwnerResponse: {
241
+ encode(message: QueryOwnerResponse, writer?: _m0.Writer): _m0.Writer;
242
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryOwnerResponse;
243
+ fromJSON(object: any): QueryOwnerResponse;
244
+ toJSON(message: QueryOwnerResponse): unknown;
245
+ create<I extends {
246
+ owner?: string;
247
+ } & {
248
+ owner?: string;
249
+ } & { [K in Exclude<keyof I, "owner">]: never; }>(base?: I): QueryOwnerResponse;
250
+ fromPartial<I_1 extends {
251
+ owner?: string;
252
+ } & {
253
+ owner?: string;
254
+ } & { [K_1 in Exclude<keyof I_1, "owner">]: never; }>(object: I_1): QueryOwnerResponse;
255
+ };
256
+ export declare const QuerySupplyRequest: {
257
+ encode(message: QuerySupplyRequest, writer?: _m0.Writer): _m0.Writer;
258
+ decode(input: _m0.Reader | Uint8Array, length?: number): QuerySupplyRequest;
259
+ fromJSON(object: any): QuerySupplyRequest;
260
+ toJSON(message: QuerySupplyRequest): unknown;
261
+ create<I extends {
262
+ classId?: string;
263
+ } & {
264
+ classId?: string;
265
+ } & { [K in Exclude<keyof I, "classId">]: never; }>(base?: I): QuerySupplyRequest;
266
+ fromPartial<I_1 extends {
267
+ classId?: string;
268
+ } & {
269
+ classId?: string;
270
+ } & { [K_1 in Exclude<keyof I_1, "classId">]: never; }>(object: I_1): QuerySupplyRequest;
271
+ };
272
+ export declare const QuerySupplyResponse: {
273
+ encode(message: QuerySupplyResponse, writer?: _m0.Writer): _m0.Writer;
274
+ decode(input: _m0.Reader | Uint8Array, length?: number): QuerySupplyResponse;
275
+ fromJSON(object: any): QuerySupplyResponse;
276
+ toJSON(message: QuerySupplyResponse): unknown;
277
+ create<I extends {
278
+ amount?: string | number | Long.Long;
279
+ } & {
280
+ amount?: string | number | (Long.Long & {
281
+ high: number;
282
+ low: number;
283
+ unsigned: boolean;
284
+ add: (addend: string | number | Long.Long) => Long.Long;
285
+ and: (other: string | number | Long.Long) => Long.Long;
286
+ compare: (other: string | number | Long.Long) => number;
287
+ comp: (other: string | number | Long.Long) => number;
288
+ divide: (divisor: string | number | Long.Long) => Long.Long;
289
+ div: (divisor: string | number | Long.Long) => Long.Long;
290
+ equals: (other: string | number | Long.Long) => boolean;
291
+ eq: (other: string | number | Long.Long) => boolean;
292
+ getHighBits: () => number;
293
+ getHighBitsUnsigned: () => number;
294
+ getLowBits: () => number;
295
+ getLowBitsUnsigned: () => number;
296
+ getNumBitsAbs: () => number;
297
+ greaterThan: (other: string | number | Long.Long) => boolean;
298
+ gt: (other: string | number | Long.Long) => boolean;
299
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
300
+ gte: (other: string | number | Long.Long) => boolean;
301
+ isEven: () => boolean;
302
+ isNegative: () => boolean;
303
+ isOdd: () => boolean;
304
+ isPositive: () => boolean;
305
+ isZero: () => boolean;
306
+ lessThan: (other: string | number | Long.Long) => boolean;
307
+ lt: (other: string | number | Long.Long) => boolean;
308
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
309
+ lte: (other: string | number | Long.Long) => boolean;
310
+ modulo: (other: string | number | Long.Long) => Long.Long;
311
+ mod: (other: string | number | Long.Long) => Long.Long;
312
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
313
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
314
+ negate: () => Long.Long;
315
+ neg: () => Long.Long;
316
+ not: () => Long.Long;
317
+ notEquals: (other: string | number | Long.Long) => boolean;
318
+ neq: (other: string | number | Long.Long) => boolean;
319
+ or: (other: string | number | Long.Long) => Long.Long;
320
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
321
+ shl: (numBits: number | Long.Long) => Long.Long;
322
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
323
+ shr: (numBits: number | Long.Long) => Long.Long;
324
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
325
+ shru: (numBits: number | Long.Long) => Long.Long;
326
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
327
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
328
+ toInt: () => number;
329
+ toNumber: () => number;
330
+ toBytes: (le?: boolean) => number[];
331
+ toBytesLE: () => number[];
332
+ toBytesBE: () => number[];
333
+ toSigned: () => Long.Long;
334
+ toString: (radix?: number) => string;
335
+ toUnsigned: () => Long.Long;
336
+ xor: (other: string | number | Long.Long) => Long.Long;
337
+ } & { [K in Exclude<keyof I["amount"], keyof Long.Long>]: never; });
338
+ } & { [K_1 in Exclude<keyof I, "amount">]: never; }>(base?: I): QuerySupplyResponse;
339
+ fromPartial<I_1 extends {
340
+ amount?: string | number | Long.Long;
341
+ } & {
342
+ amount?: string | number | (Long.Long & {
343
+ high: number;
344
+ low: number;
345
+ unsigned: boolean;
346
+ add: (addend: string | number | Long.Long) => Long.Long;
347
+ and: (other: string | number | Long.Long) => Long.Long;
348
+ compare: (other: string | number | Long.Long) => number;
349
+ comp: (other: string | number | Long.Long) => number;
350
+ divide: (divisor: string | number | Long.Long) => Long.Long;
351
+ div: (divisor: string | number | Long.Long) => Long.Long;
352
+ equals: (other: string | number | Long.Long) => boolean;
353
+ eq: (other: string | number | Long.Long) => boolean;
354
+ getHighBits: () => number;
355
+ getHighBitsUnsigned: () => number;
356
+ getLowBits: () => number;
357
+ getLowBitsUnsigned: () => number;
358
+ getNumBitsAbs: () => number;
359
+ greaterThan: (other: string | number | Long.Long) => boolean;
360
+ gt: (other: string | number | Long.Long) => boolean;
361
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
362
+ gte: (other: string | number | Long.Long) => boolean;
363
+ isEven: () => boolean;
364
+ isNegative: () => boolean;
365
+ isOdd: () => boolean;
366
+ isPositive: () => boolean;
367
+ isZero: () => boolean;
368
+ lessThan: (other: string | number | Long.Long) => boolean;
369
+ lt: (other: string | number | Long.Long) => boolean;
370
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
371
+ lte: (other: string | number | Long.Long) => boolean;
372
+ modulo: (other: string | number | Long.Long) => Long.Long;
373
+ mod: (other: string | number | Long.Long) => Long.Long;
374
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
375
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
376
+ negate: () => Long.Long;
377
+ neg: () => Long.Long;
378
+ not: () => Long.Long;
379
+ notEquals: (other: string | number | Long.Long) => boolean;
380
+ neq: (other: string | number | Long.Long) => boolean;
381
+ or: (other: string | number | Long.Long) => Long.Long;
382
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
383
+ shl: (numBits: number | Long.Long) => Long.Long;
384
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
385
+ shr: (numBits: number | Long.Long) => Long.Long;
386
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
387
+ shru: (numBits: number | Long.Long) => Long.Long;
388
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
389
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
390
+ toInt: () => number;
391
+ toNumber: () => number;
392
+ toBytes: (le?: boolean) => number[];
393
+ toBytesLE: () => number[];
394
+ toBytesBE: () => number[];
395
+ toSigned: () => Long.Long;
396
+ toString: (radix?: number) => string;
397
+ toUnsigned: () => Long.Long;
398
+ xor: (other: string | number | Long.Long) => Long.Long;
399
+ } & { [K_2 in Exclude<keyof I_1["amount"], keyof Long.Long>]: never; });
400
+ } & { [K_3 in Exclude<keyof I_1, "amount">]: never; }>(object: I_1): QuerySupplyResponse;
401
+ };
402
+ export declare const QueryNFTsRequest: {
403
+ encode(message: QueryNFTsRequest, writer?: _m0.Writer): _m0.Writer;
404
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryNFTsRequest;
405
+ fromJSON(object: any): QueryNFTsRequest;
406
+ toJSON(message: QueryNFTsRequest): unknown;
407
+ create<I extends {
408
+ classId?: string;
409
+ owner?: string;
410
+ pagination?: {
411
+ key?: Uint8Array;
412
+ offset?: string | number | Long.Long;
413
+ limit?: string | number | Long.Long;
414
+ countTotal?: boolean;
415
+ reverse?: boolean;
416
+ };
417
+ } & {
418
+ classId?: string;
419
+ owner?: string;
420
+ pagination?: {
421
+ key?: Uint8Array;
422
+ offset?: string | number | Long.Long;
423
+ limit?: string | number | Long.Long;
424
+ countTotal?: boolean;
425
+ reverse?: boolean;
426
+ } & {
427
+ key?: Uint8Array;
428
+ offset?: string | number | (Long.Long & {
429
+ high: number;
430
+ low: number;
431
+ unsigned: boolean;
432
+ add: (addend: string | number | Long.Long) => Long.Long;
433
+ and: (other: string | number | Long.Long) => Long.Long;
434
+ compare: (other: string | number | Long.Long) => number;
435
+ comp: (other: string | number | Long.Long) => number;
436
+ divide: (divisor: string | number | Long.Long) => Long.Long;
437
+ div: (divisor: string | number | Long.Long) => Long.Long;
438
+ equals: (other: string | number | Long.Long) => boolean;
439
+ eq: (other: string | number | Long.Long) => boolean;
440
+ getHighBits: () => number;
441
+ getHighBitsUnsigned: () => number;
442
+ getLowBits: () => number;
443
+ getLowBitsUnsigned: () => number;
444
+ getNumBitsAbs: () => number;
445
+ greaterThan: (other: string | number | Long.Long) => boolean;
446
+ gt: (other: string | number | Long.Long) => boolean;
447
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
448
+ gte: (other: string | number | Long.Long) => boolean;
449
+ isEven: () => boolean;
450
+ isNegative: () => boolean;
451
+ isOdd: () => boolean;
452
+ isPositive: () => boolean;
453
+ isZero: () => boolean;
454
+ lessThan: (other: string | number | Long.Long) => boolean;
455
+ lt: (other: string | number | Long.Long) => boolean;
456
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
457
+ lte: (other: string | number | Long.Long) => boolean;
458
+ modulo: (other: string | number | Long.Long) => Long.Long;
459
+ mod: (other: string | number | Long.Long) => Long.Long;
460
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
461
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
462
+ negate: () => Long.Long;
463
+ neg: () => Long.Long;
464
+ not: () => Long.Long;
465
+ notEquals: (other: string | number | Long.Long) => boolean;
466
+ neq: (other: string | number | Long.Long) => boolean;
467
+ or: (other: string | number | Long.Long) => Long.Long;
468
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
469
+ shl: (numBits: number | Long.Long) => Long.Long;
470
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
471
+ shr: (numBits: number | Long.Long) => Long.Long;
472
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
473
+ shru: (numBits: number | Long.Long) => Long.Long;
474
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
475
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
476
+ toInt: () => number;
477
+ toNumber: () => number;
478
+ toBytes: (le?: boolean) => number[];
479
+ toBytesLE: () => number[];
480
+ toBytesBE: () => number[];
481
+ toSigned: () => Long.Long;
482
+ toString: (radix?: number) => string;
483
+ toUnsigned: () => Long.Long;
484
+ xor: (other: string | number | Long.Long) => Long.Long;
485
+ } & { [K in Exclude<keyof I["pagination"]["offset"], keyof Long.Long>]: never; });
486
+ limit?: string | number | (Long.Long & {
487
+ high: number;
488
+ low: number;
489
+ unsigned: boolean;
490
+ add: (addend: string | number | Long.Long) => Long.Long;
491
+ and: (other: string | number | Long.Long) => Long.Long;
492
+ compare: (other: string | number | Long.Long) => number;
493
+ comp: (other: string | number | Long.Long) => number;
494
+ divide: (divisor: string | number | Long.Long) => Long.Long;
495
+ div: (divisor: string | number | Long.Long) => Long.Long;
496
+ equals: (other: string | number | Long.Long) => boolean;
497
+ eq: (other: string | number | Long.Long) => boolean;
498
+ getHighBits: () => number;
499
+ getHighBitsUnsigned: () => number;
500
+ getLowBits: () => number;
501
+ getLowBitsUnsigned: () => number;
502
+ getNumBitsAbs: () => number;
503
+ greaterThan: (other: string | number | Long.Long) => boolean;
504
+ gt: (other: string | number | Long.Long) => boolean;
505
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
506
+ gte: (other: string | number | Long.Long) => boolean;
507
+ isEven: () => boolean;
508
+ isNegative: () => boolean;
509
+ isOdd: () => boolean;
510
+ isPositive: () => boolean;
511
+ isZero: () => boolean;
512
+ lessThan: (other: string | number | Long.Long) => boolean;
513
+ lt: (other: string | number | Long.Long) => boolean;
514
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
515
+ lte: (other: string | number | Long.Long) => boolean;
516
+ modulo: (other: string | number | Long.Long) => Long.Long;
517
+ mod: (other: string | number | Long.Long) => Long.Long;
518
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
519
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
520
+ negate: () => Long.Long;
521
+ neg: () => Long.Long;
522
+ not: () => Long.Long;
523
+ notEquals: (other: string | number | Long.Long) => boolean;
524
+ neq: (other: string | number | Long.Long) => boolean;
525
+ or: (other: string | number | Long.Long) => Long.Long;
526
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
527
+ shl: (numBits: number | Long.Long) => Long.Long;
528
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
529
+ shr: (numBits: number | Long.Long) => Long.Long;
530
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
531
+ shru: (numBits: number | Long.Long) => Long.Long;
532
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
533
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
534
+ toInt: () => number;
535
+ toNumber: () => number;
536
+ toBytes: (le?: boolean) => number[];
537
+ toBytesLE: () => number[];
538
+ toBytesBE: () => number[];
539
+ toSigned: () => Long.Long;
540
+ toString: (radix?: number) => string;
541
+ toUnsigned: () => Long.Long;
542
+ xor: (other: string | number | Long.Long) => Long.Long;
543
+ } & { [K_1 in Exclude<keyof I["pagination"]["limit"], keyof Long.Long>]: never; });
544
+ countTotal?: boolean;
545
+ reverse?: boolean;
546
+ } & { [K_2 in Exclude<keyof I["pagination"], keyof PageRequest>]: never; };
547
+ } & { [K_3 in Exclude<keyof I, keyof QueryNFTsRequest>]: never; }>(base?: I): QueryNFTsRequest;
548
+ fromPartial<I_1 extends {
549
+ classId?: string;
550
+ owner?: string;
551
+ pagination?: {
552
+ key?: Uint8Array;
553
+ offset?: string | number | Long.Long;
554
+ limit?: string | number | Long.Long;
555
+ countTotal?: boolean;
556
+ reverse?: boolean;
557
+ };
558
+ } & {
559
+ classId?: string;
560
+ owner?: string;
561
+ pagination?: {
562
+ key?: Uint8Array;
563
+ offset?: string | number | Long.Long;
564
+ limit?: string | number | Long.Long;
565
+ countTotal?: boolean;
566
+ reverse?: boolean;
567
+ } & {
568
+ key?: Uint8Array;
569
+ offset?: string | number | (Long.Long & {
570
+ high: number;
571
+ low: number;
572
+ unsigned: boolean;
573
+ add: (addend: string | number | Long.Long) => Long.Long;
574
+ and: (other: string | number | Long.Long) => Long.Long;
575
+ compare: (other: string | number | Long.Long) => number;
576
+ comp: (other: string | number | Long.Long) => number;
577
+ divide: (divisor: string | number | Long.Long) => Long.Long;
578
+ div: (divisor: string | number | Long.Long) => Long.Long;
579
+ equals: (other: string | number | Long.Long) => boolean;
580
+ eq: (other: string | number | Long.Long) => boolean;
581
+ getHighBits: () => number;
582
+ getHighBitsUnsigned: () => number;
583
+ getLowBits: () => number;
584
+ getLowBitsUnsigned: () => number;
585
+ getNumBitsAbs: () => number;
586
+ greaterThan: (other: string | number | Long.Long) => boolean;
587
+ gt: (other: string | number | Long.Long) => boolean;
588
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
589
+ gte: (other: string | number | Long.Long) => boolean;
590
+ isEven: () => boolean;
591
+ isNegative: () => boolean;
592
+ isOdd: () => boolean;
593
+ isPositive: () => boolean;
594
+ isZero: () => boolean;
595
+ lessThan: (other: string | number | Long.Long) => boolean;
596
+ lt: (other: string | number | Long.Long) => boolean;
597
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
598
+ lte: (other: string | number | Long.Long) => boolean;
599
+ modulo: (other: string | number | Long.Long) => Long.Long;
600
+ mod: (other: string | number | Long.Long) => Long.Long;
601
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
602
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
603
+ negate: () => Long.Long;
604
+ neg: () => Long.Long;
605
+ not: () => Long.Long;
606
+ notEquals: (other: string | number | Long.Long) => boolean;
607
+ neq: (other: string | number | Long.Long) => boolean;
608
+ or: (other: string | number | Long.Long) => Long.Long;
609
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
610
+ shl: (numBits: number | Long.Long) => Long.Long;
611
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
612
+ shr: (numBits: number | Long.Long) => Long.Long;
613
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
614
+ shru: (numBits: number | Long.Long) => Long.Long;
615
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
616
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
617
+ toInt: () => number;
618
+ toNumber: () => number;
619
+ toBytes: (le?: boolean) => number[];
620
+ toBytesLE: () => number[];
621
+ toBytesBE: () => number[];
622
+ toSigned: () => Long.Long;
623
+ toString: (radix?: number) => string;
624
+ toUnsigned: () => Long.Long;
625
+ xor: (other: string | number | Long.Long) => Long.Long;
626
+ } & { [K_4 in Exclude<keyof I_1["pagination"]["offset"], keyof Long.Long>]: never; });
627
+ limit?: string | number | (Long.Long & {
628
+ high: number;
629
+ low: number;
630
+ unsigned: boolean;
631
+ add: (addend: string | number | Long.Long) => Long.Long;
632
+ and: (other: string | number | Long.Long) => Long.Long;
633
+ compare: (other: string | number | Long.Long) => number;
634
+ comp: (other: string | number | Long.Long) => number;
635
+ divide: (divisor: string | number | Long.Long) => Long.Long;
636
+ div: (divisor: string | number | Long.Long) => Long.Long;
637
+ equals: (other: string | number | Long.Long) => boolean;
638
+ eq: (other: string | number | Long.Long) => boolean;
639
+ getHighBits: () => number;
640
+ getHighBitsUnsigned: () => number;
641
+ getLowBits: () => number;
642
+ getLowBitsUnsigned: () => number;
643
+ getNumBitsAbs: () => number;
644
+ greaterThan: (other: string | number | Long.Long) => boolean;
645
+ gt: (other: string | number | Long.Long) => boolean;
646
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
647
+ gte: (other: string | number | Long.Long) => boolean;
648
+ isEven: () => boolean;
649
+ isNegative: () => boolean;
650
+ isOdd: () => boolean;
651
+ isPositive: () => boolean;
652
+ isZero: () => boolean;
653
+ lessThan: (other: string | number | Long.Long) => boolean;
654
+ lt: (other: string | number | Long.Long) => boolean;
655
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
656
+ lte: (other: string | number | Long.Long) => boolean;
657
+ modulo: (other: string | number | Long.Long) => Long.Long;
658
+ mod: (other: string | number | Long.Long) => Long.Long;
659
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
660
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
661
+ negate: () => Long.Long;
662
+ neg: () => Long.Long;
663
+ not: () => Long.Long;
664
+ notEquals: (other: string | number | Long.Long) => boolean;
665
+ neq: (other: string | number | Long.Long) => boolean;
666
+ or: (other: string | number | Long.Long) => Long.Long;
667
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
668
+ shl: (numBits: number | Long.Long) => Long.Long;
669
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
670
+ shr: (numBits: number | Long.Long) => Long.Long;
671
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
672
+ shru: (numBits: number | Long.Long) => Long.Long;
673
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
674
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
675
+ toInt: () => number;
676
+ toNumber: () => number;
677
+ toBytes: (le?: boolean) => number[];
678
+ toBytesLE: () => number[];
679
+ toBytesBE: () => number[];
680
+ toSigned: () => Long.Long;
681
+ toString: (radix?: number) => string;
682
+ toUnsigned: () => Long.Long;
683
+ xor: (other: string | number | Long.Long) => Long.Long;
684
+ } & { [K_5 in Exclude<keyof I_1["pagination"]["limit"], keyof Long.Long>]: never; });
685
+ countTotal?: boolean;
686
+ reverse?: boolean;
687
+ } & { [K_6 in Exclude<keyof I_1["pagination"], keyof PageRequest>]: never; };
688
+ } & { [K_7 in Exclude<keyof I_1, keyof QueryNFTsRequest>]: never; }>(object: I_1): QueryNFTsRequest;
689
+ };
690
+ export declare const QueryNFTsResponse: {
691
+ encode(message: QueryNFTsResponse, writer?: _m0.Writer): _m0.Writer;
692
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryNFTsResponse;
693
+ fromJSON(object: any): QueryNFTsResponse;
694
+ toJSON(message: QueryNFTsResponse): unknown;
695
+ create<I extends {
696
+ nfts?: {
697
+ classId?: string;
698
+ id?: string;
699
+ uri?: string;
700
+ uriHash?: string;
701
+ data?: {
702
+ typeUrl?: string;
703
+ value?: Uint8Array;
704
+ };
705
+ }[];
706
+ pagination?: {
707
+ nextKey?: Uint8Array;
708
+ total?: string | number | Long.Long;
709
+ };
710
+ } & {
711
+ nfts?: {
712
+ classId?: string;
713
+ id?: string;
714
+ uri?: string;
715
+ uriHash?: string;
716
+ data?: {
717
+ typeUrl?: string;
718
+ value?: Uint8Array;
719
+ };
720
+ }[] & ({
721
+ classId?: string;
722
+ id?: string;
723
+ uri?: string;
724
+ uriHash?: string;
725
+ data?: {
726
+ typeUrl?: string;
727
+ value?: Uint8Array;
728
+ };
729
+ } & {
730
+ classId?: string;
731
+ id?: string;
732
+ uri?: string;
733
+ uriHash?: string;
734
+ data?: {
735
+ typeUrl?: string;
736
+ value?: Uint8Array;
737
+ } & {
738
+ typeUrl?: string;
739
+ value?: Uint8Array;
740
+ } & { [K in Exclude<keyof I["nfts"][number]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
741
+ } & { [K_1 in Exclude<keyof I["nfts"][number], keyof NFT>]: never; })[] & { [K_2 in Exclude<keyof I["nfts"], keyof {
742
+ classId?: string;
743
+ id?: string;
744
+ uri?: string;
745
+ uriHash?: string;
746
+ data?: {
747
+ typeUrl?: string;
748
+ value?: Uint8Array;
749
+ };
750
+ }[]>]: never; };
751
+ pagination?: {
752
+ nextKey?: Uint8Array;
753
+ total?: string | number | Long.Long;
754
+ } & {
755
+ nextKey?: Uint8Array;
756
+ total?: string | number | (Long.Long & {
757
+ high: number;
758
+ low: number;
759
+ unsigned: boolean;
760
+ add: (addend: string | number | Long.Long) => Long.Long;
761
+ and: (other: string | number | Long.Long) => Long.Long;
762
+ compare: (other: string | number | Long.Long) => number;
763
+ comp: (other: string | number | Long.Long) => number;
764
+ divide: (divisor: string | number | Long.Long) => Long.Long;
765
+ div: (divisor: string | number | Long.Long) => Long.Long;
766
+ equals: (other: string | number | Long.Long) => boolean;
767
+ eq: (other: string | number | Long.Long) => boolean;
768
+ getHighBits: () => number;
769
+ getHighBitsUnsigned: () => number;
770
+ getLowBits: () => number;
771
+ getLowBitsUnsigned: () => number;
772
+ getNumBitsAbs: () => number;
773
+ greaterThan: (other: string | number | Long.Long) => boolean;
774
+ gt: (other: string | number | Long.Long) => boolean;
775
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
776
+ gte: (other: string | number | Long.Long) => boolean;
777
+ isEven: () => boolean;
778
+ isNegative: () => boolean;
779
+ isOdd: () => boolean;
780
+ isPositive: () => boolean;
781
+ isZero: () => boolean;
782
+ lessThan: (other: string | number | Long.Long) => boolean;
783
+ lt: (other: string | number | Long.Long) => boolean;
784
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
785
+ lte: (other: string | number | Long.Long) => boolean;
786
+ modulo: (other: string | number | Long.Long) => Long.Long;
787
+ mod: (other: string | number | Long.Long) => Long.Long;
788
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
789
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
790
+ negate: () => Long.Long;
791
+ neg: () => Long.Long;
792
+ not: () => Long.Long;
793
+ notEquals: (other: string | number | Long.Long) => boolean;
794
+ neq: (other: string | number | Long.Long) => boolean;
795
+ or: (other: string | number | Long.Long) => Long.Long;
796
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
797
+ shl: (numBits: number | Long.Long) => Long.Long;
798
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
799
+ shr: (numBits: number | Long.Long) => Long.Long;
800
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
801
+ shru: (numBits: number | Long.Long) => Long.Long;
802
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
803
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
804
+ toInt: () => number;
805
+ toNumber: () => number;
806
+ toBytes: (le?: boolean) => number[];
807
+ toBytesLE: () => number[];
808
+ toBytesBE: () => number[];
809
+ toSigned: () => Long.Long;
810
+ toString: (radix?: number) => string;
811
+ toUnsigned: () => Long.Long;
812
+ xor: (other: string | number | Long.Long) => Long.Long;
813
+ } & { [K_3 in Exclude<keyof I["pagination"]["total"], keyof Long.Long>]: never; });
814
+ } & { [K_4 in Exclude<keyof I["pagination"], keyof PageResponse>]: never; };
815
+ } & { [K_5 in Exclude<keyof I, keyof QueryNFTsResponse>]: never; }>(base?: I): QueryNFTsResponse;
816
+ fromPartial<I_1 extends {
817
+ nfts?: {
818
+ classId?: string;
819
+ id?: string;
820
+ uri?: string;
821
+ uriHash?: string;
822
+ data?: {
823
+ typeUrl?: string;
824
+ value?: Uint8Array;
825
+ };
826
+ }[];
827
+ pagination?: {
828
+ nextKey?: Uint8Array;
829
+ total?: string | number | Long.Long;
830
+ };
831
+ } & {
832
+ nfts?: {
833
+ classId?: string;
834
+ id?: string;
835
+ uri?: string;
836
+ uriHash?: string;
837
+ data?: {
838
+ typeUrl?: string;
839
+ value?: Uint8Array;
840
+ };
841
+ }[] & ({
842
+ classId?: string;
843
+ id?: string;
844
+ uri?: string;
845
+ uriHash?: string;
846
+ data?: {
847
+ typeUrl?: string;
848
+ value?: Uint8Array;
849
+ };
850
+ } & {
851
+ classId?: string;
852
+ id?: string;
853
+ uri?: string;
854
+ uriHash?: string;
855
+ data?: {
856
+ typeUrl?: string;
857
+ value?: Uint8Array;
858
+ } & {
859
+ typeUrl?: string;
860
+ value?: Uint8Array;
861
+ } & { [K_6 in Exclude<keyof I_1["nfts"][number]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
862
+ } & { [K_7 in Exclude<keyof I_1["nfts"][number], keyof NFT>]: never; })[] & { [K_8 in Exclude<keyof I_1["nfts"], keyof {
863
+ classId?: string;
864
+ id?: string;
865
+ uri?: string;
866
+ uriHash?: string;
867
+ data?: {
868
+ typeUrl?: string;
869
+ value?: Uint8Array;
870
+ };
871
+ }[]>]: never; };
872
+ pagination?: {
873
+ nextKey?: Uint8Array;
874
+ total?: string | number | Long.Long;
875
+ } & {
876
+ nextKey?: Uint8Array;
877
+ total?: string | number | (Long.Long & {
878
+ high: number;
879
+ low: number;
880
+ unsigned: boolean;
881
+ add: (addend: string | number | Long.Long) => Long.Long;
882
+ and: (other: string | number | Long.Long) => Long.Long;
883
+ compare: (other: string | number | Long.Long) => number;
884
+ comp: (other: string | number | Long.Long) => number;
885
+ divide: (divisor: string | number | Long.Long) => Long.Long;
886
+ div: (divisor: string | number | Long.Long) => Long.Long;
887
+ equals: (other: string | number | Long.Long) => boolean;
888
+ eq: (other: string | number | Long.Long) => boolean;
889
+ getHighBits: () => number;
890
+ getHighBitsUnsigned: () => number;
891
+ getLowBits: () => number;
892
+ getLowBitsUnsigned: () => number;
893
+ getNumBitsAbs: () => number;
894
+ greaterThan: (other: string | number | Long.Long) => boolean;
895
+ gt: (other: string | number | Long.Long) => boolean;
896
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
897
+ gte: (other: string | number | Long.Long) => boolean;
898
+ isEven: () => boolean;
899
+ isNegative: () => boolean;
900
+ isOdd: () => boolean;
901
+ isPositive: () => boolean;
902
+ isZero: () => boolean;
903
+ lessThan: (other: string | number | Long.Long) => boolean;
904
+ lt: (other: string | number | Long.Long) => boolean;
905
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
906
+ lte: (other: string | number | Long.Long) => boolean;
907
+ modulo: (other: string | number | Long.Long) => Long.Long;
908
+ mod: (other: string | number | Long.Long) => Long.Long;
909
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
910
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
911
+ negate: () => Long.Long;
912
+ neg: () => Long.Long;
913
+ not: () => Long.Long;
914
+ notEquals: (other: string | number | Long.Long) => boolean;
915
+ neq: (other: string | number | Long.Long) => boolean;
916
+ or: (other: string | number | Long.Long) => Long.Long;
917
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
918
+ shl: (numBits: number | Long.Long) => Long.Long;
919
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
920
+ shr: (numBits: number | Long.Long) => Long.Long;
921
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
922
+ shru: (numBits: number | Long.Long) => Long.Long;
923
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
924
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
925
+ toInt: () => number;
926
+ toNumber: () => number;
927
+ toBytes: (le?: boolean) => number[];
928
+ toBytesLE: () => number[];
929
+ toBytesBE: () => number[];
930
+ toSigned: () => Long.Long;
931
+ toString: (radix?: number) => string;
932
+ toUnsigned: () => Long.Long;
933
+ xor: (other: string | number | Long.Long) => Long.Long;
934
+ } & { [K_9 in Exclude<keyof I_1["pagination"]["total"], keyof Long.Long>]: never; });
935
+ } & { [K_10 in Exclude<keyof I_1["pagination"], keyof PageResponse>]: never; };
936
+ } & { [K_11 in Exclude<keyof I_1, keyof QueryNFTsResponse>]: never; }>(object: I_1): QueryNFTsResponse;
937
+ };
938
+ export declare const QueryNFTRequest: {
939
+ encode(message: QueryNFTRequest, writer?: _m0.Writer): _m0.Writer;
940
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryNFTRequest;
941
+ fromJSON(object: any): QueryNFTRequest;
942
+ toJSON(message: QueryNFTRequest): unknown;
943
+ create<I extends {
944
+ classId?: string;
945
+ id?: string;
946
+ } & {
947
+ classId?: string;
948
+ id?: string;
949
+ } & { [K in Exclude<keyof I, keyof QueryNFTRequest>]: never; }>(base?: I): QueryNFTRequest;
950
+ fromPartial<I_1 extends {
951
+ classId?: string;
952
+ id?: string;
953
+ } & {
954
+ classId?: string;
955
+ id?: string;
956
+ } & { [K_1 in Exclude<keyof I_1, keyof QueryNFTRequest>]: never; }>(object: I_1): QueryNFTRequest;
957
+ };
958
+ export declare const QueryNFTResponse: {
959
+ encode(message: QueryNFTResponse, writer?: _m0.Writer): _m0.Writer;
960
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryNFTResponse;
961
+ fromJSON(object: any): QueryNFTResponse;
962
+ toJSON(message: QueryNFTResponse): unknown;
963
+ create<I extends {
964
+ nft?: {
965
+ classId?: string;
966
+ id?: string;
967
+ uri?: string;
968
+ uriHash?: string;
969
+ data?: {
970
+ typeUrl?: string;
971
+ value?: Uint8Array;
972
+ };
973
+ };
974
+ } & {
975
+ nft?: {
976
+ classId?: string;
977
+ id?: string;
978
+ uri?: string;
979
+ uriHash?: string;
980
+ data?: {
981
+ typeUrl?: string;
982
+ value?: Uint8Array;
983
+ };
984
+ } & {
985
+ classId?: string;
986
+ id?: string;
987
+ uri?: string;
988
+ uriHash?: string;
989
+ data?: {
990
+ typeUrl?: string;
991
+ value?: Uint8Array;
992
+ } & {
993
+ typeUrl?: string;
994
+ value?: Uint8Array;
995
+ } & { [K in Exclude<keyof I["nft"]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
996
+ } & { [K_1 in Exclude<keyof I["nft"], keyof NFT>]: never; };
997
+ } & { [K_2 in Exclude<keyof I, "nft">]: never; }>(base?: I): QueryNFTResponse;
998
+ fromPartial<I_1 extends {
999
+ nft?: {
1000
+ classId?: string;
1001
+ id?: string;
1002
+ uri?: string;
1003
+ uriHash?: string;
1004
+ data?: {
1005
+ typeUrl?: string;
1006
+ value?: Uint8Array;
1007
+ };
1008
+ };
1009
+ } & {
1010
+ nft?: {
1011
+ classId?: string;
1012
+ id?: string;
1013
+ uri?: string;
1014
+ uriHash?: string;
1015
+ data?: {
1016
+ typeUrl?: string;
1017
+ value?: Uint8Array;
1018
+ };
1019
+ } & {
1020
+ classId?: string;
1021
+ id?: string;
1022
+ uri?: string;
1023
+ uriHash?: string;
1024
+ data?: {
1025
+ typeUrl?: string;
1026
+ value?: Uint8Array;
1027
+ } & {
1028
+ typeUrl?: string;
1029
+ value?: Uint8Array;
1030
+ } & { [K_3 in Exclude<keyof I_1["nft"]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
1031
+ } & { [K_4 in Exclude<keyof I_1["nft"], keyof NFT>]: never; };
1032
+ } & { [K_5 in Exclude<keyof I_1, "nft">]: never; }>(object: I_1): QueryNFTResponse;
1033
+ };
1034
+ export declare const QueryClassRequest: {
1035
+ encode(message: QueryClassRequest, writer?: _m0.Writer): _m0.Writer;
1036
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassRequest;
1037
+ fromJSON(object: any): QueryClassRequest;
1038
+ toJSON(message: QueryClassRequest): unknown;
1039
+ create<I extends {
1040
+ classId?: string;
1041
+ } & {
1042
+ classId?: string;
1043
+ } & { [K in Exclude<keyof I, "classId">]: never; }>(base?: I): QueryClassRequest;
1044
+ fromPartial<I_1 extends {
1045
+ classId?: string;
1046
+ } & {
1047
+ classId?: string;
1048
+ } & { [K_1 in Exclude<keyof I_1, "classId">]: never; }>(object: I_1): QueryClassRequest;
1049
+ };
1050
+ export declare const QueryClassResponse: {
1051
+ encode(message: QueryClassResponse, writer?: _m0.Writer): _m0.Writer;
1052
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassResponse;
1053
+ fromJSON(object: any): QueryClassResponse;
1054
+ toJSON(message: QueryClassResponse): unknown;
1055
+ create<I extends {
1056
+ class?: {
1057
+ id?: string;
1058
+ name?: string;
1059
+ symbol?: string;
1060
+ description?: string;
1061
+ uri?: string;
1062
+ uriHash?: string;
1063
+ data?: {
1064
+ typeUrl?: string;
1065
+ value?: Uint8Array;
1066
+ };
1067
+ };
1068
+ } & {
1069
+ class?: {
1070
+ id?: string;
1071
+ name?: string;
1072
+ symbol?: string;
1073
+ description?: string;
1074
+ uri?: string;
1075
+ uriHash?: string;
1076
+ data?: {
1077
+ typeUrl?: string;
1078
+ value?: Uint8Array;
1079
+ };
1080
+ } & {
1081
+ id?: string;
1082
+ name?: string;
1083
+ symbol?: string;
1084
+ description?: string;
1085
+ uri?: string;
1086
+ uriHash?: string;
1087
+ data?: {
1088
+ typeUrl?: string;
1089
+ value?: Uint8Array;
1090
+ } & {
1091
+ typeUrl?: string;
1092
+ value?: Uint8Array;
1093
+ } & { [K in Exclude<keyof I["class"]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
1094
+ } & { [K_1 in Exclude<keyof I["class"], keyof Class>]: never; };
1095
+ } & { [K_2 in Exclude<keyof I, "class">]: never; }>(base?: I): QueryClassResponse;
1096
+ fromPartial<I_1 extends {
1097
+ class?: {
1098
+ id?: string;
1099
+ name?: string;
1100
+ symbol?: string;
1101
+ description?: string;
1102
+ uri?: string;
1103
+ uriHash?: string;
1104
+ data?: {
1105
+ typeUrl?: string;
1106
+ value?: Uint8Array;
1107
+ };
1108
+ };
1109
+ } & {
1110
+ class?: {
1111
+ id?: string;
1112
+ name?: string;
1113
+ symbol?: string;
1114
+ description?: string;
1115
+ uri?: string;
1116
+ uriHash?: string;
1117
+ data?: {
1118
+ typeUrl?: string;
1119
+ value?: Uint8Array;
1120
+ };
1121
+ } & {
1122
+ id?: string;
1123
+ name?: string;
1124
+ symbol?: string;
1125
+ description?: string;
1126
+ uri?: string;
1127
+ uriHash?: string;
1128
+ data?: {
1129
+ typeUrl?: string;
1130
+ value?: Uint8Array;
1131
+ } & {
1132
+ typeUrl?: string;
1133
+ value?: Uint8Array;
1134
+ } & { [K_3 in Exclude<keyof I_1["class"]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
1135
+ } & { [K_4 in Exclude<keyof I_1["class"], keyof Class>]: never; };
1136
+ } & { [K_5 in Exclude<keyof I_1, "class">]: never; }>(object: I_1): QueryClassResponse;
1137
+ };
1138
+ export declare const QueryClassesRequest: {
1139
+ encode(message: QueryClassesRequest, writer?: _m0.Writer): _m0.Writer;
1140
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassesRequest;
1141
+ fromJSON(object: any): QueryClassesRequest;
1142
+ toJSON(message: QueryClassesRequest): unknown;
1143
+ create<I extends {
1144
+ pagination?: {
1145
+ key?: Uint8Array;
1146
+ offset?: string | number | Long.Long;
1147
+ limit?: string | number | Long.Long;
1148
+ countTotal?: boolean;
1149
+ reverse?: boolean;
1150
+ };
1151
+ } & {
1152
+ pagination?: {
1153
+ key?: Uint8Array;
1154
+ offset?: string | number | Long.Long;
1155
+ limit?: string | number | Long.Long;
1156
+ countTotal?: boolean;
1157
+ reverse?: boolean;
1158
+ } & {
1159
+ key?: Uint8Array;
1160
+ offset?: string | number | (Long.Long & {
1161
+ high: number;
1162
+ low: number;
1163
+ unsigned: boolean;
1164
+ add: (addend: string | number | Long.Long) => Long.Long;
1165
+ and: (other: string | number | Long.Long) => Long.Long;
1166
+ compare: (other: string | number | Long.Long) => number;
1167
+ comp: (other: string | number | Long.Long) => number;
1168
+ divide: (divisor: string | number | Long.Long) => Long.Long;
1169
+ div: (divisor: string | number | Long.Long) => Long.Long;
1170
+ equals: (other: string | number | Long.Long) => boolean;
1171
+ eq: (other: string | number | Long.Long) => boolean;
1172
+ getHighBits: () => number;
1173
+ getHighBitsUnsigned: () => number;
1174
+ getLowBits: () => number;
1175
+ getLowBitsUnsigned: () => number;
1176
+ getNumBitsAbs: () => number;
1177
+ greaterThan: (other: string | number | Long.Long) => boolean;
1178
+ gt: (other: string | number | Long.Long) => boolean;
1179
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
1180
+ gte: (other: string | number | Long.Long) => boolean;
1181
+ isEven: () => boolean;
1182
+ isNegative: () => boolean;
1183
+ isOdd: () => boolean;
1184
+ isPositive: () => boolean;
1185
+ isZero: () => boolean;
1186
+ lessThan: (other: string | number | Long.Long) => boolean;
1187
+ lt: (other: string | number | Long.Long) => boolean;
1188
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
1189
+ lte: (other: string | number | Long.Long) => boolean;
1190
+ modulo: (other: string | number | Long.Long) => Long.Long;
1191
+ mod: (other: string | number | Long.Long) => Long.Long;
1192
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
1193
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
1194
+ negate: () => Long.Long;
1195
+ neg: () => Long.Long;
1196
+ not: () => Long.Long;
1197
+ notEquals: (other: string | number | Long.Long) => boolean;
1198
+ neq: (other: string | number | Long.Long) => boolean;
1199
+ or: (other: string | number | Long.Long) => Long.Long;
1200
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
1201
+ shl: (numBits: number | Long.Long) => Long.Long;
1202
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
1203
+ shr: (numBits: number | Long.Long) => Long.Long;
1204
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
1205
+ shru: (numBits: number | Long.Long) => Long.Long;
1206
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
1207
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
1208
+ toInt: () => number;
1209
+ toNumber: () => number;
1210
+ toBytes: (le?: boolean) => number[];
1211
+ toBytesLE: () => number[];
1212
+ toBytesBE: () => number[];
1213
+ toSigned: () => Long.Long;
1214
+ toString: (radix?: number) => string;
1215
+ toUnsigned: () => Long.Long;
1216
+ xor: (other: string | number | Long.Long) => Long.Long;
1217
+ } & { [K in Exclude<keyof I["pagination"]["offset"], keyof Long.Long>]: never; });
1218
+ limit?: string | number | (Long.Long & {
1219
+ high: number;
1220
+ low: number;
1221
+ unsigned: boolean;
1222
+ add: (addend: string | number | Long.Long) => Long.Long;
1223
+ and: (other: string | number | Long.Long) => Long.Long;
1224
+ compare: (other: string | number | Long.Long) => number;
1225
+ comp: (other: string | number | Long.Long) => number;
1226
+ divide: (divisor: string | number | Long.Long) => Long.Long;
1227
+ div: (divisor: string | number | Long.Long) => Long.Long;
1228
+ equals: (other: string | number | Long.Long) => boolean;
1229
+ eq: (other: string | number | Long.Long) => boolean;
1230
+ getHighBits: () => number;
1231
+ getHighBitsUnsigned: () => number;
1232
+ getLowBits: () => number;
1233
+ getLowBitsUnsigned: () => number;
1234
+ getNumBitsAbs: () => number;
1235
+ greaterThan: (other: string | number | Long.Long) => boolean;
1236
+ gt: (other: string | number | Long.Long) => boolean;
1237
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
1238
+ gte: (other: string | number | Long.Long) => boolean;
1239
+ isEven: () => boolean;
1240
+ isNegative: () => boolean;
1241
+ isOdd: () => boolean;
1242
+ isPositive: () => boolean;
1243
+ isZero: () => boolean;
1244
+ lessThan: (other: string | number | Long.Long) => boolean;
1245
+ lt: (other: string | number | Long.Long) => boolean;
1246
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
1247
+ lte: (other: string | number | Long.Long) => boolean;
1248
+ modulo: (other: string | number | Long.Long) => Long.Long;
1249
+ mod: (other: string | number | Long.Long) => Long.Long;
1250
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
1251
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
1252
+ negate: () => Long.Long;
1253
+ neg: () => Long.Long;
1254
+ not: () => Long.Long;
1255
+ notEquals: (other: string | number | Long.Long) => boolean;
1256
+ neq: (other: string | number | Long.Long) => boolean;
1257
+ or: (other: string | number | Long.Long) => Long.Long;
1258
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
1259
+ shl: (numBits: number | Long.Long) => Long.Long;
1260
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
1261
+ shr: (numBits: number | Long.Long) => Long.Long;
1262
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
1263
+ shru: (numBits: number | Long.Long) => Long.Long;
1264
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
1265
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
1266
+ toInt: () => number;
1267
+ toNumber: () => number;
1268
+ toBytes: (le?: boolean) => number[];
1269
+ toBytesLE: () => number[];
1270
+ toBytesBE: () => number[];
1271
+ toSigned: () => Long.Long;
1272
+ toString: (radix?: number) => string;
1273
+ toUnsigned: () => Long.Long;
1274
+ xor: (other: string | number | Long.Long) => Long.Long;
1275
+ } & { [K_1 in Exclude<keyof I["pagination"]["limit"], keyof Long.Long>]: never; });
1276
+ countTotal?: boolean;
1277
+ reverse?: boolean;
1278
+ } & { [K_2 in Exclude<keyof I["pagination"], keyof PageRequest>]: never; };
1279
+ } & { [K_3 in Exclude<keyof I, "pagination">]: never; }>(base?: I): QueryClassesRequest;
1280
+ fromPartial<I_1 extends {
1281
+ pagination?: {
1282
+ key?: Uint8Array;
1283
+ offset?: string | number | Long.Long;
1284
+ limit?: string | number | Long.Long;
1285
+ countTotal?: boolean;
1286
+ reverse?: boolean;
1287
+ };
1288
+ } & {
1289
+ pagination?: {
1290
+ key?: Uint8Array;
1291
+ offset?: string | number | Long.Long;
1292
+ limit?: string | number | Long.Long;
1293
+ countTotal?: boolean;
1294
+ reverse?: boolean;
1295
+ } & {
1296
+ key?: Uint8Array;
1297
+ offset?: string | number | (Long.Long & {
1298
+ high: number;
1299
+ low: number;
1300
+ unsigned: boolean;
1301
+ add: (addend: string | number | Long.Long) => Long.Long;
1302
+ and: (other: string | number | Long.Long) => Long.Long;
1303
+ compare: (other: string | number | Long.Long) => number;
1304
+ comp: (other: string | number | Long.Long) => number;
1305
+ divide: (divisor: string | number | Long.Long) => Long.Long;
1306
+ div: (divisor: string | number | Long.Long) => Long.Long;
1307
+ equals: (other: string | number | Long.Long) => boolean;
1308
+ eq: (other: string | number | Long.Long) => boolean;
1309
+ getHighBits: () => number;
1310
+ getHighBitsUnsigned: () => number;
1311
+ getLowBits: () => number;
1312
+ getLowBitsUnsigned: () => number;
1313
+ getNumBitsAbs: () => number;
1314
+ greaterThan: (other: string | number | Long.Long) => boolean;
1315
+ gt: (other: string | number | Long.Long) => boolean;
1316
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
1317
+ gte: (other: string | number | Long.Long) => boolean;
1318
+ isEven: () => boolean;
1319
+ isNegative: () => boolean;
1320
+ isOdd: () => boolean;
1321
+ isPositive: () => boolean;
1322
+ isZero: () => boolean;
1323
+ lessThan: (other: string | number | Long.Long) => boolean;
1324
+ lt: (other: string | number | Long.Long) => boolean;
1325
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
1326
+ lte: (other: string | number | Long.Long) => boolean;
1327
+ modulo: (other: string | number | Long.Long) => Long.Long;
1328
+ mod: (other: string | number | Long.Long) => Long.Long;
1329
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
1330
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
1331
+ negate: () => Long.Long;
1332
+ neg: () => Long.Long;
1333
+ not: () => Long.Long;
1334
+ notEquals: (other: string | number | Long.Long) => boolean;
1335
+ neq: (other: string | number | Long.Long) => boolean;
1336
+ or: (other: string | number | Long.Long) => Long.Long;
1337
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
1338
+ shl: (numBits: number | Long.Long) => Long.Long;
1339
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
1340
+ shr: (numBits: number | Long.Long) => Long.Long;
1341
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
1342
+ shru: (numBits: number | Long.Long) => Long.Long;
1343
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
1344
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
1345
+ toInt: () => number;
1346
+ toNumber: () => number;
1347
+ toBytes: (le?: boolean) => number[];
1348
+ toBytesLE: () => number[];
1349
+ toBytesBE: () => number[];
1350
+ toSigned: () => Long.Long;
1351
+ toString: (radix?: number) => string;
1352
+ toUnsigned: () => Long.Long;
1353
+ xor: (other: string | number | Long.Long) => Long.Long;
1354
+ } & { [K_4 in Exclude<keyof I_1["pagination"]["offset"], keyof Long.Long>]: never; });
1355
+ limit?: string | number | (Long.Long & {
1356
+ high: number;
1357
+ low: number;
1358
+ unsigned: boolean;
1359
+ add: (addend: string | number | Long.Long) => Long.Long;
1360
+ and: (other: string | number | Long.Long) => Long.Long;
1361
+ compare: (other: string | number | Long.Long) => number;
1362
+ comp: (other: string | number | Long.Long) => number;
1363
+ divide: (divisor: string | number | Long.Long) => Long.Long;
1364
+ div: (divisor: string | number | Long.Long) => Long.Long;
1365
+ equals: (other: string | number | Long.Long) => boolean;
1366
+ eq: (other: string | number | Long.Long) => boolean;
1367
+ getHighBits: () => number;
1368
+ getHighBitsUnsigned: () => number;
1369
+ getLowBits: () => number;
1370
+ getLowBitsUnsigned: () => number;
1371
+ getNumBitsAbs: () => number;
1372
+ greaterThan: (other: string | number | Long.Long) => boolean;
1373
+ gt: (other: string | number | Long.Long) => boolean;
1374
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
1375
+ gte: (other: string | number | Long.Long) => boolean;
1376
+ isEven: () => boolean;
1377
+ isNegative: () => boolean;
1378
+ isOdd: () => boolean;
1379
+ isPositive: () => boolean;
1380
+ isZero: () => boolean;
1381
+ lessThan: (other: string | number | Long.Long) => boolean;
1382
+ lt: (other: string | number | Long.Long) => boolean;
1383
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
1384
+ lte: (other: string | number | Long.Long) => boolean;
1385
+ modulo: (other: string | number | Long.Long) => Long.Long;
1386
+ mod: (other: string | number | Long.Long) => Long.Long;
1387
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
1388
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
1389
+ negate: () => Long.Long;
1390
+ neg: () => Long.Long;
1391
+ not: () => Long.Long;
1392
+ notEquals: (other: string | number | Long.Long) => boolean;
1393
+ neq: (other: string | number | Long.Long) => boolean;
1394
+ or: (other: string | number | Long.Long) => Long.Long;
1395
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
1396
+ shl: (numBits: number | Long.Long) => Long.Long;
1397
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
1398
+ shr: (numBits: number | Long.Long) => Long.Long;
1399
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
1400
+ shru: (numBits: number | Long.Long) => Long.Long;
1401
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
1402
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
1403
+ toInt: () => number;
1404
+ toNumber: () => number;
1405
+ toBytes: (le?: boolean) => number[];
1406
+ toBytesLE: () => number[];
1407
+ toBytesBE: () => number[];
1408
+ toSigned: () => Long.Long;
1409
+ toString: (radix?: number) => string;
1410
+ toUnsigned: () => Long.Long;
1411
+ xor: (other: string | number | Long.Long) => Long.Long;
1412
+ } & { [K_5 in Exclude<keyof I_1["pagination"]["limit"], keyof Long.Long>]: never; });
1413
+ countTotal?: boolean;
1414
+ reverse?: boolean;
1415
+ } & { [K_6 in Exclude<keyof I_1["pagination"], keyof PageRequest>]: never; };
1416
+ } & { [K_7 in Exclude<keyof I_1, "pagination">]: never; }>(object: I_1): QueryClassesRequest;
1417
+ };
1418
+ export declare const QueryClassesResponse: {
1419
+ encode(message: QueryClassesResponse, writer?: _m0.Writer): _m0.Writer;
1420
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryClassesResponse;
1421
+ fromJSON(object: any): QueryClassesResponse;
1422
+ toJSON(message: QueryClassesResponse): unknown;
1423
+ create<I extends {
1424
+ classes?: {
1425
+ id?: string;
1426
+ name?: string;
1427
+ symbol?: string;
1428
+ description?: string;
1429
+ uri?: string;
1430
+ uriHash?: string;
1431
+ data?: {
1432
+ typeUrl?: string;
1433
+ value?: Uint8Array;
1434
+ };
1435
+ }[];
1436
+ pagination?: {
1437
+ nextKey?: Uint8Array;
1438
+ total?: string | number | Long.Long;
1439
+ };
1440
+ } & {
1441
+ classes?: {
1442
+ id?: string;
1443
+ name?: string;
1444
+ symbol?: string;
1445
+ description?: string;
1446
+ uri?: string;
1447
+ uriHash?: string;
1448
+ data?: {
1449
+ typeUrl?: string;
1450
+ value?: Uint8Array;
1451
+ };
1452
+ }[] & ({
1453
+ id?: string;
1454
+ name?: string;
1455
+ symbol?: string;
1456
+ description?: string;
1457
+ uri?: string;
1458
+ uriHash?: string;
1459
+ data?: {
1460
+ typeUrl?: string;
1461
+ value?: Uint8Array;
1462
+ };
1463
+ } & {
1464
+ id?: string;
1465
+ name?: string;
1466
+ symbol?: string;
1467
+ description?: string;
1468
+ uri?: string;
1469
+ uriHash?: string;
1470
+ data?: {
1471
+ typeUrl?: string;
1472
+ value?: Uint8Array;
1473
+ } & {
1474
+ typeUrl?: string;
1475
+ value?: Uint8Array;
1476
+ } & { [K in Exclude<keyof I["classes"][number]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
1477
+ } & { [K_1 in Exclude<keyof I["classes"][number], keyof Class>]: never; })[] & { [K_2 in Exclude<keyof I["classes"], keyof {
1478
+ id?: string;
1479
+ name?: string;
1480
+ symbol?: string;
1481
+ description?: string;
1482
+ uri?: string;
1483
+ uriHash?: string;
1484
+ data?: {
1485
+ typeUrl?: string;
1486
+ value?: Uint8Array;
1487
+ };
1488
+ }[]>]: never; };
1489
+ pagination?: {
1490
+ nextKey?: Uint8Array;
1491
+ total?: string | number | Long.Long;
1492
+ } & {
1493
+ nextKey?: Uint8Array;
1494
+ total?: string | number | (Long.Long & {
1495
+ high: number;
1496
+ low: number;
1497
+ unsigned: boolean;
1498
+ add: (addend: string | number | Long.Long) => Long.Long;
1499
+ and: (other: string | number | Long.Long) => Long.Long;
1500
+ compare: (other: string | number | Long.Long) => number;
1501
+ comp: (other: string | number | Long.Long) => number;
1502
+ divide: (divisor: string | number | Long.Long) => Long.Long;
1503
+ div: (divisor: string | number | Long.Long) => Long.Long;
1504
+ equals: (other: string | number | Long.Long) => boolean;
1505
+ eq: (other: string | number | Long.Long) => boolean;
1506
+ getHighBits: () => number;
1507
+ getHighBitsUnsigned: () => number;
1508
+ getLowBits: () => number;
1509
+ getLowBitsUnsigned: () => number;
1510
+ getNumBitsAbs: () => number;
1511
+ greaterThan: (other: string | number | Long.Long) => boolean;
1512
+ gt: (other: string | number | Long.Long) => boolean;
1513
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
1514
+ gte: (other: string | number | Long.Long) => boolean;
1515
+ isEven: () => boolean;
1516
+ isNegative: () => boolean;
1517
+ isOdd: () => boolean;
1518
+ isPositive: () => boolean;
1519
+ isZero: () => boolean;
1520
+ lessThan: (other: string | number | Long.Long) => boolean;
1521
+ lt: (other: string | number | Long.Long) => boolean;
1522
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
1523
+ lte: (other: string | number | Long.Long) => boolean;
1524
+ modulo: (other: string | number | Long.Long) => Long.Long;
1525
+ mod: (other: string | number | Long.Long) => Long.Long;
1526
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
1527
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
1528
+ negate: () => Long.Long;
1529
+ neg: () => Long.Long;
1530
+ not: () => Long.Long;
1531
+ notEquals: (other: string | number | Long.Long) => boolean;
1532
+ neq: (other: string | number | Long.Long) => boolean;
1533
+ or: (other: string | number | Long.Long) => Long.Long;
1534
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
1535
+ shl: (numBits: number | Long.Long) => Long.Long;
1536
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
1537
+ shr: (numBits: number | Long.Long) => Long.Long;
1538
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
1539
+ shru: (numBits: number | Long.Long) => Long.Long;
1540
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
1541
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
1542
+ toInt: () => number;
1543
+ toNumber: () => number;
1544
+ toBytes: (le?: boolean) => number[];
1545
+ toBytesLE: () => number[];
1546
+ toBytesBE: () => number[];
1547
+ toSigned: () => Long.Long;
1548
+ toString: (radix?: number) => string;
1549
+ toUnsigned: () => Long.Long;
1550
+ xor: (other: string | number | Long.Long) => Long.Long;
1551
+ } & { [K_3 in Exclude<keyof I["pagination"]["total"], keyof Long.Long>]: never; });
1552
+ } & { [K_4 in Exclude<keyof I["pagination"], keyof PageResponse>]: never; };
1553
+ } & { [K_5 in Exclude<keyof I, keyof QueryClassesResponse>]: never; }>(base?: I): QueryClassesResponse;
1554
+ fromPartial<I_1 extends {
1555
+ classes?: {
1556
+ id?: string;
1557
+ name?: string;
1558
+ symbol?: string;
1559
+ description?: string;
1560
+ uri?: string;
1561
+ uriHash?: string;
1562
+ data?: {
1563
+ typeUrl?: string;
1564
+ value?: Uint8Array;
1565
+ };
1566
+ }[];
1567
+ pagination?: {
1568
+ nextKey?: Uint8Array;
1569
+ total?: string | number | Long.Long;
1570
+ };
1571
+ } & {
1572
+ classes?: {
1573
+ id?: string;
1574
+ name?: string;
1575
+ symbol?: string;
1576
+ description?: string;
1577
+ uri?: string;
1578
+ uriHash?: string;
1579
+ data?: {
1580
+ typeUrl?: string;
1581
+ value?: Uint8Array;
1582
+ };
1583
+ }[] & ({
1584
+ id?: string;
1585
+ name?: string;
1586
+ symbol?: string;
1587
+ description?: string;
1588
+ uri?: string;
1589
+ uriHash?: string;
1590
+ data?: {
1591
+ typeUrl?: string;
1592
+ value?: Uint8Array;
1593
+ };
1594
+ } & {
1595
+ id?: string;
1596
+ name?: string;
1597
+ symbol?: string;
1598
+ description?: string;
1599
+ uri?: string;
1600
+ uriHash?: string;
1601
+ data?: {
1602
+ typeUrl?: string;
1603
+ value?: Uint8Array;
1604
+ } & {
1605
+ typeUrl?: string;
1606
+ value?: Uint8Array;
1607
+ } & { [K_6 in Exclude<keyof I_1["classes"][number]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
1608
+ } & { [K_7 in Exclude<keyof I_1["classes"][number], keyof Class>]: never; })[] & { [K_8 in Exclude<keyof I_1["classes"], keyof {
1609
+ id?: string;
1610
+ name?: string;
1611
+ symbol?: string;
1612
+ description?: string;
1613
+ uri?: string;
1614
+ uriHash?: string;
1615
+ data?: {
1616
+ typeUrl?: string;
1617
+ value?: Uint8Array;
1618
+ };
1619
+ }[]>]: never; };
1620
+ pagination?: {
1621
+ nextKey?: Uint8Array;
1622
+ total?: string | number | Long.Long;
1623
+ } & {
1624
+ nextKey?: Uint8Array;
1625
+ total?: string | number | (Long.Long & {
1626
+ high: number;
1627
+ low: number;
1628
+ unsigned: boolean;
1629
+ add: (addend: string | number | Long.Long) => Long.Long;
1630
+ and: (other: string | number | Long.Long) => Long.Long;
1631
+ compare: (other: string | number | Long.Long) => number;
1632
+ comp: (other: string | number | Long.Long) => number;
1633
+ divide: (divisor: string | number | Long.Long) => Long.Long;
1634
+ div: (divisor: string | number | Long.Long) => Long.Long;
1635
+ equals: (other: string | number | Long.Long) => boolean;
1636
+ eq: (other: string | number | Long.Long) => boolean;
1637
+ getHighBits: () => number;
1638
+ getHighBitsUnsigned: () => number;
1639
+ getLowBits: () => number;
1640
+ getLowBitsUnsigned: () => number;
1641
+ getNumBitsAbs: () => number;
1642
+ greaterThan: (other: string | number | Long.Long) => boolean;
1643
+ gt: (other: string | number | Long.Long) => boolean;
1644
+ greaterThanOrEqual: (other: string | number | Long.Long) => boolean;
1645
+ gte: (other: string | number | Long.Long) => boolean;
1646
+ isEven: () => boolean;
1647
+ isNegative: () => boolean;
1648
+ isOdd: () => boolean;
1649
+ isPositive: () => boolean;
1650
+ isZero: () => boolean;
1651
+ lessThan: (other: string | number | Long.Long) => boolean;
1652
+ lt: (other: string | number | Long.Long) => boolean;
1653
+ lessThanOrEqual: (other: string | number | Long.Long) => boolean;
1654
+ lte: (other: string | number | Long.Long) => boolean;
1655
+ modulo: (other: string | number | Long.Long) => Long.Long;
1656
+ mod: (other: string | number | Long.Long) => Long.Long;
1657
+ multiply: (multiplier: string | number | Long.Long) => Long.Long;
1658
+ mul: (multiplier: string | number | Long.Long) => Long.Long;
1659
+ negate: () => Long.Long;
1660
+ neg: () => Long.Long;
1661
+ not: () => Long.Long;
1662
+ notEquals: (other: string | number | Long.Long) => boolean;
1663
+ neq: (other: string | number | Long.Long) => boolean;
1664
+ or: (other: string | number | Long.Long) => Long.Long;
1665
+ shiftLeft: (numBits: number | Long.Long) => Long.Long;
1666
+ shl: (numBits: number | Long.Long) => Long.Long;
1667
+ shiftRight: (numBits: number | Long.Long) => Long.Long;
1668
+ shr: (numBits: number | Long.Long) => Long.Long;
1669
+ shiftRightUnsigned: (numBits: number | Long.Long) => Long.Long;
1670
+ shru: (numBits: number | Long.Long) => Long.Long;
1671
+ subtract: (subtrahend: string | number | Long.Long) => Long.Long;
1672
+ sub: (subtrahend: string | number | Long.Long) => Long.Long;
1673
+ toInt: () => number;
1674
+ toNumber: () => number;
1675
+ toBytes: (le?: boolean) => number[];
1676
+ toBytesLE: () => number[];
1677
+ toBytesBE: () => number[];
1678
+ toSigned: () => Long.Long;
1679
+ toString: (radix?: number) => string;
1680
+ toUnsigned: () => Long.Long;
1681
+ xor: (other: string | number | Long.Long) => Long.Long;
1682
+ } & { [K_9 in Exclude<keyof I_1["pagination"]["total"], keyof Long.Long>]: never; });
1683
+ } & { [K_10 in Exclude<keyof I_1["pagination"], keyof PageResponse>]: never; };
1684
+ } & { [K_11 in Exclude<keyof I_1, keyof QueryClassesResponse>]: never; }>(object: I_1): QueryClassesResponse;
1685
+ };
1686
+ /** Query defines the gRPC querier service. */
1687
+ export interface Query {
1688
+ /** Balance queries the number of NFTs of a given class owned by the owner, same as balanceOf in ERC721 */
1689
+ Balance(request: QueryBalanceRequest): Promise<QueryBalanceResponse>;
1690
+ /** Owner queries the owner of the NFT based on its class and id, same as ownerOf in ERC721 */
1691
+ Owner(request: QueryOwnerRequest): Promise<QueryOwnerResponse>;
1692
+ /** Supply queries the number of NFTs from the given class, same as totalSupply of ERC721. */
1693
+ Supply(request: QuerySupplyRequest): Promise<QuerySupplyResponse>;
1694
+ /**
1695
+ * NFTs queries all NFTs of a given class or owner,choose at least one of the two, similar to tokenByIndex in
1696
+ * ERC721Enumerable
1697
+ */
1698
+ NFTs(request: QueryNFTsRequest): Promise<QueryNFTsResponse>;
1699
+ /** NFT queries an NFT based on its class and id. */
1700
+ NFT(request: QueryNFTRequest): Promise<QueryNFTResponse>;
1701
+ /** Class queries an NFT class based on its id */
1702
+ Class(request: QueryClassRequest): Promise<QueryClassResponse>;
1703
+ /** Classes queries all NFT classes */
1704
+ Classes(request: QueryClassesRequest): Promise<QueryClassesResponse>;
1705
+ }
1706
+ export declare class QueryClientImpl implements Query {
1707
+ private readonly rpc;
1708
+ private readonly service;
1709
+ constructor(rpc: Rpc, opts?: {
1710
+ service?: string;
1711
+ });
1712
+ Balance(request: QueryBalanceRequest): Promise<QueryBalanceResponse>;
1713
+ Owner(request: QueryOwnerRequest): Promise<QueryOwnerResponse>;
1714
+ Supply(request: QuerySupplyRequest): Promise<QuerySupplyResponse>;
1715
+ NFTs(request: QueryNFTsRequest): Promise<QueryNFTsResponse>;
1716
+ NFT(request: QueryNFTRequest): Promise<QueryNFTResponse>;
1717
+ Class(request: QueryClassRequest): Promise<QueryClassResponse>;
1718
+ Classes(request: QueryClassesRequest): Promise<QueryClassesResponse>;
1719
+ }
1720
+ interface Rpc {
1721
+ request(service: string, method: string, data: Uint8Array): Promise<Uint8Array>;
1722
+ }
1723
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
1724
+ export type DeepPartial<T> = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
1725
+ [K in keyof T]?: DeepPartial<T[K]>;
1726
+ } : Partial<T>;
1727
+ type KeysOfUnion<T> = T extends T ? keyof T : never;
1728
+ export type Exact<P, I extends P> = P extends Builtin ? P : P & {
1729
+ [K in keyof P]: Exact<P[K], I[K]>;
1730
+ } & {
1731
+ [K in Exclude<keyof I, KeysOfUnion<P>>]: never;
1732
+ };
1733
+ export {};