wasm-ast-types 0.26.4 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (218) hide show
  1. package/LICENSE-Apache +201 -0
  2. package/LICENSE-MIT +21 -0
  3. package/README.md +1 -1
  4. package/{types/client → client}/client.d.ts +2 -2
  5. package/client/client.js +275 -0
  6. package/client/index.js +17 -0
  7. package/{types/context → context}/context.d.ts +9 -22
  8. package/context/context.js +114 -0
  9. package/{types/context → context}/imports.d.ts +9 -8
  10. package/context/imports.js +166 -0
  11. package/context/index.js +18 -0
  12. package/esm/client/client.js +238 -0
  13. package/esm/client/index.js +1 -0
  14. package/esm/context/context.js +104 -0
  15. package/esm/context/imports.js +136 -0
  16. package/{module → esm}/context/index.js +1 -1
  17. package/{src/index.ts → esm/index.js} +0 -1
  18. package/esm/message-builder/message-builder.js +64 -0
  19. package/esm/message-composer/message-composer.js +105 -0
  20. package/esm/provider/provider.js +97 -0
  21. package/esm/react-query/react-query.js +458 -0
  22. package/esm/recoil/recoil.js +110 -0
  23. package/esm/utils/babel.js +231 -0
  24. package/esm/utils/constants.js +20 -0
  25. package/esm/utils/ref.js +4 -0
  26. package/esm/utils/types.js +343 -0
  27. package/{types/index.d.ts → index.d.ts} +0 -1
  28. package/index.js +24 -0
  29. package/message-builder/index.js +17 -0
  30. package/{types/message-builder → message-builder}/message-builder.d.ts +1 -1
  31. package/message-builder/message-builder.js +91 -0
  32. package/message-composer/index.d.ts +1 -0
  33. package/message-composer/index.js +17 -0
  34. package/{types/message-composer → message-composer}/message-composer.d.ts +1 -1
  35. package/message-composer/message-composer.js +133 -0
  36. package/package.json +19 -68
  37. package/provider/index.d.ts +1 -0
  38. package/provider/index.js +17 -0
  39. package/provider/provider.js +127 -0
  40. package/react-query/index.d.ts +1 -0
  41. package/react-query/index.js +17 -0
  42. package/{types/react-query → react-query}/react-query.d.ts +2 -3
  43. package/react-query/react-query.js +490 -0
  44. package/recoil/index.d.ts +1 -0
  45. package/recoil/index.js +17 -0
  46. package/{types/recoil → recoil}/recoil.d.ts +1 -1
  47. package/recoil/recoil.js +140 -0
  48. package/{types/utils → utils}/babel.d.ts +9 -8
  49. package/utils/babel.js +285 -0
  50. package/utils/constants.js +46 -0
  51. package/utils/index.js +26 -0
  52. package/{types/utils → utils}/ref.d.ts +1 -1
  53. package/utils/ref.js +8 -0
  54. package/{types/utils → utils}/types.d.ts +8 -8
  55. package/utils/types.js +379 -0
  56. package/main/client/client.js +0 -196
  57. package/main/client/index.js +0 -16
  58. package/main/client/test/ts-client.account-nfts.spec.js +0 -28
  59. package/main/client/test/ts-client.arrays-ref.spec.js +0 -19
  60. package/main/client/test/ts-client.arrays.spec.js +0 -26
  61. package/main/client/test/ts-client.cw-named-groups.test.js +0 -19
  62. package/main/client/test/ts-client.cw-proposal-single.test.js +0 -23
  63. package/main/client/test/ts-client.empty-enums.spec.js +0 -13
  64. package/main/client/test/ts-client.issue-101.spec.js +0 -23
  65. package/main/client/test/ts-client.issue-103.test.js +0 -44
  66. package/main/client/test/ts-client.issue-71.test.js +0 -81
  67. package/main/client/test/ts-client.issue-98.test.js +0 -28
  68. package/main/client/test/ts-client.issues.test.js +0 -81
  69. package/main/client/test/ts-client.overrides.spec.js +0 -33
  70. package/main/client/test/ts-client.sg721.spec.js +0 -19
  71. package/main/client/test/ts-client.spec.js +0 -87
  72. package/main/client/test/ts-client.vectis.spec.js +0 -46
  73. package/main/client/test/ts-client.wager.spec.js +0 -39
  74. package/main/context/context.js +0 -162
  75. package/main/context/imports.js +0 -159
  76. package/main/context/index.js +0 -27
  77. package/main/index.js +0 -104
  78. package/main/message-builder/index.js +0 -16
  79. package/main/message-builder/message-builder.js +0 -62
  80. package/main/message-builder/message-builder.spec.js +0 -20
  81. package/main/message-composer/index.js +0 -16
  82. package/main/message-composer/message-composer.js +0 -86
  83. package/main/message-composer/message-composer.spec.js +0 -23
  84. package/main/provider/index.js +0 -16
  85. package/main/provider/provider.js +0 -71
  86. package/main/provider/provider.spec.js +0 -60
  87. package/main/react-query/index.js +0 -16
  88. package/main/react-query/react-query.js +0 -413
  89. package/main/react-query/react-query.spec.js +0 -91
  90. package/main/recoil/index.js +0 -16
  91. package/main/recoil/recoil.js +0 -61
  92. package/main/recoil/recoil.spec.js +0 -20
  93. package/main/types.js +0 -4
  94. package/main/utils/babel.js +0 -282
  95. package/main/utils/babel.spec.js +0 -109
  96. package/main/utils/constants.js +0 -26
  97. package/main/utils/index.js +0 -65
  98. package/main/utils/ref.js +0 -12
  99. package/main/utils/types.js +0 -343
  100. package/module/client/client.js +0 -166
  101. package/module/client/index.js +0 -1
  102. package/module/client/test/ts-client.account-nfts.spec.js +0 -25
  103. package/module/client/test/ts-client.arrays-ref.spec.js +0 -16
  104. package/module/client/test/ts-client.arrays.spec.js +0 -23
  105. package/module/client/test/ts-client.cw-named-groups.test.js +0 -16
  106. package/module/client/test/ts-client.cw-proposal-single.test.js +0 -20
  107. package/module/client/test/ts-client.empty-enums.spec.js +0 -10
  108. package/module/client/test/ts-client.issue-101.spec.js +0 -22
  109. package/module/client/test/ts-client.issue-103.test.js +0 -41
  110. package/module/client/test/ts-client.issue-71.test.js +0 -21
  111. package/module/client/test/ts-client.issue-98.test.js +0 -25
  112. package/module/client/test/ts-client.issues.test.js +0 -21
  113. package/module/client/test/ts-client.overrides.spec.js +0 -30
  114. package/module/client/test/ts-client.sg721.spec.js +0 -16
  115. package/module/client/test/ts-client.spec.js +0 -84
  116. package/module/client/test/ts-client.vectis.spec.js +0 -43
  117. package/module/client/test/ts-client.wager.spec.js +0 -36
  118. package/module/context/context.js +0 -116
  119. package/module/context/imports.js +0 -127
  120. package/module/index.js +0 -9
  121. package/module/message-builder/index.js +0 -1
  122. package/module/message-builder/message-builder.js +0 -52
  123. package/module/message-builder/message-builder.spec.js +0 -17
  124. package/module/message-composer/index.js +0 -1
  125. package/module/message-composer/message-composer.js +0 -70
  126. package/module/message-composer/message-composer.spec.js +0 -20
  127. package/module/provider/index.js +0 -1
  128. package/module/provider/provider.js +0 -45
  129. package/module/provider/provider.spec.js +0 -58
  130. package/module/react-query/index.js +0 -1
  131. package/module/react-query/react-query.js +0 -403
  132. package/module/react-query/react-query.spec.js +0 -85
  133. package/module/recoil/index.js +0 -1
  134. package/module/recoil/recoil.js +0 -46
  135. package/module/recoil/recoil.spec.js +0 -14
  136. package/module/types.js +0 -3
  137. package/module/utils/babel.js +0 -203
  138. package/module/utils/babel.spec.js +0 -70
  139. package/module/utils/constants.js +0 -12
  140. package/module/utils/index.js +0 -6
  141. package/module/utils/ref.js +0 -4
  142. package/module/utils/types.js +0 -301
  143. package/src/client/client.ts +0 -584
  144. package/src/client/index.ts +0 -1
  145. package/src/client/test/__snapshots__/ts-client.account-nfts.spec.ts.snap +0 -497
  146. package/src/client/test/__snapshots__/ts-client.arrays-ref.spec.ts.snap +0 -452
  147. package/src/client/test/__snapshots__/ts-client.arrays.spec.ts.snap +0 -101
  148. package/src/client/test/__snapshots__/ts-client.cw-named-groups.test.ts.snap +0 -141
  149. package/src/client/test/__snapshots__/ts-client.cw-proposal-single.test.ts.snap +0 -341
  150. package/src/client/test/__snapshots__/ts-client.empty-enums.spec.ts.snap +0 -20
  151. package/src/client/test/__snapshots__/ts-client.issue-101.spec.ts.snap +0 -47
  152. package/src/client/test/__snapshots__/ts-client.issue-103.test.ts.snap +0 -79
  153. package/src/client/test/__snapshots__/ts-client.issue-71.test.ts.snap +0 -432
  154. package/src/client/test/__snapshots__/ts-client.issue-98.test.ts.snap +0 -117
  155. package/src/client/test/__snapshots__/ts-client.issues.test.ts.snap +0 -984
  156. package/src/client/test/__snapshots__/ts-client.overrides.spec.ts.snap +0 -709
  157. package/src/client/test/__snapshots__/ts-client.sg721.spec.ts.snap +0 -350
  158. package/src/client/test/__snapshots__/ts-client.spec.ts.snap +0 -723
  159. package/src/client/test/__snapshots__/ts-client.vectis.spec.ts.snap +0 -337
  160. package/src/client/test/__snapshots__/ts-client.wager.spec.ts.snap +0 -132
  161. package/src/client/test/ts-client.account-nfts.spec.ts +0 -55
  162. package/src/client/test/ts-client.arrays-ref.spec.ts +0 -48
  163. package/src/client/test/ts-client.arrays.spec.ts +0 -58
  164. package/src/client/test/ts-client.cw-named-groups.test.ts +0 -48
  165. package/src/client/test/ts-client.cw-proposal-single.test.ts +0 -50
  166. package/src/client/test/ts-client.empty-enums.spec.ts +0 -28
  167. package/src/client/test/ts-client.issue-101.spec.ts +0 -37
  168. package/src/client/test/ts-client.issue-103.test.ts +0 -106
  169. package/src/client/test/ts-client.issue-71.test.ts +0 -51
  170. package/src/client/test/ts-client.issue-98.test.ts +0 -55
  171. package/src/client/test/ts-client.issues.test.ts +0 -52
  172. package/src/client/test/ts-client.overrides.spec.ts +0 -74
  173. package/src/client/test/ts-client.sg721.spec.ts +0 -46
  174. package/src/client/test/ts-client.spec.ts +0 -166
  175. package/src/client/test/ts-client.vectis.spec.ts +0 -97
  176. package/src/client/test/ts-client.wager.spec.ts +0 -63
  177. package/src/context/context.ts +0 -229
  178. package/src/context/imports.ts +0 -195
  179. package/src/context/index.ts +0 -2
  180. package/src/message-builder/__snapshots__/message-builder.spec.ts.snap +0 -270
  181. package/src/message-builder/message-builder.spec.ts +0 -24
  182. package/src/message-builder/message-builder.ts +0 -119
  183. package/src/message-composer/__snapshots__/message-composer.spec.ts.snap +0 -331
  184. package/src/message-composer/index.ts +0 -1
  185. package/src/message-composer/message-composer.spec.ts +0 -46
  186. package/src/message-composer/message-composer.ts +0 -262
  187. package/src/provider/__snapshots__/provider.spec.ts.snap +0 -49
  188. package/src/provider/index.ts +0 -1
  189. package/src/provider/provider.spec.ts +0 -81
  190. package/src/provider/provider.ts +0 -237
  191. package/src/react-query/__snapshots__/react-query.spec.ts.snap +0 -1359
  192. package/src/react-query/index.ts +0 -1
  193. package/src/react-query/react-query.spec.ts +0 -116
  194. package/src/react-query/react-query.ts +0 -1072
  195. package/src/recoil/__snapshots__/recoil.spec.ts.snap +0 -203
  196. package/src/recoil/index.ts +0 -1
  197. package/src/recoil/recoil.spec.ts +0 -38
  198. package/src/recoil/recoil.ts +0 -307
  199. package/src/types.ts +0 -44
  200. package/src/utils/__snapshots__/babel.spec.ts.snap +0 -75
  201. package/src/utils/babel.spec.ts +0 -511
  202. package/src/utils/babel.ts +0 -352
  203. package/src/utils/constants.ts +0 -37
  204. package/src/utils/ref.ts +0 -6
  205. package/src/utils/types.ts +0 -478
  206. package/types/types.d.ts +0 -41
  207. /package/{types/client → client}/index.d.ts +0 -0
  208. /package/{types/context → context}/index.d.ts +0 -0
  209. /package/{src/message-builder/index.ts → esm/message-builder/index.js} +0 -0
  210. /package/{types/message-composer/index.d.ts → esm/message-composer/index.js} +0 -0
  211. /package/{types/provider/index.d.ts → esm/provider/index.js} +0 -0
  212. /package/{types/react-query/index.d.ts → esm/react-query/index.js} +0 -0
  213. /package/{types/recoil/index.d.ts → esm/recoil/index.js} +0 -0
  214. /package/{src/utils/index.ts → esm/utils/index.js} +0 -0
  215. /package/{types/message-builder → message-builder}/index.d.ts +0 -0
  216. /package/{types/provider → provider}/provider.d.ts +0 -0
  217. /package/{types/utils → utils}/constants.d.ts +0 -0
  218. /package/{types/utils → utils}/index.d.ts +0 -0
@@ -1,497 +0,0 @@
1
- // Jest Snapshot v1, https://goo.gl/fbAQLP
2
-
3
- exports[`execute classes array types 1`] = `
4
- "export class SG721Client implements SG721Instance {
5
- client: SigningCosmWasmClient;
6
- sender: string;
7
- contractAddress: string;
8
-
9
- constructor(client: SigningCosmWasmClient, sender: string, contractAddress: string) {
10
- this.client = client;
11
- this.sender = sender;
12
- this.contractAddress = contractAddress;
13
- this.proposedNewOwner = this.proposedNewOwner.bind(this);
14
- this.allowedVaults = this.allowedVaults.bind(this);
15
- this.allDebtShares = this.allDebtShares.bind(this);
16
- this.allPreviousOwners = this.allPreviousOwners.bind(this);
17
- this.ownerOf = this.ownerOf.bind(this);
18
- this.approval = this.approval.bind(this);
19
- this.approvals = this.approvals.bind(this);
20
- this.allOperators = this.allOperators.bind(this);
21
- this.numTokens = this.numTokens.bind(this);
22
- this.contractInfo = this.contractInfo.bind(this);
23
- this.nftInfo = this.nftInfo.bind(this);
24
- this.allNftInfo = this.allNftInfo.bind(this);
25
- this.tokens = this.tokens.bind(this);
26
- this.allTokens = this.allTokens.bind(this);
27
- this.minter = this.minter.bind(this);
28
- }
29
-
30
- proposedNewOwner = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
31
- return await this.client.execute(this.sender, this.contractAddress, {
32
- proposed_new_owner: {}
33
- }, fee, memo, _funds);
34
- };
35
- allowedVaults = async ({
36
- limit,
37
- startAfter
38
- }: {
39
- limit?: number;
40
- startAfter?: VaultBase_for_String;
41
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
42
- return await this.client.execute(this.sender, this.contractAddress, {
43
- allowed_vaults: {
44
- limit,
45
- start_after: startAfter
46
- }
47
- }, fee, memo, _funds);
48
- };
49
- allDebtShares = async ({
50
- limit,
51
- startAfter
52
- }: {
53
- limit?: number;
54
- startAfter?: string[][];
55
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
56
- return await this.client.execute(this.sender, this.contractAddress, {
57
- all_debt_shares: {
58
- limit,
59
- start_after: startAfter
60
- }
61
- }, fee, memo, _funds);
62
- };
63
- allPreviousOwners = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
64
- return await this.client.execute(this.sender, this.contractAddress, {
65
- all_previous_owners: {}
66
- }, fee, memo, _funds);
67
- };
68
- ownerOf = async ({
69
- includeExpired,
70
- tokenId
71
- }: {
72
- includeExpired?: boolean;
73
- tokenId: string;
74
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
75
- return await this.client.execute(this.sender, this.contractAddress, {
76
- owner_of: {
77
- include_expired: includeExpired,
78
- token_id: tokenId
79
- }
80
- }, fee, memo, _funds);
81
- };
82
- approval = async ({
83
- includeExpired,
84
- spender,
85
- tokenId
86
- }: {
87
- includeExpired?: boolean;
88
- spender: string;
89
- tokenId: string;
90
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
91
- return await this.client.execute(this.sender, this.contractAddress, {
92
- approval: {
93
- include_expired: includeExpired,
94
- spender,
95
- token_id: tokenId
96
- }
97
- }, fee, memo, _funds);
98
- };
99
- approvals = async ({
100
- includeExpired,
101
- tokenId
102
- }: {
103
- includeExpired?: boolean;
104
- tokenId: string;
105
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
106
- return await this.client.execute(this.sender, this.contractAddress, {
107
- approvals: {
108
- include_expired: includeExpired,
109
- token_id: tokenId
110
- }
111
- }, fee, memo, _funds);
112
- };
113
- allOperators = async ({
114
- includeExpired,
115
- limit,
116
- owner,
117
- startAfter
118
- }: {
119
- includeExpired?: boolean;
120
- limit?: number;
121
- owner: string;
122
- startAfter?: string;
123
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
124
- return await this.client.execute(this.sender, this.contractAddress, {
125
- all_operators: {
126
- include_expired: includeExpired,
127
- limit,
128
- owner,
129
- start_after: startAfter
130
- }
131
- }, fee, memo, _funds);
132
- };
133
- numTokens = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
134
- return await this.client.execute(this.sender, this.contractAddress, {
135
- num_tokens: {}
136
- }, fee, memo, _funds);
137
- };
138
- contractInfo = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
139
- return await this.client.execute(this.sender, this.contractAddress, {
140
- contract_info: {}
141
- }, fee, memo, _funds);
142
- };
143
- nftInfo = async ({
144
- tokenId
145
- }: {
146
- tokenId: string;
147
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
148
- return await this.client.execute(this.sender, this.contractAddress, {
149
- nft_info: {
150
- token_id: tokenId
151
- }
152
- }, fee, memo, _funds);
153
- };
154
- allNftInfo = async ({
155
- includeExpired,
156
- tokenId
157
- }: {
158
- includeExpired?: boolean;
159
- tokenId: string;
160
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
161
- return await this.client.execute(this.sender, this.contractAddress, {
162
- all_nft_info: {
163
- include_expired: includeExpired,
164
- token_id: tokenId
165
- }
166
- }, fee, memo, _funds);
167
- };
168
- tokens = async ({
169
- limit,
170
- owner,
171
- startAfter
172
- }: {
173
- limit?: number;
174
- owner: string;
175
- startAfter?: string;
176
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
177
- return await this.client.execute(this.sender, this.contractAddress, {
178
- tokens: {
179
- limit,
180
- owner,
181
- start_after: startAfter
182
- }
183
- }, fee, memo, _funds);
184
- };
185
- allTokens = async ({
186
- limit,
187
- startAfter
188
- }: {
189
- limit?: number;
190
- startAfter?: string;
191
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
192
- return await this.client.execute(this.sender, this.contractAddress, {
193
- all_tokens: {
194
- limit,
195
- start_after: startAfter
196
- }
197
- }, fee, memo, _funds);
198
- };
199
- minter = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
200
- return await this.client.execute(this.sender, this.contractAddress, {
201
- minter: {}
202
- }, fee, memo, _funds);
203
- };
204
- }"
205
- `;
206
-
207
- exports[`execute interfaces no extends 1`] = `
208
- "export interface SG721Instance {
209
- contractAddress: string;
210
- sender: string;
211
- proposedNewOwner: (fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
212
- allowedVaults: ({
213
- limit,
214
- startAfter
215
- }: {
216
- limit?: number;
217
- startAfter?: VaultBase_for_String;
218
- }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
219
- allDebtShares: ({
220
- limit,
221
- startAfter
222
- }: {
223
- limit?: number;
224
- startAfter?: string[][];
225
- }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
226
- allPreviousOwners: (fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
227
- ownerOf: ({
228
- includeExpired,
229
- tokenId
230
- }: {
231
- includeExpired?: boolean;
232
- tokenId: string;
233
- }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
234
- approval: ({
235
- includeExpired,
236
- spender,
237
- tokenId
238
- }: {
239
- includeExpired?: boolean;
240
- spender: string;
241
- tokenId: string;
242
- }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
243
- approvals: ({
244
- includeExpired,
245
- tokenId
246
- }: {
247
- includeExpired?: boolean;
248
- tokenId: string;
249
- }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
250
- allOperators: ({
251
- includeExpired,
252
- limit,
253
- owner,
254
- startAfter
255
- }: {
256
- includeExpired?: boolean;
257
- limit?: number;
258
- owner: string;
259
- startAfter?: string;
260
- }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
261
- numTokens: (fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
262
- contractInfo: (fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
263
- nftInfo: ({
264
- tokenId
265
- }: {
266
- tokenId: string;
267
- }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
268
- allNftInfo: ({
269
- includeExpired,
270
- tokenId
271
- }: {
272
- includeExpired?: boolean;
273
- tokenId: string;
274
- }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
275
- tokens: ({
276
- limit,
277
- owner,
278
- startAfter
279
- }: {
280
- limit?: number;
281
- owner: string;
282
- startAfter?: string;
283
- }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
284
- allTokens: ({
285
- limit,
286
- startAfter
287
- }: {
288
- limit?: number;
289
- startAfter?: string;
290
- }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
291
- minter: (fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
292
- }"
293
- `;
294
-
295
- exports[`execute_msg_for__empty 1`] = `"export type QueryMsg = QueryMsg;"`;
296
-
297
- exports[`query classes 1`] = `
298
- "export class SG721QueryClient implements SG721ReadOnlyInstance {
299
- client: CosmWasmClient;
300
- contractAddress: string;
301
-
302
- constructor(client: CosmWasmClient, contractAddress: string) {
303
- this.client = client;
304
- this.contractAddress = contractAddress;
305
- this.proposedNewOwner = this.proposedNewOwner.bind(this);
306
- this.allowedVaults = this.allowedVaults.bind(this);
307
- this.allDebtShares = this.allDebtShares.bind(this);
308
- this.allPreviousOwners = this.allPreviousOwners.bind(this);
309
- this.ownerOf = this.ownerOf.bind(this);
310
- this.approval = this.approval.bind(this);
311
- this.approvals = this.approvals.bind(this);
312
- this.allOperators = this.allOperators.bind(this);
313
- this.numTokens = this.numTokens.bind(this);
314
- this.contractInfo = this.contractInfo.bind(this);
315
- this.nftInfo = this.nftInfo.bind(this);
316
- this.allNftInfo = this.allNftInfo.bind(this);
317
- this.tokens = this.tokens.bind(this);
318
- this.allTokens = this.allTokens.bind(this);
319
- this.minter = this.minter.bind(this);
320
- }
321
-
322
- proposedNewOwner = async (): Promise<ProposedNewOwnerResponse> => {
323
- return this.client.queryContractSmart(this.contractAddress, {
324
- proposed_new_owner: {}
325
- });
326
- };
327
- allowedVaults = async ({
328
- limit,
329
- startAfter
330
- }: {
331
- limit?: number;
332
- startAfter?: VaultBase_for_String;
333
- }): Promise<AllowedVaultsResponse> => {
334
- return this.client.queryContractSmart(this.contractAddress, {
335
- allowed_vaults: {
336
- limit,
337
- start_after: startAfter
338
- }
339
- });
340
- };
341
- allDebtShares = async ({
342
- limit,
343
- startAfter
344
- }: {
345
- limit?: number;
346
- startAfter?: string[][];
347
- }): Promise<AllDebtSharesResponse> => {
348
- return this.client.queryContractSmart(this.contractAddress, {
349
- all_debt_shares: {
350
- limit,
351
- start_after: startAfter
352
- }
353
- });
354
- };
355
- allPreviousOwners = async (): Promise<AllPreviousOwnersResponse> => {
356
- return this.client.queryContractSmart(this.contractAddress, {
357
- all_previous_owners: {}
358
- });
359
- };
360
- ownerOf = async ({
361
- includeExpired,
362
- tokenId
363
- }: {
364
- includeExpired?: boolean;
365
- tokenId: string;
366
- }): Promise<OwnerOfResponse> => {
367
- return this.client.queryContractSmart(this.contractAddress, {
368
- owner_of: {
369
- include_expired: includeExpired,
370
- token_id: tokenId
371
- }
372
- });
373
- };
374
- approval = async ({
375
- includeExpired,
376
- spender,
377
- tokenId
378
- }: {
379
- includeExpired?: boolean;
380
- spender: string;
381
- tokenId: string;
382
- }): Promise<ApprovalResponse> => {
383
- return this.client.queryContractSmart(this.contractAddress, {
384
- approval: {
385
- include_expired: includeExpired,
386
- spender,
387
- token_id: tokenId
388
- }
389
- });
390
- };
391
- approvals = async ({
392
- includeExpired,
393
- tokenId
394
- }: {
395
- includeExpired?: boolean;
396
- tokenId: string;
397
- }): Promise<ApprovalsResponse> => {
398
- return this.client.queryContractSmart(this.contractAddress, {
399
- approvals: {
400
- include_expired: includeExpired,
401
- token_id: tokenId
402
- }
403
- });
404
- };
405
- allOperators = async ({
406
- includeExpired,
407
- limit,
408
- owner,
409
- startAfter
410
- }: {
411
- includeExpired?: boolean;
412
- limit?: number;
413
- owner: string;
414
- startAfter?: string;
415
- }): Promise<AllOperatorsResponse> => {
416
- return this.client.queryContractSmart(this.contractAddress, {
417
- all_operators: {
418
- include_expired: includeExpired,
419
- limit,
420
- owner,
421
- start_after: startAfter
422
- }
423
- });
424
- };
425
- numTokens = async (): Promise<NumTokensResponse> => {
426
- return this.client.queryContractSmart(this.contractAddress, {
427
- num_tokens: {}
428
- });
429
- };
430
- contractInfo = async (): Promise<ContractInfoResponse> => {
431
- return this.client.queryContractSmart(this.contractAddress, {
432
- contract_info: {}
433
- });
434
- };
435
- nftInfo = async ({
436
- tokenId
437
- }: {
438
- tokenId: string;
439
- }): Promise<NftInfoResponse> => {
440
- return this.client.queryContractSmart(this.contractAddress, {
441
- nft_info: {
442
- token_id: tokenId
443
- }
444
- });
445
- };
446
- allNftInfo = async ({
447
- includeExpired,
448
- tokenId
449
- }: {
450
- includeExpired?: boolean;
451
- tokenId: string;
452
- }): Promise<AllNftInfoResponse> => {
453
- return this.client.queryContractSmart(this.contractAddress, {
454
- all_nft_info: {
455
- include_expired: includeExpired,
456
- token_id: tokenId
457
- }
458
- });
459
- };
460
- tokens = async ({
461
- limit,
462
- owner,
463
- startAfter
464
- }: {
465
- limit?: number;
466
- owner: string;
467
- startAfter?: string;
468
- }): Promise<TokensResponse> => {
469
- return this.client.queryContractSmart(this.contractAddress, {
470
- tokens: {
471
- limit,
472
- owner,
473
- start_after: startAfter
474
- }
475
- });
476
- };
477
- allTokens = async ({
478
- limit,
479
- startAfter
480
- }: {
481
- limit?: number;
482
- startAfter?: string;
483
- }): Promise<AllTokensResponse> => {
484
- return this.client.queryContractSmart(this.contractAddress, {
485
- all_tokens: {
486
- limit,
487
- start_after: startAfter
488
- }
489
- });
490
- };
491
- minter = async (): Promise<MinterResponse> => {
492
- return this.client.queryContractSmart(this.contractAddress, {
493
- minter: {}
494
- });
495
- };
496
- }"
497
- `;