defi-state-querier 0.4.26__py3-none-any.whl → 0.4.28__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. defi_services/__init__.py +1 -1
  2. defi_services/abis/vault/lido/__init__.py +0 -0
  3. defi_services/abis/vault/lido/event_transfer_shares.py +8 -0
  4. defi_services/abis/vault/lido/lido_1inch_steth_dai_pool.py +1308 -0
  5. defi_services/abis/vault/lido/lido_accounting_oracle.py +1342 -0
  6. defi_services/abis/vault/lido/lido_add_allowed_recipient.py +96 -0
  7. defi_services/abis/vault/lido/lido_allowed_recipents_factory.py +303 -0
  8. defi_services/abis/vault/lido/lido_allowed_recipients_builder_multi_token_tooling.py +427 -0
  9. defi_services/abis/vault/lido/lido_allowed_recipients_builder_tooling.py +414 -0
  10. defi_services/abis/vault/lido/lido_allowed_recipients_factory_multi_token.py +369 -0
  11. defi_services/abis/vault/lido/lido_allowed_recipients_registry.py +654 -0
  12. defi_services/abis/vault/lido/lido_allowed_token_registry.py +397 -0
  13. defi_services/abis/vault/lido/lido_anchor_vault.py +599 -0
  14. defi_services/abis/vault/lido/lido_aragon_acl.py +755 -0
  15. defi_services/abis/vault/lido/lido_aragon_agent.py +984 -0
  16. defi_services/abis/vault/lido/lido_aragon_finance.py +1013 -0
  17. defi_services/abis/vault/lido/lido_aragon_pm.py +490 -0
  18. defi_services/abis/vault/lido/lido_aragon_token_manager.py +759 -0
  19. defi_services/abis/vault/lido/lido_aragon_voting.py +887 -0
  20. defi_services/abis/vault/lido/lido_balancer_wseth_eth_pool.py +1441 -0
  21. defi_services/abis/vault/lido/lido_burner.py +698 -0
  22. defi_services/abis/vault/lido/lido_curated_staking_module.py +1571 -0
  23. defi_services/abis/vault/lido/lido_curve_liquidity_farming_manager.py +113 -0
  24. defi_services/abis/vault/lido/lido_curve_liquidity_farming_pool.py +899 -0
  25. defi_services/abis/vault/lido/lido_curve_liquidity_farming_reward.py +666 -0
  26. defi_services/abis/vault/lido/lido_curve_steth_eth_gauge.py +967 -0
  27. defi_services/abis/vault/lido/lido_curve_steth_eth_pool.py +986 -0
  28. defi_services/abis/vault/lido/lido_dao.py +623 -0
  29. defi_services/abis/vault/lido/lido_dao_insurance_fund.py +283 -0
  30. defi_services/abis/vault/lido/lido_dao_token.py +590 -0
  31. defi_services/abis/vault/lido/lido_deposit_security_module.py +687 -0
  32. defi_services/abis/vault/lido/lido_early_stakes_airdrop.py +120 -0
  33. defi_services/abis/vault/lido/lido_easy_track.py +1108 -0
  34. defi_services/abis/vault/lido/lido_evem_script_executor.py +170 -0
  35. defi_services/abis/vault/lido/lido_execution_layer_rewards_vaults.py +170 -0
  36. defi_services/abis/vault/lido/lido_l1_executor.py +135 -0
  37. defi_services/abis/vault/lido/lido_l1_proxy_admin.py +155 -0
  38. defi_services/abis/vault/lido/lido_legacy_oracle.py +539 -0
  39. defi_services/abis/vault/lido/lido_liquidity_farming_pool.py +899 -0
  40. defi_services/abis/vault/lido/lido_locator.py +357 -0
  41. defi_services/abis/vault/lido/lido_mev_boost_relay_allowed_list.py +331 -0
  42. defi_services/abis/vault/lido/lido_multisigs.py +1037 -0
  43. defi_services/abis/vault/lido/lido_oracle_daemon_config.py +474 -0
  44. defi_services/abis/vault/lido/lido_oracle_report_sanity_checker.py +1327 -0
  45. defi_services/abis/vault/lido/lido_remove_allowed_recipient.py +91 -0
  46. defi_services/abis/vault/lido/lido_staking_router.py +2311 -0
  47. defi_services/abis/vault/lido/lido_steth.py +1604 -0
  48. defi_services/abis/vault/lido/lido_stonks.py +744 -0
  49. defi_services/abis/vault/lido/lido_sushi_wsteth_dai_pool.py +662 -0
  50. defi_services/abis/vault/lido/lido_token_brigde.py +735 -0
  51. defi_services/abis/vault/lido/lido_token_gateway.py +808 -0
  52. defi_services/abis/vault/lido/lido_token_reward_program.py +363 -0
  53. defi_services/abis/vault/lido/lido_top_up_allowed_recipients.py +150 -0
  54. defi_services/abis/vault/lido/lido_validators_exit_bus_oracle.py +1230 -0
  55. defi_services/abis/vault/lido/lido_validators_exit_bus_oracle_hash_consensus.py +1085 -0
  56. defi_services/abis/vault/lido/lido_voting_repo.py +434 -0
  57. defi_services/abis/vault/lido/lido_withdrawal_vault.py +121 -0
  58. defi_services/abis/vault/lido/lido_withdrawl_queue.py +2031 -0
  59. defi_services/abis/vault/lido/lido_wsteth.py +481 -0
  60. defi_services/abis/vault/lido/lidor_accounting_oracle_hash_consensus.py +1085 -0
  61. defi_services/services/token_services.py +1 -1
  62. {defi_state_querier-0.4.26.dist-info → defi_state_querier-0.4.28.dist-info}/METADATA +4 -4
  63. {defi_state_querier-0.4.26.dist-info → defi_state_querier-0.4.28.dist-info}/RECORD +66 -7
  64. {defi_state_querier-0.4.26.dist-info → defi_state_querier-0.4.28.dist-info}/WHEEL +1 -1
  65. {defi_state_querier-0.4.26.dist-info → defi_state_querier-0.4.28.dist-info}/LICENSE +0 -0
  66. {defi_state_querier-0.4.26.dist-info → defi_state_querier-0.4.28.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,967 @@
1
+ import json
2
+
3
+ LIDO_CURVE_STETH_ETH_GAUGE = json.loads('''
4
+ [
5
+ {
6
+ "name": "Deposit",
7
+ "inputs": [
8
+ {
9
+ "name": "provider",
10
+ "type": "address",
11
+ "indexed": true
12
+ },
13
+ {
14
+ "name": "value",
15
+ "type": "uint256",
16
+ "indexed": false
17
+ }
18
+ ],
19
+ "anonymous": false,
20
+ "type": "event"
21
+ },
22
+ {
23
+ "name": "Withdraw",
24
+ "inputs": [
25
+ {
26
+ "name": "provider",
27
+ "type": "address",
28
+ "indexed": true
29
+ },
30
+ {
31
+ "name": "value",
32
+ "type": "uint256",
33
+ "indexed": false
34
+ }
35
+ ],
36
+ "anonymous": false,
37
+ "type": "event"
38
+ },
39
+ {
40
+ "name": "UpdateLiquidityLimit",
41
+ "inputs": [
42
+ {
43
+ "name": "user",
44
+ "type": "address",
45
+ "indexed": false
46
+ },
47
+ {
48
+ "name": "original_balance",
49
+ "type": "uint256",
50
+ "indexed": false
51
+ },
52
+ {
53
+ "name": "original_supply",
54
+ "type": "uint256",
55
+ "indexed": false
56
+ },
57
+ {
58
+ "name": "working_balance",
59
+ "type": "uint256",
60
+ "indexed": false
61
+ },
62
+ {
63
+ "name": "working_supply",
64
+ "type": "uint256",
65
+ "indexed": false
66
+ }
67
+ ],
68
+ "anonymous": false,
69
+ "type": "event"
70
+ },
71
+ {
72
+ "name": "CommitOwnership",
73
+ "inputs": [
74
+ {
75
+ "name": "admin",
76
+ "type": "address",
77
+ "indexed": false
78
+ }
79
+ ],
80
+ "anonymous": false,
81
+ "type": "event"
82
+ },
83
+ {
84
+ "name": "ApplyOwnership",
85
+ "inputs": [
86
+ {
87
+ "name": "admin",
88
+ "type": "address",
89
+ "indexed": false
90
+ }
91
+ ],
92
+ "anonymous": false,
93
+ "type": "event"
94
+ },
95
+ {
96
+ "name": "Transfer",
97
+ "inputs": [
98
+ {
99
+ "name": "_from",
100
+ "type": "address",
101
+ "indexed": true
102
+ },
103
+ {
104
+ "name": "_to",
105
+ "type": "address",
106
+ "indexed": true
107
+ },
108
+ {
109
+ "name": "_value",
110
+ "type": "uint256",
111
+ "indexed": false
112
+ }
113
+ ],
114
+ "anonymous": false,
115
+ "type": "event"
116
+ },
117
+ {
118
+ "name": "Approval",
119
+ "inputs": [
120
+ {
121
+ "name": "_owner",
122
+ "type": "address",
123
+ "indexed": true
124
+ },
125
+ {
126
+ "name": "_spender",
127
+ "type": "address",
128
+ "indexed": true
129
+ },
130
+ {
131
+ "name": "_value",
132
+ "type": "uint256",
133
+ "indexed": false
134
+ }
135
+ ],
136
+ "anonymous": false,
137
+ "type": "event"
138
+ },
139
+ {
140
+ "stateMutability": "nonpayable",
141
+ "type": "constructor",
142
+ "inputs": [],
143
+ "outputs": []
144
+ },
145
+ {
146
+ "stateMutability": "nonpayable",
147
+ "type": "function",
148
+ "name": "initialize",
149
+ "inputs": [
150
+ {
151
+ "name": "_lp_token",
152
+ "type": "address"
153
+ }
154
+ ],
155
+ "outputs": [],
156
+ "gas": 374587
157
+ },
158
+ {
159
+ "stateMutability": "view",
160
+ "type": "function",
161
+ "name": "decimals",
162
+ "inputs": [],
163
+ "outputs": [
164
+ {
165
+ "name": "",
166
+ "type": "uint256"
167
+ }
168
+ ],
169
+ "gas": 318
170
+ },
171
+ {
172
+ "stateMutability": "view",
173
+ "type": "function",
174
+ "name": "integrate_checkpoint",
175
+ "inputs": [],
176
+ "outputs": [
177
+ {
178
+ "name": "",
179
+ "type": "uint256"
180
+ }
181
+ ],
182
+ "gas": 4590
183
+ },
184
+ {
185
+ "stateMutability": "nonpayable",
186
+ "type": "function",
187
+ "name": "user_checkpoint",
188
+ "inputs": [
189
+ {
190
+ "name": "addr",
191
+ "type": "address"
192
+ }
193
+ ],
194
+ "outputs": [
195
+ {
196
+ "name": "",
197
+ "type": "bool"
198
+ }
199
+ ],
200
+ "gas": 3123886
201
+ },
202
+ {
203
+ "stateMutability": "nonpayable",
204
+ "type": "function",
205
+ "name": "claimable_tokens",
206
+ "inputs": [
207
+ {
208
+ "name": "addr",
209
+ "type": "address"
210
+ }
211
+ ],
212
+ "outputs": [
213
+ {
214
+ "name": "",
215
+ "type": "uint256"
216
+ }
217
+ ],
218
+ "gas": 3038676
219
+ },
220
+ {
221
+ "stateMutability": "view",
222
+ "type": "function",
223
+ "name": "claimed_reward",
224
+ "inputs": [
225
+ {
226
+ "name": "_addr",
227
+ "type": "address"
228
+ },
229
+ {
230
+ "name": "_token",
231
+ "type": "address"
232
+ }
233
+ ],
234
+ "outputs": [
235
+ {
236
+ "name": "",
237
+ "type": "uint256"
238
+ }
239
+ ],
240
+ "gas": 3036
241
+ },
242
+ {
243
+ "stateMutability": "view",
244
+ "type": "function",
245
+ "name": "claimable_reward",
246
+ "inputs": [
247
+ {
248
+ "name": "_user",
249
+ "type": "address"
250
+ },
251
+ {
252
+ "name": "_reward_token",
253
+ "type": "address"
254
+ }
255
+ ],
256
+ "outputs": [
257
+ {
258
+ "name": "",
259
+ "type": "uint256"
260
+ }
261
+ ],
262
+ "gas": 20255
263
+ },
264
+ {
265
+ "stateMutability": "nonpayable",
266
+ "type": "function",
267
+ "name": "set_rewards_receiver",
268
+ "inputs": [
269
+ {
270
+ "name": "_receiver",
271
+ "type": "address"
272
+ }
273
+ ],
274
+ "outputs": [],
275
+ "gas": 35673
276
+ },
277
+ {
278
+ "stateMutability": "nonpayable",
279
+ "type": "function",
280
+ "name": "claim_rewards",
281
+ "inputs": [],
282
+ "outputs": []
283
+ },
284
+ {
285
+ "stateMutability": "nonpayable",
286
+ "type": "function",
287
+ "name": "claim_rewards",
288
+ "inputs": [
289
+ {
290
+ "name": "_addr",
291
+ "type": "address"
292
+ }
293
+ ],
294
+ "outputs": []
295
+ },
296
+ {
297
+ "stateMutability": "nonpayable",
298
+ "type": "function",
299
+ "name": "claim_rewards",
300
+ "inputs": [
301
+ {
302
+ "name": "_addr",
303
+ "type": "address"
304
+ },
305
+ {
306
+ "name": "_receiver",
307
+ "type": "address"
308
+ }
309
+ ],
310
+ "outputs": []
311
+ },
312
+ {
313
+ "stateMutability": "nonpayable",
314
+ "type": "function",
315
+ "name": "kick",
316
+ "inputs": [
317
+ {
318
+ "name": "addr",
319
+ "type": "address"
320
+ }
321
+ ],
322
+ "outputs": [],
323
+ "gas": 3137977
324
+ },
325
+ {
326
+ "stateMutability": "nonpayable",
327
+ "type": "function",
328
+ "name": "deposit",
329
+ "inputs": [
330
+ {
331
+ "name": "_value",
332
+ "type": "uint256"
333
+ }
334
+ ],
335
+ "outputs": []
336
+ },
337
+ {
338
+ "stateMutability": "nonpayable",
339
+ "type": "function",
340
+ "name": "deposit",
341
+ "inputs": [
342
+ {
343
+ "name": "_value",
344
+ "type": "uint256"
345
+ },
346
+ {
347
+ "name": "_addr",
348
+ "type": "address"
349
+ }
350
+ ],
351
+ "outputs": []
352
+ },
353
+ {
354
+ "stateMutability": "nonpayable",
355
+ "type": "function",
356
+ "name": "deposit",
357
+ "inputs": [
358
+ {
359
+ "name": "_value",
360
+ "type": "uint256"
361
+ },
362
+ {
363
+ "name": "_addr",
364
+ "type": "address"
365
+ },
366
+ {
367
+ "name": "_claim_rewards",
368
+ "type": "bool"
369
+ }
370
+ ],
371
+ "outputs": []
372
+ },
373
+ {
374
+ "stateMutability": "nonpayable",
375
+ "type": "function",
376
+ "name": "withdraw",
377
+ "inputs": [
378
+ {
379
+ "name": "_value",
380
+ "type": "uint256"
381
+ }
382
+ ],
383
+ "outputs": []
384
+ },
385
+ {
386
+ "stateMutability": "nonpayable",
387
+ "type": "function",
388
+ "name": "withdraw",
389
+ "inputs": [
390
+ {
391
+ "name": "_value",
392
+ "type": "uint256"
393
+ },
394
+ {
395
+ "name": "_claim_rewards",
396
+ "type": "bool"
397
+ }
398
+ ],
399
+ "outputs": []
400
+ },
401
+ {
402
+ "stateMutability": "nonpayable",
403
+ "type": "function",
404
+ "name": "transfer",
405
+ "inputs": [
406
+ {
407
+ "name": "_to",
408
+ "type": "address"
409
+ },
410
+ {
411
+ "name": "_value",
412
+ "type": "uint256"
413
+ }
414
+ ],
415
+ "outputs": [
416
+ {
417
+ "name": "",
418
+ "type": "bool"
419
+ }
420
+ ],
421
+ "gas": 18062826
422
+ },
423
+ {
424
+ "stateMutability": "nonpayable",
425
+ "type": "function",
426
+ "name": "transferFrom",
427
+ "inputs": [
428
+ {
429
+ "name": "_from",
430
+ "type": "address"
431
+ },
432
+ {
433
+ "name": "_to",
434
+ "type": "address"
435
+ },
436
+ {
437
+ "name": "_value",
438
+ "type": "uint256"
439
+ }
440
+ ],
441
+ "outputs": [
442
+ {
443
+ "name": "",
444
+ "type": "bool"
445
+ }
446
+ ],
447
+ "gas": 18100776
448
+ },
449
+ {
450
+ "stateMutability": "nonpayable",
451
+ "type": "function",
452
+ "name": "approve",
453
+ "inputs": [
454
+ {
455
+ "name": "_spender",
456
+ "type": "address"
457
+ },
458
+ {
459
+ "name": "_value",
460
+ "type": "uint256"
461
+ }
462
+ ],
463
+ "outputs": [
464
+ {
465
+ "name": "",
466
+ "type": "bool"
467
+ }
468
+ ],
469
+ "gas": 38151
470
+ },
471
+ {
472
+ "stateMutability": "nonpayable",
473
+ "type": "function",
474
+ "name": "increaseAllowance",
475
+ "inputs": [
476
+ {
477
+ "name": "_spender",
478
+ "type": "address"
479
+ },
480
+ {
481
+ "name": "_added_value",
482
+ "type": "uint256"
483
+ }
484
+ ],
485
+ "outputs": [
486
+ {
487
+ "name": "",
488
+ "type": "bool"
489
+ }
490
+ ],
491
+ "gas": 40695
492
+ },
493
+ {
494
+ "stateMutability": "nonpayable",
495
+ "type": "function",
496
+ "name": "decreaseAllowance",
497
+ "inputs": [
498
+ {
499
+ "name": "_spender",
500
+ "type": "address"
501
+ },
502
+ {
503
+ "name": "_subtracted_value",
504
+ "type": "uint256"
505
+ }
506
+ ],
507
+ "outputs": [
508
+ {
509
+ "name": "",
510
+ "type": "bool"
511
+ }
512
+ ],
513
+ "gas": 40719
514
+ },
515
+ {
516
+ "stateMutability": "nonpayable",
517
+ "type": "function",
518
+ "name": "add_reward",
519
+ "inputs": [
520
+ {
521
+ "name": "_reward_token",
522
+ "type": "address"
523
+ },
524
+ {
525
+ "name": "_distributor",
526
+ "type": "address"
527
+ }
528
+ ],
529
+ "outputs": [],
530
+ "gas": 115414
531
+ },
532
+ {
533
+ "stateMutability": "nonpayable",
534
+ "type": "function",
535
+ "name": "set_reward_distributor",
536
+ "inputs": [
537
+ {
538
+ "name": "_reward_token",
539
+ "type": "address"
540
+ },
541
+ {
542
+ "name": "_distributor",
543
+ "type": "address"
544
+ }
545
+ ],
546
+ "outputs": [],
547
+ "gas": 43179
548
+ },
549
+ {
550
+ "stateMutability": "nonpayable",
551
+ "type": "function",
552
+ "name": "deposit_reward_token",
553
+ "inputs": [
554
+ {
555
+ "name": "_reward_token",
556
+ "type": "address"
557
+ },
558
+ {
559
+ "name": "_amount",
560
+ "type": "uint256"
561
+ }
562
+ ],
563
+ "outputs": [],
564
+ "gas": 1540067
565
+ },
566
+ {
567
+ "stateMutability": "nonpayable",
568
+ "type": "function",
569
+ "name": "set_killed",
570
+ "inputs": [
571
+ {
572
+ "name": "_is_killed",
573
+ "type": "bool"
574
+ }
575
+ ],
576
+ "outputs": [],
577
+ "gas": 40529
578
+ },
579
+ {
580
+ "stateMutability": "view",
581
+ "type": "function",
582
+ "name": "lp_token",
583
+ "inputs": [],
584
+ "outputs": [
585
+ {
586
+ "name": "",
587
+ "type": "address"
588
+ }
589
+ ],
590
+ "gas": 3018
591
+ },
592
+ {
593
+ "stateMutability": "view",
594
+ "type": "function",
595
+ "name": "future_epoch_time",
596
+ "inputs": [],
597
+ "outputs": [
598
+ {
599
+ "name": "",
600
+ "type": "uint256"
601
+ }
602
+ ],
603
+ "gas": 3048
604
+ },
605
+ {
606
+ "stateMutability": "view",
607
+ "type": "function",
608
+ "name": "balanceOf",
609
+ "inputs": [
610
+ {
611
+ "name": "arg0",
612
+ "type": "address"
613
+ }
614
+ ],
615
+ "outputs": [
616
+ {
617
+ "name": "",
618
+ "type": "uint256"
619
+ }
620
+ ],
621
+ "gas": 3293
622
+ },
623
+ {
624
+ "stateMutability": "view",
625
+ "type": "function",
626
+ "name": "totalSupply",
627
+ "inputs": [],
628
+ "outputs": [
629
+ {
630
+ "name": "",
631
+ "type": "uint256"
632
+ }
633
+ ],
634
+ "gas": 3108
635
+ },
636
+ {
637
+ "stateMutability": "view",
638
+ "type": "function",
639
+ "name": "allowance",
640
+ "inputs": [
641
+ {
642
+ "name": "arg0",
643
+ "type": "address"
644
+ },
645
+ {
646
+ "name": "arg1",
647
+ "type": "address"
648
+ }
649
+ ],
650
+ "outputs": [
651
+ {
652
+ "name": "",
653
+ "type": "uint256"
654
+ }
655
+ ],
656
+ "gas": 3568
657
+ },
658
+ {
659
+ "stateMutability": "view",
660
+ "type": "function",
661
+ "name": "name",
662
+ "inputs": [],
663
+ "outputs": [
664
+ {
665
+ "name": "",
666
+ "type": "string"
667
+ }
668
+ ],
669
+ "gas": 13398
670
+ },
671
+ {
672
+ "stateMutability": "view",
673
+ "type": "function",
674
+ "name": "symbol",
675
+ "inputs": [],
676
+ "outputs": [
677
+ {
678
+ "name": "",
679
+ "type": "string"
680
+ }
681
+ ],
682
+ "gas": 11151
683
+ },
684
+ {
685
+ "stateMutability": "view",
686
+ "type": "function",
687
+ "name": "working_balances",
688
+ "inputs": [
689
+ {
690
+ "name": "arg0",
691
+ "type": "address"
692
+ }
693
+ ],
694
+ "outputs": [
695
+ {
696
+ "name": "",
697
+ "type": "uint256"
698
+ }
699
+ ],
700
+ "gas": 3443
701
+ },
702
+ {
703
+ "stateMutability": "view",
704
+ "type": "function",
705
+ "name": "working_supply",
706
+ "inputs": [],
707
+ "outputs": [
708
+ {
709
+ "name": "",
710
+ "type": "uint256"
711
+ }
712
+ ],
713
+ "gas": 3258
714
+ },
715
+ {
716
+ "stateMutability": "view",
717
+ "type": "function",
718
+ "name": "period",
719
+ "inputs": [],
720
+ "outputs": [
721
+ {
722
+ "name": "",
723
+ "type": "int128"
724
+ }
725
+ ],
726
+ "gas": 3288
727
+ },
728
+ {
729
+ "stateMutability": "view",
730
+ "type": "function",
731
+ "name": "period_timestamp",
732
+ "inputs": [
733
+ {
734
+ "name": "arg0",
735
+ "type": "uint256"
736
+ }
737
+ ],
738
+ "outputs": [
739
+ {
740
+ "name": "",
741
+ "type": "uint256"
742
+ }
743
+ ],
744
+ "gas": 3363
745
+ },
746
+ {
747
+ "stateMutability": "view",
748
+ "type": "function",
749
+ "name": "integrate_inv_supply",
750
+ "inputs": [
751
+ {
752
+ "name": "arg0",
753
+ "type": "uint256"
754
+ }
755
+ ],
756
+ "outputs": [
757
+ {
758
+ "name": "",
759
+ "type": "uint256"
760
+ }
761
+ ],
762
+ "gas": 3393
763
+ },
764
+ {
765
+ "stateMutability": "view",
766
+ "type": "function",
767
+ "name": "integrate_inv_supply_of",
768
+ "inputs": [
769
+ {
770
+ "name": "arg0",
771
+ "type": "address"
772
+ }
773
+ ],
774
+ "outputs": [
775
+ {
776
+ "name": "",
777
+ "type": "uint256"
778
+ }
779
+ ],
780
+ "gas": 3593
781
+ },
782
+ {
783
+ "stateMutability": "view",
784
+ "type": "function",
785
+ "name": "integrate_checkpoint_of",
786
+ "inputs": [
787
+ {
788
+ "name": "arg0",
789
+ "type": "address"
790
+ }
791
+ ],
792
+ "outputs": [
793
+ {
794
+ "name": "",
795
+ "type": "uint256"
796
+ }
797
+ ],
798
+ "gas": 3623
799
+ },
800
+ {
801
+ "stateMutability": "view",
802
+ "type": "function",
803
+ "name": "integrate_fraction",
804
+ "inputs": [
805
+ {
806
+ "name": "arg0",
807
+ "type": "address"
808
+ }
809
+ ],
810
+ "outputs": [
811
+ {
812
+ "name": "",
813
+ "type": "uint256"
814
+ }
815
+ ],
816
+ "gas": 3653
817
+ },
818
+ {
819
+ "stateMutability": "view",
820
+ "type": "function",
821
+ "name": "inflation_rate",
822
+ "inputs": [],
823
+ "outputs": [
824
+ {
825
+ "name": "",
826
+ "type": "uint256"
827
+ }
828
+ ],
829
+ "gas": 3468
830
+ },
831
+ {
832
+ "stateMutability": "view",
833
+ "type": "function",
834
+ "name": "reward_count",
835
+ "inputs": [],
836
+ "outputs": [
837
+ {
838
+ "name": "",
839
+ "type": "uint256"
840
+ }
841
+ ],
842
+ "gas": 3498
843
+ },
844
+ {
845
+ "stateMutability": "view",
846
+ "type": "function",
847
+ "name": "reward_tokens",
848
+ "inputs": [
849
+ {
850
+ "name": "arg0",
851
+ "type": "uint256"
852
+ }
853
+ ],
854
+ "outputs": [
855
+ {
856
+ "name": "",
857
+ "type": "address"
858
+ }
859
+ ],
860
+ "gas": 3573
861
+ },
862
+ {
863
+ "stateMutability": "view",
864
+ "type": "function",
865
+ "name": "reward_data",
866
+ "inputs": [
867
+ {
868
+ "name": "arg0",
869
+ "type": "address"
870
+ }
871
+ ],
872
+ "outputs": [
873
+ {
874
+ "name": "token",
875
+ "type": "address"
876
+ },
877
+ {
878
+ "name": "distributor",
879
+ "type": "address"
880
+ },
881
+ {
882
+ "name": "period_finish",
883
+ "type": "uint256"
884
+ },
885
+ {
886
+ "name": "rate",
887
+ "type": "uint256"
888
+ },
889
+ {
890
+ "name": "last_update",
891
+ "type": "uint256"
892
+ },
893
+ {
894
+ "name": "integral",
895
+ "type": "uint256"
896
+ }
897
+ ],
898
+ "gas": 15003
899
+ },
900
+ {
901
+ "stateMutability": "view",
902
+ "type": "function",
903
+ "name": "rewards_receiver",
904
+ "inputs": [
905
+ {
906
+ "name": "arg0",
907
+ "type": "address"
908
+ }
909
+ ],
910
+ "outputs": [
911
+ {
912
+ "name": "",
913
+ "type": "address"
914
+ }
915
+ ],
916
+ "gas": 3803
917
+ },
918
+ {
919
+ "stateMutability": "view",
920
+ "type": "function",
921
+ "name": "reward_integral_for",
922
+ "inputs": [
923
+ {
924
+ "name": "arg0",
925
+ "type": "address"
926
+ },
927
+ {
928
+ "name": "arg1",
929
+ "type": "address"
930
+ }
931
+ ],
932
+ "outputs": [
933
+ {
934
+ "name": "",
935
+ "type": "uint256"
936
+ }
937
+ ],
938
+ "gas": 4048
939
+ },
940
+ {
941
+ "stateMutability": "view",
942
+ "type": "function",
943
+ "name": "is_killed",
944
+ "inputs": [],
945
+ "outputs": [
946
+ {
947
+ "name": "",
948
+ "type": "bool"
949
+ }
950
+ ],
951
+ "gas": 3648
952
+ },
953
+ {
954
+ "stateMutability": "view",
955
+ "type": "function",
956
+ "name": "factory",
957
+ "inputs": [],
958
+ "outputs": [
959
+ {
960
+ "name": "",
961
+ "type": "address"
962
+ }
963
+ ],
964
+ "gas": 3678
965
+ }
966
+ ]
967
+ ''')