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