@curvefi/api 1.13.0 → 1.16.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 (53) hide show
  1. package/README.md +98 -1
  2. package/lib/constants/abis/abis-ethereum.js +216 -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 +7 -3
  43. package/lib/constants/coins-polygon.js +3 -2
  44. package/lib/curve.d.ts +1 -0
  45. package/lib/curve.js +47 -16
  46. package/lib/index.d.ts +1 -0
  47. package/lib/index.js +1 -0
  48. package/lib/interfaces.d.ts +8 -0
  49. package/lib/pools.d.ts +41 -5
  50. package/lib/pools.js +357 -69
  51. package/lib/utils.d.ts +2 -1
  52. package/lib/utils.js +42 -29
  53. package/package.json +1 -1
@@ -0,0 +1,954 @@
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": "_minter",
146
+ "type": "address"
147
+ },
148
+ {
149
+ "name": "_admin",
150
+ "type": "address"
151
+ }
152
+ ],
153
+ "outputs": []
154
+ },
155
+ {
156
+ "stateMutability": "view",
157
+ "type": "function",
158
+ "name": "decimals",
159
+ "inputs": [],
160
+ "outputs": [
161
+ {
162
+ "name": "",
163
+ "type": "uint256"
164
+ }
165
+ ],
166
+ "gas": "288"
167
+ },
168
+ {
169
+ "stateMutability": "view",
170
+ "type": "function",
171
+ "name": "integrate_checkpoint",
172
+ "inputs": [],
173
+ "outputs": [
174
+ {
175
+ "name": "",
176
+ "type": "uint256"
177
+ }
178
+ ],
179
+ "gas": "4624"
180
+ },
181
+ {
182
+ "stateMutability": "nonpayable",
183
+ "type": "function",
184
+ "name": "user_checkpoint",
185
+ "inputs": [
186
+ {
187
+ "name": "addr",
188
+ "type": "address"
189
+ }
190
+ ],
191
+ "outputs": [
192
+ {
193
+ "name": "",
194
+ "type": "bool"
195
+ }
196
+ ],
197
+ "gas": "3133638"
198
+ },
199
+ {
200
+ "stateMutability": "view",
201
+ "type": "function",
202
+ "name": "claimable_tokens",
203
+ "inputs": [
204
+ {
205
+ "name": "addr",
206
+ "type": "address"
207
+ }
208
+ ],
209
+ "outputs": [
210
+ {
211
+ "name": "",
212
+ "type": "uint256"
213
+ }
214
+ ],
215
+ "gas": "3046705"
216
+ },
217
+ {
218
+ "stateMutability": "view",
219
+ "type": "function",
220
+ "name": "reward_contract",
221
+ "inputs": [],
222
+ "outputs": [
223
+ {
224
+ "name": "",
225
+ "type": "address"
226
+ }
227
+ ],
228
+ "gas": "2718"
229
+ },
230
+ {
231
+ "stateMutability": "view",
232
+ "type": "function",
233
+ "name": "last_claim",
234
+ "inputs": [],
235
+ "outputs": [
236
+ {
237
+ "name": "",
238
+ "type": "uint256"
239
+ }
240
+ ],
241
+ "gas": "2544"
242
+ },
243
+ {
244
+ "stateMutability": "view",
245
+ "type": "function",
246
+ "name": "claimed_reward",
247
+ "inputs": [
248
+ {
249
+ "name": "_addr",
250
+ "type": "address"
251
+ },
252
+ {
253
+ "name": "_token",
254
+ "type": "address"
255
+ }
256
+ ],
257
+ "outputs": [
258
+ {
259
+ "name": "",
260
+ "type": "uint256"
261
+ }
262
+ ],
263
+ "gas": "3066"
264
+ },
265
+ {
266
+ "stateMutability": "view",
267
+ "type": "function",
268
+ "name": "claimable_reward",
269
+ "inputs": [
270
+ {
271
+ "name": "_addr",
272
+ "type": "address"
273
+ },
274
+ {
275
+ "name": "_token",
276
+ "type": "address"
277
+ }
278
+ ],
279
+ "outputs": [
280
+ {
281
+ "name": "",
282
+ "type": "uint256"
283
+ }
284
+ ],
285
+ "gas": "3034"
286
+ },
287
+ {
288
+ "stateMutability": "nonpayable",
289
+ "type": "function",
290
+ "name": "claimable_reward_write",
291
+ "inputs": [
292
+ {
293
+ "name": "_addr",
294
+ "type": "address"
295
+ },
296
+ {
297
+ "name": "_token",
298
+ "type": "address"
299
+ }
300
+ ],
301
+ "outputs": [
302
+ {
303
+ "name": "",
304
+ "type": "uint256"
305
+ }
306
+ ],
307
+ "gas": "1211002"
308
+ },
309
+ {
310
+ "stateMutability": "nonpayable",
311
+ "type": "function",
312
+ "name": "set_rewards_receiver",
313
+ "inputs": [
314
+ {
315
+ "name": "_receiver",
316
+ "type": "address"
317
+ }
318
+ ],
319
+ "outputs": [],
320
+ "gas": "35733"
321
+ },
322
+ {
323
+ "stateMutability": "nonpayable",
324
+ "type": "function",
325
+ "name": "claim_rewards",
326
+ "inputs": [],
327
+ "outputs": []
328
+ },
329
+ {
330
+ "stateMutability": "nonpayable",
331
+ "type": "function",
332
+ "name": "kick",
333
+ "inputs": [
334
+ {
335
+ "name": "addr",
336
+ "type": "address"
337
+ }
338
+ ],
339
+ "outputs": [],
340
+ "gas": "3150326"
341
+ },
342
+ {
343
+ "stateMutability": "nonpayable",
344
+ "type": "function",
345
+ "name": "deposit",
346
+ "inputs": [
347
+ {
348
+ "name": "_value",
349
+ "type": "uint256"
350
+ }
351
+ ],
352
+ "outputs": []
353
+ },
354
+ {
355
+ "stateMutability": "nonpayable",
356
+ "type": "function",
357
+ "name": "withdraw",
358
+ "inputs": [
359
+ {
360
+ "name": "_value",
361
+ "type": "uint256"
362
+ }
363
+ ],
364
+ "outputs": []
365
+ },
366
+ {
367
+ "stateMutability": "view",
368
+ "type": "function",
369
+ "name": "allowance",
370
+ "inputs": [
371
+ {
372
+ "name": "_owner",
373
+ "type": "address"
374
+ },
375
+ {
376
+ "name": "_spender",
377
+ "type": "address"
378
+ }
379
+ ],
380
+ "outputs": [
381
+ {
382
+ "name": "",
383
+ "type": "uint256"
384
+ }
385
+ ],
386
+ "gas": "3238"
387
+ },
388
+ {
389
+ "stateMutability": "nonpayable",
390
+ "type": "function",
391
+ "name": "transfer",
392
+ "inputs": [
393
+ {
394
+ "name": "_to",
395
+ "type": "address"
396
+ },
397
+ {
398
+ "name": "_value",
399
+ "type": "uint256"
400
+ }
401
+ ],
402
+ "outputs": [
403
+ {
404
+ "name": "",
405
+ "type": "bool"
406
+ }
407
+ ],
408
+ "gas": "17172312"
409
+ },
410
+ {
411
+ "stateMutability": "nonpayable",
412
+ "type": "function",
413
+ "name": "transferFrom",
414
+ "inputs": [
415
+ {
416
+ "name": "_from",
417
+ "type": "address"
418
+ },
419
+ {
420
+ "name": "_to",
421
+ "type": "address"
422
+ },
423
+ {
424
+ "name": "_value",
425
+ "type": "uint256"
426
+ }
427
+ ],
428
+ "outputs": [
429
+ {
430
+ "name": "",
431
+ "type": "bool"
432
+ }
433
+ ],
434
+ "gas": "17210262"
435
+ },
436
+ {
437
+ "stateMutability": "nonpayable",
438
+ "type": "function",
439
+ "name": "approve",
440
+ "inputs": [
441
+ {
442
+ "name": "_spender",
443
+ "type": "address"
444
+ },
445
+ {
446
+ "name": "_value",
447
+ "type": "uint256"
448
+ }
449
+ ],
450
+ "outputs": [
451
+ {
452
+ "name": "",
453
+ "type": "bool"
454
+ }
455
+ ],
456
+ "gas": "38241"
457
+ },
458
+ {
459
+ "stateMutability": "nonpayable",
460
+ "type": "function",
461
+ "name": "increaseAllowance",
462
+ "inputs": [
463
+ {
464
+ "name": "_spender",
465
+ "type": "address"
466
+ },
467
+ {
468
+ "name": "_added_value",
469
+ "type": "uint256"
470
+ }
471
+ ],
472
+ "outputs": [
473
+ {
474
+ "name": "",
475
+ "type": "bool"
476
+ }
477
+ ],
478
+ "gas": "40785"
479
+ },
480
+ {
481
+ "stateMutability": "nonpayable",
482
+ "type": "function",
483
+ "name": "decreaseAllowance",
484
+ "inputs": [
485
+ {
486
+ "name": "_spender",
487
+ "type": "address"
488
+ },
489
+ {
490
+ "name": "_subtracted_value",
491
+ "type": "uint256"
492
+ }
493
+ ],
494
+ "outputs": [
495
+ {
496
+ "name": "",
497
+ "type": "bool"
498
+ }
499
+ ],
500
+ "gas": "40809"
501
+ },
502
+ {
503
+ "stateMutability": "nonpayable",
504
+ "type": "function",
505
+ "name": "set_rewards",
506
+ "inputs": [
507
+ {
508
+ "name": "_reward_contract",
509
+ "type": "address"
510
+ },
511
+ {
512
+ "name": "_sigs",
513
+ "type": "bytes32"
514
+ },
515
+ {
516
+ "name": "_reward_tokens",
517
+ "type": "address[8]"
518
+ }
519
+ ],
520
+ "outputs": [],
521
+ "gas": "2743589"
522
+ },
523
+ {
524
+ "stateMutability": "nonpayable",
525
+ "type": "function",
526
+ "name": "set_killed",
527
+ "inputs": [
528
+ {
529
+ "name": "_is_killed",
530
+ "type": "bool"
531
+ }
532
+ ],
533
+ "outputs": [],
534
+ "gas": "38175"
535
+ },
536
+ {
537
+ "stateMutability": "nonpayable",
538
+ "type": "function",
539
+ "name": "commit_transfer_ownership",
540
+ "inputs": [
541
+ {
542
+ "name": "addr",
543
+ "type": "address"
544
+ }
545
+ ],
546
+ "outputs": [],
547
+ "gas": "39555"
548
+ },
549
+ {
550
+ "stateMutability": "nonpayable",
551
+ "type": "function",
552
+ "name": "accept_transfer_ownership",
553
+ "inputs": [],
554
+ "outputs": [],
555
+ "gas": "39500"
556
+ },
557
+ {
558
+ "stateMutability": "view",
559
+ "type": "function",
560
+ "name": "minter",
561
+ "inputs": [],
562
+ "outputs": [
563
+ {
564
+ "name": "",
565
+ "type": "address"
566
+ }
567
+ ],
568
+ "gas": "3108"
569
+ },
570
+ {
571
+ "stateMutability": "view",
572
+ "type": "function",
573
+ "name": "crv_token",
574
+ "inputs": [],
575
+ "outputs": [
576
+ {
577
+ "name": "",
578
+ "type": "address"
579
+ }
580
+ ],
581
+ "gas": "3138"
582
+ },
583
+ {
584
+ "stateMutability": "view",
585
+ "type": "function",
586
+ "name": "lp_token",
587
+ "inputs": [],
588
+ "outputs": [
589
+ {
590
+ "name": "",
591
+ "type": "address"
592
+ }
593
+ ],
594
+ "gas": "3168"
595
+ },
596
+ {
597
+ "stateMutability": "view",
598
+ "type": "function",
599
+ "name": "controller",
600
+ "inputs": [],
601
+ "outputs": [
602
+ {
603
+ "name": "",
604
+ "type": "address"
605
+ }
606
+ ],
607
+ "gas": "3198"
608
+ },
609
+ {
610
+ "stateMutability": "view",
611
+ "type": "function",
612
+ "name": "voting_escrow",
613
+ "inputs": [],
614
+ "outputs": [
615
+ {
616
+ "name": "",
617
+ "type": "address"
618
+ }
619
+ ],
620
+ "gas": "3228"
621
+ },
622
+ {
623
+ "stateMutability": "view",
624
+ "type": "function",
625
+ "name": "future_epoch_time",
626
+ "inputs": [],
627
+ "outputs": [
628
+ {
629
+ "name": "",
630
+ "type": "uint256"
631
+ }
632
+ ],
633
+ "gas": "3258"
634
+ },
635
+ {
636
+ "stateMutability": "view",
637
+ "type": "function",
638
+ "name": "balanceOf",
639
+ "inputs": [
640
+ {
641
+ "name": "arg0",
642
+ "type": "address"
643
+ }
644
+ ],
645
+ "outputs": [
646
+ {
647
+ "name": "",
648
+ "type": "uint256"
649
+ }
650
+ ],
651
+ "gas": "3503"
652
+ },
653
+ {
654
+ "stateMutability": "view",
655
+ "type": "function",
656
+ "name": "totalSupply",
657
+ "inputs": [],
658
+ "outputs": [
659
+ {
660
+ "name": "",
661
+ "type": "uint256"
662
+ }
663
+ ],
664
+ "gas": "3318"
665
+ },
666
+ {
667
+ "stateMutability": "view",
668
+ "type": "function",
669
+ "name": "name",
670
+ "inputs": [],
671
+ "outputs": [
672
+ {
673
+ "name": "",
674
+ "type": "string"
675
+ }
676
+ ],
677
+ "gas": "13650"
678
+ },
679
+ {
680
+ "stateMutability": "view",
681
+ "type": "function",
682
+ "name": "symbol",
683
+ "inputs": [],
684
+ "outputs": [
685
+ {
686
+ "name": "",
687
+ "type": "string"
688
+ }
689
+ ],
690
+ "gas": "11403"
691
+ },
692
+ {
693
+ "stateMutability": "view",
694
+ "type": "function",
695
+ "name": "working_balances",
696
+ "inputs": [
697
+ {
698
+ "name": "arg0",
699
+ "type": "address"
700
+ }
701
+ ],
702
+ "outputs": [
703
+ {
704
+ "name": "",
705
+ "type": "uint256"
706
+ }
707
+ ],
708
+ "gas": "3623"
709
+ },
710
+ {
711
+ "stateMutability": "view",
712
+ "type": "function",
713
+ "name": "working_supply",
714
+ "inputs": [],
715
+ "outputs": [
716
+ {
717
+ "name": "",
718
+ "type": "uint256"
719
+ }
720
+ ],
721
+ "gas": "3438"
722
+ },
723
+ {
724
+ "stateMutability": "view",
725
+ "type": "function",
726
+ "name": "period",
727
+ "inputs": [],
728
+ "outputs": [
729
+ {
730
+ "name": "",
731
+ "type": "int128"
732
+ }
733
+ ],
734
+ "gas": "3468"
735
+ },
736
+ {
737
+ "stateMutability": "view",
738
+ "type": "function",
739
+ "name": "period_timestamp",
740
+ "inputs": [
741
+ {
742
+ "name": "arg0",
743
+ "type": "uint256"
744
+ }
745
+ ],
746
+ "outputs": [
747
+ {
748
+ "name": "",
749
+ "type": "uint256"
750
+ }
751
+ ],
752
+ "gas": "3607"
753
+ },
754
+ {
755
+ "stateMutability": "view",
756
+ "type": "function",
757
+ "name": "integrate_inv_supply",
758
+ "inputs": [
759
+ {
760
+ "name": "arg0",
761
+ "type": "uint256"
762
+ }
763
+ ],
764
+ "outputs": [
765
+ {
766
+ "name": "",
767
+ "type": "uint256"
768
+ }
769
+ ],
770
+ "gas": "3637"
771
+ },
772
+ {
773
+ "stateMutability": "view",
774
+ "type": "function",
775
+ "name": "integrate_inv_supply_of",
776
+ "inputs": [
777
+ {
778
+ "name": "arg0",
779
+ "type": "address"
780
+ }
781
+ ],
782
+ "outputs": [
783
+ {
784
+ "name": "",
785
+ "type": "uint256"
786
+ }
787
+ ],
788
+ "gas": "3773"
789
+ },
790
+ {
791
+ "stateMutability": "view",
792
+ "type": "function",
793
+ "name": "integrate_checkpoint_of",
794
+ "inputs": [
795
+ {
796
+ "name": "arg0",
797
+ "type": "address"
798
+ }
799
+ ],
800
+ "outputs": [
801
+ {
802
+ "name": "",
803
+ "type": "uint256"
804
+ }
805
+ ],
806
+ "gas": "3803"
807
+ },
808
+ {
809
+ "stateMutability": "view",
810
+ "type": "function",
811
+ "name": "integrate_fraction",
812
+ "inputs": [
813
+ {
814
+ "name": "arg0",
815
+ "type": "address"
816
+ }
817
+ ],
818
+ "outputs": [
819
+ {
820
+ "name": "",
821
+ "type": "uint256"
822
+ }
823
+ ],
824
+ "gas": "3833"
825
+ },
826
+ {
827
+ "stateMutability": "view",
828
+ "type": "function",
829
+ "name": "inflation_rate",
830
+ "inputs": [],
831
+ "outputs": [
832
+ {
833
+ "name": "",
834
+ "type": "uint256"
835
+ }
836
+ ],
837
+ "gas": "3648"
838
+ },
839
+ {
840
+ "stateMutability": "view",
841
+ "type": "function",
842
+ "name": "reward_tokens",
843
+ "inputs": [
844
+ {
845
+ "name": "arg0",
846
+ "type": "uint256"
847
+ }
848
+ ],
849
+ "outputs": [
850
+ {
851
+ "name": "",
852
+ "type": "address"
853
+ }
854
+ ],
855
+ "gas": "3787"
856
+ },
857
+ {
858
+ "stateMutability": "view",
859
+ "type": "function",
860
+ "name": "rewards_receiver",
861
+ "inputs": [
862
+ {
863
+ "name": "arg0",
864
+ "type": "address"
865
+ }
866
+ ],
867
+ "outputs": [
868
+ {
869
+ "name": "",
870
+ "type": "address"
871
+ }
872
+ ],
873
+ "gas": "3923"
874
+ },
875
+ {
876
+ "stateMutability": "view",
877
+ "type": "function",
878
+ "name": "reward_integral",
879
+ "inputs": [
880
+ {
881
+ "name": "arg0",
882
+ "type": "address"
883
+ }
884
+ ],
885
+ "outputs": [
886
+ {
887
+ "name": "",
888
+ "type": "uint256"
889
+ }
890
+ ],
891
+ "gas": "3953"
892
+ },
893
+ {
894
+ "stateMutability": "view",
895
+ "type": "function",
896
+ "name": "reward_integral_for",
897
+ "inputs": [
898
+ {
899
+ "name": "arg0",
900
+ "type": "address"
901
+ },
902
+ {
903
+ "name": "arg1",
904
+ "type": "address"
905
+ }
906
+ ],
907
+ "outputs": [
908
+ {
909
+ "name": "",
910
+ "type": "uint256"
911
+ }
912
+ ],
913
+ "gas": "4198"
914
+ },
915
+ {
916
+ "stateMutability": "view",
917
+ "type": "function",
918
+ "name": "admin",
919
+ "inputs": [],
920
+ "outputs": [
921
+ {
922
+ "name": "",
923
+ "type": "address"
924
+ }
925
+ ],
926
+ "gas": "3798"
927
+ },
928
+ {
929
+ "stateMutability": "view",
930
+ "type": "function",
931
+ "name": "future_admin",
932
+ "inputs": [],
933
+ "outputs": [
934
+ {
935
+ "name": "",
936
+ "type": "address"
937
+ }
938
+ ],
939
+ "gas": "3828"
940
+ },
941
+ {
942
+ "stateMutability": "view",
943
+ "type": "function",
944
+ "name": "is_killed",
945
+ "inputs": [],
946
+ "outputs": [
947
+ {
948
+ "name": "",
949
+ "type": "bool"
950
+ }
951
+ ],
952
+ "gas": "3858"
953
+ }
954
+ ]