@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,1200 @@
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": "balances",
440
+ "inputs": [
441
+ {
442
+ "name": "i",
443
+ "type": "uint256"
444
+ }
445
+ ],
446
+ "outputs": [
447
+ {
448
+ "name": "",
449
+ "type": "uint256"
450
+ }
451
+ ],
452
+ "gas": "15123"
453
+ },
454
+ {
455
+ "stateMutability": "view",
456
+ "type": "function",
457
+ "name": "get_balances",
458
+ "inputs": [],
459
+ "outputs": [
460
+ {
461
+ "name": "",
462
+ "type": "uint256[2]"
463
+ }
464
+ ],
465
+ "gas": "15168"
466
+ },
467
+ {
468
+ "stateMutability": "view",
469
+ "type": "function",
470
+ "name": "admin_fee",
471
+ "inputs": [],
472
+ "outputs": [
473
+ {
474
+ "name": "",
475
+ "type": "uint256"
476
+ }
477
+ ],
478
+ "gas": "600"
479
+ },
480
+ {
481
+ "stateMutability": "view",
482
+ "type": "function",
483
+ "name": "A",
484
+ "inputs": [],
485
+ "outputs": [
486
+ {
487
+ "name": "",
488
+ "type": "uint256"
489
+ }
490
+ ],
491
+ "gas": "10568"
492
+ },
493
+ {
494
+ "stateMutability": "view",
495
+ "type": "function",
496
+ "name": "A_precise",
497
+ "inputs": [],
498
+ "outputs": [
499
+ {
500
+ "name": "",
501
+ "type": "uint256"
502
+ }
503
+ ],
504
+ "gas": "10568"
505
+ },
506
+ {
507
+ "stateMutability": "view",
508
+ "type": "function",
509
+ "name": "get_virtual_price",
510
+ "inputs": [],
511
+ "outputs": [
512
+ {
513
+ "name": "",
514
+ "type": "uint256"
515
+ }
516
+ ],
517
+ "gas": "818555"
518
+ },
519
+ {
520
+ "stateMutability": "view",
521
+ "type": "function",
522
+ "name": "calc_token_amount",
523
+ "inputs": [
524
+ {
525
+ "name": "_amounts",
526
+ "type": "uint256[2]"
527
+ },
528
+ {
529
+ "name": "_is_deposit",
530
+ "type": "bool"
531
+ }
532
+ ],
533
+ "outputs": [
534
+ {
535
+ "name": "",
536
+ "type": "uint256"
537
+ }
538
+ ],
539
+ "gas": "1608161"
540
+ },
541
+ {
542
+ "stateMutability": "nonpayable",
543
+ "type": "function",
544
+ "name": "add_liquidity",
545
+ "inputs": [
546
+ {
547
+ "name": "_amounts",
548
+ "type": "uint256[2]"
549
+ },
550
+ {
551
+ "name": "_min_mint_amount",
552
+ "type": "uint256"
553
+ }
554
+ ],
555
+ "outputs": [
556
+ {
557
+ "name": "",
558
+ "type": "uint256"
559
+ }
560
+ ],
561
+ "gas": "2636969"
562
+ },
563
+ {
564
+ "stateMutability": "nonpayable",
565
+ "type": "function",
566
+ "name": "add_liquidity",
567
+ "inputs": [
568
+ {
569
+ "name": "_amounts",
570
+ "type": "uint256[2]"
571
+ },
572
+ {
573
+ "name": "_min_mint_amount",
574
+ "type": "uint256"
575
+ },
576
+ {
577
+ "name": "_receiver",
578
+ "type": "address"
579
+ }
580
+ ],
581
+ "outputs": [
582
+ {
583
+ "name": "",
584
+ "type": "uint256"
585
+ }
586
+ ],
587
+ "gas": "2636969"
588
+ },
589
+ {
590
+ "stateMutability": "view",
591
+ "type": "function",
592
+ "name": "get_dy",
593
+ "inputs": [
594
+ {
595
+ "name": "i",
596
+ "type": "int128"
597
+ },
598
+ {
599
+ "name": "j",
600
+ "type": "int128"
601
+ },
602
+ {
603
+ "name": "dx",
604
+ "type": "uint256"
605
+ }
606
+ ],
607
+ "outputs": [
608
+ {
609
+ "name": "",
610
+ "type": "uint256"
611
+ }
612
+ ],
613
+ "gas": "1165338"
614
+ },
615
+ {
616
+ "stateMutability": "view",
617
+ "type": "function",
618
+ "name": "get_dy_underlying",
619
+ "inputs": [
620
+ {
621
+ "name": "i",
622
+ "type": "int128"
623
+ },
624
+ {
625
+ "name": "j",
626
+ "type": "int128"
627
+ },
628
+ {
629
+ "name": "dx",
630
+ "type": "uint256"
631
+ }
632
+ ],
633
+ "outputs": [
634
+ {
635
+ "name": "",
636
+ "type": "uint256"
637
+ }
638
+ ],
639
+ "gas": "1173578"
640
+ },
641
+ {
642
+ "stateMutability": "nonpayable",
643
+ "type": "function",
644
+ "name": "exchange",
645
+ "inputs": [
646
+ {
647
+ "name": "i",
648
+ "type": "int128"
649
+ },
650
+ {
651
+ "name": "j",
652
+ "type": "int128"
653
+ },
654
+ {
655
+ "name": "_dx",
656
+ "type": "uint256"
657
+ },
658
+ {
659
+ "name": "_min_dy",
660
+ "type": "uint256"
661
+ }
662
+ ],
663
+ "outputs": [
664
+ {
665
+ "name": "",
666
+ "type": "uint256"
667
+ }
668
+ ],
669
+ "gas": "1283011"
670
+ },
671
+ {
672
+ "stateMutability": "nonpayable",
673
+ "type": "function",
674
+ "name": "exchange",
675
+ "inputs": [
676
+ {
677
+ "name": "i",
678
+ "type": "int128"
679
+ },
680
+ {
681
+ "name": "j",
682
+ "type": "int128"
683
+ },
684
+ {
685
+ "name": "_dx",
686
+ "type": "uint256"
687
+ },
688
+ {
689
+ "name": "_min_dy",
690
+ "type": "uint256"
691
+ },
692
+ {
693
+ "name": "_receiver",
694
+ "type": "address"
695
+ }
696
+ ],
697
+ "outputs": [
698
+ {
699
+ "name": "",
700
+ "type": "uint256"
701
+ }
702
+ ],
703
+ "gas": "1283011"
704
+ },
705
+ {
706
+ "stateMutability": "nonpayable",
707
+ "type": "function",
708
+ "name": "exchange_underlying",
709
+ "inputs": [
710
+ {
711
+ "name": "i",
712
+ "type": "int128"
713
+ },
714
+ {
715
+ "name": "j",
716
+ "type": "int128"
717
+ },
718
+ {
719
+ "name": "_dx",
720
+ "type": "uint256"
721
+ },
722
+ {
723
+ "name": "_min_dy",
724
+ "type": "uint256"
725
+ }
726
+ ],
727
+ "outputs": [
728
+ {
729
+ "name": "",
730
+ "type": "uint256"
731
+ }
732
+ ],
733
+ "gas": "1305450"
734
+ },
735
+ {
736
+ "stateMutability": "nonpayable",
737
+ "type": "function",
738
+ "name": "exchange_underlying",
739
+ "inputs": [
740
+ {
741
+ "name": "i",
742
+ "type": "int128"
743
+ },
744
+ {
745
+ "name": "j",
746
+ "type": "int128"
747
+ },
748
+ {
749
+ "name": "_dx",
750
+ "type": "uint256"
751
+ },
752
+ {
753
+ "name": "_min_dy",
754
+ "type": "uint256"
755
+ },
756
+ {
757
+ "name": "_receiver",
758
+ "type": "address"
759
+ }
760
+ ],
761
+ "outputs": [
762
+ {
763
+ "name": "",
764
+ "type": "uint256"
765
+ }
766
+ ],
767
+ "gas": "1305450"
768
+ },
769
+ {
770
+ "stateMutability": "nonpayable",
771
+ "type": "function",
772
+ "name": "remove_liquidity",
773
+ "inputs": [
774
+ {
775
+ "name": "_burn_amount",
776
+ "type": "uint256"
777
+ },
778
+ {
779
+ "name": "_min_amounts",
780
+ "type": "uint256[2]"
781
+ }
782
+ ],
783
+ "outputs": [
784
+ {
785
+ "name": "",
786
+ "type": "uint256[2]"
787
+ }
788
+ ],
789
+ "gas": "169867"
790
+ },
791
+ {
792
+ "stateMutability": "nonpayable",
793
+ "type": "function",
794
+ "name": "remove_liquidity",
795
+ "inputs": [
796
+ {
797
+ "name": "_burn_amount",
798
+ "type": "uint256"
799
+ },
800
+ {
801
+ "name": "_min_amounts",
802
+ "type": "uint256[2]"
803
+ },
804
+ {
805
+ "name": "_receiver",
806
+ "type": "address"
807
+ }
808
+ ],
809
+ "outputs": [
810
+ {
811
+ "name": "",
812
+ "type": "uint256[2]"
813
+ }
814
+ ],
815
+ "gas": "169867"
816
+ },
817
+ {
818
+ "stateMutability": "nonpayable",
819
+ "type": "function",
820
+ "name": "remove_liquidity_imbalance",
821
+ "inputs": [
822
+ {
823
+ "name": "_amounts",
824
+ "type": "uint256[2]"
825
+ },
826
+ {
827
+ "name": "_max_burn_amount",
828
+ "type": "uint256"
829
+ }
830
+ ],
831
+ "outputs": [
832
+ {
833
+ "name": "",
834
+ "type": "uint256"
835
+ }
836
+ ],
837
+ "gas": "2627335"
838
+ },
839
+ {
840
+ "stateMutability": "nonpayable",
841
+ "type": "function",
842
+ "name": "remove_liquidity_imbalance",
843
+ "inputs": [
844
+ {
845
+ "name": "_amounts",
846
+ "type": "uint256[2]"
847
+ },
848
+ {
849
+ "name": "_max_burn_amount",
850
+ "type": "uint256"
851
+ },
852
+ {
853
+ "name": "_receiver",
854
+ "type": "address"
855
+ }
856
+ ],
857
+ "outputs": [
858
+ {
859
+ "name": "",
860
+ "type": "uint256"
861
+ }
862
+ ],
863
+ "gas": "2627335"
864
+ },
865
+ {
866
+ "stateMutability": "view",
867
+ "type": "function",
868
+ "name": "calc_withdraw_one_coin",
869
+ "inputs": [
870
+ {
871
+ "name": "_burn_amount",
872
+ "type": "uint256"
873
+ },
874
+ {
875
+ "name": "i",
876
+ "type": "int128"
877
+ }
878
+ ],
879
+ "outputs": [
880
+ {
881
+ "name": "",
882
+ "type": "uint256"
883
+ }
884
+ ],
885
+ "gas": "1319"
886
+ },
887
+ {
888
+ "stateMutability": "nonpayable",
889
+ "type": "function",
890
+ "name": "remove_liquidity_one_coin",
891
+ "inputs": [
892
+ {
893
+ "name": "_burn_amount",
894
+ "type": "uint256"
895
+ },
896
+ {
897
+ "name": "i",
898
+ "type": "int128"
899
+ },
900
+ {
901
+ "name": "_min_received",
902
+ "type": "uint256"
903
+ }
904
+ ],
905
+ "outputs": [
906
+ {
907
+ "name": "",
908
+ "type": "uint256"
909
+ }
910
+ ],
911
+ "gas": "1699060"
912
+ },
913
+ {
914
+ "stateMutability": "nonpayable",
915
+ "type": "function",
916
+ "name": "remove_liquidity_one_coin",
917
+ "inputs": [
918
+ {
919
+ "name": "_burn_amount",
920
+ "type": "uint256"
921
+ },
922
+ {
923
+ "name": "i",
924
+ "type": "int128"
925
+ },
926
+ {
927
+ "name": "_min_received",
928
+ "type": "uint256"
929
+ },
930
+ {
931
+ "name": "_receiver",
932
+ "type": "address"
933
+ }
934
+ ],
935
+ "outputs": [
936
+ {
937
+ "name": "",
938
+ "type": "uint256"
939
+ }
940
+ ],
941
+ "gas": "1699060"
942
+ },
943
+ {
944
+ "stateMutability": "nonpayable",
945
+ "type": "function",
946
+ "name": "ramp_A",
947
+ "inputs": [
948
+ {
949
+ "name": "_future_A",
950
+ "type": "uint256"
951
+ },
952
+ {
953
+ "name": "_future_time",
954
+ "type": "uint256"
955
+ }
956
+ ],
957
+ "outputs": [],
958
+ "gas": "161284"
959
+ },
960
+ {
961
+ "stateMutability": "nonpayable",
962
+ "type": "function",
963
+ "name": "stop_ramp_A",
964
+ "inputs": [],
965
+ "outputs": [],
966
+ "gas": "157507"
967
+ },
968
+ {
969
+ "stateMutability": "nonpayable",
970
+ "type": "function",
971
+ "name": "withdraw_admin_fees",
972
+ "inputs": [],
973
+ "outputs": [],
974
+ "gas": "80848"
975
+ },
976
+ {
977
+ "stateMutability": "view",
978
+ "type": "function",
979
+ "name": "version",
980
+ "inputs": [],
981
+ "outputs": [
982
+ {
983
+ "name": "",
984
+ "type": "string"
985
+ }
986
+ ],
987
+ "gas": "6737"
988
+ },
989
+ {
990
+ "stateMutability": "view",
991
+ "type": "function",
992
+ "name": "coins",
993
+ "inputs": [
994
+ {
995
+ "name": "arg0",
996
+ "type": "uint256"
997
+ }
998
+ ],
999
+ "outputs": [
1000
+ {
1001
+ "name": "",
1002
+ "type": "address"
1003
+ }
1004
+ ],
1005
+ "gas": "3285"
1006
+ },
1007
+ {
1008
+ "stateMutability": "view",
1009
+ "type": "function",
1010
+ "name": "admin_balances",
1011
+ "inputs": [
1012
+ {
1013
+ "name": "arg0",
1014
+ "type": "uint256"
1015
+ }
1016
+ ],
1017
+ "outputs": [
1018
+ {
1019
+ "name": "",
1020
+ "type": "uint256"
1021
+ }
1022
+ ],
1023
+ "gas": "3315"
1024
+ },
1025
+ {
1026
+ "stateMutability": "view",
1027
+ "type": "function",
1028
+ "name": "fee",
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": "initial_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": "future_A",
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": "initial_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": "future_A_time",
1081
+ "inputs": [],
1082
+ "outputs": [
1083
+ {
1084
+ "name": "",
1085
+ "type": "uint256"
1086
+ }
1087
+ ],
1088
+ "gas": "3420"
1089
+ },
1090
+ {
1091
+ "stateMutability": "view",
1092
+ "type": "function",
1093
+ "name": "name",
1094
+ "inputs": [],
1095
+ "outputs": [
1096
+ {
1097
+ "name": "",
1098
+ "type": "string"
1099
+ }
1100
+ ],
1101
+ "gas": "13739"
1102
+ },
1103
+ {
1104
+ "stateMutability": "view",
1105
+ "type": "function",
1106
+ "name": "symbol",
1107
+ "inputs": [],
1108
+ "outputs": [
1109
+ {
1110
+ "name": "",
1111
+ "type": "string"
1112
+ }
1113
+ ],
1114
+ "gas": "11498"
1115
+ },
1116
+ {
1117
+ "stateMutability": "view",
1118
+ "type": "function",
1119
+ "name": "balanceOf",
1120
+ "inputs": [
1121
+ {
1122
+ "name": "arg0",
1123
+ "type": "address"
1124
+ }
1125
+ ],
1126
+ "outputs": [
1127
+ {
1128
+ "name": "",
1129
+ "type": "uint256"
1130
+ }
1131
+ ],
1132
+ "gas": "3776"
1133
+ },
1134
+ {
1135
+ "stateMutability": "view",
1136
+ "type": "function",
1137
+ "name": "allowance",
1138
+ "inputs": [
1139
+ {
1140
+ "name": "arg0",
1141
+ "type": "address"
1142
+ },
1143
+ {
1144
+ "name": "arg1",
1145
+ "type": "address"
1146
+ }
1147
+ ],
1148
+ "outputs": [
1149
+ {
1150
+ "name": "",
1151
+ "type": "uint256"
1152
+ }
1153
+ ],
1154
+ "gas": "4072"
1155
+ },
1156
+ {
1157
+ "stateMutability": "view",
1158
+ "type": "function",
1159
+ "name": "totalSupply",
1160
+ "inputs": [],
1161
+ "outputs": [
1162
+ {
1163
+ "name": "",
1164
+ "type": "uint256"
1165
+ }
1166
+ ],
1167
+ "gas": "3570"
1168
+ },
1169
+ {
1170
+ "stateMutability": "view",
1171
+ "type": "function",
1172
+ "name": "DOMAIN_SEPARATOR",
1173
+ "inputs": [],
1174
+ "outputs": [
1175
+ {
1176
+ "name": "",
1177
+ "type": "bytes32"
1178
+ }
1179
+ ],
1180
+ "gas": "3600"
1181
+ },
1182
+ {
1183
+ "stateMutability": "view",
1184
+ "type": "function",
1185
+ "name": "nonces",
1186
+ "inputs": [
1187
+ {
1188
+ "name": "arg0",
1189
+ "type": "address"
1190
+ }
1191
+ ],
1192
+ "outputs": [
1193
+ {
1194
+ "name": "",
1195
+ "type": "uint256"
1196
+ }
1197
+ ],
1198
+ "gas": "3896"
1199
+ }
1200
+ ]