@curvefi/api 2.36.1 → 2.37.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,1077 @@
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[2]",
89
+ "indexed": false
90
+ },
91
+ {
92
+ "name": "fees",
93
+ "type": "uint256[2]",
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[2]",
121
+ "indexed": false
122
+ },
123
+ {
124
+ "name": "fees",
125
+ "type": "uint256[2]",
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[2]",
175
+ "indexed": false
176
+ },
177
+ {
178
+ "name": "fees",
179
+ "type": "uint256[2]",
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": "RampA",
198
+ "inputs": [
199
+ {
200
+ "name": "old_A",
201
+ "type": "uint256",
202
+ "indexed": false
203
+ },
204
+ {
205
+ "name": "new_A",
206
+ "type": "uint256",
207
+ "indexed": false
208
+ },
209
+ {
210
+ "name": "initial_time",
211
+ "type": "uint256",
212
+ "indexed": false
213
+ },
214
+ {
215
+ "name": "future_time",
216
+ "type": "uint256",
217
+ "indexed": false
218
+ }
219
+ ],
220
+ "anonymous": false,
221
+ "type": "event"
222
+ },
223
+ {
224
+ "name": "StopRampA",
225
+ "inputs": [
226
+ {
227
+ "name": "A",
228
+ "type": "uint256",
229
+ "indexed": false
230
+ },
231
+ {
232
+ "name": "t",
233
+ "type": "uint256",
234
+ "indexed": false
235
+ }
236
+ ],
237
+ "anonymous": false,
238
+ "type": "event"
239
+ },
240
+ {
241
+ "name": "CommitNewFee",
242
+ "inputs": [
243
+ {
244
+ "name": "new_fee",
245
+ "type": "uint256",
246
+ "indexed": false
247
+ }
248
+ ],
249
+ "anonymous": false,
250
+ "type": "event"
251
+ },
252
+ {
253
+ "name": "ApplyNewFee",
254
+ "inputs": [
255
+ {
256
+ "name": "fee",
257
+ "type": "uint256",
258
+ "indexed": false
259
+ }
260
+ ],
261
+ "anonymous": false,
262
+ "type": "event"
263
+ },
264
+ {
265
+ "stateMutability": "nonpayable",
266
+ "type": "constructor",
267
+ "inputs": [],
268
+ "outputs": []
269
+ },
270
+ {
271
+ "stateMutability": "nonpayable",
272
+ "type": "function",
273
+ "name": "initialize",
274
+ "inputs": [
275
+ {
276
+ "name": "_name",
277
+ "type": "string"
278
+ },
279
+ {
280
+ "name": "_symbol",
281
+ "type": "string"
282
+ },
283
+ {
284
+ "name": "_coins",
285
+ "type": "address[4]"
286
+ },
287
+ {
288
+ "name": "_rate_multipliers",
289
+ "type": "uint256[4]"
290
+ },
291
+ {
292
+ "name": "_A",
293
+ "type": "uint256"
294
+ },
295
+ {
296
+ "name": "_fee",
297
+ "type": "uint256"
298
+ }
299
+ ],
300
+ "outputs": []
301
+ },
302
+ {
303
+ "stateMutability": "nonpayable",
304
+ "type": "function",
305
+ "name": "transfer",
306
+ "inputs": [
307
+ {
308
+ "name": "_to",
309
+ "type": "address"
310
+ },
311
+ {
312
+ "name": "_value",
313
+ "type": "uint256"
314
+ }
315
+ ],
316
+ "outputs": [
317
+ {
318
+ "name": "",
319
+ "type": "bool"
320
+ }
321
+ ]
322
+ },
323
+ {
324
+ "stateMutability": "nonpayable",
325
+ "type": "function",
326
+ "name": "transferFrom",
327
+ "inputs": [
328
+ {
329
+ "name": "_from",
330
+ "type": "address"
331
+ },
332
+ {
333
+ "name": "_to",
334
+ "type": "address"
335
+ },
336
+ {
337
+ "name": "_value",
338
+ "type": "uint256"
339
+ }
340
+ ],
341
+ "outputs": [
342
+ {
343
+ "name": "",
344
+ "type": "bool"
345
+ }
346
+ ]
347
+ },
348
+ {
349
+ "stateMutability": "nonpayable",
350
+ "type": "function",
351
+ "name": "approve",
352
+ "inputs": [
353
+ {
354
+ "name": "_spender",
355
+ "type": "address"
356
+ },
357
+ {
358
+ "name": "_value",
359
+ "type": "uint256"
360
+ }
361
+ ],
362
+ "outputs": [
363
+ {
364
+ "name": "",
365
+ "type": "bool"
366
+ }
367
+ ]
368
+ },
369
+ {
370
+ "stateMutability": "nonpayable",
371
+ "type": "function",
372
+ "name": "permit",
373
+ "inputs": [
374
+ {
375
+ "name": "_owner",
376
+ "type": "address"
377
+ },
378
+ {
379
+ "name": "_spender",
380
+ "type": "address"
381
+ },
382
+ {
383
+ "name": "_value",
384
+ "type": "uint256"
385
+ },
386
+ {
387
+ "name": "_deadline",
388
+ "type": "uint256"
389
+ },
390
+ {
391
+ "name": "_v",
392
+ "type": "uint8"
393
+ },
394
+ {
395
+ "name": "_r",
396
+ "type": "bytes32"
397
+ },
398
+ {
399
+ "name": "_s",
400
+ "type": "bytes32"
401
+ }
402
+ ],
403
+ "outputs": [
404
+ {
405
+ "name": "",
406
+ "type": "bool"
407
+ }
408
+ ]
409
+ },
410
+ {
411
+ "stateMutability": "view",
412
+ "type": "function",
413
+ "name": "last_price",
414
+ "inputs": [],
415
+ "outputs": [
416
+ {
417
+ "name": "",
418
+ "type": "uint256"
419
+ }
420
+ ]
421
+ },
422
+ {
423
+ "stateMutability": "view",
424
+ "type": "function",
425
+ "name": "ema_price",
426
+ "inputs": [],
427
+ "outputs": [
428
+ {
429
+ "name": "",
430
+ "type": "uint256"
431
+ }
432
+ ]
433
+ },
434
+ {
435
+ "stateMutability": "view",
436
+ "type": "function",
437
+ "name": "stored_rates",
438
+ "inputs": [],
439
+ "outputs": [
440
+ {
441
+ "name": "",
442
+ "type": "uint256[2]"
443
+ }
444
+ ]
445
+ },
446
+ {
447
+ "stateMutability": "view",
448
+ "type": "function",
449
+ "name": "balances",
450
+ "inputs": [
451
+ {
452
+ "name": "i",
453
+ "type": "uint256"
454
+ }
455
+ ],
456
+ "outputs": [
457
+ {
458
+ "name": "",
459
+ "type": "uint256"
460
+ }
461
+ ]
462
+ },
463
+ {
464
+ "stateMutability": "view",
465
+ "type": "function",
466
+ "name": "admin_fee",
467
+ "inputs": [],
468
+ "outputs": [
469
+ {
470
+ "name": "",
471
+ "type": "uint256"
472
+ }
473
+ ]
474
+ },
475
+ {
476
+ "stateMutability": "view",
477
+ "type": "function",
478
+ "name": "A",
479
+ "inputs": [],
480
+ "outputs": [
481
+ {
482
+ "name": "",
483
+ "type": "uint256"
484
+ }
485
+ ]
486
+ },
487
+ {
488
+ "stateMutability": "view",
489
+ "type": "function",
490
+ "name": "A_precise",
491
+ "inputs": [],
492
+ "outputs": [
493
+ {
494
+ "name": "",
495
+ "type": "uint256"
496
+ }
497
+ ]
498
+ },
499
+ {
500
+ "stateMutability": "view",
501
+ "type": "function",
502
+ "name": "get_p",
503
+ "inputs": [],
504
+ "outputs": [
505
+ {
506
+ "name": "",
507
+ "type": "uint256"
508
+ }
509
+ ]
510
+ },
511
+ {
512
+ "stateMutability": "view",
513
+ "type": "function",
514
+ "name": "price_oracle",
515
+ "inputs": [],
516
+ "outputs": [
517
+ {
518
+ "name": "",
519
+ "type": "uint256"
520
+ }
521
+ ]
522
+ },
523
+ {
524
+ "stateMutability": "view",
525
+ "type": "function",
526
+ "name": "get_virtual_price",
527
+ "inputs": [],
528
+ "outputs": [
529
+ {
530
+ "name": "",
531
+ "type": "uint256"
532
+ }
533
+ ]
534
+ },
535
+ {
536
+ "stateMutability": "view",
537
+ "type": "function",
538
+ "name": "calc_token_amount",
539
+ "inputs": [
540
+ {
541
+ "name": "_amounts",
542
+ "type": "uint256[2]"
543
+ },
544
+ {
545
+ "name": "_is_deposit",
546
+ "type": "bool"
547
+ }
548
+ ],
549
+ "outputs": [
550
+ {
551
+ "name": "",
552
+ "type": "uint256"
553
+ }
554
+ ]
555
+ },
556
+ {
557
+ "stateMutability": "payable",
558
+ "type": "function",
559
+ "name": "add_liquidity",
560
+ "inputs": [
561
+ {
562
+ "name": "_amounts",
563
+ "type": "uint256[2]"
564
+ },
565
+ {
566
+ "name": "_min_mint_amount",
567
+ "type": "uint256"
568
+ }
569
+ ],
570
+ "outputs": [
571
+ {
572
+ "name": "",
573
+ "type": "uint256"
574
+ }
575
+ ]
576
+ },
577
+ {
578
+ "stateMutability": "view",
579
+ "type": "function",
580
+ "name": "get_dy",
581
+ "inputs": [
582
+ {
583
+ "name": "i",
584
+ "type": "int128"
585
+ },
586
+ {
587
+ "name": "j",
588
+ "type": "int128"
589
+ },
590
+ {
591
+ "name": "dx",
592
+ "type": "uint256"
593
+ }
594
+ ],
595
+ "outputs": [
596
+ {
597
+ "name": "",
598
+ "type": "uint256"
599
+ }
600
+ ]
601
+ },
602
+ {
603
+ "stateMutability": "payable",
604
+ "type": "function",
605
+ "name": "exchange",
606
+ "inputs": [
607
+ {
608
+ "name": "i",
609
+ "type": "int128"
610
+ },
611
+ {
612
+ "name": "j",
613
+ "type": "int128"
614
+ },
615
+ {
616
+ "name": "_dx",
617
+ "type": "uint256"
618
+ },
619
+ {
620
+ "name": "_min_dy",
621
+ "type": "uint256"
622
+ }
623
+ ],
624
+ "outputs": [
625
+ {
626
+ "name": "",
627
+ "type": "uint256"
628
+ }
629
+ ]
630
+ },
631
+ {
632
+ "stateMutability": "nonpayable",
633
+ "type": "function",
634
+ "name": "remove_liquidity",
635
+ "inputs": [
636
+ {
637
+ "name": "_burn_amount",
638
+ "type": "uint256"
639
+ },
640
+ {
641
+ "name": "_min_amounts",
642
+ "type": "uint256[2]"
643
+ }
644
+ ],
645
+ "outputs": [
646
+ {
647
+ "name": "",
648
+ "type": "uint256[2]"
649
+ }
650
+ ]
651
+ },
652
+ {
653
+ "stateMutability": "nonpayable",
654
+ "type": "function",
655
+ "name": "remove_liquidity_imbalance",
656
+ "inputs": [
657
+ {
658
+ "name": "_amounts",
659
+ "type": "uint256[2]"
660
+ },
661
+ {
662
+ "name": "_max_burn_amount",
663
+ "type": "uint256"
664
+ }
665
+ ],
666
+ "outputs": [
667
+ {
668
+ "name": "",
669
+ "type": "uint256"
670
+ }
671
+ ]
672
+ },
673
+ {
674
+ "stateMutability": "view",
675
+ "type": "function",
676
+ "name": "calc_withdraw_one_coin",
677
+ "inputs": [
678
+ {
679
+ "name": "_burn_amount",
680
+ "type": "uint256"
681
+ },
682
+ {
683
+ "name": "i",
684
+ "type": "int128"
685
+ }
686
+ ],
687
+ "outputs": [
688
+ {
689
+ "name": "",
690
+ "type": "uint256"
691
+ }
692
+ ]
693
+ },
694
+ {
695
+ "stateMutability": "nonpayable",
696
+ "type": "function",
697
+ "name": "remove_liquidity_one_coin",
698
+ "inputs": [
699
+ {
700
+ "name": "_burn_amount",
701
+ "type": "uint256"
702
+ },
703
+ {
704
+ "name": "i",
705
+ "type": "int128"
706
+ },
707
+ {
708
+ "name": "_min_received",
709
+ "type": "uint256"
710
+ }
711
+ ],
712
+ "outputs": [
713
+ {
714
+ "name": "",
715
+ "type": "uint256"
716
+ }
717
+ ]
718
+ },
719
+ {
720
+ "stateMutability": "nonpayable",
721
+ "type": "function",
722
+ "name": "ramp_A",
723
+ "inputs": [
724
+ {
725
+ "name": "_future_A",
726
+ "type": "uint256"
727
+ },
728
+ {
729
+ "name": "_future_time",
730
+ "type": "uint256"
731
+ }
732
+ ],
733
+ "outputs": []
734
+ },
735
+ {
736
+ "stateMutability": "nonpayable",
737
+ "type": "function",
738
+ "name": "stop_ramp_A",
739
+ "inputs": [],
740
+ "outputs": []
741
+ },
742
+ {
743
+ "stateMutability": "nonpayable",
744
+ "type": "function",
745
+ "name": "withdraw_admin_fees",
746
+ "inputs": [],
747
+ "outputs": []
748
+ },
749
+ {
750
+ "stateMutability": "nonpayable",
751
+ "type": "function",
752
+ "name": "commit_new_fee",
753
+ "inputs": [
754
+ {
755
+ "name": "_new_fee",
756
+ "type": "uint256"
757
+ }
758
+ ],
759
+ "outputs": []
760
+ },
761
+ {
762
+ "stateMutability": "nonpayable",
763
+ "type": "function",
764
+ "name": "apply_new_fee",
765
+ "inputs": [],
766
+ "outputs": []
767
+ },
768
+ {
769
+ "stateMutability": "nonpayable",
770
+ "type": "function",
771
+ "name": "set_ma_exp_time",
772
+ "inputs": [
773
+ {
774
+ "name": "_ma_exp_time",
775
+ "type": "uint256"
776
+ }
777
+ ],
778
+ "outputs": []
779
+ },
780
+ {
781
+ "stateMutability": "nonpayable",
782
+ "type": "function",
783
+ "name": "set_oracle",
784
+ "inputs": [
785
+ {
786
+ "name": "_method_id",
787
+ "type": "bytes4"
788
+ },
789
+ {
790
+ "name": "_oracle",
791
+ "type": "address"
792
+ }
793
+ ],
794
+ "outputs": []
795
+ },
796
+ {
797
+ "stateMutability": "view",
798
+ "type": "function",
799
+ "name": "version",
800
+ "inputs": [],
801
+ "outputs": [
802
+ {
803
+ "name": "",
804
+ "type": "string"
805
+ }
806
+ ]
807
+ },
808
+ {
809
+ "stateMutability": "view",
810
+ "type": "function",
811
+ "name": "coins",
812
+ "inputs": [
813
+ {
814
+ "name": "arg0",
815
+ "type": "uint256"
816
+ }
817
+ ],
818
+ "outputs": [
819
+ {
820
+ "name": "",
821
+ "type": "address"
822
+ }
823
+ ]
824
+ },
825
+ {
826
+ "stateMutability": "view",
827
+ "type": "function",
828
+ "name": "admin_balances",
829
+ "inputs": [
830
+ {
831
+ "name": "arg0",
832
+ "type": "uint256"
833
+ }
834
+ ],
835
+ "outputs": [
836
+ {
837
+ "name": "",
838
+ "type": "uint256"
839
+ }
840
+ ]
841
+ },
842
+ {
843
+ "stateMutability": "view",
844
+ "type": "function",
845
+ "name": "fee",
846
+ "inputs": [],
847
+ "outputs": [
848
+ {
849
+ "name": "",
850
+ "type": "uint256"
851
+ }
852
+ ]
853
+ },
854
+ {
855
+ "stateMutability": "view",
856
+ "type": "function",
857
+ "name": "future_fee",
858
+ "inputs": [],
859
+ "outputs": [
860
+ {
861
+ "name": "",
862
+ "type": "uint256"
863
+ }
864
+ ]
865
+ },
866
+ {
867
+ "stateMutability": "view",
868
+ "type": "function",
869
+ "name": "admin_action_deadline",
870
+ "inputs": [],
871
+ "outputs": [
872
+ {
873
+ "name": "",
874
+ "type": "uint256"
875
+ }
876
+ ]
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
+ },
890
+ {
891
+ "stateMutability": "view",
892
+ "type": "function",
893
+ "name": "future_A",
894
+ "inputs": [],
895
+ "outputs": [
896
+ {
897
+ "name": "",
898
+ "type": "uint256"
899
+ }
900
+ ]
901
+ },
902
+ {
903
+ "stateMutability": "view",
904
+ "type": "function",
905
+ "name": "initial_A_time",
906
+ "inputs": [],
907
+ "outputs": [
908
+ {
909
+ "name": "",
910
+ "type": "uint256"
911
+ }
912
+ ]
913
+ },
914
+ {
915
+ "stateMutability": "view",
916
+ "type": "function",
917
+ "name": "future_A_time",
918
+ "inputs": [],
919
+ "outputs": [
920
+ {
921
+ "name": "",
922
+ "type": "uint256"
923
+ }
924
+ ]
925
+ },
926
+ {
927
+ "stateMutability": "view",
928
+ "type": "function",
929
+ "name": "oracle_method",
930
+ "inputs": [],
931
+ "outputs": [
932
+ {
933
+ "name": "",
934
+ "type": "uint256"
935
+ }
936
+ ]
937
+ },
938
+ {
939
+ "stateMutability": "view",
940
+ "type": "function",
941
+ "name": "name",
942
+ "inputs": [],
943
+ "outputs": [
944
+ {
945
+ "name": "",
946
+ "type": "string"
947
+ }
948
+ ]
949
+ },
950
+ {
951
+ "stateMutability": "view",
952
+ "type": "function",
953
+ "name": "symbol",
954
+ "inputs": [],
955
+ "outputs": [
956
+ {
957
+ "name": "",
958
+ "type": "string"
959
+ }
960
+ ]
961
+ },
962
+ {
963
+ "stateMutability": "view",
964
+ "type": "function",
965
+ "name": "balanceOf",
966
+ "inputs": [
967
+ {
968
+ "name": "arg0",
969
+ "type": "address"
970
+ }
971
+ ],
972
+ "outputs": [
973
+ {
974
+ "name": "",
975
+ "type": "uint256"
976
+ }
977
+ ]
978
+ },
979
+ {
980
+ "stateMutability": "view",
981
+ "type": "function",
982
+ "name": "allowance",
983
+ "inputs": [
984
+ {
985
+ "name": "arg0",
986
+ "type": "address"
987
+ },
988
+ {
989
+ "name": "arg1",
990
+ "type": "address"
991
+ }
992
+ ],
993
+ "outputs": [
994
+ {
995
+ "name": "",
996
+ "type": "uint256"
997
+ }
998
+ ]
999
+ },
1000
+ {
1001
+ "stateMutability": "view",
1002
+ "type": "function",
1003
+ "name": "totalSupply",
1004
+ "inputs": [],
1005
+ "outputs": [
1006
+ {
1007
+ "name": "",
1008
+ "type": "uint256"
1009
+ }
1010
+ ]
1011
+ },
1012
+ {
1013
+ "stateMutability": "view",
1014
+ "type": "function",
1015
+ "name": "decimals",
1016
+ "inputs": [],
1017
+ "outputs": [
1018
+ {
1019
+ "name": "",
1020
+ "type": "uint256"
1021
+ }
1022
+ ]
1023
+ },
1024
+ {
1025
+ "stateMutability": "view",
1026
+ "type": "function",
1027
+ "name": "DOMAIN_SEPARATOR",
1028
+ "inputs": [],
1029
+ "outputs": [
1030
+ {
1031
+ "name": "",
1032
+ "type": "bytes32"
1033
+ }
1034
+ ]
1035
+ },
1036
+ {
1037
+ "stateMutability": "view",
1038
+ "type": "function",
1039
+ "name": "nonces",
1040
+ "inputs": [
1041
+ {
1042
+ "name": "arg0",
1043
+ "type": "address"
1044
+ }
1045
+ ],
1046
+ "outputs": [
1047
+ {
1048
+ "name": "",
1049
+ "type": "uint256"
1050
+ }
1051
+ ]
1052
+ },
1053
+ {
1054
+ "stateMutability": "view",
1055
+ "type": "function",
1056
+ "name": "ma_exp_time",
1057
+ "inputs": [],
1058
+ "outputs": [
1059
+ {
1060
+ "name": "",
1061
+ "type": "uint256"
1062
+ }
1063
+ ]
1064
+ },
1065
+ {
1066
+ "stateMutability": "view",
1067
+ "type": "function",
1068
+ "name": "ma_last_time",
1069
+ "inputs": [],
1070
+ "outputs": [
1071
+ {
1072
+ "name": "",
1073
+ "type": "uint256"
1074
+ }
1075
+ ]
1076
+ }
1077
+ ]