@curvefi/api 1.12.0 → 1.15.1

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