@curvefi/api 2.23.0 → 2.24.1

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,1024 @@
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": "view",
565
+ "type": "function",
566
+ "name": "get_dy",
567
+ "inputs": [
568
+ {
569
+ "name": "i",
570
+ "type": "int128"
571
+ },
572
+ {
573
+ "name": "j",
574
+ "type": "int128"
575
+ },
576
+ {
577
+ "name": "dx",
578
+ "type": "uint256"
579
+ }
580
+ ],
581
+ "outputs": [
582
+ {
583
+ "name": "",
584
+ "type": "uint256"
585
+ }
586
+ ],
587
+ "gas": "1165338"
588
+ },
589
+ {
590
+ "stateMutability": "view",
591
+ "type": "function",
592
+ "name": "get_dy_underlying",
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": "1173578"
614
+ },
615
+ {
616
+ "stateMutability": "nonpayable",
617
+ "type": "function",
618
+ "name": "exchange",
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
+ "name": "_min_dy",
634
+ "type": "uint256"
635
+ }
636
+ ],
637
+ "outputs": [
638
+ {
639
+ "name": "",
640
+ "type": "uint256"
641
+ }
642
+ ],
643
+ "gas": "1283011"
644
+ },
645
+ {
646
+ "stateMutability": "nonpayable",
647
+ "type": "function",
648
+ "name": "exchange_underlying",
649
+ "inputs": [
650
+ {
651
+ "name": "i",
652
+ "type": "int128"
653
+ },
654
+ {
655
+ "name": "j",
656
+ "type": "int128"
657
+ },
658
+ {
659
+ "name": "_dx",
660
+ "type": "uint256"
661
+ },
662
+ {
663
+ "name": "_min_dy",
664
+ "type": "uint256"
665
+ }
666
+ ],
667
+ "outputs": [
668
+ {
669
+ "name": "",
670
+ "type": "uint256"
671
+ }
672
+ ],
673
+ "gas": "1305450"
674
+ },
675
+ {
676
+ "stateMutability": "nonpayable",
677
+ "type": "function",
678
+ "name": "remove_liquidity",
679
+ "inputs": [
680
+ {
681
+ "name": "_burn_amount",
682
+ "type": "uint256"
683
+ },
684
+ {
685
+ "name": "_min_amounts",
686
+ "type": "uint256[2]"
687
+ }
688
+ ],
689
+ "outputs": [
690
+ {
691
+ "name": "",
692
+ "type": "uint256[2]"
693
+ }
694
+ ],
695
+ "gas": "169867"
696
+ },
697
+ {
698
+ "stateMutability": "nonpayable",
699
+ "type": "function",
700
+ "name": "remove_liquidity_imbalance",
701
+ "inputs": [
702
+ {
703
+ "name": "_amounts",
704
+ "type": "uint256[2]"
705
+ },
706
+ {
707
+ "name": "_max_burn_amount",
708
+ "type": "uint256"
709
+ }
710
+ ],
711
+ "outputs": [
712
+ {
713
+ "name": "",
714
+ "type": "uint256"
715
+ }
716
+ ],
717
+ "gas": "2627335"
718
+ },
719
+ {
720
+ "stateMutability": "view",
721
+ "type": "function",
722
+ "name": "calc_withdraw_one_coin",
723
+ "inputs": [
724
+ {
725
+ "name": "_burn_amount",
726
+ "type": "uint256"
727
+ },
728
+ {
729
+ "name": "i",
730
+ "type": "int128"
731
+ }
732
+ ],
733
+ "outputs": [
734
+ {
735
+ "name": "",
736
+ "type": "uint256"
737
+ }
738
+ ],
739
+ "gas": "1319"
740
+ },
741
+ {
742
+ "stateMutability": "nonpayable",
743
+ "type": "function",
744
+ "name": "remove_liquidity_one_coin",
745
+ "inputs": [
746
+ {
747
+ "name": "_burn_amount",
748
+ "type": "uint256"
749
+ },
750
+ {
751
+ "name": "i",
752
+ "type": "int128"
753
+ },
754
+ {
755
+ "name": "_min_received",
756
+ "type": "uint256"
757
+ }
758
+ ],
759
+ "outputs": [
760
+ {
761
+ "name": "",
762
+ "type": "uint256"
763
+ }
764
+ ],
765
+ "gas": "1699060"
766
+ },
767
+ {
768
+ "stateMutability": "nonpayable",
769
+ "type": "function",
770
+ "name": "ramp_A",
771
+ "inputs": [
772
+ {
773
+ "name": "_future_A",
774
+ "type": "uint256"
775
+ },
776
+ {
777
+ "name": "_future_time",
778
+ "type": "uint256"
779
+ }
780
+ ],
781
+ "outputs": [],
782
+ "gas": "161284"
783
+ },
784
+ {
785
+ "stateMutability": "nonpayable",
786
+ "type": "function",
787
+ "name": "stop_ramp_A",
788
+ "inputs": [],
789
+ "outputs": [],
790
+ "gas": "157507"
791
+ },
792
+ {
793
+ "stateMutability": "nonpayable",
794
+ "type": "function",
795
+ "name": "withdraw_admin_fees",
796
+ "inputs": [],
797
+ "outputs": [],
798
+ "gas": "80848"
799
+ },
800
+ {
801
+ "stateMutability": "view",
802
+ "type": "function",
803
+ "name": "version",
804
+ "inputs": [],
805
+ "outputs": [
806
+ {
807
+ "name": "",
808
+ "type": "string"
809
+ }
810
+ ],
811
+ "gas": "6737"
812
+ },
813
+ {
814
+ "stateMutability": "view",
815
+ "type": "function",
816
+ "name": "coins",
817
+ "inputs": [
818
+ {
819
+ "name": "arg0",
820
+ "type": "uint256"
821
+ }
822
+ ],
823
+ "outputs": [
824
+ {
825
+ "name": "",
826
+ "type": "address"
827
+ }
828
+ ],
829
+ "gas": "3285"
830
+ },
831
+ {
832
+ "stateMutability": "view",
833
+ "type": "function",
834
+ "name": "admin_balances",
835
+ "inputs": [
836
+ {
837
+ "name": "arg0",
838
+ "type": "uint256"
839
+ }
840
+ ],
841
+ "outputs": [
842
+ {
843
+ "name": "",
844
+ "type": "uint256"
845
+ }
846
+ ],
847
+ "gas": "3315"
848
+ },
849
+ {
850
+ "stateMutability": "view",
851
+ "type": "function",
852
+ "name": "fee",
853
+ "inputs": [],
854
+ "outputs": [
855
+ {
856
+ "name": "",
857
+ "type": "uint256"
858
+ }
859
+ ],
860
+ "gas": "3300"
861
+ },
862
+ {
863
+ "stateMutability": "view",
864
+ "type": "function",
865
+ "name": "initial_A",
866
+ "inputs": [],
867
+ "outputs": [
868
+ {
869
+ "name": "",
870
+ "type": "uint256"
871
+ }
872
+ ],
873
+ "gas": "3330"
874
+ },
875
+ {
876
+ "stateMutability": "view",
877
+ "type": "function",
878
+ "name": "future_A",
879
+ "inputs": [],
880
+ "outputs": [
881
+ {
882
+ "name": "",
883
+ "type": "uint256"
884
+ }
885
+ ],
886
+ "gas": "3360"
887
+ },
888
+ {
889
+ "stateMutability": "view",
890
+ "type": "function",
891
+ "name": "initial_A_time",
892
+ "inputs": [],
893
+ "outputs": [
894
+ {
895
+ "name": "",
896
+ "type": "uint256"
897
+ }
898
+ ],
899
+ "gas": "3390"
900
+ },
901
+ {
902
+ "stateMutability": "view",
903
+ "type": "function",
904
+ "name": "future_A_time",
905
+ "inputs": [],
906
+ "outputs": [
907
+ {
908
+ "name": "",
909
+ "type": "uint256"
910
+ }
911
+ ],
912
+ "gas": "3420"
913
+ },
914
+ {
915
+ "stateMutability": "view",
916
+ "type": "function",
917
+ "name": "name",
918
+ "inputs": [],
919
+ "outputs": [
920
+ {
921
+ "name": "",
922
+ "type": "string"
923
+ }
924
+ ],
925
+ "gas": "13739"
926
+ },
927
+ {
928
+ "stateMutability": "view",
929
+ "type": "function",
930
+ "name": "symbol",
931
+ "inputs": [],
932
+ "outputs": [
933
+ {
934
+ "name": "",
935
+ "type": "string"
936
+ }
937
+ ],
938
+ "gas": "11498"
939
+ },
940
+ {
941
+ "stateMutability": "view",
942
+ "type": "function",
943
+ "name": "balanceOf",
944
+ "inputs": [
945
+ {
946
+ "name": "arg0",
947
+ "type": "address"
948
+ }
949
+ ],
950
+ "outputs": [
951
+ {
952
+ "name": "",
953
+ "type": "uint256"
954
+ }
955
+ ],
956
+ "gas": "3776"
957
+ },
958
+ {
959
+ "stateMutability": "view",
960
+ "type": "function",
961
+ "name": "allowance",
962
+ "inputs": [
963
+ {
964
+ "name": "arg0",
965
+ "type": "address"
966
+ },
967
+ {
968
+ "name": "arg1",
969
+ "type": "address"
970
+ }
971
+ ],
972
+ "outputs": [
973
+ {
974
+ "name": "",
975
+ "type": "uint256"
976
+ }
977
+ ],
978
+ "gas": "4072"
979
+ },
980
+ {
981
+ "stateMutability": "view",
982
+ "type": "function",
983
+ "name": "totalSupply",
984
+ "inputs": [],
985
+ "outputs": [
986
+ {
987
+ "name": "",
988
+ "type": "uint256"
989
+ }
990
+ ],
991
+ "gas": "3570"
992
+ },
993
+ {
994
+ "stateMutability": "view",
995
+ "type": "function",
996
+ "name": "DOMAIN_SEPARATOR",
997
+ "inputs": [],
998
+ "outputs": [
999
+ {
1000
+ "name": "",
1001
+ "type": "bytes32"
1002
+ }
1003
+ ],
1004
+ "gas": "3600"
1005
+ },
1006
+ {
1007
+ "stateMutability": "view",
1008
+ "type": "function",
1009
+ "name": "nonces",
1010
+ "inputs": [
1011
+ {
1012
+ "name": "arg0",
1013
+ "type": "address"
1014
+ }
1015
+ ],
1016
+ "outputs": [
1017
+ {
1018
+ "name": "",
1019
+ "type": "uint256"
1020
+ }
1021
+ ],
1022
+ "gas": "3896"
1023
+ }
1024
+ ]