nado-protocol 0.1.0__py3-none-any.whl → 0.1.2__py3-none-any.whl

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 (48) hide show
  1. nado_protocol/client/__init__.py +11 -2
  2. nado_protocol/client/apis/market/execute.py +10 -26
  3. nado_protocol/client/apis/market/query.py +2 -2
  4. nado_protocol/client/apis/rewards/execute.py +27 -27
  5. nado_protocol/client/apis/rewards/query.py +5 -4
  6. nado_protocol/client/apis/subaccount/query.py +1 -1
  7. nado_protocol/client/context.py +0 -2
  8. nado_protocol/contracts/__init__.py +41 -33
  9. nado_protocol/contracts/abis/Endpoint.json +151 -228
  10. nado_protocol/contracts/abis/FQuerier.json +91 -508
  11. nado_protocol/contracts/abis/IAirdrop.json +76 -0
  12. nado_protocol/contracts/abis/IClearinghouse.json +277 -390
  13. nado_protocol/contracts/abis/IEndpoint.json +42 -80
  14. nado_protocol/contracts/abis/IPerpEngine.json +69 -422
  15. nado_protocol/contracts/abis/IProductEngine.json +87 -205
  16. nado_protocol/contracts/abis/ISpotEngine.json +173 -362
  17. nado_protocol/contracts/abis/MockERC20.json +1 -1
  18. nado_protocol/contracts/deployments/{deployment.test.json → deployment.testing.json} +2 -5
  19. nado_protocol/contracts/deployments/deployment.testnet.json +15 -0
  20. nado_protocol/contracts/eip712/types.py +15 -20
  21. nado_protocol/contracts/types.py +15 -13
  22. nado_protocol/engine_client/execute.py +18 -39
  23. nado_protocol/engine_client/query.py +1 -1
  24. nado_protocol/engine_client/types/__init__.py +4 -8
  25. nado_protocol/engine_client/types/execute.py +37 -103
  26. nado_protocol/engine_client/types/models.py +3 -59
  27. nado_protocol/engine_client/types/query.py +3 -6
  28. nado_protocol/indexer_client/query.py +4 -9
  29. nado_protocol/indexer_client/types/__init__.py +4 -5
  30. nado_protocol/indexer_client/types/models.py +16 -23
  31. nado_protocol/indexer_client/types/query.py +12 -11
  32. nado_protocol/trigger_client/execute.py +1 -1
  33. nado_protocol/trigger_client/types/execute.py +3 -1
  34. nado_protocol/utils/__init__.py +18 -1
  35. nado_protocol/utils/backend.py +5 -2
  36. nado_protocol/utils/exceptions.py +3 -3
  37. nado_protocol/utils/execute.py +26 -67
  38. nado_protocol/utils/expiration.py +7 -28
  39. nado_protocol/utils/nonce.py +0 -4
  40. nado_protocol/utils/order.py +356 -0
  41. {nado_protocol-0.1.0.dist-info → nado_protocol-0.1.2.dist-info}/METADATA +4 -2
  42. nado_protocol-0.1.2.dist-info/RECORD +78 -0
  43. {nado_protocol-0.1.0.dist-info → nado_protocol-0.1.2.dist-info}/entry_points.txt +0 -1
  44. nado_protocol/contracts/abis/IERC20.json +0 -185
  45. nado_protocol/contracts/abis/IOffchainBook.json +0 -536
  46. nado_protocol/contracts/abis/IVrtxAirdrop.json +0 -138
  47. nado_protocol-0.1.0.dist-info/RECORD +0 -78
  48. {nado_protocol-0.1.0.dist-info → nado_protocol-0.1.2.dist-info}/WHEEL +0 -0
@@ -13,138 +13,72 @@
13
13
  "type": "event"
14
14
  },
15
15
  {
16
+ "anonymous": false,
16
17
  "inputs": [
17
18
  {
18
- "components": [
19
- {
20
- "internalType": "uint32",
21
- "name": "productId",
22
- "type": "uint32"
23
- },
24
- {
25
- "internalType": "bytes32",
26
- "name": "subaccount",
27
- "type": "bytes32"
28
- },
29
- {
30
- "internalType": "int128",
31
- "name": "amountDelta",
32
- "type": "int128"
33
- },
34
- {
35
- "internalType": "int128",
36
- "name": "vQuoteDelta",
37
- "type": "int128"
38
- }
39
- ],
40
- "internalType": "struct IProductEngine.ProductDelta[]",
41
- "name": "deltas",
42
- "type": "tuple[]"
43
- }
44
- ],
45
- "name": "applyDeltas",
46
- "outputs": [],
47
- "stateMutability": "nonpayable",
48
- "type": "function"
49
- },
50
- {
51
- "inputs": [
52
- {
19
+ "indexed": false,
53
20
  "internalType": "uint32",
54
21
  "name": "productId",
55
22
  "type": "uint32"
56
23
  },
57
24
  {
58
- "internalType": "bytes32",
59
- "name": "subaccount",
60
- "type": "bytes32"
25
+ "indexed": false,
26
+ "internalType": "uint128",
27
+ "name": "dt",
28
+ "type": "uint128"
61
29
  },
62
30
  {
31
+ "indexed": false,
63
32
  "internalType": "int128",
64
- "name": "amountLp",
33
+ "name": "depositRateMultiplierX18",
65
34
  "type": "int128"
66
- }
67
- ],
68
- "name": "burnLp",
69
- "outputs": [
35
+ },
70
36
  {
37
+ "indexed": false,
71
38
  "internalType": "int128",
72
- "name": "",
39
+ "name": "borrowRateMultiplierX18",
73
40
  "type": "int128"
74
41
  },
75
42
  {
43
+ "indexed": false,
76
44
  "internalType": "int128",
77
- "name": "",
45
+ "name": "feeAmount",
78
46
  "type": "int128"
79
47
  }
80
48
  ],
81
- "stateMutability": "nonpayable",
82
- "type": "function"
49
+ "name": "InterestPayment",
50
+ "type": "event"
83
51
  },
84
52
  {
53
+ "anonymous": false,
85
54
  "inputs": [
86
55
  {
56
+ "indexed": true,
87
57
  "internalType": "bytes32",
88
- "name": "liquidatee",
89
- "type": "bytes32"
90
- },
91
- {
92
- "internalType": "bytes32",
93
- "name": "liquidator",
58
+ "name": "subaccount",
94
59
  "type": "bytes32"
95
60
  },
96
61
  {
97
- "internalType": "address",
98
- "name": "feeCalculator",
99
- "type": "address"
100
- }
101
- ],
102
- "name": "decomposeLps",
103
- "outputs": [
104
- {
105
- "internalType": "int128",
106
- "name": "",
107
- "type": "int128"
108
- }
109
- ],
110
- "stateMutability": "nonpayable",
111
- "type": "function"
112
- },
113
- {
114
- "inputs": [
115
- {
62
+ "indexed": true,
116
63
  "internalType": "uint32",
117
64
  "name": "productId",
118
65
  "type": "uint32"
119
66
  },
120
67
  {
121
- "internalType": "bytes32",
122
- "name": "subaccount",
123
- "type": "bytes32"
124
- }
125
- ],
126
- "name": "getBalance",
127
- "outputs": [
68
+ "indexed": false,
69
+ "internalType": "int128",
70
+ "name": "amount",
71
+ "type": "int128"
72
+ },
128
73
  {
129
- "components": [
130
- {
131
- "internalType": "int128",
132
- "name": "amount",
133
- "type": "int128"
134
- },
135
- {
136
- "internalType": "int128",
137
- "name": "lastCumulativeMultiplierX18",
138
- "type": "int128"
139
- }
140
- ],
141
- "internalType": "struct ISpotEngine.Balance",
142
- "name": "",
143
- "type": "tuple"
74
+ "indexed": false,
75
+ "internalType": "int128",
76
+ "name": "lastCumulativeMultiplierX18",
77
+ "type": "int128"
144
78
  }
145
79
  ],
146
- "stateMutability": "view",
147
- "type": "function"
80
+ "name": "SpotBalance",
81
+ "type": "event"
148
82
  },
149
83
  {
150
84
  "inputs": [
@@ -152,21 +86,10 @@
152
86
  "internalType": "uint32",
153
87
  "name": "productId",
154
88
  "type": "uint32"
155
- },
156
- {
157
- "internalType": "bytes32",
158
- "name": "subaccount",
159
- "type": "bytes32"
160
- }
161
- ],
162
- "name": "getBalanceAmount",
163
- "outputs": [
164
- {
165
- "internalType": "int128",
166
- "name": "",
167
- "type": "int128"
168
89
  }
169
90
  ],
91
+ "name": "assertUtilization",
92
+ "outputs": [],
170
93
  "stateMutability": "view",
171
94
  "type": "function"
172
95
  },
@@ -183,7 +106,7 @@
183
106
  "type": "bytes32"
184
107
  }
185
108
  ],
186
- "name": "getBalances",
109
+ "name": "getBalance",
187
110
  "outputs": [
188
111
  {
189
112
  "components": [
@@ -193,23 +116,6 @@
193
116
  "type": "int128"
194
117
  }
195
118
  ],
196
- "internalType": "struct ISpotEngine.LpBalance",
197
- "name": "",
198
- "type": "tuple"
199
- },
200
- {
201
- "components": [
202
- {
203
- "internalType": "int128",
204
- "name": "amount",
205
- "type": "int128"
206
- },
207
- {
208
- "internalType": "int128",
209
- "name": "lastCumulativeMultiplierX18",
210
- "type": "int128"
211
- }
212
- ],
213
119
  "internalType": "struct ISpotEngine.Balance",
214
120
  "name": "",
215
121
  "type": "tuple"
@@ -267,6 +173,16 @@
267
173
  "internalType": "int128",
268
174
  "name": "interestLargeCapX18",
269
175
  "type": "int128"
176
+ },
177
+ {
178
+ "internalType": "int128",
179
+ "name": "withdrawFeeX18",
180
+ "type": "int128"
181
+ },
182
+ {
183
+ "internalType": "int128",
184
+ "name": "minDepositRateX18",
185
+ "type": "int128"
270
186
  }
271
187
  ],
272
188
  "internalType": "struct ISpotEngine.Config",
@@ -277,72 +193,45 @@
277
193
  "stateMutability": "view",
278
194
  "type": "function"
279
195
  },
280
- {
281
- "inputs": [],
282
- "name": "getEngineType",
283
- "outputs": [
284
- {
285
- "internalType": "enum IProductEngine.EngineType",
286
- "name": "",
287
- "type": "uint8"
288
- }
289
- ],
290
- "stateMutability": "pure",
291
- "type": "function"
292
- },
293
196
  {
294
197
  "inputs": [
198
+ {
199
+ "internalType": "bytes32",
200
+ "name": "subaccount",
201
+ "type": "bytes32"
202
+ },
295
203
  {
296
204
  "internalType": "uint32",
297
205
  "name": "productId",
298
206
  "type": "uint32"
207
+ },
208
+ {
209
+ "internalType": "enum IProductEngine.HealthType",
210
+ "name": "healthType",
211
+ "type": "uint8"
299
212
  }
300
213
  ],
301
- "name": "getLpState",
214
+ "name": "getCoreRisk",
302
215
  "outputs": [
303
216
  {
304
217
  "components": [
305
218
  {
306
219
  "internalType": "int128",
307
- "name": "supply",
220
+ "name": "amount",
308
221
  "type": "int128"
309
222
  },
310
223
  {
311
- "components": [
312
- {
313
- "internalType": "int128",
314
- "name": "amount",
315
- "type": "int128"
316
- },
317
- {
318
- "internalType": "int128",
319
- "name": "lastCumulativeMultiplierX18",
320
- "type": "int128"
321
- }
322
- ],
323
- "internalType": "struct ISpotEngine.Balance",
324
- "name": "quote",
325
- "type": "tuple"
224
+ "internalType": "int128",
225
+ "name": "price",
226
+ "type": "int128"
326
227
  },
327
228
  {
328
- "components": [
329
- {
330
- "internalType": "int128",
331
- "name": "amount",
332
- "type": "int128"
333
- },
334
- {
335
- "internalType": "int128",
336
- "name": "lastCumulativeMultiplierX18",
337
- "type": "int128"
338
- }
339
- ],
340
- "internalType": "struct ISpotEngine.Balance",
341
- "name": "base",
342
- "type": "tuple"
229
+ "internalType": "int128",
230
+ "name": "longWeight",
231
+ "type": "int128"
343
232
  }
344
233
  ],
345
- "internalType": "struct ISpotEngine.LpState",
234
+ "internalType": "struct IProductEngine.CoreRisk",
346
235
  "name": "",
347
236
  "type": "tuple"
348
237
  }
@@ -350,25 +239,69 @@
350
239
  "stateMutability": "view",
351
240
  "type": "function"
352
241
  },
242
+ {
243
+ "inputs": [],
244
+ "name": "getEngineType",
245
+ "outputs": [
246
+ {
247
+ "internalType": "enum IProductEngine.EngineType",
248
+ "name": "",
249
+ "type": "uint8"
250
+ }
251
+ ],
252
+ "stateMutability": "pure",
253
+ "type": "function"
254
+ },
353
255
  {
354
256
  "inputs": [
355
257
  {
356
- "internalType": "uint32",
357
- "name": "productId",
358
- "type": "uint32"
258
+ "internalType": "bytes32",
259
+ "name": "subaccount",
260
+ "type": "bytes32"
261
+ },
262
+ {
263
+ "internalType": "enum IProductEngine.HealthType",
264
+ "name": "healthType",
265
+ "type": "uint8"
359
266
  }
360
267
  ],
361
- "name": "getOrderbook",
268
+ "name": "getHealthContribution",
362
269
  "outputs": [
363
270
  {
364
- "internalType": "address",
271
+ "internalType": "int128",
365
272
  "name": "",
366
- "type": "address"
273
+ "type": "int128"
367
274
  }
368
275
  ],
369
276
  "stateMutability": "view",
370
277
  "type": "function"
371
278
  },
279
+ {
280
+ "inputs": [
281
+ {
282
+ "internalType": "bytes32",
283
+ "name": "subaccount",
284
+ "type": "bytes32"
285
+ }
286
+ ],
287
+ "name": "getNlpUnlockedBalance",
288
+ "outputs": [
289
+ {
290
+ "components": [
291
+ {
292
+ "internalType": "int128",
293
+ "name": "amount",
294
+ "type": "int128"
295
+ }
296
+ ],
297
+ "internalType": "struct ISpotEngine.Balance",
298
+ "name": "",
299
+ "type": "tuple"
300
+ }
301
+ ],
302
+ "stateMutability": "nonpayable",
303
+ "type": "function"
304
+ },
372
305
  {
373
306
  "inputs": [],
374
307
  "name": "getProductIds",
@@ -388,56 +321,39 @@
388
321
  "internalType": "uint32",
389
322
  "name": "productId",
390
323
  "type": "uint32"
391
- },
392
- {
393
- "internalType": "bytes32",
394
- "name": "subaccount",
395
- "type": "bytes32"
396
324
  }
397
325
  ],
398
- "name": "getStateAndBalance",
326
+ "name": "getRisk",
399
327
  "outputs": [
400
328
  {
401
329
  "components": [
402
330
  {
403
331
  "internalType": "int128",
404
- "name": "cumulativeDepositsMultiplierX18",
332
+ "name": "longWeightInitialX18",
405
333
  "type": "int128"
406
334
  },
407
335
  {
408
336
  "internalType": "int128",
409
- "name": "cumulativeBorrowsMultiplierX18",
337
+ "name": "shortWeightInitialX18",
410
338
  "type": "int128"
411
339
  },
412
340
  {
413
341
  "internalType": "int128",
414
- "name": "totalDepositsNormalized",
342
+ "name": "longWeightMaintenanceX18",
415
343
  "type": "int128"
416
344
  },
417
345
  {
418
346
  "internalType": "int128",
419
- "name": "totalBorrowsNormalized",
420
- "type": "int128"
421
- }
422
- ],
423
- "internalType": "struct ISpotEngine.State",
424
- "name": "",
425
- "type": "tuple"
426
- },
427
- {
428
- "components": [
429
- {
430
- "internalType": "int128",
431
- "name": "amount",
347
+ "name": "shortWeightMaintenanceX18",
432
348
  "type": "int128"
433
349
  },
434
350
  {
435
351
  "internalType": "int128",
436
- "name": "lastCumulativeMultiplierX18",
352
+ "name": "priceX18",
437
353
  "type": "int128"
438
354
  }
439
355
  ],
440
- "internalType": "struct ISpotEngine.Balance",
356
+ "internalType": "struct RiskHelper.Risk",
441
357
  "name": "",
442
358
  "type": "tuple"
443
359
  }
@@ -458,66 +374,8 @@
458
374
  "type": "bytes32"
459
375
  }
460
376
  ],
461
- "name": "getStatesAndBalances",
377
+ "name": "getStateAndBalance",
462
378
  "outputs": [
463
- {
464
- "components": [
465
- {
466
- "internalType": "int128",
467
- "name": "supply",
468
- "type": "int128"
469
- },
470
- {
471
- "components": [
472
- {
473
- "internalType": "int128",
474
- "name": "amount",
475
- "type": "int128"
476
- },
477
- {
478
- "internalType": "int128",
479
- "name": "lastCumulativeMultiplierX18",
480
- "type": "int128"
481
- }
482
- ],
483
- "internalType": "struct ISpotEngine.Balance",
484
- "name": "quote",
485
- "type": "tuple"
486
- },
487
- {
488
- "components": [
489
- {
490
- "internalType": "int128",
491
- "name": "amount",
492
- "type": "int128"
493
- },
494
- {
495
- "internalType": "int128",
496
- "name": "lastCumulativeMultiplierX18",
497
- "type": "int128"
498
- }
499
- ],
500
- "internalType": "struct ISpotEngine.Balance",
501
- "name": "base",
502
- "type": "tuple"
503
- }
504
- ],
505
- "internalType": "struct ISpotEngine.LpState",
506
- "name": "",
507
- "type": "tuple"
508
- },
509
- {
510
- "components": [
511
- {
512
- "internalType": "int128",
513
- "name": "amount",
514
- "type": "int128"
515
- }
516
- ],
517
- "internalType": "struct ISpotEngine.LpBalance",
518
- "name": "",
519
- "type": "tuple"
520
- },
521
379
  {
522
380
  "components": [
523
381
  {
@@ -551,11 +409,6 @@
551
409
  "internalType": "int128",
552
410
  "name": "amount",
553
411
  "type": "int128"
554
- },
555
- {
556
- "internalType": "int128",
557
- "name": "lastCumulativeMultiplierX18",
558
- "type": "int128"
559
412
  }
560
413
  ],
561
414
  "internalType": "struct ISpotEngine.Balance",
@@ -574,36 +427,12 @@
574
427
  "type": "uint32"
575
428
  }
576
429
  ],
577
- "name": "getWithdrawFee",
578
- "outputs": [
579
- {
580
- "internalType": "int128",
581
- "name": "",
582
- "type": "int128"
583
- }
584
- ],
585
- "stateMutability": "view",
586
- "type": "function"
587
- },
588
- {
589
- "inputs": [
590
- {
591
- "internalType": "uint32",
592
- "name": "productId",
593
- "type": "uint32"
594
- },
595
- {
596
- "internalType": "bytes32",
597
- "name": "subaccount",
598
- "type": "bytes32"
599
- }
600
- ],
601
- "name": "hasBalance",
430
+ "name": "getToken",
602
431
  "outputs": [
603
432
  {
604
- "internalType": "bool",
433
+ "internalType": "address",
605
434
  "name": "",
606
- "type": "bool"
435
+ "type": "address"
607
436
  }
608
437
  ],
609
438
  "stateMutability": "view",
@@ -618,22 +447,22 @@
618
447
  },
619
448
  {
620
449
  "internalType": "address",
621
- "name": "_quote",
450
+ "name": "_offchainExchange",
622
451
  "type": "address"
623
452
  },
624
453
  {
625
454
  "internalType": "address",
626
- "name": "_endpoint",
455
+ "name": "_quote",
627
456
  "type": "address"
628
457
  },
629
458
  {
630
459
  "internalType": "address",
631
- "name": "_admin",
460
+ "name": "_endpoint",
632
461
  "type": "address"
633
462
  },
634
463
  {
635
464
  "internalType": "address",
636
- "name": "_fees",
465
+ "name": "_admin",
637
466
  "type": "address"
638
467
  }
639
468
  ],
@@ -662,46 +491,36 @@
662
491
  },
663
492
  {
664
493
  "inputs": [
665
- {
666
- "internalType": "uint32",
667
- "name": "productId",
668
- "type": "uint32"
669
- },
670
494
  {
671
495
  "internalType": "bytes32",
672
496
  "name": "subaccount",
673
497
  "type": "bytes32"
674
- },
675
- {
676
- "internalType": "int128",
677
- "name": "amountBase",
678
- "type": "int128"
679
- },
680
- {
681
- "internalType": "int128",
682
- "name": "quoteAmountLow",
683
- "type": "int128"
684
- },
685
- {
686
- "internalType": "int128",
687
- "name": "quoteAmountHigh",
688
- "type": "int128"
689
498
  }
690
499
  ],
691
- "name": "mintLp",
500
+ "name": "socializeSubaccount",
692
501
  "outputs": [],
693
502
  "stateMutability": "nonpayable",
694
503
  "type": "function"
695
504
  },
696
505
  {
697
506
  "inputs": [
507
+ {
508
+ "internalType": "uint32",
509
+ "name": "productId",
510
+ "type": "uint32"
511
+ },
698
512
  {
699
513
  "internalType": "bytes32",
700
514
  "name": "subaccount",
701
515
  "type": "bytes32"
516
+ },
517
+ {
518
+ "internalType": "int128",
519
+ "name": "amountDelta",
520
+ "type": "int128"
702
521
  }
703
522
  ],
704
- "name": "socializeSubaccount",
523
+ "name": "updateBalance",
705
524
  "outputs": [],
706
525
  "stateMutability": "nonpayable",
707
526
  "type": "function"
@@ -714,29 +533,23 @@
714
533
  "type": "uint32"
715
534
  },
716
535
  {
717
- "internalType": "int128",
718
- "name": "baseDelta",
719
- "type": "int128"
536
+ "internalType": "bytes32",
537
+ "name": "subaccount",
538
+ "type": "bytes32"
720
539
  },
721
540
  {
722
541
  "internalType": "int128",
723
- "name": "quoteDelta",
724
- "type": "int128"
725
- }
726
- ],
727
- "name": "swapLp",
728
- "outputs": [
729
- {
730
- "internalType": "int128",
731
- "name": "",
542
+ "name": "amountDelta",
732
543
  "type": "int128"
733
544
  },
734
545
  {
735
546
  "internalType": "int128",
736
- "name": "",
547
+ "name": "quoteDelta",
737
548
  "type": "int128"
738
549
  }
739
550
  ],
551
+ "name": "updateBalance",
552
+ "outputs": [],
740
553
  "stateMutability": "nonpayable",
741
554
  "type": "function"
742
555
  },
@@ -747,40 +560,14 @@
747
560
  "name": "productId",
748
561
  "type": "uint32"
749
562
  },
750
- {
751
- "internalType": "int128",
752
- "name": "amount",
753
- "type": "int128"
754
- },
755
563
  {
756
564
  "internalType": "int128",
757
565
  "name": "priceX18",
758
566
  "type": "int128"
759
- },
760
- {
761
- "internalType": "int128",
762
- "name": "sizeIncrement",
763
- "type": "int128"
764
- },
765
- {
766
- "internalType": "int128",
767
- "name": "lpSpreadX18",
768
- "type": "int128"
769
- }
770
- ],
771
- "name": "swapLp",
772
- "outputs": [
773
- {
774
- "internalType": "int128",
775
- "name": "",
776
- "type": "int128"
777
- },
778
- {
779
- "internalType": "int128",
780
- "name": "",
781
- "type": "int128"
782
567
  }
783
568
  ],
569
+ "name": "updatePrice",
570
+ "outputs": [],
784
571
  "stateMutability": "nonpayable",
785
572
  "type": "function"
786
573
  },
@@ -797,6 +584,30 @@
797
584
  "stateMutability": "nonpayable",
798
585
  "type": "function"
799
586
  },
587
+ {
588
+ "inputs": [
589
+ {
590
+ "internalType": "bytes32",
591
+ "name": "subaccount",
592
+ "type": "bytes32"
593
+ },
594
+ {
595
+ "internalType": "int128",
596
+ "name": "insurance",
597
+ "type": "int128"
598
+ }
599
+ ],
600
+ "name": "updateQuoteFromInsurance",
601
+ "outputs": [
602
+ {
603
+ "internalType": "int128",
604
+ "name": "",
605
+ "type": "int128"
606
+ }
607
+ ],
608
+ "stateMutability": "nonpayable",
609
+ "type": "function"
610
+ },
800
611
  {
801
612
  "inputs": [
802
613
  {
@@ -810,4 +621,4 @@
810
621
  "stateMutability": "nonpayable",
811
622
  "type": "function"
812
623
  }
813
- ]
624
+ ]