wasm-ast-types 0.21.0 → 0.23.0

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 (39) hide show
  1. package/main/client/client.js +4 -6
  2. package/main/context/imports.js +1 -1
  3. package/main/message-composer/message-composer.js +3 -5
  4. package/main/react-query/react-query.js +4 -11
  5. package/main/utils/babel.js +1 -0
  6. package/main/utils/constants.js +25 -0
  7. package/main/utils/index.js +22 -1
  8. package/module/client/client.js +3 -4
  9. package/module/context/imports.js +1 -1
  10. package/module/message-composer/message-composer.js +4 -5
  11. package/module/react-query/react-query.js +5 -6
  12. package/module/utils/babel.js +1 -0
  13. package/module/utils/constants.js +6 -0
  14. package/module/utils/index.js +3 -1
  15. package/package.json +2 -2
  16. package/src/client/client.ts +235 -323
  17. package/src/client/test/__snapshots__/ts-client.account-nfts.spec.ts.snap +45 -45
  18. package/src/client/test/__snapshots__/ts-client.arrays-ref.spec.ts.snap +42 -42
  19. package/src/client/test/__snapshots__/ts-client.arrays.spec.ts.snap +3 -3
  20. package/src/client/test/__snapshots__/ts-client.cw-named-groups.test.ts.snap +9 -9
  21. package/src/client/test/__snapshots__/ts-client.cw-proposal-single.test.ts.snap +27 -27
  22. package/src/client/test/__snapshots__/ts-client.issue-101.spec.ts.snap +6 -6
  23. package/src/client/test/__snapshots__/ts-client.issue-71.test.ts.snap +30 -30
  24. package/src/client/test/__snapshots__/ts-client.issue-98.test.ts.snap +9 -9
  25. package/src/client/test/__snapshots__/ts-client.issues.test.ts.snap +78 -78
  26. package/src/client/test/__snapshots__/ts-client.overrides.spec.ts.snap +80 -80
  27. package/src/client/test/__snapshots__/ts-client.sg721.spec.ts.snap +24 -24
  28. package/src/client/test/__snapshots__/ts-client.spec.ts.snap +46 -46
  29. package/src/client/test/__snapshots__/ts-client.vectis.spec.ts.snap +24 -24
  30. package/src/client/test/__snapshots__/ts-client.wager.spec.ts.snap +8 -8
  31. package/src/context/context.ts +2 -0
  32. package/src/context/imports.ts +1 -1
  33. package/src/message-composer/__snapshots__/message-composer.spec.ts.snap +30 -30
  34. package/src/message-composer/message-composer.ts +216 -267
  35. package/src/react-query/react-query.ts +28 -25
  36. package/src/utils/babel.ts +4 -3
  37. package/src/utils/constants.ts +30 -0
  38. package/src/utils/index.ts +2 -0
  39. package/types/context/context.d.ts +2 -0
@@ -77,13 +77,13 @@ exports[`execute class /issues/55/execute_msg.json 1`] = `
77
77
  }: {
78
78
  amount: number;
79
79
  creditor: Addr;
80
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
80
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
81
81
  return await this.client.execute(this.sender, this.contractAddress, {
82
82
  create_edge: {
83
83
  amount,
84
84
  creditor
85
85
  }
86
- }, fee, memo, funds);
86
+ }, fee, memo, _funds);
87
87
  };
88
88
  editEdge = async ({
89
89
  amount,
@@ -93,36 +93,36 @@ exports[`execute class /issues/55/execute_msg.json 1`] = `
93
93
  amount: number;
94
94
  creditor: Addr;
95
95
  edgeId: number;
96
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
96
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
97
97
  return await this.client.execute(this.sender, this.contractAddress, {
98
98
  edit_edge: {
99
99
  amount,
100
100
  creditor,
101
101
  edge_id: edgeId
102
102
  }
103
- }, fee, memo, funds);
103
+ }, fee, memo, _funds);
104
104
  };
105
105
  removeEdge = async ({
106
106
  edgeId
107
107
  }: {
108
108
  edgeId: number;
109
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
109
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
110
110
  return await this.client.execute(this.sender, this.contractAddress, {
111
111
  remove_edge: {
112
112
  edge_id: edgeId
113
113
  }
114
- }, fee, memo, funds);
114
+ }, fee, memo, _funds);
115
115
  };
116
116
  createGraph = async ({
117
117
  graph
118
118
  }: {
119
119
  graph: Edge[];
120
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
120
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
121
121
  return await this.client.execute(this.sender, this.contractAddress, {
122
122
  create_graph: {
123
123
  graph
124
124
  }
125
- }, fee, memo, funds);
125
+ }, fee, memo, _funds);
126
126
  };
127
127
  createGraphSimplified = async ({
128
128
  graph,
@@ -130,13 +130,13 @@ exports[`execute class /issues/55/execute_msg.json 1`] = `
130
130
  }: {
131
131
  graph: Addr[][];
132
132
  graphId: number;
133
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
133
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
134
134
  return await this.client.execute(this.sender, this.contractAddress, {
135
135
  create_graph_simplified: {
136
136
  graph,
137
137
  graph_id: graphId
138
138
  }
139
- }, fee, memo, funds);
139
+ }, fee, memo, _funds);
140
140
  };
141
141
  editGraphSimplified = async ({
142
142
  graph,
@@ -144,89 +144,89 @@ exports[`execute class /issues/55/execute_msg.json 1`] = `
144
144
  }: {
145
145
  graph: Addr[][];
146
146
  graphId: number;
147
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
147
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
148
148
  return await this.client.execute(this.sender, this.contractAddress, {
149
149
  edit_graph_simplified: {
150
150
  graph,
151
151
  graph_id: graphId
152
152
  }
153
- }, fee, memo, funds);
153
+ }, fee, memo, _funds);
154
154
  };
155
155
  removeGraph = async ({
156
156
  graphId
157
157
  }: {
158
158
  graphId: number;
159
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
159
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
160
160
  return await this.client.execute(this.sender, this.contractAddress, {
161
161
  remove_graph: {
162
162
  graph_id: graphId
163
163
  }
164
- }, fee, memo, funds);
164
+ }, fee, memo, _funds);
165
165
  };
166
166
  updateEdges = async ({
167
167
  edges
168
168
  }: {
169
169
  edges: number[][];
170
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
170
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
171
171
  return await this.client.execute(this.sender, this.contractAddress, {
172
172
  update_edges: {
173
173
  edges
174
174
  }
175
- }, fee, memo, funds);
175
+ }, fee, memo, _funds);
176
176
  };
177
- findSavings = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
177
+ findSavings = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
178
178
  return await this.client.execute(this.sender, this.contractAddress, {
179
179
  find_savings: {}
180
- }, fee, memo, funds);
180
+ }, fee, memo, _funds);
181
181
  };
182
182
  findSavingsInAGraph = async ({
183
183
  graphId
184
184
  }: {
185
185
  graphId: number;
186
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
186
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
187
187
  return await this.client.execute(this.sender, this.contractAddress, {
188
188
  find_savings_in_a_graph: {
189
189
  graph_id: graphId
190
190
  }
191
- }, fee, memo, funds);
191
+ }, fee, memo, _funds);
192
192
  };
193
- reset = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
193
+ reset = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
194
194
  return await this.client.execute(this.sender, this.contractAddress, {
195
195
  reset: {}
196
- }, fee, memo, funds);
196
+ }, fee, memo, _funds);
197
197
  };
198
198
  saveNetworkToFile = async ({
199
199
  filepath
200
200
  }: {
201
201
  filepath: string;
202
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
202
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
203
203
  return await this.client.execute(this.sender, this.contractAddress, {
204
204
  save_network_to_file: {
205
205
  filepath
206
206
  }
207
- }, fee, memo, funds);
207
+ }, fee, memo, _funds);
208
208
  };
209
209
  createGraphFromFile = async ({
210
210
  filepath
211
211
  }: {
212
212
  filepath: string;
213
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
213
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
214
214
  return await this.client.execute(this.sender, this.contractAddress, {
215
215
  create_graph_from_file: {
216
216
  filepath
217
217
  }
218
- }, fee, memo, funds);
218
+ }, fee, memo, _funds);
219
219
  };
220
220
  applySetOffFromFile = async ({
221
221
  filepath
222
222
  }: {
223
223
  filepath: string;
224
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
224
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
225
225
  return await this.client.execute(this.sender, this.contractAddress, {
226
226
  apply_set_off_from_file: {
227
227
  filepath
228
228
  }
229
- }, fee, memo, funds);
229
+ }, fee, memo, _funds);
230
230
  };
231
231
  }"
232
232
  `;
@@ -285,113 +285,113 @@ exports[`execute class /issues/55/query_msg.json 1`] = `
285
285
  this.getTotalDebt = this.getTotalDebt.bind(this);
286
286
  }
287
287
 
288
- getDenom = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
288
+ getDenom = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
289
289
  return await this.client.execute(this.sender, this.contractAddress, {
290
290
  get_denom: {}
291
- }, fee, memo, funds);
291
+ }, fee, memo, _funds);
292
292
  };
293
- getOwner = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
293
+ getOwner = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
294
294
  return await this.client.execute(this.sender, this.contractAddress, {
295
295
  get_owner: {}
296
- }, fee, memo, funds);
296
+ }, fee, memo, _funds);
297
297
  };
298
- allEdges = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
298
+ allEdges = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
299
299
  return await this.client.execute(this.sender, this.contractAddress, {
300
300
  all_edges: {}
301
- }, fee, memo, funds);
301
+ }, fee, memo, _funds);
302
302
  };
303
303
  oneEdge = async ({
304
304
  edgeId
305
305
  }: {
306
306
  edgeId: number;
307
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
307
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
308
308
  return await this.client.execute(this.sender, this.contractAddress, {
309
309
  one_edge: {
310
310
  edge_id: edgeId
311
311
  }
312
- }, fee, memo, funds);
312
+ }, fee, memo, _funds);
313
313
  };
314
314
  oneBatch = async ({
315
315
  batchId
316
316
  }: {
317
317
  batchId: number;
318
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
318
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
319
319
  return await this.client.execute(this.sender, this.contractAddress, {
320
320
  one_batch: {
321
321
  batch_id: batchId
322
322
  }
323
- }, fee, memo, funds);
323
+ }, fee, memo, _funds);
324
324
  };
325
325
  oneGraph = async ({
326
326
  graphId
327
327
  }: {
328
328
  graphId: number;
329
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
329
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
330
330
  return await this.client.execute(this.sender, this.contractAddress, {
331
331
  one_graph: {
332
332
  graph_id: graphId
333
333
  }
334
- }, fee, memo, funds);
334
+ }, fee, memo, _funds);
335
335
  };
336
336
  getEdgesByAddress = async ({
337
337
  address
338
338
  }: {
339
339
  address: Addr;
340
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
340
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
341
341
  return await this.client.execute(this.sender, this.contractAddress, {
342
342
  get_edges_by_address: {
343
343
  address
344
344
  }
345
- }, fee, memo, funds);
345
+ }, fee, memo, _funds);
346
346
  };
347
347
  getEdgesAsCounterparty = async ({
348
348
  address
349
349
  }: {
350
350
  address: Addr;
351
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
351
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
352
352
  return await this.client.execute(this.sender, this.contractAddress, {
353
353
  get_edges_as_counterparty: {
354
354
  address
355
355
  }
356
- }, fee, memo, funds);
356
+ }, fee, memo, _funds);
357
357
  };
358
358
  getTotalDebtPerAddress = async ({
359
359
  address
360
360
  }: {
361
361
  address: Addr;
362
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
362
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
363
363
  return await this.client.execute(this.sender, this.contractAddress, {
364
364
  get_total_debt_per_address: {
365
365
  address
366
366
  }
367
- }, fee, memo, funds);
367
+ }, fee, memo, _funds);
368
368
  };
369
369
  getTotalCreditPerAddress = async ({
370
370
  address
371
371
  }: {
372
372
  address: Addr;
373
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
373
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
374
374
  return await this.client.execute(this.sender, this.contractAddress, {
375
375
  get_total_credit_per_address: {
376
376
  address
377
377
  }
378
- }, fee, memo, funds);
378
+ }, fee, memo, _funds);
379
379
  };
380
380
  getTotalDebtByGraph = async ({
381
381
  graphId
382
382
  }: {
383
383
  graphId: number;
384
- }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
384
+ }, fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
385
385
  return await this.client.execute(this.sender, this.contractAddress, {
386
386
  get_total_debt_by_graph: {
387
387
  graph_id: graphId
388
388
  }
389
- }, fee, memo, funds);
389
+ }, fee, memo, _funds);
390
390
  };
391
- getTotalDebt = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, funds?: Coin[]): Promise<ExecuteResult> => {
391
+ getTotalDebt = async (fee: number | StdFee | \\"auto\\" = \\"auto\\", memo?: string, _funds?: Coin[]): Promise<ExecuteResult> => {
392
392
  return await this.client.execute(this.sender, this.contractAddress, {
393
393
  get_total_debt: {}
394
- }, fee, memo, funds);
394
+ }, fee, memo, _funds);
395
395
  };
396
396
  }"
397
397
  `;
@@ -427,7 +427,7 @@ exports[`execute interface /issues/55/execute_msg.json 1`] = `
427
427
  }: {
428
428
  amount: number;
429
429
  creditor: Addr;
430
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
430
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
431
431
  editEdge: ({
432
432
  amount,
433
433
  creditor,
@@ -436,63 +436,63 @@ exports[`execute interface /issues/55/execute_msg.json 1`] = `
436
436
  amount: number;
437
437
  creditor: Addr;
438
438
  edgeId: number;
439
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
439
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
440
440
  removeEdge: ({
441
441
  edgeId
442
442
  }: {
443
443
  edgeId: number;
444
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
444
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
445
445
  createGraph: ({
446
446
  graph
447
447
  }: {
448
448
  graph: Edge[];
449
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
449
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
450
450
  createGraphSimplified: ({
451
451
  graph,
452
452
  graphId
453
453
  }: {
454
454
  graph: Addr[][];
455
455
  graphId: number;
456
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
456
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
457
457
  editGraphSimplified: ({
458
458
  graph,
459
459
  graphId
460
460
  }: {
461
461
  graph: Addr[][];
462
462
  graphId: number;
463
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
463
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
464
464
  removeGraph: ({
465
465
  graphId
466
466
  }: {
467
467
  graphId: number;
468
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
468
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
469
469
  updateEdges: ({
470
470
  edges
471
471
  }: {
472
472
  edges: number[][];
473
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
474
- findSavings: (fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
473
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
474
+ findSavings: (fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
475
475
  findSavingsInAGraph: ({
476
476
  graphId
477
477
  }: {
478
478
  graphId: number;
479
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
480
- reset: (fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
479
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
480
+ reset: (fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
481
481
  saveNetworkToFile: ({
482
482
  filepath
483
483
  }: {
484
484
  filepath: string;
485
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
485
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
486
486
  createGraphFromFile: ({
487
487
  filepath
488
488
  }: {
489
489
  filepath: string;
490
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
490
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
491
491
  applySetOffFromFile: ({
492
492
  filepath
493
493
  }: {
494
494
  filepath: string;
495
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
495
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
496
496
  }"
497
497
  `;
498
498
 
@@ -514,50 +514,50 @@ exports[`execute interface /issues/55/query_msg.json 1`] = `
514
514
  "export interface SG721Instance {
515
515
  contractAddress: string;
516
516
  sender: string;
517
- getDenom: (fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
518
- getOwner: (fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
519
- allEdges: (fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
517
+ getDenom: (fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
518
+ getOwner: (fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
519
+ allEdges: (fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
520
520
  oneEdge: ({
521
521
  edgeId
522
522
  }: {
523
523
  edgeId: number;
524
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
524
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
525
525
  oneBatch: ({
526
526
  batchId
527
527
  }: {
528
528
  batchId: number;
529
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
529
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
530
530
  oneGraph: ({
531
531
  graphId
532
532
  }: {
533
533
  graphId: number;
534
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
534
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
535
535
  getEdgesByAddress: ({
536
536
  address
537
537
  }: {
538
538
  address: Addr;
539
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
539
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
540
540
  getEdgesAsCounterparty: ({
541
541
  address
542
542
  }: {
543
543
  address: Addr;
544
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
544
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
545
545
  getTotalDebtPerAddress: ({
546
546
  address
547
547
  }: {
548
548
  address: Addr;
549
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
549
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
550
550
  getTotalCreditPerAddress: ({
551
551
  address
552
552
  }: {
553
553
  address: Addr;
554
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
554
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
555
555
  getTotalDebtByGraph: ({
556
556
  graphId
557
557
  }: {
558
558
  graphId: number;
559
- }, fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
560
- getTotalDebt: (fee?: number | StdFee | \\"auto\\", memo?: string, funds?: Coin[]) => Promise<ExecuteResult>;
559
+ }, fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
560
+ getTotalDebt: (fee?: number | StdFee | \\"auto\\", memo?: string, _funds?: Coin[]) => Promise<ExecuteResult>;
561
561
  }"
562
562
  `;
563
563