@curvefi/api 2.3.1 → 2.3.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,1187 @@
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": "TokenExchangeUnderlying",
80
+ "inputs": [
81
+ {
82
+ "name": "buyer",
83
+ "type": "address",
84
+ "indexed": true
85
+ },
86
+ {
87
+ "name": "sold_id",
88
+ "type": "int128",
89
+ "indexed": false
90
+ },
91
+ {
92
+ "name": "tokens_sold",
93
+ "type": "uint256",
94
+ "indexed": false
95
+ },
96
+ {
97
+ "name": "bought_id",
98
+ "type": "int128",
99
+ "indexed": false
100
+ },
101
+ {
102
+ "name": "tokens_bought",
103
+ "type": "uint256",
104
+ "indexed": false
105
+ }
106
+ ],
107
+ "anonymous": false,
108
+ "type": "event"
109
+ },
110
+ {
111
+ "name": "AddLiquidity",
112
+ "inputs": [
113
+ {
114
+ "name": "provider",
115
+ "type": "address",
116
+ "indexed": true
117
+ },
118
+ {
119
+ "name": "token_amounts",
120
+ "type": "uint256[2]",
121
+ "indexed": false
122
+ },
123
+ {
124
+ "name": "fees",
125
+ "type": "uint256[2]",
126
+ "indexed": false
127
+ },
128
+ {
129
+ "name": "invariant",
130
+ "type": "uint256",
131
+ "indexed": false
132
+ },
133
+ {
134
+ "name": "token_supply",
135
+ "type": "uint256",
136
+ "indexed": false
137
+ }
138
+ ],
139
+ "anonymous": false,
140
+ "type": "event"
141
+ },
142
+ {
143
+ "name": "RemoveLiquidity",
144
+ "inputs": [
145
+ {
146
+ "name": "provider",
147
+ "type": "address",
148
+ "indexed": true
149
+ },
150
+ {
151
+ "name": "token_amounts",
152
+ "type": "uint256[2]",
153
+ "indexed": false
154
+ },
155
+ {
156
+ "name": "fees",
157
+ "type": "uint256[2]",
158
+ "indexed": false
159
+ },
160
+ {
161
+ "name": "token_supply",
162
+ "type": "uint256",
163
+ "indexed": false
164
+ }
165
+ ],
166
+ "anonymous": false,
167
+ "type": "event"
168
+ },
169
+ {
170
+ "name": "RemoveLiquidityOne",
171
+ "inputs": [
172
+ {
173
+ "name": "provider",
174
+ "type": "address",
175
+ "indexed": true
176
+ },
177
+ {
178
+ "name": "token_amount",
179
+ "type": "uint256",
180
+ "indexed": false
181
+ },
182
+ {
183
+ "name": "coin_amount",
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": "RemoveLiquidityImbalance",
198
+ "inputs": [
199
+ {
200
+ "name": "provider",
201
+ "type": "address",
202
+ "indexed": true
203
+ },
204
+ {
205
+ "name": "token_amounts",
206
+ "type": "uint256[2]",
207
+ "indexed": false
208
+ },
209
+ {
210
+ "name": "fees",
211
+ "type": "uint256[2]",
212
+ "indexed": false
213
+ },
214
+ {
215
+ "name": "invariant",
216
+ "type": "uint256",
217
+ "indexed": false
218
+ },
219
+ {
220
+ "name": "token_supply",
221
+ "type": "uint256",
222
+ "indexed": false
223
+ }
224
+ ],
225
+ "anonymous": false,
226
+ "type": "event"
227
+ },
228
+ {
229
+ "name": "RampA",
230
+ "inputs": [
231
+ {
232
+ "name": "old_A",
233
+ "type": "uint256",
234
+ "indexed": false
235
+ },
236
+ {
237
+ "name": "new_A",
238
+ "type": "uint256",
239
+ "indexed": false
240
+ },
241
+ {
242
+ "name": "initial_time",
243
+ "type": "uint256",
244
+ "indexed": false
245
+ },
246
+ {
247
+ "name": "future_time",
248
+ "type": "uint256",
249
+ "indexed": false
250
+ }
251
+ ],
252
+ "anonymous": false,
253
+ "type": "event"
254
+ },
255
+ {
256
+ "name": "StopRampA",
257
+ "inputs": [
258
+ {
259
+ "name": "A",
260
+ "type": "uint256",
261
+ "indexed": false
262
+ },
263
+ {
264
+ "name": "t",
265
+ "type": "uint256",
266
+ "indexed": false
267
+ }
268
+ ],
269
+ "anonymous": false,
270
+ "type": "event"
271
+ },
272
+ {
273
+ "stateMutability": "nonpayable",
274
+ "type": "constructor",
275
+ "inputs": [],
276
+ "outputs": []
277
+ },
278
+ {
279
+ "stateMutability": "nonpayable",
280
+ "type": "function",
281
+ "name": "initialize",
282
+ "inputs": [
283
+ {
284
+ "name": "_name",
285
+ "type": "string"
286
+ },
287
+ {
288
+ "name": "_symbol",
289
+ "type": "string"
290
+ },
291
+ {
292
+ "name": "_coin",
293
+ "type": "address"
294
+ },
295
+ {
296
+ "name": "_rate_multiplier",
297
+ "type": "uint256"
298
+ },
299
+ {
300
+ "name": "_A",
301
+ "type": "uint256"
302
+ },
303
+ {
304
+ "name": "_fee",
305
+ "type": "uint256"
306
+ }
307
+ ],
308
+ "outputs": [],
309
+ "gas": "491073"
310
+ },
311
+ {
312
+ "stateMutability": "view",
313
+ "type": "function",
314
+ "name": "decimals",
315
+ "inputs": [],
316
+ "outputs": [
317
+ {
318
+ "name": "",
319
+ "type": "uint256"
320
+ }
321
+ ],
322
+ "gas": "390"
323
+ },
324
+ {
325
+ "stateMutability": "nonpayable",
326
+ "type": "function",
327
+ "name": "transfer",
328
+ "inputs": [
329
+ {
330
+ "name": "_to",
331
+ "type": "address"
332
+ },
333
+ {
334
+ "name": "_value",
335
+ "type": "uint256"
336
+ }
337
+ ],
338
+ "outputs": [
339
+ {
340
+ "name": "",
341
+ "type": "bool"
342
+ }
343
+ ],
344
+ "gas": "79005"
345
+ },
346
+ {
347
+ "stateMutability": "nonpayable",
348
+ "type": "function",
349
+ "name": "transferFrom",
350
+ "inputs": [
351
+ {
352
+ "name": "_from",
353
+ "type": "address"
354
+ },
355
+ {
356
+ "name": "_to",
357
+ "type": "address"
358
+ },
359
+ {
360
+ "name": "_value",
361
+ "type": "uint256"
362
+ }
363
+ ],
364
+ "outputs": [
365
+ {
366
+ "name": "",
367
+ "type": "bool"
368
+ }
369
+ ],
370
+ "gas": "116985"
371
+ },
372
+ {
373
+ "stateMutability": "nonpayable",
374
+ "type": "function",
375
+ "name": "approve",
376
+ "inputs": [
377
+ {
378
+ "name": "_spender",
379
+ "type": "address"
380
+ },
381
+ {
382
+ "name": "_value",
383
+ "type": "uint256"
384
+ }
385
+ ],
386
+ "outputs": [
387
+ {
388
+ "name": "",
389
+ "type": "bool"
390
+ }
391
+ ],
392
+ "gas": "39211"
393
+ },
394
+ {
395
+ "stateMutability": "nonpayable",
396
+ "type": "function",
397
+ "name": "permit",
398
+ "inputs": [
399
+ {
400
+ "name": "_owner",
401
+ "type": "address"
402
+ },
403
+ {
404
+ "name": "_spender",
405
+ "type": "address"
406
+ },
407
+ {
408
+ "name": "_value",
409
+ "type": "uint256"
410
+ },
411
+ {
412
+ "name": "_deadline",
413
+ "type": "uint256"
414
+ },
415
+ {
416
+ "name": "_v",
417
+ "type": "uint8"
418
+ },
419
+ {
420
+ "name": "_r",
421
+ "type": "bytes32"
422
+ },
423
+ {
424
+ "name": "_s",
425
+ "type": "bytes32"
426
+ }
427
+ ],
428
+ "outputs": [
429
+ {
430
+ "name": "",
431
+ "type": "bool"
432
+ }
433
+ ],
434
+ "gas": "102281"
435
+ },
436
+ {
437
+ "stateMutability": "view",
438
+ "type": "function",
439
+ "name": "admin_fee",
440
+ "inputs": [],
441
+ "outputs": [
442
+ {
443
+ "name": "",
444
+ "type": "uint256"
445
+ }
446
+ ],
447
+ "gas": "540"
448
+ },
449
+ {
450
+ "stateMutability": "view",
451
+ "type": "function",
452
+ "name": "A",
453
+ "inputs": [],
454
+ "outputs": [
455
+ {
456
+ "name": "",
457
+ "type": "uint256"
458
+ }
459
+ ],
460
+ "gas": "10448"
461
+ },
462
+ {
463
+ "stateMutability": "view",
464
+ "type": "function",
465
+ "name": "A_precise",
466
+ "inputs": [],
467
+ "outputs": [
468
+ {
469
+ "name": "",
470
+ "type": "uint256"
471
+ }
472
+ ],
473
+ "gas": "10448"
474
+ },
475
+ {
476
+ "stateMutability": "view",
477
+ "type": "function",
478
+ "name": "get_virtual_price",
479
+ "inputs": [],
480
+ "outputs": [
481
+ {
482
+ "name": "",
483
+ "type": "uint256"
484
+ }
485
+ ],
486
+ "gas": "807920"
487
+ },
488
+ {
489
+ "stateMutability": "view",
490
+ "type": "function",
491
+ "name": "calc_token_amount",
492
+ "inputs": [
493
+ {
494
+ "name": "_amounts",
495
+ "type": "uint256[2]"
496
+ },
497
+ {
498
+ "name": "_is_deposit",
499
+ "type": "bool"
500
+ }
501
+ ],
502
+ "outputs": [
503
+ {
504
+ "name": "",
505
+ "type": "uint256"
506
+ }
507
+ ],
508
+ "gas": "1597346"
509
+ },
510
+ {
511
+ "stateMutability": "nonpayable",
512
+ "type": "function",
513
+ "name": "add_liquidity",
514
+ "inputs": [
515
+ {
516
+ "name": "_amounts",
517
+ "type": "uint256[2]"
518
+ },
519
+ {
520
+ "name": "_min_mint_amount",
521
+ "type": "uint256"
522
+ }
523
+ ],
524
+ "outputs": [
525
+ {
526
+ "name": "",
527
+ "type": "uint256"
528
+ }
529
+ ],
530
+ "gas": "2611832"
531
+ },
532
+ {
533
+ "stateMutability": "nonpayable",
534
+ "type": "function",
535
+ "name": "add_liquidity",
536
+ "inputs": [
537
+ {
538
+ "name": "_amounts",
539
+ "type": "uint256[2]"
540
+ },
541
+ {
542
+ "name": "_min_mint_amount",
543
+ "type": "uint256"
544
+ },
545
+ {
546
+ "name": "_receiver",
547
+ "type": "address"
548
+ }
549
+ ],
550
+ "outputs": [
551
+ {
552
+ "name": "",
553
+ "type": "uint256"
554
+ }
555
+ ],
556
+ "gas": "2611832"
557
+ },
558
+ {
559
+ "stateMutability": "view",
560
+ "type": "function",
561
+ "name": "get_dy",
562
+ "inputs": [
563
+ {
564
+ "name": "i",
565
+ "type": "int128"
566
+ },
567
+ {
568
+ "name": "j",
569
+ "type": "int128"
570
+ },
571
+ {
572
+ "name": "dx",
573
+ "type": "uint256"
574
+ }
575
+ ],
576
+ "outputs": [
577
+ {
578
+ "name": "",
579
+ "type": "uint256"
580
+ }
581
+ ],
582
+ "gas": "1154525"
583
+ },
584
+ {
585
+ "stateMutability": "view",
586
+ "type": "function",
587
+ "name": "get_dy_underlying",
588
+ "inputs": [
589
+ {
590
+ "name": "i",
591
+ "type": "int128"
592
+ },
593
+ {
594
+ "name": "j",
595
+ "type": "int128"
596
+ },
597
+ {
598
+ "name": "dx",
599
+ "type": "uint256"
600
+ }
601
+ ],
602
+ "outputs": [
603
+ {
604
+ "name": "",
605
+ "type": "uint256"
606
+ }
607
+ ],
608
+ "gas": "1162775"
609
+ },
610
+ {
611
+ "stateMutability": "nonpayable",
612
+ "type": "function",
613
+ "name": "exchange",
614
+ "inputs": [
615
+ {
616
+ "name": "i",
617
+ "type": "int128"
618
+ },
619
+ {
620
+ "name": "j",
621
+ "type": "int128"
622
+ },
623
+ {
624
+ "name": "_dx",
625
+ "type": "uint256"
626
+ },
627
+ {
628
+ "name": "_min_dy",
629
+ "type": "uint256"
630
+ }
631
+ ],
632
+ "outputs": [
633
+ {
634
+ "name": "",
635
+ "type": "uint256"
636
+ }
637
+ ],
638
+ "gas": "1300799"
639
+ },
640
+ {
641
+ "stateMutability": "nonpayable",
642
+ "type": "function",
643
+ "name": "exchange",
644
+ "inputs": [
645
+ {
646
+ "name": "i",
647
+ "type": "int128"
648
+ },
649
+ {
650
+ "name": "j",
651
+ "type": "int128"
652
+ },
653
+ {
654
+ "name": "_dx",
655
+ "type": "uint256"
656
+ },
657
+ {
658
+ "name": "_min_dy",
659
+ "type": "uint256"
660
+ },
661
+ {
662
+ "name": "_receiver",
663
+ "type": "address"
664
+ }
665
+ ],
666
+ "outputs": [
667
+ {
668
+ "name": "",
669
+ "type": "uint256"
670
+ }
671
+ ],
672
+ "gas": "1300799"
673
+ },
674
+ {
675
+ "stateMutability": "nonpayable",
676
+ "type": "function",
677
+ "name": "exchange_underlying",
678
+ "inputs": [
679
+ {
680
+ "name": "i",
681
+ "type": "int128"
682
+ },
683
+ {
684
+ "name": "j",
685
+ "type": "int128"
686
+ },
687
+ {
688
+ "name": "_dx",
689
+ "type": "uint256"
690
+ },
691
+ {
692
+ "name": "_min_dy",
693
+ "type": "uint256"
694
+ }
695
+ ],
696
+ "outputs": [
697
+ {
698
+ "name": "",
699
+ "type": "uint256"
700
+ }
701
+ ],
702
+ "gas": "1323223"
703
+ },
704
+ {
705
+ "stateMutability": "nonpayable",
706
+ "type": "function",
707
+ "name": "exchange_underlying",
708
+ "inputs": [
709
+ {
710
+ "name": "i",
711
+ "type": "int128"
712
+ },
713
+ {
714
+ "name": "j",
715
+ "type": "int128"
716
+ },
717
+ {
718
+ "name": "_dx",
719
+ "type": "uint256"
720
+ },
721
+ {
722
+ "name": "_min_dy",
723
+ "type": "uint256"
724
+ },
725
+ {
726
+ "name": "_receiver",
727
+ "type": "address"
728
+ }
729
+ ],
730
+ "outputs": [
731
+ {
732
+ "name": "",
733
+ "type": "uint256"
734
+ }
735
+ ],
736
+ "gas": "1323223"
737
+ },
738
+ {
739
+ "stateMutability": "nonpayable",
740
+ "type": "function",
741
+ "name": "remove_liquidity",
742
+ "inputs": [
743
+ {
744
+ "name": "_burn_amount",
745
+ "type": "uint256"
746
+ },
747
+ {
748
+ "name": "_min_amounts",
749
+ "type": "uint256[2]"
750
+ }
751
+ ],
752
+ "outputs": [
753
+ {
754
+ "name": "",
755
+ "type": "uint256[2]"
756
+ }
757
+ ],
758
+ "gas": "229848"
759
+ },
760
+ {
761
+ "stateMutability": "nonpayable",
762
+ "type": "function",
763
+ "name": "remove_liquidity",
764
+ "inputs": [
765
+ {
766
+ "name": "_burn_amount",
767
+ "type": "uint256"
768
+ },
769
+ {
770
+ "name": "_min_amounts",
771
+ "type": "uint256[2]"
772
+ },
773
+ {
774
+ "name": "_receiver",
775
+ "type": "address"
776
+ }
777
+ ],
778
+ "outputs": [
779
+ {
780
+ "name": "",
781
+ "type": "uint256[2]"
782
+ }
783
+ ],
784
+ "gas": "229848"
785
+ },
786
+ {
787
+ "stateMutability": "nonpayable",
788
+ "type": "function",
789
+ "name": "remove_liquidity_imbalance",
790
+ "inputs": [
791
+ {
792
+ "name": "_amounts",
793
+ "type": "uint256[2]"
794
+ },
795
+ {
796
+ "name": "_max_burn_amount",
797
+ "type": "uint256"
798
+ }
799
+ ],
800
+ "outputs": [
801
+ {
802
+ "name": "",
803
+ "type": "uint256"
804
+ }
805
+ ],
806
+ "gas": "2612120"
807
+ },
808
+ {
809
+ "stateMutability": "nonpayable",
810
+ "type": "function",
811
+ "name": "remove_liquidity_imbalance",
812
+ "inputs": [
813
+ {
814
+ "name": "_amounts",
815
+ "type": "uint256[2]"
816
+ },
817
+ {
818
+ "name": "_max_burn_amount",
819
+ "type": "uint256"
820
+ },
821
+ {
822
+ "name": "_receiver",
823
+ "type": "address"
824
+ }
825
+ ],
826
+ "outputs": [
827
+ {
828
+ "name": "",
829
+ "type": "uint256"
830
+ }
831
+ ],
832
+ "gas": "2612120"
833
+ },
834
+ {
835
+ "stateMutability": "view",
836
+ "type": "function",
837
+ "name": "calc_withdraw_one_coin",
838
+ "inputs": [
839
+ {
840
+ "name": "_burn_amount",
841
+ "type": "uint256"
842
+ },
843
+ {
844
+ "name": "i",
845
+ "type": "int128"
846
+ }
847
+ ],
848
+ "outputs": [
849
+ {
850
+ "name": "",
851
+ "type": "uint256"
852
+ }
853
+ ],
854
+ "gas": "1259"
855
+ },
856
+ {
857
+ "stateMutability": "nonpayable",
858
+ "type": "function",
859
+ "name": "remove_liquidity_one_coin",
860
+ "inputs": [
861
+ {
862
+ "name": "_burn_amount",
863
+ "type": "uint256"
864
+ },
865
+ {
866
+ "name": "i",
867
+ "type": "int128"
868
+ },
869
+ {
870
+ "name": "_min_received",
871
+ "type": "uint256"
872
+ }
873
+ ],
874
+ "outputs": [
875
+ {
876
+ "name": "",
877
+ "type": "uint256"
878
+ }
879
+ ],
880
+ "gas": "1688189"
881
+ },
882
+ {
883
+ "stateMutability": "nonpayable",
884
+ "type": "function",
885
+ "name": "remove_liquidity_one_coin",
886
+ "inputs": [
887
+ {
888
+ "name": "_burn_amount",
889
+ "type": "uint256"
890
+ },
891
+ {
892
+ "name": "i",
893
+ "type": "int128"
894
+ },
895
+ {
896
+ "name": "_min_received",
897
+ "type": "uint256"
898
+ },
899
+ {
900
+ "name": "_receiver",
901
+ "type": "address"
902
+ }
903
+ ],
904
+ "outputs": [
905
+ {
906
+ "name": "",
907
+ "type": "uint256"
908
+ }
909
+ ],
910
+ "gas": "1688189"
911
+ },
912
+ {
913
+ "stateMutability": "nonpayable",
914
+ "type": "function",
915
+ "name": "ramp_A",
916
+ "inputs": [
917
+ {
918
+ "name": "_future_A",
919
+ "type": "uint256"
920
+ },
921
+ {
922
+ "name": "_future_time",
923
+ "type": "uint256"
924
+ }
925
+ ],
926
+ "outputs": [],
927
+ "gas": "161164"
928
+ },
929
+ {
930
+ "stateMutability": "nonpayable",
931
+ "type": "function",
932
+ "name": "stop_ramp_A",
933
+ "inputs": [],
934
+ "outputs": [],
935
+ "gas": "157387"
936
+ },
937
+ {
938
+ "stateMutability": "view",
939
+ "type": "function",
940
+ "name": "admin_balances",
941
+ "inputs": [
942
+ {
943
+ "name": "i",
944
+ "type": "uint256"
945
+ }
946
+ ],
947
+ "outputs": [
948
+ {
949
+ "name": "",
950
+ "type": "uint256"
951
+ }
952
+ ],
953
+ "gas": "7859"
954
+ },
955
+ {
956
+ "stateMutability": "nonpayable",
957
+ "type": "function",
958
+ "name": "withdraw_admin_fees",
959
+ "inputs": [],
960
+ "outputs": [],
961
+ "gas": "31294"
962
+ },
963
+ {
964
+ "stateMutability": "view",
965
+ "type": "function",
966
+ "name": "version",
967
+ "inputs": [],
968
+ "outputs": [
969
+ {
970
+ "name": "",
971
+ "type": "string"
972
+ }
973
+ ],
974
+ "gas": "6707"
975
+ },
976
+ {
977
+ "stateMutability": "view",
978
+ "type": "function",
979
+ "name": "coins",
980
+ "inputs": [
981
+ {
982
+ "name": "arg0",
983
+ "type": "uint256"
984
+ }
985
+ ],
986
+ "outputs": [
987
+ {
988
+ "name": "",
989
+ "type": "address"
990
+ }
991
+ ],
992
+ "gas": "3255"
993
+ },
994
+ {
995
+ "stateMutability": "view",
996
+ "type": "function",
997
+ "name": "balances",
998
+ "inputs": [
999
+ {
1000
+ "name": "arg0",
1001
+ "type": "uint256"
1002
+ }
1003
+ ],
1004
+ "outputs": [
1005
+ {
1006
+ "name": "",
1007
+ "type": "uint256"
1008
+ }
1009
+ ],
1010
+ "gas": "3285"
1011
+ },
1012
+ {
1013
+ "stateMutability": "view",
1014
+ "type": "function",
1015
+ "name": "fee",
1016
+ "inputs": [],
1017
+ "outputs": [
1018
+ {
1019
+ "name": "",
1020
+ "type": "uint256"
1021
+ }
1022
+ ],
1023
+ "gas": "3270"
1024
+ },
1025
+ {
1026
+ "stateMutability": "view",
1027
+ "type": "function",
1028
+ "name": "initial_A",
1029
+ "inputs": [],
1030
+ "outputs": [
1031
+ {
1032
+ "name": "",
1033
+ "type": "uint256"
1034
+ }
1035
+ ],
1036
+ "gas": "3300"
1037
+ },
1038
+ {
1039
+ "stateMutability": "view",
1040
+ "type": "function",
1041
+ "name": "future_A",
1042
+ "inputs": [],
1043
+ "outputs": [
1044
+ {
1045
+ "name": "",
1046
+ "type": "uint256"
1047
+ }
1048
+ ],
1049
+ "gas": "3330"
1050
+ },
1051
+ {
1052
+ "stateMutability": "view",
1053
+ "type": "function",
1054
+ "name": "initial_A_time",
1055
+ "inputs": [],
1056
+ "outputs": [
1057
+ {
1058
+ "name": "",
1059
+ "type": "uint256"
1060
+ }
1061
+ ],
1062
+ "gas": "3360"
1063
+ },
1064
+ {
1065
+ "stateMutability": "view",
1066
+ "type": "function",
1067
+ "name": "future_A_time",
1068
+ "inputs": [],
1069
+ "outputs": [
1070
+ {
1071
+ "name": "",
1072
+ "type": "uint256"
1073
+ }
1074
+ ],
1075
+ "gas": "3390"
1076
+ },
1077
+ {
1078
+ "stateMutability": "view",
1079
+ "type": "function",
1080
+ "name": "name",
1081
+ "inputs": [],
1082
+ "outputs": [
1083
+ {
1084
+ "name": "",
1085
+ "type": "string"
1086
+ }
1087
+ ],
1088
+ "gas": "13709"
1089
+ },
1090
+ {
1091
+ "stateMutability": "view",
1092
+ "type": "function",
1093
+ "name": "symbol",
1094
+ "inputs": [],
1095
+ "outputs": [
1096
+ {
1097
+ "name": "",
1098
+ "type": "string"
1099
+ }
1100
+ ],
1101
+ "gas": "11468"
1102
+ },
1103
+ {
1104
+ "stateMutability": "view",
1105
+ "type": "function",
1106
+ "name": "balanceOf",
1107
+ "inputs": [
1108
+ {
1109
+ "name": "arg0",
1110
+ "type": "address"
1111
+ }
1112
+ ],
1113
+ "outputs": [
1114
+ {
1115
+ "name": "",
1116
+ "type": "uint256"
1117
+ }
1118
+ ],
1119
+ "gas": "3746"
1120
+ },
1121
+ {
1122
+ "stateMutability": "view",
1123
+ "type": "function",
1124
+ "name": "allowance",
1125
+ "inputs": [
1126
+ {
1127
+ "name": "arg0",
1128
+ "type": "address"
1129
+ },
1130
+ {
1131
+ "name": "arg1",
1132
+ "type": "address"
1133
+ }
1134
+ ],
1135
+ "outputs": [
1136
+ {
1137
+ "name": "",
1138
+ "type": "uint256"
1139
+ }
1140
+ ],
1141
+ "gas": "4042"
1142
+ },
1143
+ {
1144
+ "stateMutability": "view",
1145
+ "type": "function",
1146
+ "name": "totalSupply",
1147
+ "inputs": [],
1148
+ "outputs": [
1149
+ {
1150
+ "name": "",
1151
+ "type": "uint256"
1152
+ }
1153
+ ],
1154
+ "gas": "3540"
1155
+ },
1156
+ {
1157
+ "stateMutability": "view",
1158
+ "type": "function",
1159
+ "name": "DOMAIN_SEPARATOR",
1160
+ "inputs": [],
1161
+ "outputs": [
1162
+ {
1163
+ "name": "",
1164
+ "type": "bytes32"
1165
+ }
1166
+ ],
1167
+ "gas": "3570"
1168
+ },
1169
+ {
1170
+ "stateMutability": "view",
1171
+ "type": "function",
1172
+ "name": "nonces",
1173
+ "inputs": [
1174
+ {
1175
+ "name": "arg0",
1176
+ "type": "address"
1177
+ }
1178
+ ],
1179
+ "outputs": [
1180
+ {
1181
+ "name": "",
1182
+ "type": "uint256"
1183
+ }
1184
+ ],
1185
+ "gas": "3866"
1186
+ }
1187
+ ]