-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathextras.json
2374 lines (2374 loc) · 151 KB
/
extras.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"perps_super_market_id": "2",
"btc_lookup_oracle_id": "0x1bd1e5761455759345acc8fa92412ed9a70299f856f3b1ff181df36834dfa083",
"eth_lookup_oracle_id": "0x83a1fe3aaa8827188a82f3717d51c7f10cc371022b90a57d4ff76dcd1806a061",
"snx_lookup_oracle_id_buyback": "0xaf15de8338edbd81c377c53aa4ea51fc27af6cc5b251a0171ccf8fa77990c735",
"perps_keeper_cost_eth_oracle_id": "0xaf7f26a4ce7a047897c0a94c47a921d492a21653c7176b5253e54d535e79e6da",
"btc_pyth_oracle_id": "0x6b3d5740c322ca7156fc97cfa75c47f5545674a53b445af1a28d7ea2747f456f",
"eth_pyth_oracle_id": "0xf9f568ca05c3704f53007de271375428f55008907fdde1d9210f3ee4b6129237",
"snx_pyth_oracle_id_buyback": "0xa9ee0a0bba4228d600518530e4f8ff871b70096b9d185318fac16fbc6ac55d9a",
"btc_oracle_id": "0x9d4125e458e748e54194bbe5b0a86bbf9638f8bc212618474acfb40adcb2faed",
"eth_oracle_id": "0x05716bc7b541125ba8041a3417a1925bf9d5d6f8dbb46dd51ee8ce86c7da159d",
"snx_oracle_id_buyback": "0x945c60af29935f44b3e16f150d5df49978201ca696ae91945eb0ed4f2ed72164",
"perps_keeper_cost_usd_oracle_id": "0x7553d90aaf08c9bee220e85e9178b93f39fd2b71d4c7097e1e8d31f7f56bc01f",
"synth_usdc_market_id": "1",
"synth_usdc_token_address": "0x8069c44244e72443722cfb22DcE5492cba239d39",
"btc_pyth_settlement_strategy": "0",
"eth_pyth_settlement_strategy": "0",
"snx_lookup_oracle_id": "0x410ab5846c1dd949acc8455687568054b23847d7cefeb5990da780f9f116d742",
"sol_lookup_oracle_id": "0x0f0c69f3c5b93c40659ba1b55c017e3680c3150e957cc8e4006dc0d9be6aa63f",
"wif_lookup_oracle_id": "0x0dfa18e3cbafa9b318b7b278a6f20909c028d490fb4793c5b94332c620a4e442",
"snx_pyth_oracle_id": "0xa9ee0a0bba4228d600518530e4f8ff871b70096b9d185318fac16fbc6ac55d9a",
"sol_pyth_oracle_id": "0xe28bcf3d1d809b1143dec3309f4943ad7a52afd7a6ae6466f556c93579be1c16",
"wif_pyth_oracle_id": "0x1e531e2a369c53fdfd401559f470d324de02648cee5a195d01a86f3a63b3e079",
"snx_oracle_id": "0x6bb1e11800296d18ebc7c472161092b444ad84a5cdea32a153c5371617ae4e31",
"sol_oracle_id": "0x9ba2158eb344de9680881f3bc7dc3dce3bff1ecf5c2f0f0dc22f8dd608ae7db2",
"wif_oracle_id": "0x6881d5d260b63d9eb72bb02632c231f80f5f78b61d4ea0b7587e478e8d53d2b7",
"snx_pyth_settlement_strategy": "0",
"sol_pyth_settlement_strategy": "0",
"wif_pyth_settlement_strategy": "0",
"w_lookup_oracle_id": "0x220c1a7ec46d09b652425eff53d295b1f08046e9aaff89da32a9daf55c7e01ce",
"w_pyth_oracle_id": "0x84c48fb764d89a0e63606160ba7096d8436ae2d37c6e9c690f2bc6669169db5b",
"w_oracle_id": "0xfdc5a18961585750951026be016011a70421488781d3a44389b1344a195fdd66",
"w_pyth_settlement_strategy": "1",
"account_timeout_withdraw": "86400",
"bundleSalt": "snax",
"buybackStalenessTolerance": "30",
"buyback_fee_share": "500000000000000000",
"buyback_premium": "10000000000000000",
"buyback_snx_package": "buyback-snx:3.3.14",
"deployer": "0x48914229deDd5A9922f44441ffCCfC2Cb7856Ee9",
"minimum_liquidity_ratio": "1250000000000000000",
"owner": "0x48914229deDd5A9922f44441ffCCfC2Cb7856Ee9",
"perps_gradient_breakpoint": "800000000000000000",
"perps_high_util_gradient": "10000000000000000",
"perps_keeper_cost_package": "op-gas-price-oracle:3.10.0",
"perps_keeper_l1_cost_flag_gas_units": "3000",
"perps_keeper_l1_cost_liquidate_gas_units": "28500",
"perps_keeper_l1_cost_settle_gas_units": "22000",
"perps_keeper_l2_cost_flag_gas_units": "7200000",
"perps_keeper_l2_cost_liquidate_gas_units": "1200000",
"perps_keeper_l2_cost_settle_gas_units": "7200000",
"perps_liquidation_max_keeper_reward_usd": "30000000000000000000",
"perps_liquidation_max_keeper_scaling_ratio_d18": "300000000000000000",
"perps_liquidation_min_keeper_profit_ratio_d18": "300000000000000000",
"perps_liquidation_min_keeper_reward_usd": "1000000000000000000",
"perps_low_util_gradient": "25000000000000",
"perps_market_package": "synthetix-perps-market:3.10.1",
"perps_super_market_name": "High MCap",
"pool_owner": "0x48914229deDd5A9922f44441ffCCfC2Cb7856Ee9",
"pythSnxFeedId": "0x39d020f60982ed892abbcd4a06a276a9f9b7bfbce003204c110b6e488f502da3",
"pyth_price_verification_address": "0xA2aa501b19aff244D90cc15a4Cf739D2725B5729",
"referrerFee": "200000000000000000",
"salt": "andromeda-dev-2",
"sc_pool_id": "1",
"settlementReward": "1",
"snx_package": "synthetix:3.10.1",
"spotStrictStalenessTolerance": "60",
"spot_market_package": "synthetix-spot-market:3.10.1",
"susdc_issuance_ratio": "115792089237316195423570985008687907853269984665640564039457584007913129639935",
"susdc_liquidation_ratio": "1005000000000000000",
"susdc_liquidation_reward": "1000000000000000000",
"susdc_min_delegation": "100000000000000000000",
"synthUsdcMaxMarketCollateral": "100000000000000000000000000",
"target_preset": "andromeda",
"arb_lookup_oracle_id": "0xe9ab31e82757b7f4199e3a395789fa9b6e2426f14dcea8066bece2ed954dc084",
"avax_lookup_oracle_id": "0xe285e7c7167597feb9b9d2cf16f9ed3ab48279774d8326742e7efa0d7d8318b9",
"bnb_lookup_oracle_id": "0xd45347020b127eda90a7fc93fb99cd0883ab6d07517fdce7881d0553ed610950",
"bonk_lookup_oracle_id": "0x3c6595c585c3443bb29468f7b09f8af7ca8ec298c6760dfac0b012d19db1026e",
"doge_lookup_oracle_id": "0xe0fbca462de3e1686cfdd375049bc6e6f3da942f4f1aaf2fe36a36bfdc229a21",
"ena_lookup_oracle_id": "0x3ede9e9bc62ec84082a2d6d6345f4ade24147f0bda950c32c47f2d2108e48582",
"ftm_lookup_oracle_id": "0xc54a9f9527704ced24dc1d09e2e38ac73b891b2cc8315f5c20adbafd768021ad",
"matic_lookup_oracle_id": "0x07a70ddd22f36b45b700a728ccbda924710301e95ef22dfe14f6ad5689f0c0f1",
"op_lookup_oracle_id": "0x727e50b0ec52c173ef5be7759e4d4f47e80de1d3fe30785c550f7275bfbb0eef",
"ordi_lookup_oracle_id": "0xd1b7b1f46019a71b8a43b7e263e226709f1b67d8c7b80d9cbf6156abecd7853e",
"pepe_lookup_oracle_id": "0xe4351e845a565aa1cdb6879e935cd3ec92bc6fea42256862974dd0806535b9cf",
"rune_lookup_oracle_id": "0x4ba80ce59754acfd9bf4aa48deb81d661d5b70a2157b87a22e2662713e4e20ca",
"arb_pyth_oracle_id": "0xd3323221062e69234315f0f23abd6d7969daba9f71ffb91767c3e8c32a9d9c6d",
"avax_pyth_oracle_id": "0x78811dddcbc17f8ff41f7379de65ad9a7e9e417baaa8790d6c60fd6978f4a67c",
"bnb_pyth_oracle_id": "0x6fc41a8b636c689dbc65bb95d6a3ab0ab0ac68f790925782b145742ed85ff2cb",
"bonk_pyth_oracle_id": "0x8e9a1fe464645fa0acc9d42fa2b3d995007c9a4d8c32bb453c854f189276c66e",
"doge_pyth_oracle_id": "0x21df727697384ad1dfdb5942ade9908465f84002567fe040d87de4f6ed8b3f1c",
"ena_pyth_oracle_id": "0x0cb2c910e1eea54e8e432e0b040277f933015442a482001d197c805dda7e0b73",
"ftm_pyth_oracle_id": "0x6c282467bcca714e04170e95a863813673562f85b33b71873a2d08ccc0aa6cf1",
"matic_pyth_oracle_id": "0x09f7ef1688eeb812fcbc5433140a2a30d10e471d4dd14d722a24bf6869746cd3",
"op_pyth_oracle_id": "0x66f4ef8b3bd4e40800d59a2c434435b4c942dbb3eac3378e9bbb8281af3e54dc",
"ordi_pyth_oracle_id": "0x5b71ad7620c28f643a498b43def0625e21d20aa89c95d9fdfc4db515eb302153",
"pepe_pyth_oracle_id": "0x33c3e679ac1b69e003d436053c7ab52db0623b9c88274ca6f0f6cae39abb8434",
"rune_pyth_oracle_id": "0xd0ee193472039dfd8ec5731447ddb604d8e49e439baae5e70e7ee94696c98473",
"arb_oracle_id": "0x2dac41f78132b6e08a663bfd4e2ec027c861ae0139197b776d31f2100ec54249",
"avax_oracle_id": "0xa54c63d3347f6ca0eb0c913e2ee529d7d84000127a7cb2539237c92d6f0816d3",
"bnb_oracle_id": "0x9b78fbc4e1b0fc8bd0d362426a1e074225191a936955bc615177f07d4de9816e",
"bonk_oracle_id": "0xe90d62b32fbed3b7e2f5394aa8bbf77d3ce0226a0788220167eb31c95df7694a",
"doge_oracle_id": "0xa4bf14a6690d9b86df9987e3a1c9d28f5d9d6ee6904ae8cc80380558a235d6fa",
"ena_oracle_id": "0xe2c441c9298775cc08de14285a6b5a67c5d6ae48d8317907a5202642f32b542c",
"ftm_oracle_id": "0xfe38a0de189c390aaffda0f7c985adc9cdba991d87e273ac89341a0dec8c8717",
"matic_oracle_id": "0xff589bacf732fb8a8f695bd2f1f8d15c669ab16b9986cc01886a66770bf684a3",
"op_oracle_id": "0xe2274b33313643bebaec3ae7e2cbe2441969a728b936370e946e3d7204d3b955",
"ordi_oracle_id": "0x69abb2b6c1b7630efb1f5417a6c711952ba23278d4d1c92e6dcea225bdb6a13b",
"pepe_oracle_id": "0x6d5f11bfe0bf1a84afa79a47b8040e932e959081478e807fcce08f591fb563a7",
"rune_oracle_id": "0x59d77cd9f960f15080d7f777383644521cfb4bdba6f56e6efdc73e8b93d5ef0e",
"arb_pyth_settlement_strategy": "0",
"avax_pyth_settlement_strategy": "0",
"bnb_pyth_settlement_strategy": "0",
"bonk_pyth_settlement_strategy": "0",
"doge_pyth_settlement_strategy": "0",
"ena_pyth_settlement_strategy": "0",
"ftm_pyth_settlement_strategy": "0",
"matic_pyth_settlement_strategy": "0",
"op_pyth_settlement_strategy": "0",
"ordi_pyth_settlement_strategy": "0",
"pepe_pyth_settlement_strategy": "0",
"rune_pyth_settlement_strategy": "0",
"arkm_lookup_oracle_id": "0x67635866d1d466ba9993db87e6bc4b108409da855398fc3bc90b2defd686d11f",
"axl_lookup_oracle_id": "0xd6e2f670cd72cee54579bc14eaff2738341135c1f299d1b3ac4c98fd347e25e4",
"bome_lookup_oracle_id": "0x8a41524256def46d8f77119da557254da8b0680ad6d384bdb67957cc4617cfef",
"ethfi_lookup_oracle_id": "0x8465c2b25737df919ad39a5ecd100e8b733cd3b08a3797b10824c221dbfac8be",
"gala_lookup_oracle_id": "0x8e841df66fe0a4ec0d77938401189923317de98cdabaaa6ee05251b19c227337",
"gmx_lookup_oracle_id": "0xe552dc001abdedb9732df37c609a0df3a0964ad7c3d08127bf1bd08547b8c27e",
"inj_lookup_oracle_id": "0x5a760d146aae339f7126c00f11b18c4ea5b4249167168c087ef0843451189547",
"link_lookup_oracle_id": "0x80212510a6799b7086d20806095d515de21e225fd8579eb09526c8dcfdb0f04b",
"pendle_lookup_oracle_id": "0x3bb50d0cb7db2633a5a4dde962d013e49e113681391af93a2bbcc5346d720f8e",
"stx_lookup_oracle_id": "0xc150d730f1184420f1420d4686c8285d33430875e9930e39f55f0ce1016ab8d4",
"sui_lookup_oracle_id": "0x83adc149cdf3a40691f9453d90d03f71d68854b0ab6181be9ea37383591997cd",
"tao_lookup_oracle_id": "0x811a78f63e3697e0f6a02b18291256e4a8f792e37783901b667adc468438df13",
"tia_lookup_oracle_id": "0xfeaa58e50ad76e85e206e21e07763927438bea0988d400173756788936bd2658",
"ton_lookup_oracle_id": "0x39d0e8aad32d8eb5341efe5e3f030fad5212af012e418220d05265a0d2bcd77a",
"arkm_pyth_oracle_id": "0xfb291279e6d2e488541dc18ff7249feb910975b458fcc5ce4bd4e17c3528f0d6",
"axl_pyth_oracle_id": "0x1a4a20a0d9755cd97fa01f5dca56daf1fa62cd2acc900122f4c71aebd742f8b9",
"bome_pyth_oracle_id": "0x188f755ac2b82eec9b653fb36f3808c36b67b6bf0d616688a1e9aa1bfb3ecff6",
"ethfi_pyth_oracle_id": "0x714af30d095f25364bf8a7a50f9ba6a06687379d694dd48537efb4bfe28040ce",
"gala_pyth_oracle_id": "0xcdbae55b5a09df5ff3c775c246be7d2b30baae1623d7189dcd78fd51d44efb22",
"gmx_pyth_oracle_id": "0x96e7d432270077e96fc661804bd965c06a69afaec14581c96e7b128cde552c25",
"inj_pyth_oracle_id": "0x6ecc485f479cce251117e6f799e76be6ce99bf85d2d6981e0ef3b2f62a3a4521",
"link_pyth_oracle_id": "0xd1ae0fa49c7558fd2897b6d5854937a4208e4b9d0b08338f3332976f0f9960af",
"pendle_pyth_oracle_id": "0x396964d08cecb7b81ed36fd4161a746fb6e2e6ba071458146b521870746f9379",
"stx_pyth_oracle_id": "0xab5ee6d268c493c309e0f9d455d69bbd6175d8d21ead4483c85d6279f4b3b9b9",
"sui_pyth_oracle_id": "0x0e4d41421db2be5c25fec3fbba183e3cb59b1ae620dfd8c29201cc11b495b886",
"tao_pyth_oracle_id": "0x8a61ab68e7de32c41155510424a44d5323a7f51baa97fe7fa6282721354897e2",
"tia_pyth_oracle_id": "0xff90b8553629a3a28a11e0b25e04c0c63dc78364629fb1a5f714377a46b2e48c",
"ton_pyth_oracle_id": "0x83fbb853f17a316de47c88f3b12d5911db671b55f2f74fce0ebdc54d9aa145ef",
"arkm_oracle_id": "0x856e819df9b8e992d53a8f3b11f7999e6286f06e5879f09115200d2ed981a1a8",
"axl_oracle_id": "0x14c0816e4eacf3693fad7fa1fde423c3409a8e0d3f5c5be42f66566022e2206d",
"bome_oracle_id": "0x79c08c8e773fd69c87414f41d7a58dd257c6ede1a4f8fb080de51ac001df25e4",
"ethfi_oracle_id": "0x0ef5484d5f9fdddf8947de43c58aa9a5dda34ec18594a4506a9c3ffda848b1a5",
"gala_oracle_id": "0xa83378eda69730e95f061771aa378199dec835b588b024e9b3771d40b999b754",
"gmx_oracle_id": "0xac6ef8ad4f1abaf1c7a27f2f0dfd2d5212d28a9c306ec7a33b928969cb5de574",
"inj_oracle_id": "0x09d036738c239857f12dad72a336f6600ef4533ff6dfca96241b66c2d1143dbd",
"link_oracle_id": "0x7993b7d2b0b693e880499c04c145ee84b05cba685aff11f11aeac61f14ef68be",
"pendle_oracle_id": "0x28ae0fc4b91423522a3ac5664bebb2bc6984327de8eb0c4349f5692ad74ae092",
"stx_oracle_id": "0x2de6f2a83ad53da14cad09b1859a773d9f6dcacc98728a1ab8cd0ba511631e4a",
"sui_oracle_id": "0x726ab18d70615171d50d6bc5c3c58169218e56b010377754e08021df450f39dc",
"tao_oracle_id": "0x8c00f8a5be1c29c16eba23c0276899932daa888260d7a49f02f886c5ca845037",
"tia_oracle_id": "0x5811178ef7a0c65d9d853262f9afa9a091b0c804f8d0925f484cb6fef8bf8880",
"ton_oracle_id": "0x13fa565e2bf1f44a3436d963d3da189df73138019759a2a1599bdcec1dd2b7bd",
"arkm_pyth_settlement_strategy": "0",
"axl_pyth_settlement_strategy": "0",
"bome_pyth_settlement_strategy": "0",
"ethfi_pyth_settlement_strategy": "0",
"gala_pyth_settlement_strategy": "0",
"gmx_pyth_settlement_strategy": "0",
"inj_pyth_settlement_strategy": "0",
"link_pyth_settlement_strategy": "0",
"pendle_pyth_settlement_strategy": "0",
"stx_pyth_settlement_strategy": "0",
"sui_pyth_settlement_strategy": "0",
"tao_pyth_settlement_strategy": "0",
"tia_pyth_settlement_strategy": "0",
"ton_pyth_settlement_strategy": "0",
"sstatausdc_issuance_ratio": "115792089237316195423570985008687907853269984665640564039457584007913129639935",
"sstatausdc_liquidation_ratio": "1100000000000000000",
"sstatausdc_liquidation_reward": "1000000000000000000",
"sstatausdc_min_delegation": "100000000000000000000",
"synthStataUsdcMaxMarketCollateral": "5000000000000000000000000",
"erc_4626_to_assets_ratio_oracle_id": "0x8b974cb78abe3bd48345687ac68dd934dcad3229e07dfe23c0f378bddefc7be4",
"synth_stata_usdc_market_id": "4",
"synth_stata_usdc_token_address": "0xB94c6E4f5162717c6fAb1Eeab8f0296307F91528",
"perps_lowcap_super_market_name": "Low MCap",
"aave_lookup_oracle_id": "0x76b9d5fbc0eb54068288aa0ea3361500a31f658460ba106bd015dd94b227ba0e",
"ada_lookup_oracle_id": "0x0206010b584d217aaaabd4c581a1f3b833b4c766115a1e6afaa7a4f55c0a0b98",
"algo_lookup_oracle_id": "0x286beb073b79274c678b8af5a78618f42a80d76cb74683ec38ea57446ee77814",
"apt_lookup_oracle_id": "0x8f66b7bf96ba81b3c674ccdfa6db3909af1f9d07e2f5dfb3cfff6a1796123f50",
"atom_lookup_oracle_id": "0x3ee00d70b3b195998d0bb90d80c96386c9076fe0a4dc9ccbd2eddb9bf2ee220e",
"axs_lookup_oracle_id": "0x30724b1fd8395c9da0206db65d24109081b5b6cfb91519c1ddc48489746c4b80",
"bal_lookup_oracle_id": "0xd1798a56faa9e56931f4e4ff4ef5c9df0d86146f3ee4355ae16db8d7aa0ebc2d",
"bch_lookup_oracle_id": "0x8cea116358785409820cfcd774403530686609a1dc829edebe047cb5a9500ac7",
"blur_lookup_oracle_id": "0x645cf5b0c872557936c485a5cdf67230beb3d21ef910348fee00723300f97e60",
"comp_lookup_oracle_id": "0xd30c258fa50822c617589d2ee24d530613beb5d61024abed8a006736766d3ea0",
"crv_lookup_oracle_id": "0xd031ee210426a5c868c7d855d9e1b9136a6eb5558d1465f35d9231c05c41c0a9",
"dot_lookup_oracle_id": "0xe53d4e059dda029c7623148b938519d93e7d10ab7f0e546f5a3a0560c5a11cca",
"dydx_lookup_oracle_id": "0x605625fd3404bd08190f8fd4928dcbe711553e08521337937027b52eeb3cbcb3",
"eos_lookup_oracle_id": "0xe8a9380fd09c1ddba662885dbdf375fd164e9f55478ee27f71f2599e3c59b4c2",
"etc_lookup_oracle_id": "0xde32e3fee321eb203dd85d4a5faf0cc5024b84324200292e02a1b885b63b2387",
"ethbtc_lookup_oracle_id": "0xdb53ba4d96bb605181723cf23bde09241fbf02aa261091732c1848e013900cc3",
"fil_lookup_oracle_id": "0xe0fe0196a84c3b8aa2d2f64057545b87ffd5777612b5e9522556adec2399b9af",
"flow_lookup_oracle_id": "0x2656d7805852c3d24a218d0c515f1c182262e212df67d9c94ce5de111cf19016",
"fxs_lookup_oracle_id": "0xfe527daffe2139dec0f8269807a1168ac2fc5525f207dfb2605c9fd476074b97",
"grt_lookup_oracle_id": "0x5960ebd65062f544b3bf95ddb9df328055146083b462c3ee43549f431fe9bcc9",
"icp_lookup_oracle_id": "0xf7265469e9860bdea1693e6d9662f14bee234c63086f19eed3e28cb79836811c",
"imx_lookup_oracle_id": "0x392c5b1584e1d2d68cc2471c541f47322cfd2aa1fcc8cf0b172af4773531a439",
"jto_lookup_oracle_id": "0xa1ac0cf61a9b9ad3b4ec3ea76a90e574a4bdfa07e85d318533888a0f89cf627b",
"jup_lookup_oracle_id": "0xd34c9d861a61f6a3dc12eb461613faa294ec92ff7fde6a4d3d65385a78821503",
"ldo_lookup_oracle_id": "0x9026252f7fb08f3b396ffbaa7d91ac8756b3a5d5410cbf9a659bfe9564476f70",
"ltc_lookup_oracle_id": "0x8058a3a6c41f75886c36bdd9d6a744ce1bfda6290f884dd5e86b09b6011922af",
"meme_lookup_oracle_id": "0x40c2b9efc7701b61edf7f8563f6082846305bda6bb1a90a51d6b476978328ea9",
"near_lookup_oracle_id": "0x5262074d1979527bd9c7d974325496eb6902b8c4843b2f62ca0c5f20feb8920a",
"pyth_lookup_oracle_id": "0xb6e7906e668b35194ba5a90567f31c23051f0c098fd0789532e3ef0f3bb48991",
"rndr_lookup_oracle_id": "0x71813522e528b34deb7ca10f017bd537cc57abae148d9679eb6114b76b5e2bf4",
"sei_lookup_oracle_id": "0xa83183f25a24ea777a3b7ff28d3ac149f00f745b722777b09fbe72398eada272",
"shib_lookup_oracle_id": "0x7c685d1326458c8044890b389b710925dec5b6cedee25125df415921bf0be672",
"strk_lookup_oracle_id": "0x02deb6b8cd20b86f74947a27a67dda7b616f5e25e6bb7a6c12a34fec9937963f",
"sushi_lookup_oracle_id": "0x2146886ba1d678dd97618c7bf261808810a85b1db6edd5e8c3df7edcef9020c5",
"trx_lookup_oracle_id": "0xcba70c19a6cf2224dbafa93a3a7ff637951ba2a4eb7d4d3275962ce4b1ce819c",
"uni_lookup_oracle_id": "0xfa71db811767fbf1146d1d886644d986c472b24d41f2aede51874b7d2812f4d0",
"xlm_lookup_oracle_id": "0xb207d20f5d66e74aac50b952a7bfca34cec1ba4cd2bce65c69b7fb7e0652f603",
"xrp_lookup_oracle_id": "0x758dfa2da28e13d1101183f19c11c6d791b237433a9699714f5e91d72c38512f",
"yfi_lookup_oracle_id": "0xc51a3f6800929e12db5ac03d6ec98c719377509ac4a55fbadf054da36b296597",
"aave_pyth_oracle_id": "0xe5923091472b20af0b486b34daf9b0ddf28eb67cf3a87cbd567f1019106a9a46",
"ada_pyth_oracle_id": "0x9be9b090eebca93439d17f254a374f6b8bae48d5fb76a31127d3b5fd322606c9",
"algo_pyth_oracle_id": "0xd8a3a0204bcea0c2ed1f920788d19bf33678fd01515fab3519523b58d272002f",
"apt_pyth_oracle_id": "0xd6d2ed1ae15d4aab7fe67071d70b179a14ba57c10edf60859a82f1357a404912",
"atom_pyth_oracle_id": "0x684583f6aa71b42e629074e6c7dfe99b46736bafb103b5797492ef02e02f6691",
"axs_pyth_oracle_id": "0x67fd06964b1068a0849d50622b6b52665602e1335344390a2b288840431e4690",
"bal_pyth_oracle_id": "0xb5f2bd407cd6918acdf63fb25d26593786dcc3bd84d3b6cad126196aa67b0da3",
"bch_pyth_oracle_id": "0xa0a4aee691b75f0d3a2a41b930917e281c9fed61b2f4182d396f4c37056b1981",
"blur_pyth_oracle_id": "0x69754aaaad6b9a1e565fd42c8d136a7d74312a42db73880ae27e95addc541103",
"comp_pyth_oracle_id": "0x397b9e0697b27f57f0617973c7e47a7926f83f9067aa37af2dd8bfed24d089e0",
"crv_pyth_oracle_id": "0xea184fa95d78b12bf86bf9a6d3d11fa572052de496c5213a089d97ef5bc37f07",
"dot_pyth_oracle_id": "0x41749c87c58c03174dc3813d83f70ee00e04202d3e73d79354da4910f780fb47",
"dydx_pyth_oracle_id": "0xc6d7ee5d5243dd9dfec2055a7806944ca5b8a6fa13bb926eccec940071346dc7",
"eos_pyth_oracle_id": "0xdcdc794c8d0556b4397092b2184d84d4b2dd71e40b8b63a9a4964ac2da03063f",
"etc_pyth_oracle_id": "0x38c2b0b9d857f5dda5198e3db5dc530013a5c1cf7d4c76cbd6c2a299af1840bc",
"ethbtc_pyth_oracle_id": "0x9021dd5898e510521f7252e181c55729c2cbb3f7f3d505f144c04940dd3434e6",
"fil_pyth_oracle_id": "0x526c3ae2e56d9ef9659ddd3b37f3b843402baa316d66a43fc11ffbaa1827f020",
"flow_pyth_oracle_id": "0xcf9c75c6fc7fc38cfd72407b77f5beaa59b36c1978d2da86f2d6ca926c702499",
"fxs_pyth_oracle_id": "0x436fdacfec271c8094f41d085ce2af035079c779f5abc5d3869ff135ed5857d8",
"grt_pyth_oracle_id": "0x1a9ae951d44661f71d5071289ee2c34864c71a44fe83a5133d3a17a046b9546b",
"icp_pyth_oracle_id": "0x5d8fbcdfa7d81ba448b9d7638e98e1ec6ea1cc460fde3eaf910a8477c26b6e98",
"imx_pyth_oracle_id": "0x5d4530bed7ebeee3d7eac16e3318471502f3bc2a73355200a5967ebf07dcca54",
"jto_pyth_oracle_id": "0x2fa344ced880283cea1906b8044c74148c9fa6f0d1f3294d0606cf038d81ea75",
"jup_pyth_oracle_id": "0x81dc2ff51a71f08871755abd3229cc44481e796d2dddeae61021323c44869985",
"ldo_pyth_oracle_id": "0x95cade0fa3244173fa49b53d92f963be8de35a6e0498e40d239c9a3dcf35712b",
"ltc_pyth_oracle_id": "0x8e7479e8472b1bae41a09281927224e99cb1082e01f52e4a1f48fbc489f4e859",
"meme_pyth_oracle_id": "0xa3b0a1fb9507c9e70bdec75dfcee8df418000f50705b6c573320ed0281b6ff6f",
"near_pyth_oracle_id": "0x81eb5e1f5e3c2d3c73ed340840084d1387ecdf0a236c5313e6604c188ef2b546",
"pyth_pyth_oracle_id": "0x677f0fdd08a29165a0a76517fc397605c96da2bb3cac76083163d49da2121c6c",
"rndr_pyth_oracle_id": "0x50c4108d9a18e2179b58dac2a5182356dc8b77731c43a80f2703c3d8523cf71c",
"sei_pyth_oracle_id": "0x957068f86f2fbe115c42d3a141ac5061a186666ad7068d037c8647e0d4ee7c1a",
"shib_pyth_oracle_id": "0xcf5b1033ee72e10976ec2aa17b9cddb5ca2eeaa005a828ae08e5e16d11504cac",
"strk_pyth_oracle_id": "0x4c13accaffdc7b700aa961e3ca0c24a0d7a5ece4ccc19d4a7b6fb8c04861b84e",
"sushi_pyth_oracle_id": "0xac562de87386fd48cac25550197c70b4b7c6e7ef3d41118b2eda6261ec59db13",
"trx_pyth_oracle_id": "0xb6fc7227f100b7a940cbfef3ccb52dbd8811888b0c2d2d61f355b45b5da7bbbe",
"uni_pyth_oracle_id": "0x3f3a0d8e7ddf6900b1030a57619ddae64fcfc14076ca630fecbbdeb2fda7e82c",
"xlm_pyth_oracle_id": "0x50aaeeded38e6e4324620f58a317d81010f9184094cb7ef5272a03460d7646a9",
"xrp_pyth_oracle_id": "0x15022ea086daf458da80c8c2392c3514c7b2e705ac0f6eed2cf7b1fe0c32879e",
"yfi_pyth_oracle_id": "0xd57712321e9c0e8ab79c619a250a1573f12597e6b95d0f1d81060b9f6d6256a1",
"aave_oracle_id": "0x4f5362a58bdc8850ac57bb98017a9c2132c466b48a2b146800b32bb93ab41951",
"ada_oracle_id": "0x1401827c68af970cd56649f58862ddff0f2e4428e459a213be22c0fbea62cf36",
"algo_oracle_id": "0xd1a65b15a4cd0bef15651460d445f09306a8eeeb1b931398cf000b00c75d4da0",
"apt_oracle_id": "0x33cbfb72bff5a648f299e53da0c004da1497d7baa5bb8dddceb8967b9b653453",
"atom_oracle_id": "0x75ac46fc2f94da88cb41701b1741304288a3f214653422727cb679237083c668",
"axs_oracle_id": "0x41ea8556c78a04a30af77b2907a62b40cf80c0560b0a1957df1dcaf77c2ec883",
"bal_oracle_id": "0x6309504519f7fb8e8f47203809b4410bc85805d46459162f12512cc07d4c3f48",
"bch_oracle_id": "0x660b83c418163498fb8a674defc3eb8df2f78a52c437e62e491054cd38bfaee8",
"blur_oracle_id": "0x19d217f2bd662d20e3a3f5f481503a37cca66a8591aee0b3b040f6c51790d65f",
"comp_oracle_id": "0xcd6d2d27905d81e19d2e62d1036e9eb311029cad2bb9e2279c518aace6d8dae3",
"crv_oracle_id": "0x0cd19e32660ae0f8814920ecc014a043d27b345faad0f5986051a263a6292926",
"dot_oracle_id": "0x4871edd0e4e3fdcea9f6c1da04765f742fa75ef3d9349ad212cf7c49805f2f3c",
"dydx_oracle_id": "0x1b5883902a12badd802d1f54fc7ecba3b349961322cfea58878e924a2bbd2705",
"eos_oracle_id": "0x7c239ad96f995ba6f9547b1a14b957d63f67d6d38bb01b15056d6366bdd390e7",
"etc_oracle_id": "0xb654ae1e3a01bb2b08dca2926078f9b3a2ea00c18176c3ce13ffc59b4ffab29e",
"ethbtc_oracle_id": "0x910799c6278d36c6d08caef499a067de06d27ed9d7366e94d14a40de2ae9dbae",
"fil_oracle_id": "0x38c32de5d417a0a6b22136eb2744b144bb0990553f36cea2e9a1ca5a5eb6bbcb",
"flow_oracle_id": "0xd597df4fac092067d1cf880aaaa63dfdd88f7fed51864d075f1c5476abc1a5e0",
"fxs_oracle_id": "0xe52f5c019872732802baf393974db1100b1ff09ba01b2f74b50d0f992536cef9",
"grt_oracle_id": "0x026301421cd63dc9d9badc5a400045ed32aac31c3fdbebf119e3f1ace222c6b4",
"icp_oracle_id": "0xf88b26b5b6b008dbb8eda5c4e6983b42b046811e9f64bcf42e4271beb0cd545b",
"imx_oracle_id": "0xeff1c07e96fceb71ef19cc41faa7195682d82aacb6550fb583d21daf73ada4be",
"jto_oracle_id": "0x0001461ba3698c1f062c2b7c97ac0bde3c75aa45b51bb95d2aa495669af6193a",
"jup_oracle_id": "0xb09711ef42b8d33c87462da68e713b0086df5d4461ca9092203e153fafc77fb1",
"ldo_oracle_id": "0x867c16e2b20d0663580c3619a3d2202f7aa54a28c515e9ba6abeb323519caa67",
"ltc_oracle_id": "0xda58da0857ea342ae5e44002874af8c44d9c9923bc68bd2eade71ffada9d9eeb",
"meme_oracle_id": "0x627b5fb1dc1d7d658ba50f1e753c6a918df8393da7523e221a55f742eaace6a9",
"near_oracle_id": "0xa79133b7d52f3dd0ce12c0988094199c7b5aa70730916e97ca3c0a96e04c26d7",
"pyth_oracle_id": "0xdb56c1b57ccbe25cb6d65f8373253eb0d44d97e357df641b5d74f27bc6ef16a1",
"rndr_oracle_id": "0x6652568932abae5dcd709408cd9550d9f699a235071b89cb7ef004df66701ae4",
"sei_oracle_id": "0xb7ee0d269b8b0bb49933efe9f89b38f07761a7bc8e4f6719fd511009564920fe",
"shib_oracle_id": "0x7b1123efa3b39f57e61fdae5db3db096c864f2e79c76f9f13dcd13fe858e709c",
"strk_oracle_id": "0x47578a39e53cd2de5bbdc39afde97f20d7ef4fb62b9aaaa1aa847c63893e8d78",
"sushi_oracle_id": "0x82180e9565ba4d8ee6bfa3155540d53cf4ac61ee964db50af697b79164f99ec9",
"trx_oracle_id": "0x6f4226d64bee2dcc3751d5382e87e167a0ecbdcd45a590d3d5dd5463c2ebd633",
"uni_oracle_id": "0xb9a5b79cc51708f1f94511865b150697aa78d97dc086ccb1aaa5705372573154",
"xlm_oracle_id": "0xa4bdd8d4097b654a70cdb663c38b019540fb59e27718b73937913f81964a7ed2",
"xrp_oracle_id": "0x4baa6aa08a425f44f1e619f40a26d51a1d7f13e2d98bd3b85269769411135889",
"yfi_oracle_id": "0x07efc92c6e13546c4c6ebb74ce628d48079b7fcf17a133b7395cb86b907d6358",
"aave_pyth_settlement_strategy": "0",
"ada_pyth_settlement_strategy": "0",
"algo_pyth_settlement_strategy": "0",
"apt_pyth_settlement_strategy": "0",
"atom_pyth_settlement_strategy": "0",
"axs_pyth_settlement_strategy": "0",
"bal_pyth_settlement_strategy": "0",
"bch_pyth_settlement_strategy": "0",
"blur_pyth_settlement_strategy": "0",
"comp_pyth_settlement_strategy": "0",
"crv_pyth_settlement_strategy": "0",
"dot_pyth_settlement_strategy": "0",
"dydx_pyth_settlement_strategy": "0",
"eos_pyth_settlement_strategy": "0",
"etc_pyth_settlement_strategy": "0",
"ethbtc_pyth_settlement_strategy": "0",
"fil_pyth_settlement_strategy": "0",
"flow_pyth_settlement_strategy": "0",
"fxs_pyth_settlement_strategy": "0",
"grt_pyth_settlement_strategy": "0",
"icp_pyth_settlement_strategy": "0",
"imx_pyth_settlement_strategy": "0",
"jto_pyth_settlement_strategy": "0",
"jup_pyth_settlement_strategy": "0",
"ltc_pyth_settlement_strategy": "0",
"near_pyth_settlement_strategy": "0",
"pyth_pyth_settlement_strategy": "0",
"rndr_pyth_settlement_strategy": "0",
"sei_pyth_settlement_strategy": "0",
"shib_pyth_settlement_strategy": "0",
"strk_pyth_settlement_strategy": "0",
"sushi_pyth_settlement_strategy": "0",
"trx_pyth_settlement_strategy": "0",
"uni_pyth_settlement_strategy": "0",
"xlm_pyth_settlement_strategy": "0",
"xrp_pyth_settlement_strategy": "0",
"yfi_pyth_settlement_strategy": "0",
"ldo_pyth_settlement_strategy": "0",
"meme_pyth_settlement_strategy": "0",
"perps_keeper_flag_tx_size": "900",
"perps_keeper_liquidate_tx_size": "5500",
"perps_keeper_settle_tx_size": "5000",
"statausdc_issuance_ratio": "115792089237316195423570985008687907853269984665640564039457584007913129639935",
"statausdc_liquidation_ratio": "1100000000000000000",
"statausdc_liquidation_reward": "1000000000000000000",
"statausdc_min_delegation": "100000000000000000000",
"stataBasUSDC_address": "0xB3f05d39504dA95876EA0174D25Ae51Ac2422a70",
"commitment_price_delay": "2",
"pyth_feed_id_snx": "0x39d020f60982ed892abbcd4a06a276a9f9b7bfbce003204c110b6e488f502da3",
"settlement_reward": "400000000000000000",
"aave_perps_market_id": "3300",
"aave_perps_market_skew_scale": "103900000000000000000000",
"aave_perps_market_max_funding_velocity": "36000000000000000000",
"aave_perps_maker_fee_ratio": "200000000000000",
"aave_perps_taker_fee_ratio": "1000000000000000",
"aave_perps_max_market_size": "20600000000000000000000",
"aave_perps_max_market_value": "2000000000000000000000000",
"aave_perps_initial_margin_ratio": "3380000000000000000",
"aave_perps_maintenance_margin_scalar": "380000000000000000",
"aave_perps_minimum_initial_margin_ratio": "50000000000000000",
"aave_perps_flag_reward_ratio_d18": "300000000000000",
"aave_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"aave_perps_max_seconds_in_liquidation_window": "30",
"aave_perps_minimum_position_margin": "15000000000000000000",
"aave_perps_locked_oi_ratio": "100000000000000000",
"aave_perps_max_liquidation_pd": "500000000000000",
"aave_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"ada_perps_market_id": "3400",
"ada_perps_market_skew_scale": "82468000000000000000000000",
"ada_perps_market_max_funding_velocity": "36000000000000000000",
"ada_perps_maker_fee_ratio": "200000000000000",
"ada_perps_taker_fee_ratio": "1000000000000000",
"ada_perps_max_market_size": "8476200000000000000000000",
"ada_perps_max_market_value": "2000000000000000000000000",
"ada_perps_initial_margin_ratio": "2632000000000000000",
"ada_perps_maintenance_margin_scalar": "355000000000000000",
"ada_perps_minimum_initial_margin_ratio": "33300000000000000",
"ada_perps_flag_reward_ratio_d18": "300000000000000",
"ada_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"ada_perps_max_seconds_in_liquidation_window": "30",
"ada_perps_minimum_position_margin": "15000000000000000000",
"ada_perps_locked_oi_ratio": "100000000000000000",
"ada_perps_max_liquidation_pd": "500000000000000",
"ada_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"algo_perps_market_id": "3500",
"algo_perps_market_skew_scale": "54100700000000000000000000",
"algo_perps_market_max_funding_velocity": "36000000000000000000",
"algo_perps_maker_fee_ratio": "200000000000000",
"algo_perps_taker_fee_ratio": "1000000000000000",
"algo_perps_max_market_size": "5953850000000000000000000",
"algo_perps_max_market_value": "500000000000000000000000",
"algo_perps_initial_margin_ratio": "2173000000000000000",
"algo_perps_maintenance_margin_scalar": "343000000000000000",
"algo_perps_minimum_initial_margin_ratio": "50000000000000000",
"algo_perps_flag_reward_ratio_d18": "300000000000000",
"algo_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"algo_perps_max_seconds_in_liquidation_window": "30",
"algo_perps_minimum_position_margin": "15000000000000000000",
"algo_perps_locked_oi_ratio": "100000000000000000",
"algo_perps_max_liquidation_pd": "500000000000000",
"algo_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"apt_perps_market_id": "3600",
"apt_perps_market_skew_scale": "3475200000000000000000000",
"apt_perps_market_max_funding_velocity": "36000000000000000000",
"apt_perps_maker_fee_ratio": "200000000000000",
"apt_perps_taker_fee_ratio": "1000000000000000",
"apt_perps_max_market_size": "352300000000000000000000",
"apt_perps_max_market_value": "2000000000000000000000000",
"apt_perps_initial_margin_ratio": "1000000000000000000",
"apt_perps_maintenance_margin_scalar": "310000000000000000",
"apt_perps_minimum_initial_margin_ratio": "50000000000000000",
"apt_perps_flag_reward_ratio_d18": "300000000000000",
"apt_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"apt_perps_max_seconds_in_liquidation_window": "30",
"apt_perps_minimum_position_margin": "15000000000000000000",
"apt_perps_locked_oi_ratio": "100000000000000000",
"apt_perps_max_liquidation_pd": "500000000000000",
"apt_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"arb_perps_market_id": "1600",
"arb_perps_market_skew_scale": "60186800000000000000000000",
"arb_perps_market_max_funding_velocity": "36000000000000000000",
"arb_perps_maker_fee_ratio": "200000000000000",
"arb_perps_taker_fee_ratio": "1000000000000000",
"arb_perps_max_market_size": "2000000000000000000000000",
"arb_perps_max_market_value": "1000000000000000000000000",
"arb_perps_initial_margin_ratio": "1537000000000000000",
"arb_perps_maintenance_margin_scalar": "388000000000000000",
"arb_perps_minimum_initial_margin_ratio": "33333000000000000",
"arb_perps_flag_reward_ratio_d18": "300000000000000",
"arb_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"arb_perps_max_seconds_in_liquidation_window": "30",
"arb_perps_minimum_position_margin": "15000000000000000000",
"arb_perps_locked_oi_ratio": "100000000000000000",
"arb_perps_max_liquidation_pd": "500000000000000",
"arb_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"arkm_perps_market_id": "2600",
"arkm_perps_market_skew_scale": "11000000000000000000000000",
"arkm_perps_market_max_funding_velocity": "36000000000000000000",
"arkm_perps_maker_fee_ratio": "200000000000000",
"arkm_perps_taker_fee_ratio": "1000000000000000",
"arkm_perps_max_market_size": "400000000000000000000000",
"arkm_perps_max_market_value": "500000000000000000000000",
"arkm_perps_initial_margin_ratio": "890000000000000000",
"arkm_perps_maintenance_margin_scalar": "334000000000000000",
"arkm_perps_minimum_initial_margin_ratio": "50000000000000000",
"arkm_perps_flag_reward_ratio_d18": "300000000000000",
"arkm_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"arkm_perps_max_seconds_in_liquidation_window": "30",
"arkm_perps_minimum_position_margin": "15000000000000000000",
"arkm_perps_locked_oi_ratio": "100000000000000000",
"arkm_perps_max_liquidation_pd": "500000000000000",
"arkm_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"atom_perps_market_id": "3700",
"atom_perps_market_skew_scale": "4402900000000000000000000",
"atom_perps_market_max_funding_velocity": "36000000000000000000",
"atom_perps_maker_fee_ratio": "200000000000000",
"atom_perps_taker_fee_ratio": "1000000000000000",
"atom_perps_max_market_size": "329300000000000000000000",
"atom_perps_max_market_value": "1000000000000000000000000",
"atom_perps_initial_margin_ratio": "2490000000000000000",
"atom_perps_maintenance_margin_scalar": "310000000000000000",
"atom_perps_minimum_initial_margin_ratio": "50000000000000000",
"atom_perps_flag_reward_ratio_d18": "300000000000000",
"atom_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"atom_perps_max_seconds_in_liquidation_window": "30",
"atom_perps_minimum_position_margin": "15000000000000000000",
"atom_perps_locked_oi_ratio": "100000000000000000",
"atom_perps_max_liquidation_pd": "500000000000000",
"atom_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"avax_perps_market_id": "900",
"avax_perps_market_skew_scale": "1580100000000000000000000",
"avax_perps_market_max_funding_velocity": "36000000000000000000",
"avax_perps_maker_fee_ratio": "200000000000000",
"avax_perps_taker_fee_ratio": "1000000000000000",
"avax_perps_max_market_size": "100000000000000000000000",
"avax_perps_max_market_value": "2000000000000000000000000",
"avax_perps_initial_margin_ratio": "2880000000000000000",
"avax_perps_maintenance_margin_scalar": "400000000000000000",
"avax_perps_minimum_initial_margin_ratio": "20000000000000000",
"avax_perps_flag_reward_ratio_d18": "300000000000000",
"avax_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"avax_perps_max_seconds_in_liquidation_window": "30",
"avax_perps_minimum_position_margin": "15000000000000000000",
"avax_perps_locked_oi_ratio": "100000000000000000",
"avax_perps_max_liquidation_pd": "500000000000000",
"avax_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"axl_perps_market_id": "3200",
"axl_perps_market_skew_scale": "6019400000000000000000000",
"axl_perps_market_max_funding_velocity": "36000000000000000000",
"axl_perps_maker_fee_ratio": "200000000000000",
"axl_perps_taker_fee_ratio": "1000000000000000",
"axl_perps_max_market_size": "1000000000000000000000000",
"axl_perps_max_market_value": "500000000000000000000000",
"axl_perps_initial_margin_ratio": "2850000000000000000",
"axl_perps_maintenance_margin_scalar": "340000000000000000",
"axl_perps_minimum_initial_margin_ratio": "50000000000000000",
"axl_perps_flag_reward_ratio_d18": "300000000000000",
"axl_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"axl_perps_max_seconds_in_liquidation_window": "30",
"axl_perps_minimum_position_margin": "15000000000000000000",
"axl_perps_locked_oi_ratio": "100000000000000000",
"axl_perps_max_liquidation_pd": "500000000000000",
"axl_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"axs_perps_market_id": "3800",
"axs_perps_market_skew_scale": "2218700000000000000000000",
"axs_perps_market_max_funding_velocity": "36000000000000000000",
"axs_perps_maker_fee_ratio": "200000000000000",
"axs_perps_taker_fee_ratio": "1000000000000000",
"axs_perps_max_market_size": "162000000000000000000000",
"axs_perps_max_market_value": "500000000000000000000000",
"axs_perps_initial_margin_ratio": "880000000000000000",
"axs_perps_maintenance_margin_scalar": "310000000000000000",
"axs_perps_minimum_initial_margin_ratio": "50000000000000000",
"axs_perps_flag_reward_ratio_d18": "300000000000000",
"axs_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"axs_perps_max_seconds_in_liquidation_window": "30",
"axs_perps_minimum_position_margin": "15000000000000000000",
"axs_perps_locked_oi_ratio": "100000000000000000",
"axs_perps_max_liquidation_pd": "500000000000000",
"axs_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"bal_perps_market_id": "3900",
"bal_perps_market_skew_scale": "137300000000000000000000",
"bal_perps_market_max_funding_velocity": "36000000000000000000",
"bal_perps_maker_fee_ratio": "200000000000000",
"bal_perps_taker_fee_ratio": "1000000000000000",
"bal_perps_max_market_size": "377600000000000000000000",
"bal_perps_max_market_value": "500000000000000000000000",
"bal_perps_initial_margin_ratio": "3940000000000000000",
"bal_perps_maintenance_margin_scalar": "350000000000000000",
"bal_perps_minimum_initial_margin_ratio": "50000000000000000",
"bal_perps_flag_reward_ratio_d18": "300000000000000",
"bal_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"bal_perps_max_seconds_in_liquidation_window": "30",
"bal_perps_minimum_position_margin": "15000000000000000000",
"bal_perps_locked_oi_ratio": "100000000000000000",
"bal_perps_max_liquidation_pd": "500000000000000",
"bal_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"bch_perps_market_id": "4000",
"bch_perps_market_skew_scale": "84900000000000000000000",
"bch_perps_market_max_funding_velocity": "36000000000000000000",
"bch_perps_maker_fee_ratio": "200000000000000",
"bch_perps_taker_fee_ratio": "1000000000000000",
"bch_perps_max_market_size": "9350000000000000000000",
"bch_perps_max_market_value": "2000000000000000000000000",
"bch_perps_initial_margin_ratio": "1600000000000000000",
"bch_perps_maintenance_margin_scalar": "320000000000000000",
"bch_perps_minimum_initial_margin_ratio": "50000000000000000",
"bch_perps_flag_reward_ratio_d18": "300000000000000",
"bch_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"bch_perps_max_seconds_in_liquidation_window": "30",
"bch_perps_minimum_position_margin": "15000000000000000000",
"bch_perps_locked_oi_ratio": "100000000000000000",
"bch_perps_max_liquidation_pd": "500000000000000",
"bch_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"blur_perps_market_id": "4100",
"blur_perps_market_skew_scale": "36652500000000000000000000",
"blur_perps_market_max_funding_velocity": "36000000000000000000",
"blur_perps_maker_fee_ratio": "200000000000000",
"blur_perps_taker_fee_ratio": "1000000000000000",
"blur_perps_max_market_size": "3329150000000000000000000",
"blur_perps_max_market_value": "500000000000000000000000",
"blur_perps_initial_margin_ratio": "1490000000000000000",
"blur_perps_maintenance_margin_scalar": "370000000000000000",
"blur_perps_minimum_initial_margin_ratio": "50000000000000000",
"blur_perps_flag_reward_ratio_d18": "300000000000000",
"blur_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"blur_perps_max_seconds_in_liquidation_window": "30",
"blur_perps_minimum_position_margin": "15000000000000000000",
"blur_perps_locked_oi_ratio": "100000000000000000",
"blur_perps_max_liquidation_pd": "500000000000000",
"blur_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"bnb_perps_market_id": "1800",
"bnb_perps_market_skew_scale": "233000000000000000000000",
"bnb_perps_market_max_funding_velocity": "36000000000000000000",
"bnb_perps_maker_fee_ratio": "200000000000000",
"bnb_perps_taker_fee_ratio": "1000000000000000",
"bnb_perps_max_market_size": "7000000000000000000000",
"bnb_perps_max_market_value": "2000000000000000000000000",
"bnb_perps_initial_margin_ratio": "4933000000000000000",
"bnb_perps_maintenance_margin_scalar": "401000000000000000",
"bnb_perps_minimum_initial_margin_ratio": "20000000000000000",
"bnb_perps_flag_reward_ratio_d18": "300000000000000",
"bnb_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"bnb_perps_max_seconds_in_liquidation_window": "30",
"bnb_perps_minimum_position_margin": "15000000000000000000",
"bnb_perps_locked_oi_ratio": "100000000000000000",
"bnb_perps_max_liquidation_pd": "500000000000000",
"bnb_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"bome_perps_market_id": "2900",
"bome_perps_market_skew_scale": "3750000000000000000000000000",
"bome_perps_market_max_funding_velocity": "36000000000000000000",
"bome_perps_maker_fee_ratio": "200000000000000",
"bome_perps_taker_fee_ratio": "1000000000000000",
"bome_perps_max_market_size": "229513950000000000000000000",
"bome_perps_max_market_value": "1000000000000000000000000",
"bome_perps_initial_margin_ratio": "1440000000000000000",
"bome_perps_maintenance_margin_scalar": "380000000000000000",
"bome_perps_minimum_initial_margin_ratio": "50000000000000000",
"bome_perps_flag_reward_ratio_d18": "300000000000000",
"bome_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"bome_perps_max_seconds_in_liquidation_window": "30",
"bome_perps_minimum_position_margin": "15000000000000000000",
"bome_perps_locked_oi_ratio": "100000000000000000",
"bome_perps_max_liquidation_pd": "500000000000000",
"bome_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"bonk_perps_market_id": "1400",
"bonk_perps_market_skew_scale": "802983764800000000000000000000",
"bonk_perps_market_max_funding_velocity": "36000000000000000000",
"bonk_perps_maker_fee_ratio": "200000000000000",
"bonk_perps_taker_fee_ratio": "1000000000000000",
"bonk_perps_max_market_size": "135525228000000000000000000000",
"bonk_perps_max_market_value": "2000000000000000000000000",
"bonk_perps_initial_margin_ratio": "2550000000000000000",
"bonk_perps_maintenance_margin_scalar": "370000000000000000",
"bonk_perps_minimum_initial_margin_ratio": "50000000000000000",
"bonk_perps_flag_reward_ratio_d18": "300000000000000",
"bonk_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"bonk_perps_max_seconds_in_liquidation_window": "30",
"bonk_perps_minimum_position_margin": "15000000000000000000",
"bonk_perps_locked_oi_ratio": "100000000000000000",
"bonk_perps_max_liquidation_pd": "500000000000000",
"bonk_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"btc_perps_market_id": "200",
"btc_perps_market_skew_scale": "35000000000000000000000",
"btc_perps_market_max_funding_velocity": "9000000000000000000",
"btc_perps_maker_fee_ratio": "1000000000000",
"btc_perps_taker_fee_ratio": "500000000000000",
"btc_perps_max_market_size": "1200000000000000000000",
"btc_perps_max_market_value": "50000000000000000000000000",
"btc_perps_initial_margin_ratio": "1540000000000000000",
"btc_perps_maintenance_margin_scalar": "280000000000000000",
"btc_perps_minimum_initial_margin_ratio": "20000000000000000",
"btc_perps_flag_reward_ratio_d18": "300000000000000",
"btc_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"btc_perps_max_seconds_in_liquidation_window": "30",
"btc_perps_minimum_position_margin": "15000000000000000000",
"btc_perps_locked_oi_ratio": "100000000000000000",
"btc_perps_max_liquidation_pd": "500000000000000",
"btc_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"usd_max_collateral_amount": "115792089237316195423570985008687907853269984665640564039457584007913129639935",
"usd_upper_limit_discount": "0",
"usd_lower_limit_discount": "0",
"usd_discount_scalar": "0",
"comp_perps_market_id": "4200",
"comp_perps_market_skew_scale": "78300000000000000000000",
"comp_perps_market_max_funding_velocity": "36000000000000000000",
"comp_perps_maker_fee_ratio": "200000000000000",
"comp_perps_taker_fee_ratio": "1000000000000000",
"comp_perps_max_market_size": "17000000000000000000000",
"comp_perps_max_market_value": "500000000000000000000000",
"comp_perps_initial_margin_ratio": "1800000000000000000",
"comp_perps_maintenance_margin_scalar": "410000000000000000",
"comp_perps_minimum_initial_margin_ratio": "50000000000000000",
"comp_perps_flag_reward_ratio_d18": "300000000000000",
"comp_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"comp_perps_max_seconds_in_liquidation_window": "30",
"comp_perps_minimum_position_margin": "15000000000000000000",
"comp_perps_locked_oi_ratio": "100000000000000000",
"comp_perps_max_liquidation_pd": "500000000000000",
"comp_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"crv_perps_market_id": "4300",
"crv_perps_market_skew_scale": "36240800000000000000000000",
"crv_perps_market_max_funding_velocity": "36000000000000000000",
"crv_perps_maker_fee_ratio": "200000000000000",
"crv_perps_taker_fee_ratio": "1000000000000000",
"crv_perps_max_market_size": "5814100000000000000000000",
"crv_perps_max_market_value": "1000000000000000000000000",
"crv_perps_initial_margin_ratio": "4560000000000000000",
"crv_perps_maintenance_margin_scalar": "390000000000000000",
"crv_perps_minimum_initial_margin_ratio": "50000000000000000",
"crv_perps_flag_reward_ratio_d18": "300000000000000",
"crv_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"crv_perps_max_seconds_in_liquidation_window": "30",
"crv_perps_minimum_position_margin": "15000000000000000000",
"crv_perps_locked_oi_ratio": "100000000000000000",
"crv_perps_max_liquidation_pd": "500000000000000",
"crv_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"doge_perps_market_id": "800",
"doge_perps_market_skew_scale": "408170800000000000000000000",
"doge_perps_market_max_funding_velocity": "36000000000000000000",
"doge_perps_maker_fee_ratio": "200000000000000",
"doge_perps_taker_fee_ratio": "1000000000000000",
"doge_perps_max_market_size": "25000000000000000000000000",
"doge_perps_max_market_value": "2000000000000000000000000",
"doge_perps_initial_margin_ratio": "6900000000000000000",
"doge_perps_maintenance_margin_scalar": "300000000000000000",
"doge_perps_minimum_initial_margin_ratio": "20000000000000000",
"doge_perps_flag_reward_ratio_d18": "300000000000000",
"doge_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"doge_perps_max_seconds_in_liquidation_window": "30",
"doge_perps_minimum_position_margin": "15000000000000000000",
"doge_perps_locked_oi_ratio": "100000000000000000",
"doge_perps_max_liquidation_pd": "500000000000000",
"doge_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"dot_perps_market_id": "4400",
"dot_perps_market_skew_scale": "7268400000000000000000000",
"dot_perps_market_max_funding_velocity": "36000000000000000000",
"dot_perps_maker_fee_ratio": "200000000000000",
"dot_perps_taker_fee_ratio": "1000000000000000",
"dot_perps_max_market_size": "724950000000000000000000",
"dot_perps_max_market_value": "2000000000000000000000000",
"dot_perps_initial_margin_ratio": "2090000000000000000",
"dot_perps_maintenance_margin_scalar": "320000000000000000",
"dot_perps_minimum_initial_margin_ratio": "50000000000000000",
"dot_perps_flag_reward_ratio_d18": "300000000000000",
"dot_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"dot_perps_max_seconds_in_liquidation_window": "30",
"dot_perps_minimum_position_margin": "15000000000000000000",
"dot_perps_locked_oi_ratio": "100000000000000000",
"dot_perps_max_liquidation_pd": "500000000000000",
"dot_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"dydx_perps_market_id": "4500",
"dydx_perps_market_skew_scale": "18601500000000000000000000",
"dydx_perps_market_max_funding_velocity": "36000000000000000000",
"dydx_perps_maker_fee_ratio": "200000000000000",
"dydx_perps_taker_fee_ratio": "1000000000000000",
"dydx_perps_max_market_size": "1703200000000000000000000",
"dydx_perps_max_market_value": "1000000000000000000000000",
"dydx_perps_initial_margin_ratio": "1450000000000000000",
"dydx_perps_maintenance_margin_scalar": "340000000000000000",
"dydx_perps_minimum_initial_margin_ratio": "50000000000000000",
"dydx_perps_flag_reward_ratio_d18": "300000000000000",
"dydx_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"dydx_perps_max_seconds_in_liquidation_window": "30",
"dydx_perps_minimum_position_margin": "15000000000000000000",
"dydx_perps_locked_oi_ratio": "100000000000000000",
"dydx_perps_max_liquidation_pd": "500000000000000",
"dydx_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"ena_perps_market_id": "700",
"ena_perps_market_skew_scale": "39767500000000000000000000",
"ena_perps_market_max_funding_velocity": "36000000000000000000",
"ena_perps_maker_fee_ratio": "200000000000000",
"ena_perps_taker_fee_ratio": "1000000000000000",
"ena_perps_max_market_size": "3000000000000000000000000",
"ena_perps_max_market_value": "1000000000000000000000000",
"ena_perps_initial_margin_ratio": "1080000000000000000",
"ena_perps_maintenance_margin_scalar": "344000000000000000",
"ena_perps_minimum_initial_margin_ratio": "50000000000000000",
"ena_perps_flag_reward_ratio_d18": "300000000000000",
"ena_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"ena_perps_max_seconds_in_liquidation_window": "30",
"ena_perps_minimum_position_margin": "15000000000000000000",
"ena_perps_locked_oi_ratio": "100000000000000000",
"ena_perps_max_liquidation_pd": "500000000000000",
"ena_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"eos_perps_market_id": "4600",
"eos_perps_market_skew_scale": "35750100000000000000000000",
"eos_perps_market_max_funding_velocity": "36000000000000000000",
"eos_perps_maker_fee_ratio": "200000000000000",
"eos_perps_taker_fee_ratio": "1000000000000000",
"eos_perps_max_market_size": "3182150000000000000000000",
"eos_perps_max_market_value": "1000000000000000000000000",
"eos_perps_initial_margin_ratio": "2470000000000000000",
"eos_perps_maintenance_margin_scalar": "330000000000000000",
"eos_perps_minimum_initial_margin_ratio": "50000000000000000",
"eos_perps_flag_reward_ratio_d18": "300000000000000",
"eos_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"eos_perps_max_seconds_in_liquidation_window": "30",
"eos_perps_minimum_position_margin": "15000000000000000000",
"eos_perps_locked_oi_ratio": "100000000000000000",
"eos_perps_max_liquidation_pd": "500000000000000",
"eos_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"etc_perps_market_id": "4700",
"etc_perps_market_skew_scale": "1492400000000000000000000",
"etc_perps_market_max_funding_velocity": "36000000000000000000",
"etc_perps_maker_fee_ratio": "200000000000000",
"etc_perps_taker_fee_ratio": "1000000000000000",
"etc_perps_max_market_size": "80750000000000000000000",
"etc_perps_max_market_value": "1000000000000000000000000",
"etc_perps_initial_margin_ratio": "2710000000000000000",
"etc_perps_maintenance_margin_scalar": "330000000000000000",
"etc_perps_minimum_initial_margin_ratio": "50000000000000000",
"etc_perps_flag_reward_ratio_d18": "300000000000000",
"etc_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"etc_perps_max_seconds_in_liquidation_window": "30",
"etc_perps_minimum_position_margin": "15000000000000000000",
"etc_perps_locked_oi_ratio": "100000000000000000",
"etc_perps_max_liquidation_pd": "500000000000000",
"etc_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"eth_perps_market_id": "100",
"eth_perps_market_skew_scale": "350000000000000000000000",
"eth_perps_market_max_funding_velocity": "9000000000000000000",
"eth_perps_maker_fee_ratio": "1000000000000",
"eth_perps_taker_fee_ratio": "500000000000000",
"eth_perps_max_market_size": "30700000000000000000000",
"eth_perps_max_market_value": "50000000000000000000000000",
"eth_perps_initial_margin_ratio": "1160000000000000000",
"eth_perps_maintenance_margin_scalar": "280000000000000000",
"eth_perps_minimum_initial_margin_ratio": "20000000000000000",
"eth_perps_flag_reward_ratio_d18": "300000000000000",
"eth_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"eth_perps_max_seconds_in_liquidation_window": "30",
"eth_perps_minimum_position_margin": "15000000000000000000",
"eth_perps_locked_oi_ratio": "100000000000000000",
"eth_perps_max_liquidation_pd": "500000000000000",
"eth_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"ethbtc_perps_market_id": "4800",
"ethbtc_perps_market_skew_scale": "3400000000000000000000000000",
"ethbtc_perps_market_max_funding_velocity": "4000000000000000000",
"ethbtc_perps_maker_fee_ratio": "1000000000000",
"ethbtc_perps_taker_fee_ratio": "500000000000000",
"ethbtc_perps_max_market_size": "72226506000000000000000000",
"ethbtc_perps_max_market_value": "2000000000000000000000000",
"ethbtc_perps_initial_margin_ratio": "1390000000000000000",
"ethbtc_perps_maintenance_margin_scalar": "260000000000000000",
"ethbtc_perps_minimum_initial_margin_ratio": "20000000000000000",
"ethbtc_perps_flag_reward_ratio_d18": "300000000000000",
"ethbtc_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"ethbtc_perps_max_seconds_in_liquidation_window": "30",
"ethbtc_perps_minimum_position_margin": "15000000000000000000",
"ethbtc_perps_locked_oi_ratio": "100000000000000000",
"ethbtc_perps_max_liquidation_pd": "500000000000000",
"ethbtc_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"ethfi_perps_market_id": "3000",
"ethfi_perps_market_skew_scale": "9022000000000000000000000",
"ethfi_perps_market_max_funding_velocity": "36000000000000000000",
"ethfi_perps_maker_fee_ratio": "200000000000000",
"ethfi_perps_taker_fee_ratio": "1000000000000000",
"ethfi_perps_max_market_size": "300000000000000000000000",
"ethfi_perps_max_market_value": "500000000000000000000000",
"ethfi_perps_initial_margin_ratio": "2120000000000000000",
"ethfi_perps_maintenance_margin_scalar": "380000000000000000",
"ethfi_perps_minimum_initial_margin_ratio": "50000000000000000",
"ethfi_perps_flag_reward_ratio_d18": "300000000000000",
"ethfi_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"ethfi_perps_max_seconds_in_liquidation_window": "30",
"ethfi_perps_minimum_position_margin": "15000000000000000000",
"ethfi_perps_locked_oi_ratio": "100000000000000000",
"ethfi_perps_max_liquidation_pd": "500000000000000",
"ethfi_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"fil_perps_market_id": "4900",
"fil_perps_market_skew_scale": "8723100000000000000000000",
"fil_perps_market_max_funding_velocity": "36000000000000000000",
"fil_perps_maker_fee_ratio": "200000000000000",
"fil_perps_taker_fee_ratio": "1000000000000000",
"fil_perps_max_market_size": "812100000000000000000000",
"fil_perps_max_market_value": "2000000000000000000000000",
"fil_perps_initial_margin_ratio": "1810000000000000000",
"fil_perps_maintenance_margin_scalar": "260000000000000000",
"fil_perps_minimum_initial_margin_ratio": "50000000000000000",
"fil_perps_flag_reward_ratio_d18": "300000000000000",
"fil_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"fil_perps_max_seconds_in_liquidation_window": "30",
"fil_perps_minimum_position_margin": "15000000000000000000",
"fil_perps_locked_oi_ratio": "100000000000000000",
"fil_perps_max_liquidation_pd": "500000000000000",
"fil_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"flow_perps_market_id": "5000",
"flow_perps_market_skew_scale": "15000000000000000000000000",
"flow_perps_market_max_funding_velocity": "36000000000000000000",
"flow_perps_maker_fee_ratio": "200000000000000",
"flow_perps_taker_fee_ratio": "1000000000000000",
"flow_perps_max_market_size": "1380350000000000000000000",
"flow_perps_max_market_value": "500000000000000000000000",
"flow_perps_initial_margin_ratio": "1669000000000000000",
"flow_perps_maintenance_margin_scalar": "265000000000000000",
"flow_perps_minimum_initial_margin_ratio": "100000000000000000",
"flow_perps_flag_reward_ratio_d18": "300000000000000",
"flow_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"flow_perps_max_seconds_in_liquidation_window": "30",
"flow_perps_minimum_position_margin": "15000000000000000000",
"flow_perps_locked_oi_ratio": "100000000000000000",
"flow_perps_max_liquidation_pd": "500000000000000",
"flow_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"ftm_perps_market_id": "1500",
"ftm_perps_market_skew_scale": "118000000000000000000000000",
"ftm_perps_market_max_funding_velocity": "36000000000000000000",
"ftm_perps_maker_fee_ratio": "200000000000000",
"ftm_perps_taker_fee_ratio": "1000000000000000",
"ftm_perps_max_market_size": "0",
"ftm_perps_max_market_value": "0",
"ftm_perps_initial_margin_ratio": "5580000000000000000",
"ftm_perps_maintenance_margin_scalar": "380000000000000000",
"ftm_perps_minimum_initial_margin_ratio": "33333000000000000",
"ftm_perps_flag_reward_ratio_d18": "300000000000000",
"ftm_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"ftm_perps_max_seconds_in_liquidation_window": "30",
"ftm_perps_minimum_position_margin": "15000000000000000000",
"ftm_perps_locked_oi_ratio": "100000000000000000",
"ftm_perps_max_liquidation_pd": "500000000000000",
"ftm_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"fxs_perps_market_id": "5100",
"fxs_perps_market_skew_scale": "426800000000000000000000",
"fxs_perps_market_max_funding_velocity": "36000000000000000000",
"fxs_perps_maker_fee_ratio": "200000000000000",
"fxs_perps_taker_fee_ratio": "1000000000000000",
"fxs_perps_max_market_size": "371700000000000000000000",
"fxs_perps_max_market_value": "500000000000000000000000",
"fxs_perps_initial_margin_ratio": "2590000000000000000",
"fxs_perps_maintenance_margin_scalar": "340000000000000000",
"fxs_perps_minimum_initial_margin_ratio": "66660000000000000",
"fxs_perps_flag_reward_ratio_d18": "300000000000000",
"fxs_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"fxs_perps_max_seconds_in_liquidation_window": "30",
"fxs_perps_minimum_position_margin": "15000000000000000000",
"fxs_perps_locked_oi_ratio": "100000000000000000",
"fxs_perps_max_liquidation_pd": "500000000000000",
"fxs_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"gala_perps_market_id": "2700",
"gala_perps_market_skew_scale": "1125000000000000000000000000",
"gala_perps_market_max_funding_velocity": "36000000000000000000",
"gala_perps_maker_fee_ratio": "200000000000000",
"gala_perps_taker_fee_ratio": "1000000000000000",
"gala_perps_max_market_size": "36165750000000000000000000",
"gala_perps_max_market_value": "500000000000000000000000",
"gala_perps_initial_margin_ratio": "1290000000000000000",
"gala_perps_maintenance_margin_scalar": "350000000000000000",
"gala_perps_minimum_initial_margin_ratio": "50000000000000000",
"gala_perps_flag_reward_ratio_d18": "300000000000000",
"gala_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"gala_perps_max_seconds_in_liquidation_window": "30",
"gala_perps_minimum_position_margin": "15000000000000000000",
"gala_perps_locked_oi_ratio": "100000000000000000",
"gala_perps_max_liquidation_pd": "500000000000000",
"gala_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"gmx_perps_market_id": "2200",
"gmx_perps_market_skew_scale": "78700000000000000000000",
"gmx_perps_market_max_funding_velocity": "36000000000000000000",
"gmx_perps_maker_fee_ratio": "200000000000000",
"gmx_perps_taker_fee_ratio": "1000000000000000",
"gmx_perps_max_market_size": "35000000000000000000000",
"gmx_perps_max_market_value": "500000000000000000000000",
"gmx_perps_initial_margin_ratio": "1270000000000000000",
"gmx_perps_maintenance_margin_scalar": "440000000000000000",
"gmx_perps_minimum_initial_margin_ratio": "50000000000000000",
"gmx_perps_flag_reward_ratio_d18": "300000000000000",
"gmx_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"gmx_perps_max_seconds_in_liquidation_window": "30",
"gmx_perps_minimum_position_margin": "15000000000000000000",
"gmx_perps_locked_oi_ratio": "100000000000000000",
"gmx_perps_max_liquidation_pd": "500000000000000",
"gmx_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"grt_perps_market_id": "5200",
"grt_perps_market_skew_scale": "57799000000000000000000000",
"grt_perps_market_max_funding_velocity": "36000000000000000000",
"grt_perps_maker_fee_ratio": "200000000000000",
"grt_perps_taker_fee_ratio": "1000000000000000",
"grt_perps_max_market_size": "4516800000000000000000000",
"grt_perps_max_market_value": "500000000000000000000000",
"grt_perps_initial_margin_ratio": "4220000000000000000",
"grt_perps_maintenance_margin_scalar": "390000000000000000",
"grt_perps_minimum_initial_margin_ratio": "50000000000000000",
"grt_perps_flag_reward_ratio_d18": "300000000000000",
"grt_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"grt_perps_max_seconds_in_liquidation_window": "30",
"grt_perps_minimum_position_margin": "15000000000000000000",
"grt_perps_locked_oi_ratio": "100000000000000000",
"grt_perps_max_liquidation_pd": "500000000000000",
"grt_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"icp_perps_market_id": "5300",
"icp_perps_market_skew_scale": "1918600000000000000000000",
"icp_perps_market_max_funding_velocity": "36000000000000000000",
"icp_perps_maker_fee_ratio": "200000000000000",
"icp_perps_taker_fee_ratio": "1000000000000000",
"icp_perps_max_market_size": "91100000000000000000000",
"icp_perps_max_market_value": "500000000000000000000000",
"icp_perps_initial_margin_ratio": "1860000000000000000",
"icp_perps_maintenance_margin_scalar": "440000000000000000",
"icp_perps_minimum_initial_margin_ratio": "50000000000000000",
"icp_perps_flag_reward_ratio_d18": "300000000000000",
"icp_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"icp_perps_max_seconds_in_liquidation_window": "30",
"icp_perps_minimum_position_margin": "15000000000000000000",
"icp_perps_locked_oi_ratio": "100000000000000000",
"icp_perps_max_liquidation_pd": "500000000000000",
"icp_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"imx_perps_market_id": "5400",
"imx_perps_market_skew_scale": "5304800000000000000000000",
"imx_perps_market_max_funding_velocity": "36000000000000000000",
"imx_perps_maker_fee_ratio": "200000000000000",
"imx_perps_taker_fee_ratio": "1000000000000000",
"imx_perps_max_market_size": "508750000000000000000000",
"imx_perps_max_market_value": "500000000000000000000000",
"imx_perps_initial_margin_ratio": "1950000000000000000",
"imx_perps_maintenance_margin_scalar": "400000000000000000",
"imx_perps_minimum_initial_margin_ratio": "50000000000000000",
"imx_perps_flag_reward_ratio_d18": "300000000000000",
"imx_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"imx_perps_max_seconds_in_liquidation_window": "30",
"imx_perps_minimum_position_margin": "15000000000000000000",
"imx_perps_locked_oi_ratio": "100000000000000000",
"imx_perps_max_liquidation_pd": "500000000000000",
"imx_perps_endorsed_liquidator": "0x11233749514Ab8d00C0A5873DF7428b3db70030f",
"inj_perps_market_id": "2100",
"inj_perps_market_skew_scale": "1128300000000000000000000",
"inj_perps_market_max_funding_velocity": "36000000000000000000",
"inj_perps_maker_fee_ratio": "200000000000000",
"inj_perps_taker_fee_ratio": "1000000000000000",
"inj_perps_max_market_size": "73500000000000000000000",
"inj_perps_max_market_value": "1000000000000000000000000",
"inj_perps_initial_margin_ratio": "1310000000000000000",
"inj_perps_maintenance_margin_scalar": "460000000000000000",
"inj_perps_minimum_initial_margin_ratio": "50000000000000000",
"inj_perps_flag_reward_ratio_d18": "300000000000000",
"inj_perps_max_liquidation_limit_accumulation_multiplier": "1500000000000000000",
"inj_perps_max_seconds_in_liquidation_window": "30",