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