wasm-ast-types 0.11.3 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. package/main/client/test/ts-client.issue-71.test.js +103 -0
  2. package/main/utils/types.js +20 -7
  3. package/module/client/test/ts-client.issue-71.test.js +21 -0
  4. package/module/utils/types.js +20 -7
  5. package/package.json +5 -3
  6. package/src/client/client.ts +665 -0
  7. package/src/client/index.ts +1 -0
  8. package/src/client/test/__snapshots__/ts-client.account-nfts.spec.ts.snap +497 -0
  9. package/src/client/test/__snapshots__/ts-client.arrays-ref.spec.ts.snap +452 -0
  10. package/src/client/test/__snapshots__/ts-client.arrays.spec.ts.snap +101 -0
  11. package/src/client/test/__snapshots__/ts-client.cw-named-groups.test.ts.snap +141 -0
  12. package/src/client/test/__snapshots__/ts-client.cw-proposal-single.test.ts.snap +341 -0
  13. package/src/client/test/__snapshots__/ts-client.empty-enums.spec.ts.snap +20 -0
  14. package/src/client/test/__snapshots__/ts-client.issue-71.test.ts.snap +432 -0
  15. package/src/client/test/__snapshots__/ts-client.issues.test.ts.snap +984 -0
  16. package/src/client/test/__snapshots__/ts-client.sg721.spec.ts.snap +350 -0
  17. package/src/client/test/__snapshots__/ts-client.spec.ts.snap +723 -0
  18. package/src/client/test/__snapshots__/ts-client.vectis.spec.ts.snap +337 -0
  19. package/src/client/test/ts-client.account-nfts.spec.ts +55 -0
  20. package/src/client/test/ts-client.arrays-ref.spec.ts +48 -0
  21. package/src/client/test/ts-client.arrays.spec.ts +58 -0
  22. package/src/client/test/ts-client.cw-named-groups.test.ts +48 -0
  23. package/src/client/test/ts-client.cw-proposal-single.test.ts +50 -0
  24. package/src/client/test/ts-client.empty-enums.spec.ts +28 -0
  25. package/src/client/test/ts-client.issue-71.test.ts +51 -0
  26. package/src/client/test/ts-client.issues.test.ts +52 -0
  27. package/src/client/test/ts-client.sg721.spec.ts +46 -0
  28. package/src/client/test/ts-client.spec.ts +166 -0
  29. package/src/client/test/ts-client.vectis.spec.ts +97 -0
  30. package/src/context/context.ts +132 -0
  31. package/src/context/imports.ts +126 -0
  32. package/src/context/index.ts +2 -0
  33. package/src/index.ts +7 -0
  34. package/src/message-composer/__snapshots__/message-composer.spec.ts.snap +271 -0
  35. package/src/message-composer/index.ts +1 -0
  36. package/src/message-composer/message-composer.spec.ts +25 -0
  37. package/src/message-composer/message-composer.ts +305 -0
  38. package/src/react-query/__snapshots__/react-query.spec.ts.snap +913 -0
  39. package/src/react-query/index.ts +1 -0
  40. package/src/react-query/react-query.spec.ts +75 -0
  41. package/src/react-query/react-query.ts +913 -0
  42. package/src/recoil/__snapshots__/recoil.spec.ts.snap +203 -0
  43. package/src/recoil/index.ts +1 -0
  44. package/src/recoil/recoil.spec.ts +38 -0
  45. package/src/recoil/recoil.ts +307 -0
  46. package/src/types.ts +44 -0
  47. package/src/utils/__snapshots__/babel.spec.ts.snap +75 -0
  48. package/src/utils/babel.spec.ts +511 -0
  49. package/src/utils/babel.ts +315 -0
  50. package/src/utils/index.ts +2 -0
  51. package/src/utils/types.ts +459 -0
@@ -0,0 +1,341 @@
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.propose = this.propose.bind(this);
14
+ this.vote = this.vote.bind(this);
15
+ this.execute = this.execute.bind(this);
16
+ this.close = this.close.bind(this);
17
+ this.updateConfig = this.updateConfig.bind(this);
18
+ this.addProposalHook = this.addProposalHook.bind(this);
19
+ this.removeProposalHook = this.removeProposalHook.bind(this);
20
+ this.addVoteHook = this.addVoteHook.bind(this);
21
+ this.removeVoteHook = this.removeVoteHook.bind(this);
22
+ }
23
+
24
+ propose = async ({
25
+ description,
26
+ msgs,
27
+ title
28
+ }: {
29
+ description: string;
30
+ msgs: CosmosMsg_for_Empty[];
31
+ title: string;
32
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
33
+ return await this.client.execute(this.sender, this.contractAddress, {
34
+ propose: {
35
+ description,
36
+ msgs,
37
+ title
38
+ }
39
+ }, fee, memo, funds);
40
+ };
41
+ vote = async ({
42
+ proposalId,
43
+ vote
44
+ }: {
45
+ proposalId: number;
46
+ vote: Vote;
47
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
48
+ return await this.client.execute(this.sender, this.contractAddress, {
49
+ vote: {
50
+ proposal_id: proposalId,
51
+ vote
52
+ }
53
+ }, fee, memo, funds);
54
+ };
55
+ execute = async ({
56
+ proposalId
57
+ }: {
58
+ proposalId: number;
59
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
60
+ return await this.client.execute(this.sender, this.contractAddress, {
61
+ execute: {
62
+ proposal_id: proposalId
63
+ }
64
+ }, fee, memo, funds);
65
+ };
66
+ close = async ({
67
+ proposalId
68
+ }: {
69
+ proposalId: number;
70
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
71
+ return await this.client.execute(this.sender, this.contractAddress, {
72
+ close: {
73
+ proposal_id: proposalId
74
+ }
75
+ }, fee, memo, funds);
76
+ };
77
+ updateConfig = async ({
78
+ allowRevoting,
79
+ dao,
80
+ depositInfo,
81
+ maxVotingPeriod,
82
+ minVotingPeriod,
83
+ onlyMembersExecute,
84
+ threshold
85
+ }: {
86
+ allowRevoting: boolean;
87
+ dao: string;
88
+ depositInfo?: DepositInfo;
89
+ maxVotingPeriod: Duration;
90
+ minVotingPeriod?: Duration;
91
+ onlyMembersExecute: boolean;
92
+ threshold: Threshold;
93
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
94
+ return await this.client.execute(this.sender, this.contractAddress, {
95
+ update_config: {
96
+ allow_revoting: allowRevoting,
97
+ dao,
98
+ deposit_info: depositInfo,
99
+ max_voting_period: maxVotingPeriod,
100
+ min_voting_period: minVotingPeriod,
101
+ only_members_execute: onlyMembersExecute,
102
+ threshold
103
+ }
104
+ }, fee, memo, funds);
105
+ };
106
+ addProposalHook = async ({
107
+ address
108
+ }: {
109
+ address: string;
110
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
111
+ return await this.client.execute(this.sender, this.contractAddress, {
112
+ add_proposal_hook: {
113
+ address
114
+ }
115
+ }, fee, memo, funds);
116
+ };
117
+ removeProposalHook = async ({
118
+ address
119
+ }: {
120
+ address: string;
121
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
122
+ return await this.client.execute(this.sender, this.contractAddress, {
123
+ remove_proposal_hook: {
124
+ address
125
+ }
126
+ }, fee, memo, funds);
127
+ };
128
+ addVoteHook = async ({
129
+ address
130
+ }: {
131
+ address: string;
132
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
133
+ return await this.client.execute(this.sender, this.contractAddress, {
134
+ add_vote_hook: {
135
+ address
136
+ }
137
+ }, fee, memo, funds);
138
+ };
139
+ removeVoteHook = async ({
140
+ address
141
+ }: {
142
+ address: string;
143
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
144
+ return await this.client.execute(this.sender, this.contractAddress, {
145
+ remove_vote_hook: {
146
+ address
147
+ }
148
+ }, fee, memo, funds);
149
+ };
150
+ }"
151
+ `;
152
+
153
+ exports[`execute interfaces no extends 1`] = `
154
+ "export interface SG721Instance {
155
+ contractAddress: string;
156
+ sender: string;
157
+ propose: ({
158
+ description,
159
+ msgs,
160
+ title
161
+ }: {
162
+ description: string;
163
+ msgs: CosmosMsg_for_Empty[];
164
+ title: string;
165
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
166
+ vote: ({
167
+ proposalId,
168
+ vote
169
+ }: {
170
+ proposalId: number;
171
+ vote: Vote;
172
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
173
+ execute: ({
174
+ proposalId
175
+ }: {
176
+ proposalId: number;
177
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
178
+ close: ({
179
+ proposalId
180
+ }: {
181
+ proposalId: number;
182
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
183
+ updateConfig: ({
184
+ allowRevoting,
185
+ dao,
186
+ depositInfo,
187
+ maxVotingPeriod,
188
+ minVotingPeriod,
189
+ onlyMembersExecute,
190
+ threshold
191
+ }: {
192
+ allowRevoting: boolean;
193
+ dao: string;
194
+ depositInfo?: DepositInfo;
195
+ maxVotingPeriod: Duration;
196
+ minVotingPeriod?: Duration;
197
+ onlyMembersExecute: boolean;
198
+ threshold: Threshold;
199
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
200
+ addProposalHook: ({
201
+ address
202
+ }: {
203
+ address: string;
204
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
205
+ removeProposalHook: ({
206
+ address
207
+ }: {
208
+ address: string;
209
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
210
+ addVoteHook: ({
211
+ address
212
+ }: {
213
+ address: string;
214
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
215
+ removeVoteHook: ({
216
+ address
217
+ }: {
218
+ address: string;
219
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
220
+ }"
221
+ `;
222
+
223
+ exports[`execute_msg_for 1`] = `"export type ExecuteMsg = ExecuteMsg;"`;
224
+
225
+ exports[`query classes 1`] = `
226
+ "export class SG721QueryClient implements SG721ReadOnlyInstance {
227
+ client: CosmWasmClient;
228
+ contractAddress: string;
229
+
230
+ constructor(client: CosmWasmClient, contractAddress: string) {
231
+ this.client = client;
232
+ this.contractAddress = contractAddress;
233
+ this.config = this.config.bind(this);
234
+ this.proposal = this.proposal.bind(this);
235
+ this.listProposals = this.listProposals.bind(this);
236
+ this.reverseProposals = this.reverseProposals.bind(this);
237
+ this.proposalCount = this.proposalCount.bind(this);
238
+ this.vote = this.vote.bind(this);
239
+ this.listVotes = this.listVotes.bind(this);
240
+ this.proposalHooks = this.proposalHooks.bind(this);
241
+ this.voteHooks = this.voteHooks.bind(this);
242
+ this.info = this.info.bind(this);
243
+ }
244
+
245
+ config = async (): Promise<ConfigResponse> => {
246
+ return this.client.queryContractSmart(this.contractAddress, {
247
+ config: {}
248
+ });
249
+ };
250
+ proposal = async ({
251
+ proposalId
252
+ }: {
253
+ proposalId: number;
254
+ }): Promise<ProposalResponse> => {
255
+ return this.client.queryContractSmart(this.contractAddress, {
256
+ proposal: {
257
+ proposal_id: proposalId
258
+ }
259
+ });
260
+ };
261
+ listProposals = async ({
262
+ limit,
263
+ startAfter
264
+ }: {
265
+ limit?: number;
266
+ startAfter?: number;
267
+ }): Promise<ListProposalsResponse> => {
268
+ return this.client.queryContractSmart(this.contractAddress, {
269
+ list_proposals: {
270
+ limit,
271
+ start_after: startAfter
272
+ }
273
+ });
274
+ };
275
+ reverseProposals = async ({
276
+ limit,
277
+ startBefore
278
+ }: {
279
+ limit?: number;
280
+ startBefore?: number;
281
+ }): Promise<ReverseProposalsResponse> => {
282
+ return this.client.queryContractSmart(this.contractAddress, {
283
+ reverse_proposals: {
284
+ limit,
285
+ start_before: startBefore
286
+ }
287
+ });
288
+ };
289
+ proposalCount = async (): Promise<ProposalCountResponse> => {
290
+ return this.client.queryContractSmart(this.contractAddress, {
291
+ proposal_count: {}
292
+ });
293
+ };
294
+ vote = async ({
295
+ proposalId,
296
+ voter
297
+ }: {
298
+ proposalId: number;
299
+ voter: string;
300
+ }): Promise<VoteResponse> => {
301
+ return this.client.queryContractSmart(this.contractAddress, {
302
+ vote: {
303
+ proposal_id: proposalId,
304
+ voter
305
+ }
306
+ });
307
+ };
308
+ listVotes = async ({
309
+ limit,
310
+ proposalId,
311
+ startAfter
312
+ }: {
313
+ limit?: number;
314
+ proposalId: number;
315
+ startAfter?: string;
316
+ }): Promise<ListVotesResponse> => {
317
+ return this.client.queryContractSmart(this.contractAddress, {
318
+ list_votes: {
319
+ limit,
320
+ proposal_id: proposalId,
321
+ start_after: startAfter
322
+ }
323
+ });
324
+ };
325
+ proposalHooks = async (): Promise<ProposalHooksResponse> => {
326
+ return this.client.queryContractSmart(this.contractAddress, {
327
+ proposal_hooks: {}
328
+ });
329
+ };
330
+ voteHooks = async (): Promise<VoteHooksResponse> => {
331
+ return this.client.queryContractSmart(this.contractAddress, {
332
+ vote_hooks: {}
333
+ });
334
+ };
335
+ info = async (): Promise<InfoResponse> => {
336
+ return this.client.queryContractSmart(this.contractAddress, {
337
+ info: {}
338
+ });
339
+ };
340
+ }"
341
+ `;
@@ -0,0 +1,20 @@
1
+ // Jest Snapshot v1, https://goo.gl/fbAQLP
2
+
3
+ exports[`query classes 1`] = `
4
+ "export class SG721QueryClient implements SG721ReadOnlyInstance {
5
+ client: CosmWasmClient;
6
+ contractAddress: string;
7
+
8
+ constructor(client: CosmWasmClient, contractAddress: string) {
9
+ this.client = client;
10
+ this.contractAddress = contractAddress;
11
+ }
12
+
13
+ }"
14
+ `;
15
+
16
+ exports[`query interface 1`] = `
17
+ "export interface ReadOnlyInstance {
18
+ contractAddress: string;
19
+ }"
20
+ `;