@curvefi/api 1.11.0 → 1.15.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 (52) hide show
  1. package/README.md +68 -0
  2. package/lib/constants/abis/abis-ethereum.js +144 -16
  3. package/lib/constants/abis/abis-polygon.js +17 -1
  4. package/lib/constants/abis/json/aave/rewards.json +107 -0
  5. package/lib/constants/abis/json/atricrypto3/swap.json +63 -63
  6. package/lib/constants/abis/json/atricrypto3/zap.json +8 -8
  7. package/lib/constants/abis/json/busd/deposit.json +5 -10
  8. package/lib/constants/abis/json/busd/swap.json +18 -36
  9. package/lib/constants/abis/json/compound/deposit.json +5 -10
  10. package/lib/constants/abis/json/compound/migration.json +1 -2
  11. package/lib/constants/abis/json/compound/oldSwap.json +16 -32
  12. package/lib/constants/abis/json/compound/swap.json +18 -36
  13. package/lib/constants/abis/json/crveth/swap.json +61 -61
  14. package/lib/constants/abis/json/eurt/swap.json +29 -29
  15. package/lib/constants/abis/json/eurtusd/deposit.json +13 -13
  16. package/lib/constants/abis/json/eurtusd/swap.json +59 -59
  17. package/lib/constants/abis/json/gauge.json +1 -1
  18. package/lib/constants/abis/json/gauge_factory.json +879 -0
  19. package/lib/constants/abis/json/gauge_rewards_only.json +649 -0
  20. package/lib/constants/abis/json/gauge_synthetix.json +590 -0
  21. package/lib/constants/abis/json/gauge_v2.json +942 -0
  22. package/lib/constants/abis/json/gauge_v3.json +954 -0
  23. package/lib/constants/abis/json/gauge_v4.json +913 -0
  24. package/lib/constants/abis/json/iearn/deposit.json +5 -10
  25. package/lib/constants/abis/json/iearn/swap.json +18 -36
  26. package/lib/constants/abis/json/minter.json +165 -0
  27. package/lib/constants/abis/json/pax/deposit.json +5 -10
  28. package/lib/constants/abis/json/pax/swap.json +19 -38
  29. package/lib/constants/abis/json/ren/swap.json +19 -38
  30. package/lib/constants/abis/json/ren-polygon/swap.json +46 -46
  31. package/lib/constants/abis/json/reth/swap.json +38 -38
  32. package/lib/constants/abis/json/sbtc/swap.json +19 -38
  33. package/lib/constants/abis/json/streamer.json +257 -0
  34. package/lib/constants/abis/json/susdv2/deposit.json +5 -10
  35. package/lib/constants/abis/json/susdv2/swap.json +16 -32
  36. package/lib/constants/abis/json/tricrypto2/deposit.json +3 -3
  37. package/lib/constants/abis/json/tricrypto2/swap.json +60 -60
  38. package/lib/constants/abis/json/usdt/deposit.json +5 -10
  39. package/lib/constants/abis/json/usdt/swap.json +19 -37
  40. package/lib/constants/aliases.d.ts +2 -0
  41. package/lib/constants/aliases.js +3 -1
  42. package/lib/constants/coins-ethereum.js +4 -2
  43. package/lib/constants/coins-polygon.js +3 -2
  44. package/lib/curve.d.ts +2 -1
  45. package/lib/curve.js +73 -30
  46. package/lib/index.d.ts +1 -1
  47. package/lib/interfaces.d.ts +8 -0
  48. package/lib/pools.d.ts +36 -5
  49. package/lib/pools.js +313 -52
  50. package/lib/utils.d.ts +1 -1
  51. package/lib/utils.js +40 -29
  52. package/package.json +1 -1
@@ -0,0 +1,913 @@
1
+ [
2
+ {
3
+ "name": "Deposit",
4
+ "inputs": [
5
+ {
6
+ "name": "provider",
7
+ "type": "address",
8
+ "indexed": true
9
+ },
10
+ {
11
+ "name": "value",
12
+ "type": "uint256",
13
+ "indexed": false
14
+ }
15
+ ],
16
+ "anonymous": false,
17
+ "type": "event"
18
+ },
19
+ {
20
+ "name": "Withdraw",
21
+ "inputs": [
22
+ {
23
+ "name": "provider",
24
+ "type": "address",
25
+ "indexed": true
26
+ },
27
+ {
28
+ "name": "value",
29
+ "type": "uint256",
30
+ "indexed": false
31
+ }
32
+ ],
33
+ "anonymous": false,
34
+ "type": "event"
35
+ },
36
+ {
37
+ "name": "UpdateLiquidityLimit",
38
+ "inputs": [
39
+ {
40
+ "name": "user",
41
+ "type": "address",
42
+ "indexed": false
43
+ },
44
+ {
45
+ "name": "original_balance",
46
+ "type": "uint256",
47
+ "indexed": false
48
+ },
49
+ {
50
+ "name": "original_supply",
51
+ "type": "uint256",
52
+ "indexed": false
53
+ },
54
+ {
55
+ "name": "working_balance",
56
+ "type": "uint256",
57
+ "indexed": false
58
+ },
59
+ {
60
+ "name": "working_supply",
61
+ "type": "uint256",
62
+ "indexed": false
63
+ }
64
+ ],
65
+ "anonymous": false,
66
+ "type": "event"
67
+ },
68
+ {
69
+ "name": "CommitOwnership",
70
+ "inputs": [
71
+ {
72
+ "name": "admin",
73
+ "type": "address",
74
+ "indexed": false
75
+ }
76
+ ],
77
+ "anonymous": false,
78
+ "type": "event"
79
+ },
80
+ {
81
+ "name": "ApplyOwnership",
82
+ "inputs": [
83
+ {
84
+ "name": "admin",
85
+ "type": "address",
86
+ "indexed": false
87
+ }
88
+ ],
89
+ "anonymous": false,
90
+ "type": "event"
91
+ },
92
+ {
93
+ "name": "Transfer",
94
+ "inputs": [
95
+ {
96
+ "name": "_from",
97
+ "type": "address",
98
+ "indexed": true
99
+ },
100
+ {
101
+ "name": "_to",
102
+ "type": "address",
103
+ "indexed": true
104
+ },
105
+ {
106
+ "name": "_value",
107
+ "type": "uint256",
108
+ "indexed": false
109
+ }
110
+ ],
111
+ "anonymous": false,
112
+ "type": "event"
113
+ },
114
+ {
115
+ "name": "Approval",
116
+ "inputs": [
117
+ {
118
+ "name": "_owner",
119
+ "type": "address",
120
+ "indexed": true
121
+ },
122
+ {
123
+ "name": "_spender",
124
+ "type": "address",
125
+ "indexed": true
126
+ },
127
+ {
128
+ "name": "_value",
129
+ "type": "uint256",
130
+ "indexed": false
131
+ }
132
+ ],
133
+ "anonymous": false,
134
+ "type": "event"
135
+ },
136
+ {
137
+ "stateMutability": "nonpayable",
138
+ "type": "constructor",
139
+ "inputs": [
140
+ {
141
+ "name": "_lp_token",
142
+ "type": "address"
143
+ },
144
+ {
145
+ "name": "_admin",
146
+ "type": "address"
147
+ }
148
+ ],
149
+ "outputs": []
150
+ },
151
+ {
152
+ "stateMutability": "view",
153
+ "type": "function",
154
+ "name": "decimals",
155
+ "inputs": [],
156
+ "outputs": [
157
+ {
158
+ "name": "",
159
+ "type": "uint256"
160
+ }
161
+ ],
162
+ "gas": "288"
163
+ },
164
+ {
165
+ "stateMutability": "view",
166
+ "type": "function",
167
+ "name": "integrate_checkpoint",
168
+ "inputs": [],
169
+ "outputs": [
170
+ {
171
+ "name": "",
172
+ "type": "uint256"
173
+ }
174
+ ],
175
+ "gas": "4560"
176
+ },
177
+ {
178
+ "stateMutability": "nonpayable",
179
+ "type": "function",
180
+ "name": "user_checkpoint",
181
+ "inputs": [
182
+ {
183
+ "name": "addr",
184
+ "type": "address"
185
+ }
186
+ ],
187
+ "outputs": [
188
+ {
189
+ "name": "",
190
+ "type": "bool"
191
+ }
192
+ ],
193
+ "gas": "3123352"
194
+ },
195
+ {
196
+ "stateMutability": "view",
197
+ "type": "function",
198
+ "name": "claimable_tokens",
199
+ "inputs": [
200
+ {
201
+ "name": "addr",
202
+ "type": "address"
203
+ }
204
+ ],
205
+ "outputs": [
206
+ {
207
+ "name": "",
208
+ "type": "uint256"
209
+ }
210
+ ],
211
+ "gas": "3038594"
212
+ },
213
+ {
214
+ "stateMutability": "view",
215
+ "type": "function",
216
+ "name": "claimed_reward",
217
+ "inputs": [
218
+ {
219
+ "name": "_addr",
220
+ "type": "address"
221
+ },
222
+ {
223
+ "name": "_token",
224
+ "type": "address"
225
+ }
226
+ ],
227
+ "outputs": [
228
+ {
229
+ "name": "",
230
+ "type": "uint256"
231
+ }
232
+ ],
233
+ "gas": "3006"
234
+ },
235
+ {
236
+ "stateMutability": "view",
237
+ "type": "function",
238
+ "name": "claimable_reward",
239
+ "inputs": [
240
+ {
241
+ "name": "_user",
242
+ "type": "address"
243
+ },
244
+ {
245
+ "name": "_reward_token",
246
+ "type": "address"
247
+ }
248
+ ],
249
+ "outputs": [
250
+ {
251
+ "name": "",
252
+ "type": "uint256"
253
+ }
254
+ ],
255
+ "gas": "20225"
256
+ },
257
+ {
258
+ "stateMutability": "nonpayable",
259
+ "type": "function",
260
+ "name": "set_rewards_receiver",
261
+ "inputs": [
262
+ {
263
+ "name": "_receiver",
264
+ "type": "address"
265
+ }
266
+ ],
267
+ "outputs": [],
268
+ "gas": "35643"
269
+ },
270
+ {
271
+ "stateMutability": "nonpayable",
272
+ "type": "function",
273
+ "name": "claim_rewards",
274
+ "inputs": [],
275
+ "outputs": []
276
+ },
277
+ {
278
+ "stateMutability": "nonpayable",
279
+ "type": "function",
280
+ "name": "kick",
281
+ "inputs": [
282
+ {
283
+ "name": "addr",
284
+ "type": "address"
285
+ }
286
+ ],
287
+ "outputs": [],
288
+ "gas": "3137443"
289
+ },
290
+ {
291
+ "stateMutability": "nonpayable",
292
+ "type": "function",
293
+ "name": "deposit",
294
+ "inputs": [
295
+ {
296
+ "name": "_value",
297
+ "type": "uint256"
298
+ }
299
+ ],
300
+ "outputs": []
301
+ },
302
+ {
303
+ "stateMutability": "nonpayable",
304
+ "type": "function",
305
+ "name": "withdraw",
306
+ "inputs": [
307
+ {
308
+ "name": "_value",
309
+ "type": "uint256"
310
+ }
311
+ ],
312
+ "outputs": []
313
+ },
314
+ {
315
+ "stateMutability": "nonpayable",
316
+ "type": "function",
317
+ "name": "transfer",
318
+ "inputs": [
319
+ {
320
+ "name": "_to",
321
+ "type": "address"
322
+ },
323
+ {
324
+ "name": "_value",
325
+ "type": "uint256"
326
+ }
327
+ ],
328
+ "outputs": [
329
+ {
330
+ "name": "",
331
+ "type": "bool"
332
+ }
333
+ ],
334
+ "gas": "18062446"
335
+ },
336
+ {
337
+ "stateMutability": "nonpayable",
338
+ "type": "function",
339
+ "name": "transferFrom",
340
+ "inputs": [
341
+ {
342
+ "name": "_from",
343
+ "type": "address"
344
+ },
345
+ {
346
+ "name": "_to",
347
+ "type": "address"
348
+ },
349
+ {
350
+ "name": "_value",
351
+ "type": "uint256"
352
+ }
353
+ ],
354
+ "outputs": [
355
+ {
356
+ "name": "",
357
+ "type": "bool"
358
+ }
359
+ ],
360
+ "gas": "18100396"
361
+ },
362
+ {
363
+ "stateMutability": "nonpayable",
364
+ "type": "function",
365
+ "name": "approve",
366
+ "inputs": [
367
+ {
368
+ "name": "_spender",
369
+ "type": "address"
370
+ },
371
+ {
372
+ "name": "_value",
373
+ "type": "uint256"
374
+ }
375
+ ],
376
+ "outputs": [
377
+ {
378
+ "name": "",
379
+ "type": "bool"
380
+ }
381
+ ],
382
+ "gas": "39421"
383
+ },
384
+ {
385
+ "stateMutability": "nonpayable",
386
+ "type": "function",
387
+ "name": "increaseAllowance",
388
+ "inputs": [
389
+ {
390
+ "name": "_spender",
391
+ "type": "address"
392
+ },
393
+ {
394
+ "name": "_added_value",
395
+ "type": "uint256"
396
+ }
397
+ ],
398
+ "outputs": [
399
+ {
400
+ "name": "",
401
+ "type": "bool"
402
+ }
403
+ ],
404
+ "gas": "41965"
405
+ },
406
+ {
407
+ "stateMutability": "nonpayable",
408
+ "type": "function",
409
+ "name": "decreaseAllowance",
410
+ "inputs": [
411
+ {
412
+ "name": "_spender",
413
+ "type": "address"
414
+ },
415
+ {
416
+ "name": "_subtracted_value",
417
+ "type": "uint256"
418
+ }
419
+ ],
420
+ "outputs": [
421
+ {
422
+ "name": "",
423
+ "type": "bool"
424
+ }
425
+ ],
426
+ "gas": "41989"
427
+ },
428
+ {
429
+ "stateMutability": "nonpayable",
430
+ "type": "function",
431
+ "name": "add_reward",
432
+ "inputs": [
433
+ {
434
+ "name": "_reward_token",
435
+ "type": "address"
436
+ },
437
+ {
438
+ "name": "_distributor",
439
+ "type": "address"
440
+ }
441
+ ],
442
+ "outputs": [],
443
+ "gas": "113003"
444
+ },
445
+ {
446
+ "stateMutability": "nonpayable",
447
+ "type": "function",
448
+ "name": "set_reward_distributor",
449
+ "inputs": [
450
+ {
451
+ "name": "_reward_token",
452
+ "type": "address"
453
+ },
454
+ {
455
+ "name": "_distributor",
456
+ "type": "address"
457
+ }
458
+ ],
459
+ "outputs": [],
460
+ "gas": "40753"
461
+ },
462
+ {
463
+ "stateMutability": "nonpayable",
464
+ "type": "function",
465
+ "name": "deposit_reward_token",
466
+ "inputs": [
467
+ {
468
+ "name": "_reward_token",
469
+ "type": "address"
470
+ },
471
+ {
472
+ "name": "_amount",
473
+ "type": "uint256"
474
+ }
475
+ ],
476
+ "outputs": [],
477
+ "gas": "1540169"
478
+ },
479
+ {
480
+ "stateMutability": "nonpayable",
481
+ "type": "function",
482
+ "name": "set_killed",
483
+ "inputs": [
484
+ {
485
+ "name": "_is_killed",
486
+ "type": "bool"
487
+ }
488
+ ],
489
+ "outputs": [],
490
+ "gas": "38115"
491
+ },
492
+ {
493
+ "stateMutability": "nonpayable",
494
+ "type": "function",
495
+ "name": "commit_transfer_ownership",
496
+ "inputs": [
497
+ {
498
+ "name": "addr",
499
+ "type": "address"
500
+ }
501
+ ],
502
+ "outputs": [],
503
+ "gas": "40045"
504
+ },
505
+ {
506
+ "stateMutability": "nonpayable",
507
+ "type": "function",
508
+ "name": "accept_transfer_ownership",
509
+ "inputs": [],
510
+ "outputs": [],
511
+ "gas": "39990"
512
+ },
513
+ {
514
+ "stateMutability": "view",
515
+ "type": "function",
516
+ "name": "lp_token",
517
+ "inputs": [],
518
+ "outputs": [
519
+ {
520
+ "name": "",
521
+ "type": "address"
522
+ }
523
+ ],
524
+ "gas": "3048"
525
+ },
526
+ {
527
+ "stateMutability": "view",
528
+ "type": "function",
529
+ "name": "future_epoch_time",
530
+ "inputs": [],
531
+ "outputs": [
532
+ {
533
+ "name": "",
534
+ "type": "uint256"
535
+ }
536
+ ],
537
+ "gas": "3078"
538
+ },
539
+ {
540
+ "stateMutability": "view",
541
+ "type": "function",
542
+ "name": "balanceOf",
543
+ "inputs": [
544
+ {
545
+ "name": "arg0",
546
+ "type": "address"
547
+ }
548
+ ],
549
+ "outputs": [
550
+ {
551
+ "name": "",
552
+ "type": "uint256"
553
+ }
554
+ ],
555
+ "gas": "3323"
556
+ },
557
+ {
558
+ "stateMutability": "view",
559
+ "type": "function",
560
+ "name": "totalSupply",
561
+ "inputs": [],
562
+ "outputs": [
563
+ {
564
+ "name": "",
565
+ "type": "uint256"
566
+ }
567
+ ],
568
+ "gas": "3138"
569
+ },
570
+ {
571
+ "stateMutability": "view",
572
+ "type": "function",
573
+ "name": "allowance",
574
+ "inputs": [
575
+ {
576
+ "name": "arg0",
577
+ "type": "address"
578
+ },
579
+ {
580
+ "name": "arg1",
581
+ "type": "address"
582
+ }
583
+ ],
584
+ "outputs": [
585
+ {
586
+ "name": "",
587
+ "type": "uint256"
588
+ }
589
+ ],
590
+ "gas": "3598"
591
+ },
592
+ {
593
+ "stateMutability": "view",
594
+ "type": "function",
595
+ "name": "name",
596
+ "inputs": [],
597
+ "outputs": [
598
+ {
599
+ "name": "",
600
+ "type": "string"
601
+ }
602
+ ],
603
+ "gas": "13428"
604
+ },
605
+ {
606
+ "stateMutability": "view",
607
+ "type": "function",
608
+ "name": "symbol",
609
+ "inputs": [],
610
+ "outputs": [
611
+ {
612
+ "name": "",
613
+ "type": "string"
614
+ }
615
+ ],
616
+ "gas": "11181"
617
+ },
618
+ {
619
+ "stateMutability": "view",
620
+ "type": "function",
621
+ "name": "working_balances",
622
+ "inputs": [
623
+ {
624
+ "name": "arg0",
625
+ "type": "address"
626
+ }
627
+ ],
628
+ "outputs": [
629
+ {
630
+ "name": "",
631
+ "type": "uint256"
632
+ }
633
+ ],
634
+ "gas": "3473"
635
+ },
636
+ {
637
+ "stateMutability": "view",
638
+ "type": "function",
639
+ "name": "working_supply",
640
+ "inputs": [],
641
+ "outputs": [
642
+ {
643
+ "name": "",
644
+ "type": "uint256"
645
+ }
646
+ ],
647
+ "gas": "3288"
648
+ },
649
+ {
650
+ "stateMutability": "view",
651
+ "type": "function",
652
+ "name": "period",
653
+ "inputs": [],
654
+ "outputs": [
655
+ {
656
+ "name": "",
657
+ "type": "int128"
658
+ }
659
+ ],
660
+ "gas": "3318"
661
+ },
662
+ {
663
+ "stateMutability": "view",
664
+ "type": "function",
665
+ "name": "period_timestamp",
666
+ "inputs": [
667
+ {
668
+ "name": "arg0",
669
+ "type": "uint256"
670
+ }
671
+ ],
672
+ "outputs": [
673
+ {
674
+ "name": "",
675
+ "type": "uint256"
676
+ }
677
+ ],
678
+ "gas": "3393"
679
+ },
680
+ {
681
+ "stateMutability": "view",
682
+ "type": "function",
683
+ "name": "integrate_inv_supply",
684
+ "inputs": [
685
+ {
686
+ "name": "arg0",
687
+ "type": "uint256"
688
+ }
689
+ ],
690
+ "outputs": [
691
+ {
692
+ "name": "",
693
+ "type": "uint256"
694
+ }
695
+ ],
696
+ "gas": "3423"
697
+ },
698
+ {
699
+ "stateMutability": "view",
700
+ "type": "function",
701
+ "name": "integrate_inv_supply_of",
702
+ "inputs": [
703
+ {
704
+ "name": "arg0",
705
+ "type": "address"
706
+ }
707
+ ],
708
+ "outputs": [
709
+ {
710
+ "name": "",
711
+ "type": "uint256"
712
+ }
713
+ ],
714
+ "gas": "3623"
715
+ },
716
+ {
717
+ "stateMutability": "view",
718
+ "type": "function",
719
+ "name": "integrate_checkpoint_of",
720
+ "inputs": [
721
+ {
722
+ "name": "arg0",
723
+ "type": "address"
724
+ }
725
+ ],
726
+ "outputs": [
727
+ {
728
+ "name": "",
729
+ "type": "uint256"
730
+ }
731
+ ],
732
+ "gas": "3653"
733
+ },
734
+ {
735
+ "stateMutability": "view",
736
+ "type": "function",
737
+ "name": "integrate_fraction",
738
+ "inputs": [
739
+ {
740
+ "name": "arg0",
741
+ "type": "address"
742
+ }
743
+ ],
744
+ "outputs": [
745
+ {
746
+ "name": "",
747
+ "type": "uint256"
748
+ }
749
+ ],
750
+ "gas": "3683"
751
+ },
752
+ {
753
+ "stateMutability": "view",
754
+ "type": "function",
755
+ "name": "inflation_rate",
756
+ "inputs": [],
757
+ "outputs": [
758
+ {
759
+ "name": "",
760
+ "type": "uint256"
761
+ }
762
+ ],
763
+ "gas": "3498"
764
+ },
765
+ {
766
+ "stateMutability": "view",
767
+ "type": "function",
768
+ "name": "reward_count",
769
+ "inputs": [],
770
+ "outputs": [
771
+ {
772
+ "name": "",
773
+ "type": "uint256"
774
+ }
775
+ ],
776
+ "gas": "3528"
777
+ },
778
+ {
779
+ "stateMutability": "view",
780
+ "type": "function",
781
+ "name": "reward_tokens",
782
+ "inputs": [
783
+ {
784
+ "name": "arg0",
785
+ "type": "uint256"
786
+ }
787
+ ],
788
+ "outputs": [
789
+ {
790
+ "name": "",
791
+ "type": "address"
792
+ }
793
+ ],
794
+ "gas": "3603"
795
+ },
796
+ {
797
+ "stateMutability": "view",
798
+ "type": "function",
799
+ "name": "reward_data",
800
+ "inputs": [
801
+ {
802
+ "name": "arg0",
803
+ "type": "address"
804
+ }
805
+ ],
806
+ "outputs": [
807
+ {
808
+ "name": "token",
809
+ "type": "address"
810
+ },
811
+ {
812
+ "name": "distributor",
813
+ "type": "address"
814
+ },
815
+ {
816
+ "name": "period_finish",
817
+ "type": "uint256"
818
+ },
819
+ {
820
+ "name": "rate",
821
+ "type": "uint256"
822
+ },
823
+ {
824
+ "name": "last_update",
825
+ "type": "uint256"
826
+ },
827
+ {
828
+ "name": "integral",
829
+ "type": "uint256"
830
+ }
831
+ ],
832
+ "gas": "15033"
833
+ },
834
+ {
835
+ "stateMutability": "view",
836
+ "type": "function",
837
+ "name": "rewards_receiver",
838
+ "inputs": [
839
+ {
840
+ "name": "arg0",
841
+ "type": "address"
842
+ }
843
+ ],
844
+ "outputs": [
845
+ {
846
+ "name": "",
847
+ "type": "address"
848
+ }
849
+ ],
850
+ "gas": "3833"
851
+ },
852
+ {
853
+ "stateMutability": "view",
854
+ "type": "function",
855
+ "name": "reward_integral_for",
856
+ "inputs": [
857
+ {
858
+ "name": "arg0",
859
+ "type": "address"
860
+ },
861
+ {
862
+ "name": "arg1",
863
+ "type": "address"
864
+ }
865
+ ],
866
+ "outputs": [
867
+ {
868
+ "name": "",
869
+ "type": "uint256"
870
+ }
871
+ ],
872
+ "gas": "4078"
873
+ },
874
+ {
875
+ "stateMutability": "view",
876
+ "type": "function",
877
+ "name": "admin",
878
+ "inputs": [],
879
+ "outputs": [
880
+ {
881
+ "name": "",
882
+ "type": "address"
883
+ }
884
+ ],
885
+ "gas": "3678"
886
+ },
887
+ {
888
+ "stateMutability": "view",
889
+ "type": "function",
890
+ "name": "future_admin",
891
+ "inputs": [],
892
+ "outputs": [
893
+ {
894
+ "name": "",
895
+ "type": "address"
896
+ }
897
+ ],
898
+ "gas": "3708"
899
+ },
900
+ {
901
+ "stateMutability": "view",
902
+ "type": "function",
903
+ "name": "is_killed",
904
+ "inputs": [],
905
+ "outputs": [
906
+ {
907
+ "name": "",
908
+ "type": "bool"
909
+ }
910
+ ],
911
+ "gas": "3738"
912
+ }
913
+ ]