@curvefi/api 1.24.5 → 1.25.2

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.
@@ -0,0 +1,1065 @@
1
+ [
2
+ {
3
+ "name": "Transfer",
4
+ "inputs": [
5
+ {
6
+ "type": "address",
7
+ "name": "sender",
8
+ "indexed": true
9
+ },
10
+ {
11
+ "type": "address",
12
+ "name": "receiver",
13
+ "indexed": true
14
+ },
15
+ {
16
+ "type": "uint256",
17
+ "name": "value",
18
+ "indexed": false
19
+ }
20
+ ],
21
+ "anonymous": false,
22
+ "type": "event"
23
+ },
24
+ {
25
+ "name": "Approval",
26
+ "inputs": [
27
+ {
28
+ "type": "address",
29
+ "name": "owner",
30
+ "indexed": true
31
+ },
32
+ {
33
+ "type": "address",
34
+ "name": "spender",
35
+ "indexed": true
36
+ },
37
+ {
38
+ "type": "uint256",
39
+ "name": "value",
40
+ "indexed": false
41
+ }
42
+ ],
43
+ "anonymous": false,
44
+ "type": "event"
45
+ },
46
+ {
47
+ "name": "TokenExchange",
48
+ "inputs": [
49
+ {
50
+ "type": "address",
51
+ "name": "buyer",
52
+ "indexed": true
53
+ },
54
+ {
55
+ "type": "int128",
56
+ "name": "sold_id",
57
+ "indexed": false
58
+ },
59
+ {
60
+ "type": "uint256",
61
+ "name": "tokens_sold",
62
+ "indexed": false
63
+ },
64
+ {
65
+ "type": "int128",
66
+ "name": "bought_id",
67
+ "indexed": false
68
+ },
69
+ {
70
+ "type": "uint256",
71
+ "name": "tokens_bought",
72
+ "indexed": false
73
+ }
74
+ ],
75
+ "anonymous": false,
76
+ "type": "event"
77
+ },
78
+ {
79
+ "name": "AddLiquidity",
80
+ "inputs": [
81
+ {
82
+ "type": "address",
83
+ "name": "provider",
84
+ "indexed": true
85
+ },
86
+ {
87
+ "type": "uint256[2]",
88
+ "name": "token_amounts",
89
+ "indexed": false
90
+ },
91
+ {
92
+ "type": "uint256[2]",
93
+ "name": "fees",
94
+ "indexed": false
95
+ },
96
+ {
97
+ "type": "uint256",
98
+ "name": "invariant",
99
+ "indexed": false
100
+ },
101
+ {
102
+ "type": "uint256",
103
+ "name": "token_supply",
104
+ "indexed": false
105
+ }
106
+ ],
107
+ "anonymous": false,
108
+ "type": "event"
109
+ },
110
+ {
111
+ "name": "RemoveLiquidity",
112
+ "inputs": [
113
+ {
114
+ "type": "address",
115
+ "name": "provider",
116
+ "indexed": true
117
+ },
118
+ {
119
+ "type": "uint256[2]",
120
+ "name": "token_amounts",
121
+ "indexed": false
122
+ },
123
+ {
124
+ "type": "uint256[2]",
125
+ "name": "fees",
126
+ "indexed": false
127
+ },
128
+ {
129
+ "type": "uint256",
130
+ "name": "token_supply",
131
+ "indexed": false
132
+ }
133
+ ],
134
+ "anonymous": false,
135
+ "type": "event"
136
+ },
137
+ {
138
+ "name": "RemoveLiquidityOne",
139
+ "inputs": [
140
+ {
141
+ "type": "address",
142
+ "name": "provider",
143
+ "indexed": true
144
+ },
145
+ {
146
+ "type": "uint256",
147
+ "name": "token_amount",
148
+ "indexed": false
149
+ },
150
+ {
151
+ "type": "uint256",
152
+ "name": "coin_amount",
153
+ "indexed": false
154
+ },
155
+ {
156
+ "type": "uint256",
157
+ "name": "token_supply",
158
+ "indexed": false
159
+ }
160
+ ],
161
+ "anonymous": false,
162
+ "type": "event"
163
+ },
164
+ {
165
+ "name": "RemoveLiquidityImbalance",
166
+ "inputs": [
167
+ {
168
+ "type": "address",
169
+ "name": "provider",
170
+ "indexed": true
171
+ },
172
+ {
173
+ "type": "uint256[2]",
174
+ "name": "token_amounts",
175
+ "indexed": false
176
+ },
177
+ {
178
+ "type": "uint256[2]",
179
+ "name": "fees",
180
+ "indexed": false
181
+ },
182
+ {
183
+ "type": "uint256",
184
+ "name": "invariant",
185
+ "indexed": false
186
+ },
187
+ {
188
+ "type": "uint256",
189
+ "name": "token_supply",
190
+ "indexed": false
191
+ }
192
+ ],
193
+ "anonymous": false,
194
+ "type": "event"
195
+ },
196
+ {
197
+ "name": "CommitNewAdmin",
198
+ "inputs": [
199
+ {
200
+ "type": "uint256",
201
+ "name": "deadline",
202
+ "indexed": true
203
+ },
204
+ {
205
+ "type": "address",
206
+ "name": "admin",
207
+ "indexed": true
208
+ }
209
+ ],
210
+ "anonymous": false,
211
+ "type": "event"
212
+ },
213
+ {
214
+ "name": "NewAdmin",
215
+ "inputs": [
216
+ {
217
+ "type": "address",
218
+ "name": "admin",
219
+ "indexed": true
220
+ }
221
+ ],
222
+ "anonymous": false,
223
+ "type": "event"
224
+ },
225
+ {
226
+ "name": "CommitNewFee",
227
+ "inputs": [
228
+ {
229
+ "type": "uint256",
230
+ "name": "deadline",
231
+ "indexed": true
232
+ },
233
+ {
234
+ "type": "uint256",
235
+ "name": "fee",
236
+ "indexed": false
237
+ },
238
+ {
239
+ "type": "uint256",
240
+ "name": "admin_fee",
241
+ "indexed": false
242
+ }
243
+ ],
244
+ "anonymous": false,
245
+ "type": "event"
246
+ },
247
+ {
248
+ "name": "NewFee",
249
+ "inputs": [
250
+ {
251
+ "type": "uint256",
252
+ "name": "fee",
253
+ "indexed": false
254
+ },
255
+ {
256
+ "type": "uint256",
257
+ "name": "admin_fee",
258
+ "indexed": false
259
+ }
260
+ ],
261
+ "anonymous": false,
262
+ "type": "event"
263
+ },
264
+ {
265
+ "name": "RampA",
266
+ "inputs": [
267
+ {
268
+ "type": "uint256",
269
+ "name": "old_A",
270
+ "indexed": false
271
+ },
272
+ {
273
+ "type": "uint256",
274
+ "name": "new_A",
275
+ "indexed": false
276
+ },
277
+ {
278
+ "type": "uint256",
279
+ "name": "initial_time",
280
+ "indexed": false
281
+ },
282
+ {
283
+ "type": "uint256",
284
+ "name": "future_time",
285
+ "indexed": false
286
+ }
287
+ ],
288
+ "anonymous": false,
289
+ "type": "event"
290
+ },
291
+ {
292
+ "name": "StopRampA",
293
+ "inputs": [
294
+ {
295
+ "type": "uint256",
296
+ "name": "A",
297
+ "indexed": false
298
+ },
299
+ {
300
+ "type": "uint256",
301
+ "name": "t",
302
+ "indexed": false
303
+ }
304
+ ],
305
+ "anonymous": false,
306
+ "type": "event"
307
+ },
308
+ {
309
+ "outputs": [],
310
+ "inputs": [
311
+ {
312
+ "type": "string",
313
+ "name": "_name"
314
+ },
315
+ {
316
+ "type": "string",
317
+ "name": "_symbol"
318
+ },
319
+ {
320
+ "type": "address",
321
+ "name": "_owner"
322
+ },
323
+ {
324
+ "type": "address[2]",
325
+ "name": "_coins"
326
+ },
327
+ {
328
+ "type": "uint256",
329
+ "name": "_A"
330
+ },
331
+ {
332
+ "type": "uint256",
333
+ "name": "_fee"
334
+ },
335
+ {
336
+ "type": "uint256",
337
+ "name": "_admin_fee"
338
+ }
339
+ ],
340
+ "stateMutability": "nonpayable",
341
+ "type": "constructor"
342
+ },
343
+ {
344
+ "name": "decimals",
345
+ "outputs": [
346
+ {
347
+ "type": "uint256",
348
+ "name": ""
349
+ }
350
+ ],
351
+ "inputs": [],
352
+ "stateMutability": "view",
353
+ "type": "function",
354
+ "gas": "261"
355
+ },
356
+ {
357
+ "name": "transfer",
358
+ "outputs": [
359
+ {
360
+ "type": "bool",
361
+ "name": ""
362
+ }
363
+ ],
364
+ "inputs": [
365
+ {
366
+ "type": "address",
367
+ "name": "_to"
368
+ },
369
+ {
370
+ "type": "uint256",
371
+ "name": "_value"
372
+ }
373
+ ],
374
+ "stateMutability": "nonpayable",
375
+ "type": "function",
376
+ "gas": "74713"
377
+ },
378
+ {
379
+ "name": "transferFrom",
380
+ "outputs": [
381
+ {
382
+ "type": "bool",
383
+ "name": ""
384
+ }
385
+ ],
386
+ "inputs": [
387
+ {
388
+ "type": "address",
389
+ "name": "_from"
390
+ },
391
+ {
392
+ "type": "address",
393
+ "name": "_to"
394
+ },
395
+ {
396
+ "type": "uint256",
397
+ "name": "_value"
398
+ }
399
+ ],
400
+ "stateMutability": "nonpayable",
401
+ "type": "function",
402
+ "gas": "111355"
403
+ },
404
+ {
405
+ "name": "approve",
406
+ "outputs": [
407
+ {
408
+ "type": "bool",
409
+ "name": ""
410
+ }
411
+ ],
412
+ "inputs": [
413
+ {
414
+ "type": "address",
415
+ "name": "_spender"
416
+ },
417
+ {
418
+ "type": "uint256",
419
+ "name": "_value"
420
+ }
421
+ ],
422
+ "stateMutability": "nonpayable",
423
+ "type": "function",
424
+ "gas": "37794"
425
+ },
426
+ {
427
+ "name": "A",
428
+ "outputs": [
429
+ {
430
+ "type": "uint256",
431
+ "name": ""
432
+ }
433
+ ],
434
+ "inputs": [],
435
+ "stateMutability": "view",
436
+ "type": "function",
437
+ "gas": "5439"
438
+ },
439
+ {
440
+ "name": "A_precise",
441
+ "outputs": [
442
+ {
443
+ "type": "uint256",
444
+ "name": ""
445
+ }
446
+ ],
447
+ "inputs": [],
448
+ "stateMutability": "view",
449
+ "type": "function",
450
+ "gas": "5401"
451
+ },
452
+ {
453
+ "name": "get_virtual_price",
454
+ "outputs": [
455
+ {
456
+ "type": "uint256",
457
+ "name": ""
458
+ }
459
+ ],
460
+ "inputs": [],
461
+ "stateMutability": "view",
462
+ "type": "function",
463
+ "gas": "1009729"
464
+ },
465
+ {
466
+ "name": "calc_token_amount",
467
+ "outputs": [
468
+ {
469
+ "type": "uint256",
470
+ "name": ""
471
+ }
472
+ ],
473
+ "inputs": [
474
+ {
475
+ "type": "uint256[2]",
476
+ "name": "_amounts"
477
+ },
478
+ {
479
+ "type": "bool",
480
+ "name": "_is_deposit"
481
+ }
482
+ ],
483
+ "stateMutability": "view",
484
+ "type": "function",
485
+ "gas": "4016564"
486
+ },
487
+ {
488
+ "name": "add_liquidity",
489
+ "outputs": [
490
+ {
491
+ "type": "uint256",
492
+ "name": ""
493
+ }
494
+ ],
495
+ "inputs": [
496
+ {
497
+ "type": "uint256[2]",
498
+ "name": "_amounts"
499
+ },
500
+ {
501
+ "type": "uint256",
502
+ "name": "_min_mint_amount"
503
+ }
504
+ ],
505
+ "stateMutability": "nonpayable",
506
+ "type": "function",
507
+ "gas": "6262149"
508
+ },
509
+ {
510
+ "name": "get_dy",
511
+ "outputs": [
512
+ {
513
+ "type": "uint256",
514
+ "name": ""
515
+ }
516
+ ],
517
+ "inputs": [
518
+ {
519
+ "type": "int128",
520
+ "name": "i"
521
+ },
522
+ {
523
+ "type": "int128",
524
+ "name": "j"
525
+ },
526
+ {
527
+ "type": "uint256",
528
+ "name": "_dx"
529
+ }
530
+ ],
531
+ "stateMutability": "view",
532
+ "type": "function",
533
+ "gas": "2447901"
534
+ },
535
+ {
536
+ "name": "exchange",
537
+ "outputs": [
538
+ {
539
+ "type": "uint256",
540
+ "name": ""
541
+ }
542
+ ],
543
+ "inputs": [
544
+ {
545
+ "type": "int128",
546
+ "name": "i"
547
+ },
548
+ {
549
+ "type": "int128",
550
+ "name": "j"
551
+ },
552
+ {
553
+ "type": "uint256",
554
+ "name": "_dx"
555
+ },
556
+ {
557
+ "type": "uint256",
558
+ "name": "_min_dy"
559
+ }
560
+ ],
561
+ "stateMutability": "nonpayable",
562
+ "type": "function",
563
+ "gas": "2610850"
564
+ },
565
+ {
566
+ "name": "remove_liquidity",
567
+ "outputs": [
568
+ {
569
+ "type": "uint256[2]",
570
+ "name": ""
571
+ }
572
+ ],
573
+ "inputs": [
574
+ {
575
+ "type": "uint256",
576
+ "name": "_amount"
577
+ },
578
+ {
579
+ "type": "uint256[2]",
580
+ "name": "_min_amounts"
581
+ }
582
+ ],
583
+ "stateMutability": "nonpayable",
584
+ "type": "function",
585
+ "gas": "238744"
586
+ },
587
+ {
588
+ "name": "remove_liquidity_imbalance",
589
+ "outputs": [
590
+ {
591
+ "type": "uint256",
592
+ "name": ""
593
+ }
594
+ ],
595
+ "inputs": [
596
+ {
597
+ "type": "uint256[2]",
598
+ "name": "_amounts"
599
+ },
600
+ {
601
+ "type": "uint256",
602
+ "name": "_max_burn_amount"
603
+ }
604
+ ],
605
+ "stateMutability": "nonpayable",
606
+ "type": "function",
607
+ "gas": "6261825"
608
+ },
609
+ {
610
+ "name": "calc_withdraw_one_coin",
611
+ "outputs": [
612
+ {
613
+ "type": "uint256",
614
+ "name": ""
615
+ }
616
+ ],
617
+ "inputs": [
618
+ {
619
+ "type": "uint256",
620
+ "name": "_token_amount"
621
+ },
622
+ {
623
+ "type": "int128",
624
+ "name": "i"
625
+ }
626
+ ],
627
+ "stateMutability": "view",
628
+ "type": "function",
629
+ "gas": "1609"
630
+ },
631
+ {
632
+ "name": "remove_liquidity_one_coin",
633
+ "outputs": [
634
+ {
635
+ "type": "uint256",
636
+ "name": ""
637
+ }
638
+ ],
639
+ "inputs": [
640
+ {
641
+ "type": "uint256",
642
+ "name": "_token_amount"
643
+ },
644
+ {
645
+ "type": "int128",
646
+ "name": "i"
647
+ },
648
+ {
649
+ "type": "uint256",
650
+ "name": "_min_amount"
651
+ }
652
+ ],
653
+ "stateMutability": "nonpayable",
654
+ "type": "function",
655
+ "gas": "3947982"
656
+ },
657
+ {
658
+ "name": "ramp_A",
659
+ "outputs": [],
660
+ "inputs": [
661
+ {
662
+ "type": "uint256",
663
+ "name": "_future_A"
664
+ },
665
+ {
666
+ "type": "uint256",
667
+ "name": "_future_time"
668
+ }
669
+ ],
670
+ "stateMutability": "nonpayable",
671
+ "type": "function",
672
+ "gas": "152014"
673
+ },
674
+ {
675
+ "name": "stop_ramp_A",
676
+ "outputs": [],
677
+ "inputs": [],
678
+ "stateMutability": "nonpayable",
679
+ "type": "function",
680
+ "gas": "148775"
681
+ },
682
+ {
683
+ "name": "commit_new_fee",
684
+ "outputs": [],
685
+ "inputs": [
686
+ {
687
+ "type": "uint256",
688
+ "name": "_new_fee"
689
+ },
690
+ {
691
+ "type": "uint256",
692
+ "name": "_new_admin_fee"
693
+ }
694
+ ],
695
+ "stateMutability": "nonpayable",
696
+ "type": "function",
697
+ "gas": "110491"
698
+ },
699
+ {
700
+ "name": "apply_new_fee",
701
+ "outputs": [],
702
+ "inputs": [],
703
+ "stateMutability": "nonpayable",
704
+ "type": "function",
705
+ "gas": "97272"
706
+ },
707
+ {
708
+ "name": "revert_new_parameters",
709
+ "outputs": [],
710
+ "inputs": [],
711
+ "stateMutability": "nonpayable",
712
+ "type": "function",
713
+ "gas": "21925"
714
+ },
715
+ {
716
+ "name": "commit_transfer_ownership",
717
+ "outputs": [],
718
+ "inputs": [
719
+ {
720
+ "type": "address",
721
+ "name": "_owner"
722
+ }
723
+ ],
724
+ "stateMutability": "nonpayable",
725
+ "type": "function",
726
+ "gas": "74663"
727
+ },
728
+ {
729
+ "name": "apply_transfer_ownership",
730
+ "outputs": [],
731
+ "inputs": [],
732
+ "stateMutability": "nonpayable",
733
+ "type": "function",
734
+ "gas": "60740"
735
+ },
736
+ {
737
+ "name": "revert_transfer_ownership",
738
+ "outputs": [],
739
+ "inputs": [],
740
+ "stateMutability": "nonpayable",
741
+ "type": "function",
742
+ "gas": "22015"
743
+ },
744
+ {
745
+ "name": "admin_balances",
746
+ "outputs": [
747
+ {
748
+ "type": "uint256",
749
+ "name": ""
750
+ }
751
+ ],
752
+ "inputs": [
753
+ {
754
+ "type": "uint256",
755
+ "name": "i"
756
+ }
757
+ ],
758
+ "stateMutability": "view",
759
+ "type": "function",
760
+ "gas": "3511"
761
+ },
762
+ {
763
+ "name": "withdraw_admin_fees",
764
+ "outputs": [],
765
+ "inputs": [],
766
+ "stateMutability": "nonpayable",
767
+ "type": "function",
768
+ "gas": "15067"
769
+ },
770
+ {
771
+ "name": "donate_admin_fees",
772
+ "outputs": [],
773
+ "inputs": [],
774
+ "stateMutability": "nonpayable",
775
+ "type": "function",
776
+ "gas": "74995"
777
+ },
778
+ {
779
+ "name": "kill_me",
780
+ "outputs": [],
781
+ "inputs": [],
782
+ "stateMutability": "nonpayable",
783
+ "type": "function",
784
+ "gas": "38028"
785
+ },
786
+ {
787
+ "name": "unkill_me",
788
+ "outputs": [],
789
+ "inputs": [],
790
+ "stateMutability": "nonpayable",
791
+ "type": "function",
792
+ "gas": "22165"
793
+ },
794
+ {
795
+ "name": "coins",
796
+ "outputs": [
797
+ {
798
+ "type": "address",
799
+ "name": ""
800
+ }
801
+ ],
802
+ "inputs": [
803
+ {
804
+ "type": "uint256",
805
+ "name": "arg0"
806
+ }
807
+ ],
808
+ "stateMutability": "view",
809
+ "type": "function",
810
+ "gas": "2250"
811
+ },
812
+ {
813
+ "name": "balances",
814
+ "outputs": [
815
+ {
816
+ "type": "uint256",
817
+ "name": ""
818
+ }
819
+ ],
820
+ "inputs": [
821
+ {
822
+ "type": "uint256",
823
+ "name": "arg0"
824
+ }
825
+ ],
826
+ "stateMutability": "view",
827
+ "type": "function",
828
+ "gas": "2280"
829
+ },
830
+ {
831
+ "name": "fee",
832
+ "outputs": [
833
+ {
834
+ "type": "uint256",
835
+ "name": ""
836
+ }
837
+ ],
838
+ "inputs": [],
839
+ "stateMutability": "view",
840
+ "type": "function",
841
+ "gas": "2201"
842
+ },
843
+ {
844
+ "name": "admin_fee",
845
+ "outputs": [
846
+ {
847
+ "type": "uint256",
848
+ "name": ""
849
+ }
850
+ ],
851
+ "inputs": [],
852
+ "stateMutability": "view",
853
+ "type": "function",
854
+ "gas": "2231"
855
+ },
856
+ {
857
+ "name": "owner",
858
+ "outputs": [
859
+ {
860
+ "type": "address",
861
+ "name": ""
862
+ }
863
+ ],
864
+ "inputs": [],
865
+ "stateMutability": "view",
866
+ "type": "function",
867
+ "gas": "2261"
868
+ },
869
+ {
870
+ "name": "initial_A",
871
+ "outputs": [
872
+ {
873
+ "type": "uint256",
874
+ "name": ""
875
+ }
876
+ ],
877
+ "inputs": [],
878
+ "stateMutability": "view",
879
+ "type": "function",
880
+ "gas": "2291"
881
+ },
882
+ {
883
+ "name": "future_A",
884
+ "outputs": [
885
+ {
886
+ "type": "uint256",
887
+ "name": ""
888
+ }
889
+ ],
890
+ "inputs": [],
891
+ "stateMutability": "view",
892
+ "type": "function",
893
+ "gas": "2321"
894
+ },
895
+ {
896
+ "name": "initial_A_time",
897
+ "outputs": [
898
+ {
899
+ "type": "uint256",
900
+ "name": ""
901
+ }
902
+ ],
903
+ "inputs": [],
904
+ "stateMutability": "view",
905
+ "type": "function",
906
+ "gas": "2351"
907
+ },
908
+ {
909
+ "name": "future_A_time",
910
+ "outputs": [
911
+ {
912
+ "type": "uint256",
913
+ "name": ""
914
+ }
915
+ ],
916
+ "inputs": [],
917
+ "stateMutability": "view",
918
+ "type": "function",
919
+ "gas": "2381"
920
+ },
921
+ {
922
+ "name": "admin_actions_deadline",
923
+ "outputs": [
924
+ {
925
+ "type": "uint256",
926
+ "name": ""
927
+ }
928
+ ],
929
+ "inputs": [],
930
+ "stateMutability": "view",
931
+ "type": "function",
932
+ "gas": "2411"
933
+ },
934
+ {
935
+ "name": "transfer_ownership_deadline",
936
+ "outputs": [
937
+ {
938
+ "type": "uint256",
939
+ "name": ""
940
+ }
941
+ ],
942
+ "inputs": [],
943
+ "stateMutability": "view",
944
+ "type": "function",
945
+ "gas": "2441"
946
+ },
947
+ {
948
+ "name": "future_fee",
949
+ "outputs": [
950
+ {
951
+ "type": "uint256",
952
+ "name": ""
953
+ }
954
+ ],
955
+ "inputs": [],
956
+ "stateMutability": "view",
957
+ "type": "function",
958
+ "gas": "2471"
959
+ },
960
+ {
961
+ "name": "future_admin_fee",
962
+ "outputs": [
963
+ {
964
+ "type": "uint256",
965
+ "name": ""
966
+ }
967
+ ],
968
+ "inputs": [],
969
+ "stateMutability": "view",
970
+ "type": "function",
971
+ "gas": "2501"
972
+ },
973
+ {
974
+ "name": "future_owner",
975
+ "outputs": [
976
+ {
977
+ "type": "address",
978
+ "name": ""
979
+ }
980
+ ],
981
+ "inputs": [],
982
+ "stateMutability": "view",
983
+ "type": "function",
984
+ "gas": "2531"
985
+ },
986
+ {
987
+ "name": "name",
988
+ "outputs": [
989
+ {
990
+ "type": "string",
991
+ "name": ""
992
+ }
993
+ ],
994
+ "inputs": [],
995
+ "stateMutability": "view",
996
+ "type": "function",
997
+ "gas": "8963"
998
+ },
999
+ {
1000
+ "name": "symbol",
1001
+ "outputs": [
1002
+ {
1003
+ "type": "string",
1004
+ "name": ""
1005
+ }
1006
+ ],
1007
+ "inputs": [],
1008
+ "stateMutability": "view",
1009
+ "type": "function",
1010
+ "gas": "8016"
1011
+ },
1012
+ {
1013
+ "name": "balanceOf",
1014
+ "outputs": [
1015
+ {
1016
+ "type": "uint256",
1017
+ "name": ""
1018
+ }
1019
+ ],
1020
+ "inputs": [
1021
+ {
1022
+ "type": "address",
1023
+ "name": "arg0"
1024
+ }
1025
+ ],
1026
+ "stateMutability": "view",
1027
+ "type": "function",
1028
+ "gas": "2836"
1029
+ },
1030
+ {
1031
+ "name": "allowance",
1032
+ "outputs": [
1033
+ {
1034
+ "type": "uint256",
1035
+ "name": ""
1036
+ }
1037
+ ],
1038
+ "inputs": [
1039
+ {
1040
+ "type": "address",
1041
+ "name": "arg0"
1042
+ },
1043
+ {
1044
+ "type": "address",
1045
+ "name": "arg1"
1046
+ }
1047
+ ],
1048
+ "stateMutability": "view",
1049
+ "type": "function",
1050
+ "gas": "3081"
1051
+ },
1052
+ {
1053
+ "name": "totalSupply",
1054
+ "outputs": [
1055
+ {
1056
+ "type": "uint256",
1057
+ "name": ""
1058
+ }
1059
+ ],
1060
+ "inputs": [],
1061
+ "stateMutability": "view",
1062
+ "type": "function",
1063
+ "gas": "2681"
1064
+ }
1065
+ ]