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,460 @@
1
+ import Long from "long";
2
+ import _m0 from "protobufjs/minimal";
3
+ import { Class, NFT } from "./nft";
4
+ export declare const protobufPackage = "coreum.nft.v1beta1";
5
+ /** GenesisState defines the nft module's genesis state. */
6
+ export interface GenesisState {
7
+ /** class defines the class of the nft type. */
8
+ classes: Class[];
9
+ entries: Entry[];
10
+ }
11
+ /** Entry Defines all nft owned by a person */
12
+ export interface Entry {
13
+ /** owner is the owner address of the following nft */
14
+ owner: string;
15
+ /** nfts is a group of nfts of the same owner */
16
+ nfts: NFT[];
17
+ }
18
+ export declare const GenesisState: {
19
+ encode(message: GenesisState, writer?: _m0.Writer): _m0.Writer;
20
+ decode(input: _m0.Reader | Uint8Array, length?: number): GenesisState;
21
+ fromJSON(object: any): GenesisState;
22
+ toJSON(message: GenesisState): unknown;
23
+ create<I extends {
24
+ classes?: {
25
+ id?: string;
26
+ name?: string;
27
+ symbol?: string;
28
+ description?: string;
29
+ uri?: string;
30
+ uriHash?: string;
31
+ data?: {
32
+ typeUrl?: string;
33
+ value?: Uint8Array;
34
+ };
35
+ }[];
36
+ entries?: {
37
+ owner?: string;
38
+ nfts?: {
39
+ classId?: string;
40
+ id?: string;
41
+ uri?: string;
42
+ uriHash?: string;
43
+ data?: {
44
+ typeUrl?: string;
45
+ value?: Uint8Array;
46
+ };
47
+ }[];
48
+ }[];
49
+ } & {
50
+ classes?: {
51
+ id?: string;
52
+ name?: string;
53
+ symbol?: string;
54
+ description?: string;
55
+ uri?: string;
56
+ uriHash?: string;
57
+ data?: {
58
+ typeUrl?: string;
59
+ value?: Uint8Array;
60
+ };
61
+ }[] & ({
62
+ id?: string;
63
+ name?: string;
64
+ symbol?: string;
65
+ description?: string;
66
+ uri?: string;
67
+ uriHash?: string;
68
+ data?: {
69
+ typeUrl?: string;
70
+ value?: Uint8Array;
71
+ };
72
+ } & {
73
+ id?: string;
74
+ name?: string;
75
+ symbol?: string;
76
+ description?: string;
77
+ uri?: string;
78
+ uriHash?: string;
79
+ data?: {
80
+ typeUrl?: string;
81
+ value?: Uint8Array;
82
+ } & {
83
+ typeUrl?: string;
84
+ value?: Uint8Array;
85
+ } & { [K in Exclude<keyof I["classes"][number]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
86
+ } & { [K_1 in Exclude<keyof I["classes"][number], keyof Class>]: never; })[] & { [K_2 in Exclude<keyof I["classes"], keyof {
87
+ id?: string;
88
+ name?: string;
89
+ symbol?: string;
90
+ description?: string;
91
+ uri?: string;
92
+ uriHash?: string;
93
+ data?: {
94
+ typeUrl?: string;
95
+ value?: Uint8Array;
96
+ };
97
+ }[]>]: never; };
98
+ entries?: {
99
+ owner?: string;
100
+ nfts?: {
101
+ classId?: string;
102
+ id?: string;
103
+ uri?: string;
104
+ uriHash?: string;
105
+ data?: {
106
+ typeUrl?: string;
107
+ value?: Uint8Array;
108
+ };
109
+ }[];
110
+ }[] & ({
111
+ owner?: string;
112
+ nfts?: {
113
+ classId?: string;
114
+ id?: string;
115
+ uri?: string;
116
+ uriHash?: string;
117
+ data?: {
118
+ typeUrl?: string;
119
+ value?: Uint8Array;
120
+ };
121
+ }[];
122
+ } & {
123
+ owner?: string;
124
+ nfts?: {
125
+ classId?: string;
126
+ id?: string;
127
+ uri?: string;
128
+ uriHash?: string;
129
+ data?: {
130
+ typeUrl?: string;
131
+ value?: Uint8Array;
132
+ };
133
+ }[] & ({
134
+ classId?: string;
135
+ id?: string;
136
+ uri?: string;
137
+ uriHash?: string;
138
+ data?: {
139
+ typeUrl?: string;
140
+ value?: Uint8Array;
141
+ };
142
+ } & {
143
+ classId?: string;
144
+ id?: string;
145
+ uri?: string;
146
+ uriHash?: string;
147
+ data?: {
148
+ typeUrl?: string;
149
+ value?: Uint8Array;
150
+ } & {
151
+ typeUrl?: string;
152
+ value?: Uint8Array;
153
+ } & { [K_3 in Exclude<keyof I["entries"][number]["nfts"][number]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
154
+ } & { [K_4 in Exclude<keyof I["entries"][number]["nfts"][number], keyof NFT>]: never; })[] & { [K_5 in Exclude<keyof I["entries"][number]["nfts"], keyof {
155
+ classId?: string;
156
+ id?: string;
157
+ uri?: string;
158
+ uriHash?: string;
159
+ data?: {
160
+ typeUrl?: string;
161
+ value?: Uint8Array;
162
+ };
163
+ }[]>]: never; };
164
+ } & { [K_6 in Exclude<keyof I["entries"][number], keyof Entry>]: never; })[] & { [K_7 in Exclude<keyof I["entries"], keyof {
165
+ owner?: string;
166
+ nfts?: {
167
+ classId?: string;
168
+ id?: string;
169
+ uri?: string;
170
+ uriHash?: string;
171
+ data?: {
172
+ typeUrl?: string;
173
+ value?: Uint8Array;
174
+ };
175
+ }[];
176
+ }[]>]: never; };
177
+ } & { [K_8 in Exclude<keyof I, keyof GenesisState>]: never; }>(base?: I): GenesisState;
178
+ fromPartial<I_1 extends {
179
+ classes?: {
180
+ id?: string;
181
+ name?: string;
182
+ symbol?: string;
183
+ description?: string;
184
+ uri?: string;
185
+ uriHash?: string;
186
+ data?: {
187
+ typeUrl?: string;
188
+ value?: Uint8Array;
189
+ };
190
+ }[];
191
+ entries?: {
192
+ owner?: string;
193
+ nfts?: {
194
+ classId?: string;
195
+ id?: string;
196
+ uri?: string;
197
+ uriHash?: string;
198
+ data?: {
199
+ typeUrl?: string;
200
+ value?: Uint8Array;
201
+ };
202
+ }[];
203
+ }[];
204
+ } & {
205
+ classes?: {
206
+ id?: string;
207
+ name?: string;
208
+ symbol?: string;
209
+ description?: string;
210
+ uri?: string;
211
+ uriHash?: string;
212
+ data?: {
213
+ typeUrl?: string;
214
+ value?: Uint8Array;
215
+ };
216
+ }[] & ({
217
+ id?: string;
218
+ name?: string;
219
+ symbol?: string;
220
+ description?: string;
221
+ uri?: string;
222
+ uriHash?: string;
223
+ data?: {
224
+ typeUrl?: string;
225
+ value?: Uint8Array;
226
+ };
227
+ } & {
228
+ id?: string;
229
+ name?: string;
230
+ symbol?: string;
231
+ description?: string;
232
+ uri?: string;
233
+ uriHash?: string;
234
+ data?: {
235
+ typeUrl?: string;
236
+ value?: Uint8Array;
237
+ } & {
238
+ typeUrl?: string;
239
+ value?: Uint8Array;
240
+ } & { [K_9 in Exclude<keyof I_1["classes"][number]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
241
+ } & { [K_10 in Exclude<keyof I_1["classes"][number], keyof Class>]: never; })[] & { [K_11 in Exclude<keyof I_1["classes"], keyof {
242
+ id?: string;
243
+ name?: string;
244
+ symbol?: string;
245
+ description?: string;
246
+ uri?: string;
247
+ uriHash?: string;
248
+ data?: {
249
+ typeUrl?: string;
250
+ value?: Uint8Array;
251
+ };
252
+ }[]>]: never; };
253
+ entries?: {
254
+ owner?: string;
255
+ nfts?: {
256
+ classId?: string;
257
+ id?: string;
258
+ uri?: string;
259
+ uriHash?: string;
260
+ data?: {
261
+ typeUrl?: string;
262
+ value?: Uint8Array;
263
+ };
264
+ }[];
265
+ }[] & ({
266
+ owner?: string;
267
+ nfts?: {
268
+ classId?: string;
269
+ id?: string;
270
+ uri?: string;
271
+ uriHash?: string;
272
+ data?: {
273
+ typeUrl?: string;
274
+ value?: Uint8Array;
275
+ };
276
+ }[];
277
+ } & {
278
+ owner?: string;
279
+ nfts?: {
280
+ classId?: string;
281
+ id?: string;
282
+ uri?: string;
283
+ uriHash?: string;
284
+ data?: {
285
+ typeUrl?: string;
286
+ value?: Uint8Array;
287
+ };
288
+ }[] & ({
289
+ classId?: string;
290
+ id?: string;
291
+ uri?: string;
292
+ uriHash?: string;
293
+ data?: {
294
+ typeUrl?: string;
295
+ value?: Uint8Array;
296
+ };
297
+ } & {
298
+ classId?: string;
299
+ id?: string;
300
+ uri?: string;
301
+ uriHash?: string;
302
+ data?: {
303
+ typeUrl?: string;
304
+ value?: Uint8Array;
305
+ } & {
306
+ typeUrl?: string;
307
+ value?: Uint8Array;
308
+ } & { [K_12 in Exclude<keyof I_1["entries"][number]["nfts"][number]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
309
+ } & { [K_13 in Exclude<keyof I_1["entries"][number]["nfts"][number], keyof NFT>]: never; })[] & { [K_14 in Exclude<keyof I_1["entries"][number]["nfts"], keyof {
310
+ classId?: string;
311
+ id?: string;
312
+ uri?: string;
313
+ uriHash?: string;
314
+ data?: {
315
+ typeUrl?: string;
316
+ value?: Uint8Array;
317
+ };
318
+ }[]>]: never; };
319
+ } & { [K_15 in Exclude<keyof I_1["entries"][number], keyof Entry>]: never; })[] & { [K_16 in Exclude<keyof I_1["entries"], keyof {
320
+ owner?: string;
321
+ nfts?: {
322
+ classId?: string;
323
+ id?: string;
324
+ uri?: string;
325
+ uriHash?: string;
326
+ data?: {
327
+ typeUrl?: string;
328
+ value?: Uint8Array;
329
+ };
330
+ }[];
331
+ }[]>]: never; };
332
+ } & { [K_17 in Exclude<keyof I_1, keyof GenesisState>]: never; }>(object: I_1): GenesisState;
333
+ };
334
+ export declare const Entry: {
335
+ encode(message: Entry, writer?: _m0.Writer): _m0.Writer;
336
+ decode(input: _m0.Reader | Uint8Array, length?: number): Entry;
337
+ fromJSON(object: any): Entry;
338
+ toJSON(message: Entry): unknown;
339
+ create<I extends {
340
+ owner?: string;
341
+ nfts?: {
342
+ classId?: string;
343
+ id?: string;
344
+ uri?: string;
345
+ uriHash?: string;
346
+ data?: {
347
+ typeUrl?: string;
348
+ value?: Uint8Array;
349
+ };
350
+ }[];
351
+ } & {
352
+ owner?: string;
353
+ nfts?: {
354
+ classId?: string;
355
+ id?: string;
356
+ uri?: string;
357
+ uriHash?: string;
358
+ data?: {
359
+ typeUrl?: string;
360
+ value?: Uint8Array;
361
+ };
362
+ }[] & ({
363
+ classId?: string;
364
+ id?: string;
365
+ uri?: string;
366
+ uriHash?: string;
367
+ data?: {
368
+ typeUrl?: string;
369
+ value?: Uint8Array;
370
+ };
371
+ } & {
372
+ classId?: string;
373
+ id?: string;
374
+ uri?: string;
375
+ uriHash?: string;
376
+ data?: {
377
+ typeUrl?: string;
378
+ value?: Uint8Array;
379
+ } & {
380
+ typeUrl?: string;
381
+ value?: Uint8Array;
382
+ } & { [K in Exclude<keyof I["nfts"][number]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
383
+ } & { [K_1 in Exclude<keyof I["nfts"][number], keyof NFT>]: never; })[] & { [K_2 in Exclude<keyof I["nfts"], keyof {
384
+ classId?: string;
385
+ id?: string;
386
+ uri?: string;
387
+ uriHash?: string;
388
+ data?: {
389
+ typeUrl?: string;
390
+ value?: Uint8Array;
391
+ };
392
+ }[]>]: never; };
393
+ } & { [K_3 in Exclude<keyof I, keyof Entry>]: never; }>(base?: I): Entry;
394
+ fromPartial<I_1 extends {
395
+ owner?: string;
396
+ nfts?: {
397
+ classId?: string;
398
+ id?: string;
399
+ uri?: string;
400
+ uriHash?: string;
401
+ data?: {
402
+ typeUrl?: string;
403
+ value?: Uint8Array;
404
+ };
405
+ }[];
406
+ } & {
407
+ owner?: string;
408
+ nfts?: {
409
+ classId?: string;
410
+ id?: string;
411
+ uri?: string;
412
+ uriHash?: string;
413
+ data?: {
414
+ typeUrl?: string;
415
+ value?: Uint8Array;
416
+ };
417
+ }[] & ({
418
+ classId?: string;
419
+ id?: string;
420
+ uri?: string;
421
+ uriHash?: string;
422
+ data?: {
423
+ typeUrl?: string;
424
+ value?: Uint8Array;
425
+ };
426
+ } & {
427
+ classId?: string;
428
+ id?: string;
429
+ uri?: string;
430
+ uriHash?: string;
431
+ data?: {
432
+ typeUrl?: string;
433
+ value?: Uint8Array;
434
+ } & {
435
+ typeUrl?: string;
436
+ value?: Uint8Array;
437
+ } & { [K_4 in Exclude<keyof I_1["nfts"][number]["data"], keyof import("../../google/protobuf/any").Any>]: never; };
438
+ } & { [K_5 in Exclude<keyof I_1["nfts"][number], keyof NFT>]: never; })[] & { [K_6 in Exclude<keyof I_1["nfts"], keyof {
439
+ classId?: string;
440
+ id?: string;
441
+ uri?: string;
442
+ uriHash?: string;
443
+ data?: {
444
+ typeUrl?: string;
445
+ value?: Uint8Array;
446
+ };
447
+ }[]>]: never; };
448
+ } & { [K_7 in Exclude<keyof I_1, keyof Entry>]: never; }>(object: I_1): Entry;
449
+ };
450
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
451
+ 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 {} ? {
452
+ [K in keyof T]?: DeepPartial<T[K]>;
453
+ } : Partial<T>;
454
+ type KeysOfUnion<T> = T extends T ? keyof T : never;
455
+ export type Exact<P, I extends P> = P extends Builtin ? P : P & {
456
+ [K in keyof P]: Exact<P[K], I[K]>;
457
+ } & {
458
+ [K in Exclude<keyof I, KeysOfUnion<P>>]: never;
459
+ };
460
+ export {};
@@ -0,0 +1,160 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.Entry = exports.GenesisState = exports.protobufPackage = void 0;
7
+ /* eslint-disable */
8
+ const long_1 = __importDefault(require("long"));
9
+ const minimal_1 = __importDefault(require("protobufjs/minimal"));
10
+ const nft_1 = require("./nft");
11
+ exports.protobufPackage = "coreum.nft.v1beta1";
12
+ function createBaseGenesisState() {
13
+ return { classes: [], entries: [] };
14
+ }
15
+ exports.GenesisState = {
16
+ encode(message, writer = minimal_1.default.Writer.create()) {
17
+ for (const v of message.classes) {
18
+ nft_1.Class.encode(v, writer.uint32(10).fork()).ldelim();
19
+ }
20
+ for (const v of message.entries) {
21
+ exports.Entry.encode(v, writer.uint32(18).fork()).ldelim();
22
+ }
23
+ return writer;
24
+ },
25
+ decode(input, length) {
26
+ const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
27
+ let end = length === undefined ? reader.len : reader.pos + length;
28
+ const message = createBaseGenesisState();
29
+ while (reader.pos < end) {
30
+ const tag = reader.uint32();
31
+ switch (tag >>> 3) {
32
+ case 1:
33
+ if (tag != 10) {
34
+ break;
35
+ }
36
+ message.classes.push(nft_1.Class.decode(reader, reader.uint32()));
37
+ continue;
38
+ case 2:
39
+ if (tag != 18) {
40
+ break;
41
+ }
42
+ message.entries.push(exports.Entry.decode(reader, reader.uint32()));
43
+ continue;
44
+ }
45
+ if ((tag & 7) == 4 || tag == 0) {
46
+ break;
47
+ }
48
+ reader.skipType(tag & 7);
49
+ }
50
+ return message;
51
+ },
52
+ fromJSON(object) {
53
+ return {
54
+ classes: Array.isArray(object === null || object === void 0 ? void 0 : object.classes) ? object.classes.map((e) => nft_1.Class.fromJSON(e)) : [],
55
+ entries: Array.isArray(object === null || object === void 0 ? void 0 : object.entries) ? object.entries.map((e) => exports.Entry.fromJSON(e)) : [],
56
+ };
57
+ },
58
+ toJSON(message) {
59
+ const obj = {};
60
+ if (message.classes) {
61
+ obj.classes = message.classes.map((e) => e ? nft_1.Class.toJSON(e) : undefined);
62
+ }
63
+ else {
64
+ obj.classes = [];
65
+ }
66
+ if (message.entries) {
67
+ obj.entries = message.entries.map((e) => e ? exports.Entry.toJSON(e) : undefined);
68
+ }
69
+ else {
70
+ obj.entries = [];
71
+ }
72
+ return obj;
73
+ },
74
+ create(base) {
75
+ return exports.GenesisState.fromPartial(base !== null && base !== void 0 ? base : {});
76
+ },
77
+ fromPartial(object) {
78
+ var _a, _b;
79
+ const message = createBaseGenesisState();
80
+ message.classes = ((_a = object.classes) === null || _a === void 0 ? void 0 : _a.map((e) => nft_1.Class.fromPartial(e))) || [];
81
+ message.entries = ((_b = object.entries) === null || _b === void 0 ? void 0 : _b.map((e) => exports.Entry.fromPartial(e))) || [];
82
+ return message;
83
+ },
84
+ };
85
+ function createBaseEntry() {
86
+ return { owner: "", nfts: [] };
87
+ }
88
+ exports.Entry = {
89
+ encode(message, writer = minimal_1.default.Writer.create()) {
90
+ if (message.owner !== "") {
91
+ writer.uint32(10).string(message.owner);
92
+ }
93
+ for (const v of message.nfts) {
94
+ nft_1.NFT.encode(v, writer.uint32(18).fork()).ldelim();
95
+ }
96
+ return writer;
97
+ },
98
+ decode(input, length) {
99
+ const reader = input instanceof minimal_1.default.Reader ? input : minimal_1.default.Reader.create(input);
100
+ let end = length === undefined ? reader.len : reader.pos + length;
101
+ const message = createBaseEntry();
102
+ while (reader.pos < end) {
103
+ const tag = reader.uint32();
104
+ switch (tag >>> 3) {
105
+ case 1:
106
+ if (tag != 10) {
107
+ break;
108
+ }
109
+ message.owner = reader.string();
110
+ continue;
111
+ case 2:
112
+ if (tag != 18) {
113
+ break;
114
+ }
115
+ message.nfts.push(nft_1.NFT.decode(reader, reader.uint32()));
116
+ continue;
117
+ }
118
+ if ((tag & 7) == 4 || tag == 0) {
119
+ break;
120
+ }
121
+ reader.skipType(tag & 7);
122
+ }
123
+ return message;
124
+ },
125
+ fromJSON(object) {
126
+ return {
127
+ owner: isSet(object.owner) ? String(object.owner) : "",
128
+ nfts: Array.isArray(object === null || object === void 0 ? void 0 : object.nfts) ? object.nfts.map((e) => nft_1.NFT.fromJSON(e)) : [],
129
+ };
130
+ },
131
+ toJSON(message) {
132
+ const obj = {};
133
+ message.owner !== undefined && (obj.owner = message.owner);
134
+ if (message.nfts) {
135
+ obj.nfts = message.nfts.map((e) => e ? nft_1.NFT.toJSON(e) : undefined);
136
+ }
137
+ else {
138
+ obj.nfts = [];
139
+ }
140
+ return obj;
141
+ },
142
+ create(base) {
143
+ return exports.Entry.fromPartial(base !== null && base !== void 0 ? base : {});
144
+ },
145
+ fromPartial(object) {
146
+ var _a, _b;
147
+ const message = createBaseEntry();
148
+ message.owner = (_a = object.owner) !== null && _a !== void 0 ? _a : "";
149
+ message.nfts = ((_b = object.nfts) === null || _b === void 0 ? void 0 : _b.map((e) => nft_1.NFT.fromPartial(e))) || [];
150
+ return message;
151
+ },
152
+ };
153
+ if (minimal_1.default.util.Long !== long_1.default) {
154
+ minimal_1.default.util.Long = long_1.default;
155
+ minimal_1.default.configure();
156
+ }
157
+ function isSet(value) {
158
+ return value !== null && value !== undefined;
159
+ }
160
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZ2VuZXNpcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3NyYy9jb3JldW0vbmZ0L3YxYmV0YTEvZ2VuZXNpcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7Ozs7QUFBQSxvQkFBb0I7QUFDcEIsZ0RBQXdCO0FBQ3hCLGlFQUFxQztBQUNyQywrQkFBbUM7QUFFdEIsUUFBQSxlQUFlLEdBQUcsb0JBQW9CLENBQUM7QUFpQnBELFNBQVMsc0JBQXNCO0lBQzdCLE9BQU8sRUFBRSxPQUFPLEVBQUUsRUFBRSxFQUFFLE9BQU8sRUFBRSxFQUFFLEVBQUUsQ0FBQztBQUN0QyxDQUFDO0FBRVksUUFBQSxZQUFZLEdBQUc7SUFDMUIsTUFBTSxDQUFDLE9BQXFCLEVBQUUsU0FBcUIsaUJBQUcsQ0FBQyxNQUFNLENBQUMsTUFBTSxFQUFFO1FBQ3BFLEtBQUssTUFBTSxDQUFDLElBQUksT0FBTyxDQUFDLE9BQU8sRUFBRTtZQUMvQixXQUFLLENBQUMsTUFBTSxDQUFDLENBQUUsRUFBRSxNQUFNLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQyxDQUFDLElBQUksRUFBRSxDQUFDLENBQUMsTUFBTSxFQUFFLENBQUM7U0FDckQ7UUFDRCxLQUFLLE1BQU0sQ0FBQyxJQUFJLE9BQU8sQ0FBQyxPQUFPLEVBQUU7WUFDL0IsYUFBSyxDQUFDLE1BQU0sQ0FBQyxDQUFFLEVBQUUsTUFBTSxDQUFDLE1BQU0sQ0FBQyxFQUFFLENBQUMsQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDLE1BQU0sRUFBRSxDQUFDO1NBQ3JEO1FBQ0QsT0FBTyxNQUFNLENBQUM7SUFDaEIsQ0FBQztJQUVELE1BQU0sQ0FBQyxLQUE4QixFQUFFLE1BQWU7UUFDcEQsTUFBTSxNQUFNLEdBQUcsS0FBSyxZQUFZLGlCQUFHLENBQUMsTUFBTSxDQUFDLENBQUMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLGlCQUFHLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxLQUFLLENBQUMs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