@dolomite-exchange/zap-sdk 0.3.21 → 0.3.23
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.
- package/dist/src/lib/Constants.js +220 -170
- package/dist/src/lib/Constants.js.map +1 -1
- package/package.json +4 -3
- package/src/DolomiteZap.ts +940 -0
- package/src/abis/IArbitrumGasInfo.json +198 -0
- package/src/abis/IDolomiteMarginExchangeWrapper.json +80 -0
- package/src/abis/IERC20.json +185 -0
- package/src/abis/IGmxV2DataStore.json +101 -0
- package/src/abis/IGmxV2Reader.json +3487 -0
- package/src/abis/IIsolationModeFactory.json +902 -0
- package/src/abis/types/IArbitrumGasInfo.ts +299 -0
- package/src/abis/types/IERC20.ts +269 -0
- package/src/abis/types/IGmxV2DataStore.ts +170 -0
- package/src/abis/types/IGmxV2Reader.ts +825 -0
- package/src/clients/AggregatorClient.ts +22 -0
- package/src/clients/DolomiteClient.ts +301 -0
- package/src/clients/IsolationModeClient.ts +75 -0
- package/src/clients/OdosAggregator.ts +107 -0
- package/src/clients/OogaBoogaAggregator.ts +76 -0
- package/src/clients/ParaswapAggregator.ts +135 -0
- package/src/index.ts +29 -0
- package/src/lib/ApiTypes.ts +241 -0
- package/src/lib/Constants.ts +1441 -0
- package/src/lib/Environment.ts +1 -0
- package/src/lib/GraphqlPageable.ts +23 -0
- package/src/lib/LocalCache.ts +34 -0
- package/src/lib/Logger.ts +59 -0
- package/src/lib/MathUtils.ts +13 -0
- package/src/lib/Utils.ts +52 -0
- package/src/lib/estimators/GmxV2GmEstimator.ts +349 -0
- package/src/lib/estimators/PendlePtEstimatorV3.ts +321 -0
- package/src/lib/estimators/PendleYtEstimatorV3.ts +77 -0
- package/src/lib/estimators/SimpleEstimator.ts +16 -0
- package/src/lib/estimators/StandardEstimator.ts +137 -0
- package/src/lib/graphql-types.ts +19 -0
|
@@ -25,7 +25,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _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;
|
|
28
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _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;
|
|
29
29
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
30
30
|
exports.isTokenIgnored = exports.getPendleYtTransformerTokenForIsolationModeToken = exports.getPendlePtMaturityTimestampForIsolationModeToken = exports.getPendlePtTransformerTokenForIsolationModeToken = exports.getPendleYtMarketForIsolationModeToken = exports.getPendleYtTokenForIsolationModeToken = exports.getPendlePtMarketForIsolationModeToken = exports.getGmxV2IsolationModeAsset = exports.isGmxV2IsolationModeAsset = exports.isPendleYtAsset = exports.isPendlePtAsset = exports.isSimpleIsolationModeAsset = exports.PARASWAP_TRADER_ADDRESS_MAP = exports.OOGA_BOOGA_TRADER_ADDRESS_MAP = exports.ODOS_TRADER_ADDRESS_MAP = exports.LIQUIDITY_TOKEN_CONVERSION_MARKET_ID_MAP = exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = exports.WMNT_MAP = exports.WE_ETH_MAP = exports.METH_MAP = exports.GMX_V2_READER_MAP = exports.GMX_V2_DATA_STORE_MAP = exports.EZ_ETH_MAP = exports.ARBITRUM_GAS_INFO_MAP = exports.GM_MARKETS_MAP = exports.DOLOMITE_API_SERVER_URL = exports.BYTES_EMPTY = exports.INVALID_NAME = exports.ADDRESS_ZERO = exports.INTEGERS = void 0;
|
|
31
31
|
var Deployments = __importStar(require("@dolomite-exchange/modules-deployments/src/deploy/deployments.json"));
|
|
@@ -470,75 +470,91 @@ var GM_WST_ETH_ISOLATED_MARKET_ID_MAP = (_27 = {},
|
|
|
470
470
|
_27[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
471
471
|
_27[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
472
472
|
_27);
|
|
473
|
+
var PENDLE_PT_WE_ETH_DEC_2024_MARKET_ID_MAP = (_28 = {},
|
|
474
|
+
_28[ApiTypes_1.Network.ARBITRUM_ONE] = new bignumber_js_1.default(60),
|
|
475
|
+
_28[ApiTypes_1.Network.BASE] = undefined,
|
|
476
|
+
_28[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
477
|
+
_28[ApiTypes_1.Network.MANTLE] = undefined,
|
|
478
|
+
_28[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
479
|
+
_28[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
480
|
+
_28);
|
|
481
|
+
var PENDLE_PT_RS_ETH_DEC_2024_MARKET_ID_MAP = (_29 = {},
|
|
482
|
+
_29[ApiTypes_1.Network.ARBITRUM_ONE] = new bignumber_js_1.default(61),
|
|
483
|
+
_29[ApiTypes_1.Network.BASE] = undefined,
|
|
484
|
+
_29[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
485
|
+
_29[ApiTypes_1.Network.MANTLE] = undefined,
|
|
486
|
+
_29[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
487
|
+
_29[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
488
|
+
_29);
|
|
473
489
|
// =========================
|
|
474
490
|
// ======= Addresses =======
|
|
475
491
|
// =========================
|
|
476
|
-
exports.GM_MARKETS_MAP = (
|
|
477
|
-
|
|
478
|
-
|
|
492
|
+
exports.GM_MARKETS_MAP = (_30 = {},
|
|
493
|
+
_30[ApiTypes_1.Network.ARBITRUM_ONE] = (_31 = {},
|
|
494
|
+
_31[Deployments.GmxV2AAVEIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
479
495
|
indexTokenAddress: '0xba5DdD1f9d7F570dc94a51479a000E3BCE967196',
|
|
480
496
|
longTokenId: undefined,
|
|
481
497
|
longTokenAddress: '0xba5DdD1f9d7F570dc94a51479a000E3BCE967196',
|
|
482
498
|
shortTokenId: NATIVE_USDC_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
483
499
|
marketTokenAddress: '0x1CbBa6346F110c8A5ea739ef2d1eb182990e4EB2',
|
|
484
500
|
},
|
|
485
|
-
|
|
501
|
+
_31[Deployments.GmxV2ARBIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
486
502
|
indexTokenAddress: '0x912CE59144191C1204E64559FE8253a0e49E6548',
|
|
487
503
|
longTokenId: ARB_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
488
504
|
longTokenAddress: '0x912CE59144191C1204E64559FE8253a0e49E6548',
|
|
489
505
|
shortTokenId: NATIVE_USDC_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
490
506
|
marketTokenAddress: '0xC25cEf6061Cf5dE5eb761b50E4743c1F5D7E5407',
|
|
491
507
|
},
|
|
492
|
-
|
|
508
|
+
_31[Deployments.GmxV2BTCIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
493
509
|
indexTokenAddress: '0x47904963fc8b2340414262125aF798B9655E58Cd',
|
|
494
510
|
longTokenId: WBTC_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
495
511
|
longTokenAddress: '0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f',
|
|
496
512
|
shortTokenId: NATIVE_USDC_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
497
513
|
marketTokenAddress: '0x47c031236e19d024b42f8AE6780E44A573170703',
|
|
498
514
|
},
|
|
499
|
-
|
|
515
|
+
_31[Deployments.GmxV2DOGEIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
500
516
|
indexTokenAddress: '0xC4da4c24fd591125c3F47b340b6f4f76111883d8',
|
|
501
517
|
longTokenId: WETH_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
502
518
|
longTokenAddress: '0x82aF49447D8a07e3bd95BD0d56f35241523fBab1',
|
|
503
519
|
shortTokenId: NATIVE_USDC_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
504
520
|
marketTokenAddress: '0x6853EA96FF216fAb11D2d930CE3C508556A4bdc4',
|
|
505
521
|
},
|
|
506
|
-
|
|
522
|
+
_31[Deployments.GmxV2ETHIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
507
523
|
indexTokenAddress: '0x82aF49447D8a07e3bd95BD0d56f35241523fBab1',
|
|
508
524
|
longTokenId: WETH_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
509
525
|
longTokenAddress: '0x82aF49447D8a07e3bd95BD0d56f35241523fBab1',
|
|
510
526
|
shortTokenId: NATIVE_USDC_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
511
527
|
marketTokenAddress: '0x70d95587d40A2caf56bd97485aB3Eec10Bee6336',
|
|
512
528
|
},
|
|
513
|
-
|
|
529
|
+
_31[Deployments.GmxV2GMXIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
514
530
|
indexTokenAddress: '0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a',
|
|
515
531
|
longTokenId: GMX_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
516
532
|
longTokenAddress: '0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a',
|
|
517
533
|
shortTokenId: NATIVE_USDC_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
518
534
|
marketTokenAddress: '0x55391D178Ce46e7AC8eaAEa50A72D1A5a8A622Da',
|
|
519
535
|
},
|
|
520
|
-
|
|
536
|
+
_31[Deployments.GmxV2LINKIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
521
537
|
indexTokenAddress: '0xf97f4df75117a78c1A5a0DBb814Af92458539FB4',
|
|
522
538
|
longTokenId: LINK_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
523
539
|
longTokenAddress: '0xf97f4df75117a78c1A5a0DBb814Af92458539FB4',
|
|
524
540
|
shortTokenId: NATIVE_USDC_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
525
541
|
marketTokenAddress: '0x7f1fa204bb700853D36994DA19F830b6Ad18455C',
|
|
526
542
|
},
|
|
527
|
-
|
|
543
|
+
_31[Deployments.GmxV2SOLIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
528
544
|
indexTokenAddress: '0x2bcC6D6CdBbDC0a4071e48bb3B969b06B3330c07',
|
|
529
545
|
longTokenId: undefined,
|
|
530
546
|
longTokenAddress: '0x2bcC6D6CdBbDC0a4071e48bb3B969b06B3330c07',
|
|
531
547
|
shortTokenId: NATIVE_USDC_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
532
548
|
marketTokenAddress: '0x09400D9DB990D5ed3f35D7be61DfAEB900Af03C9',
|
|
533
549
|
},
|
|
534
|
-
|
|
550
|
+
_31[Deployments.GmxV2UNIIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
535
551
|
indexTokenAddress: '0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0',
|
|
536
552
|
longTokenId: UNI_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
537
553
|
longTokenAddress: '0xFa7F8980b0f1E64A2062791cc3b0871572f1F7f0',
|
|
538
554
|
shortTokenId: NATIVE_USDC_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
539
555
|
marketTokenAddress: '0xc7Abb2C5f3BF3CEB389dF0Eecd6120D451170B50',
|
|
540
556
|
},
|
|
541
|
-
|
|
557
|
+
_31[Deployments.GmxV2WstETHIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
542
558
|
indexTokenAddress: '0x82aF49447D8a07e3bd95BD0d56f35241523fBab1',
|
|
543
559
|
longTokenId: WST_ETH_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
544
560
|
longTokenAddress: '0x5979D7b546E38E414F7E9822514be443A4800529',
|
|
@@ -548,128 +564,128 @@ exports.GM_MARKETS_MAP = (_28 = {},
|
|
|
548
564
|
// ==================================================
|
|
549
565
|
// ============= Single Sided GM tokens =============
|
|
550
566
|
// ==================================================
|
|
551
|
-
|
|
567
|
+
_31[Deployments.GmxV2SingleSidedBTCIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
552
568
|
indexTokenAddress: '0x47904963fc8b2340414262125aF798B9655E58Cd',
|
|
553
569
|
longTokenId: WBTC_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
554
570
|
longTokenAddress: '0x2f2a2543B76A4166549F7aaB2e75Bef0aefC5B0f',
|
|
555
571
|
shortTokenId: WBTC_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
556
572
|
marketTokenAddress: '0x7C11F78Ce78768518D743E81Fdfa2F860C6b9A77',
|
|
557
573
|
},
|
|
558
|
-
|
|
574
|
+
_31[Deployments.GmxV2SingleSidedETHIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
559
575
|
indexTokenAddress: '0x82aF49447D8a07e3bd95BD0d56f35241523fBab1',
|
|
560
576
|
longTokenId: WETH_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
561
577
|
longTokenAddress: '0x82aF49447D8a07e3bd95BD0d56f35241523fBab1',
|
|
562
578
|
shortTokenId: WETH_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
563
579
|
marketTokenAddress: '0x450bb6774Dd8a756274E0ab4107953259d2ac541',
|
|
564
580
|
},
|
|
565
|
-
|
|
566
|
-
_28[ApiTypes_1.Network.BASE] = undefined,
|
|
567
|
-
_28[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
568
|
-
_28[ApiTypes_1.Network.MANTLE] = undefined,
|
|
569
|
-
_28[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
570
|
-
_28[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
571
|
-
_28);
|
|
572
|
-
// OTHER ADDRESSES
|
|
573
|
-
exports.ARBITRUM_GAS_INFO_MAP = (_30 = {},
|
|
574
|
-
_30[ApiTypes_1.Network.ARBITRUM_ONE] = '0x000000000000000000000000000000000000006C',
|
|
581
|
+
_31),
|
|
575
582
|
_30[ApiTypes_1.Network.BASE] = undefined,
|
|
576
583
|
_30[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
577
584
|
_30[ApiTypes_1.Network.MANTLE] = undefined,
|
|
578
585
|
_30[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
579
586
|
_30[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
580
587
|
_30);
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
_31[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
585
|
-
_31[ApiTypes_1.Network.MANTLE] = undefined,
|
|
586
|
-
_31[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
587
|
-
_31[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
588
|
-
_31);
|
|
589
|
-
exports.GMX_V2_DATA_STORE_MAP = (_32 = {},
|
|
590
|
-
_32[ApiTypes_1.Network.ARBITRUM_ONE] = '0xFD70de6b91282D8017aA4E741e9Ae325CAb992d8',
|
|
588
|
+
// OTHER ADDRESSES
|
|
589
|
+
exports.ARBITRUM_GAS_INFO_MAP = (_32 = {},
|
|
590
|
+
_32[ApiTypes_1.Network.ARBITRUM_ONE] = '0x000000000000000000000000000000000000006C',
|
|
591
591
|
_32[ApiTypes_1.Network.BASE] = undefined,
|
|
592
592
|
_32[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
593
593
|
_32[ApiTypes_1.Network.MANTLE] = undefined,
|
|
594
594
|
_32[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
595
595
|
_32[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
596
596
|
_32);
|
|
597
|
-
exports.
|
|
598
|
-
_33[ApiTypes_1.Network.ARBITRUM_ONE] = '
|
|
597
|
+
exports.EZ_ETH_MAP = (_33 = {},
|
|
598
|
+
_33[ApiTypes_1.Network.ARBITRUM_ONE] = '0x2416092f143378750bb29b79eD961ab195CcEea5',
|
|
599
599
|
_33[ApiTypes_1.Network.BASE] = undefined,
|
|
600
600
|
_33[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
601
601
|
_33[ApiTypes_1.Network.MANTLE] = undefined,
|
|
602
602
|
_33[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
603
603
|
_33[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
604
604
|
_33);
|
|
605
|
-
exports.
|
|
606
|
-
_34[ApiTypes_1.Network.ARBITRUM_ONE] =
|
|
605
|
+
exports.GMX_V2_DATA_STORE_MAP = (_34 = {},
|
|
606
|
+
_34[ApiTypes_1.Network.ARBITRUM_ONE] = '0xFD70de6b91282D8017aA4E741e9Ae325CAb992d8',
|
|
607
607
|
_34[ApiTypes_1.Network.BASE] = undefined,
|
|
608
608
|
_34[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
609
|
-
_34[ApiTypes_1.Network.MANTLE] =
|
|
609
|
+
_34[ApiTypes_1.Network.MANTLE] = undefined,
|
|
610
610
|
_34[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
611
611
|
_34[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
612
612
|
_34);
|
|
613
|
-
|
|
614
|
-
_35[ApiTypes_1.Network.ARBITRUM_ONE] = '
|
|
613
|
+
exports.GMX_V2_READER_MAP = (_35 = {},
|
|
614
|
+
_35[ApiTypes_1.Network.ARBITRUM_ONE] = '0x5Ca84c34a381434786738735265b9f3FD814b824',
|
|
615
615
|
_35[ApiTypes_1.Network.BASE] = undefined,
|
|
616
616
|
_35[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
617
617
|
_35[ApiTypes_1.Network.MANTLE] = undefined,
|
|
618
618
|
_35[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
619
619
|
_35[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
620
620
|
_35);
|
|
621
|
-
|
|
622
|
-
_36[ApiTypes_1.Network.ARBITRUM_ONE] =
|
|
621
|
+
exports.METH_MAP = (_36 = {},
|
|
622
|
+
_36[ApiTypes_1.Network.ARBITRUM_ONE] = undefined,
|
|
623
623
|
_36[ApiTypes_1.Network.BASE] = undefined,
|
|
624
624
|
_36[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
625
|
-
_36[ApiTypes_1.Network.MANTLE] =
|
|
625
|
+
_36[ApiTypes_1.Network.MANTLE] = '0xcDA86A272531e8640cD7F1a92c01839911B90bb0',
|
|
626
626
|
_36[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
627
627
|
_36[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
628
628
|
_36);
|
|
629
|
-
var
|
|
630
|
-
_37[ApiTypes_1.Network.ARBITRUM_ONE] = '
|
|
629
|
+
var R_ETH_MAP = (_37 = {},
|
|
630
|
+
_37[ApiTypes_1.Network.ARBITRUM_ONE] = '0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8',
|
|
631
631
|
_37[ApiTypes_1.Network.BASE] = undefined,
|
|
632
632
|
_37[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
633
633
|
_37[ApiTypes_1.Network.MANTLE] = undefined,
|
|
634
634
|
_37[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
635
635
|
_37[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
636
636
|
_37);
|
|
637
|
-
var
|
|
638
|
-
_38[ApiTypes_1.Network.ARBITRUM_ONE] =
|
|
637
|
+
var RS_ETH_MAP = (_38 = {},
|
|
638
|
+
_38[ApiTypes_1.Network.ARBITRUM_ONE] = '0x4186bfc76e2e237523cbc30fd220fe055156b41f',
|
|
639
639
|
_38[ApiTypes_1.Network.BASE] = undefined,
|
|
640
640
|
_38[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
641
|
-
_38[ApiTypes_1.Network.MANTLE] =
|
|
641
|
+
_38[ApiTypes_1.Network.MANTLE] = undefined,
|
|
642
642
|
_38[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
643
643
|
_38[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
644
644
|
_38);
|
|
645
|
-
|
|
646
|
-
_39[ApiTypes_1.Network.ARBITRUM_ONE] = '
|
|
645
|
+
var S_GLP_MAP = (_39 = {},
|
|
646
|
+
_39[ApiTypes_1.Network.ARBITRUM_ONE] = '0x5402B5F40310bDED796c7D0F3FF6683f5C0cFfdf',
|
|
647
647
|
_39[ApiTypes_1.Network.BASE] = undefined,
|
|
648
648
|
_39[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
649
649
|
_39[ApiTypes_1.Network.MANTLE] = undefined,
|
|
650
650
|
_39[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
651
651
|
_39[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
652
652
|
_39);
|
|
653
|
-
|
|
653
|
+
var USDE_MAP = (_40 = {},
|
|
654
654
|
_40[ApiTypes_1.Network.ARBITRUM_ONE] = undefined,
|
|
655
655
|
_40[ApiTypes_1.Network.BASE] = undefined,
|
|
656
656
|
_40[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
657
|
-
_40[ApiTypes_1.Network.MANTLE] = '
|
|
657
|
+
_40[ApiTypes_1.Network.MANTLE] = '0x5d3a1ff2b6bab83b63cd9ad0787074081a52ef34',
|
|
658
658
|
_40[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
659
659
|
_40[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
660
660
|
_40);
|
|
661
|
-
|
|
662
|
-
_41[ApiTypes_1.Network.ARBITRUM_ONE] = '
|
|
661
|
+
exports.WE_ETH_MAP = (_41 = {},
|
|
662
|
+
_41[ApiTypes_1.Network.ARBITRUM_ONE] = '0x35751007a407ca6FEFfE80b3cB397736D2cf4dbe',
|
|
663
663
|
_41[ApiTypes_1.Network.BASE] = undefined,
|
|
664
664
|
_41[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
665
665
|
_41[ApiTypes_1.Network.MANTLE] = undefined,
|
|
666
666
|
_41[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
667
667
|
_41[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
668
668
|
_41);
|
|
669
|
+
exports.WMNT_MAP = (_42 = {},
|
|
670
|
+
_42[ApiTypes_1.Network.ARBITRUM_ONE] = undefined,
|
|
671
|
+
_42[ApiTypes_1.Network.BASE] = undefined,
|
|
672
|
+
_42[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
673
|
+
_42[ApiTypes_1.Network.MANTLE] = '0x78c1b0C915c4FAA5FffA6CAbf0219DA63d7f4cb8',
|
|
674
|
+
_42[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
675
|
+
_42[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
676
|
+
_42);
|
|
677
|
+
var WST_ETH_MAP = (_43 = {},
|
|
678
|
+
_43[ApiTypes_1.Network.ARBITRUM_ONE] = '0x5979D7b546E38E414F7E9822514be443A4800529',
|
|
679
|
+
_43[ApiTypes_1.Network.BASE] = undefined,
|
|
680
|
+
_43[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
681
|
+
_43[ApiTypes_1.Network.MANTLE] = undefined,
|
|
682
|
+
_43[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
683
|
+
_43[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
684
|
+
_43);
|
|
669
685
|
// eslint-disable-next-line max-len
|
|
670
|
-
exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (
|
|
671
|
-
|
|
672
|
-
|
|
686
|
+
exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_44 = {},
|
|
687
|
+
_44[ApiTypes_1.Network.ARBITRUM_ONE] = (_45 = {},
|
|
688
|
+
_45[ISOLATED_GLP_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
673
689
|
tokenAddress: Deployments.GLPIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
674
690
|
unwrapper: Deployments.GLPIsolationModeUnwrapperTraderV4[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
675
691
|
wrapper: Deployments.GLPIsolationModeWrapperTraderV4[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -679,7 +695,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
679
695
|
wrapperReadableName: 'GLP Isolation Mode Wrapper',
|
|
680
696
|
isAsync: false,
|
|
681
697
|
},
|
|
682
|
-
|
|
698
|
+
_45[PLV_GLP_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
683
699
|
tokenAddress: Deployments.PlutusVaultGLPIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
684
700
|
unwrapper: Deployments.PlutusVaultGLPIsolationModeUnwrapperTraderV4[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
685
701
|
wrapper: Deployments.PlutusVaultGLPIsolationModeWrapperTraderV4[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -689,7 +705,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
689
705
|
wrapperReadableName: 'plvGLP Isolation Mode Wrapper',
|
|
690
706
|
isAsync: false,
|
|
691
707
|
},
|
|
692
|
-
|
|
708
|
+
_45[JONES_USDC_V2_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
693
709
|
tokenAddress: Deployments.JonesUSDCV2IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
694
710
|
unwrapper: Deployments.JonesUSDCV2IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
695
711
|
unwrapperForLiquidation: Deployments.JonesUSDCV2IsolationModeUnwrapperTraderForLiquidationV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -700,7 +716,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
700
716
|
wrapperReadableName: 'jUSDC Isolation Mode Wrapper',
|
|
701
717
|
isAsync: false,
|
|
702
718
|
},
|
|
703
|
-
|
|
719
|
+
_45[PENDLE_PT_GLP_MAR_2024_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
704
720
|
tokenAddress: Deployments.PendlePtGLPMar2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
705
721
|
unwrapper: Deployments.PendlePtGLPMar2024IsolationModeUnwrapperTraderV5[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
706
722
|
wrapper: Deployments.PendlePtGLPMar2024IsolationModeWrapperTraderV5[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -710,7 +726,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
710
726
|
wrapperReadableName: 'PT-GLP Isolation Mode Wrapper',
|
|
711
727
|
isAsync: false,
|
|
712
728
|
},
|
|
713
|
-
|
|
729
|
+
_45[PENDLE_YT_GLP_MAR_2024_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
714
730
|
tokenAddress: Deployments.PendleYtGLPMar2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
715
731
|
unwrapper: Deployments.PendleYtGLPMar2024IsolationModeUnwrapperTraderV4[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
716
732
|
wrapper: Deployments.PendleYtGLPMar2024IsolationModeWrapperTraderV4[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -720,7 +736,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
720
736
|
wrapperReadableName: 'YT-GLP Isolation Mode Wrapper',
|
|
721
737
|
isAsync: false,
|
|
722
738
|
},
|
|
723
|
-
|
|
739
|
+
_45[PENDLE_PT_RETH_JUN_2025_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
724
740
|
tokenAddress: Deployments.PendlePtREthJun2025IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
725
741
|
unwrapper: Deployments.PendlePtREthJun2025IsolationModeUnwrapperTraderV5[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
726
742
|
wrapper: Deployments.PendlePtREthJun2025IsolationModeWrapperTraderV5[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -730,7 +746,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
730
746
|
wrapperReadableName: 'PT-rETH Isolation Mode Wrapper',
|
|
731
747
|
isAsync: false,
|
|
732
748
|
},
|
|
733
|
-
|
|
749
|
+
_45[PENDLE_PT_WST_ETH_JUN_2024_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
734
750
|
tokenAddress: Deployments.PendlePtWstEthJun2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
735
751
|
unwrapper: Deployments.PendlePtWstEthJun2024IsolationModeUnwrapperTraderV5[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
736
752
|
wrapper: Deployments.PendlePtWstEthJun2024IsolationModeWrapperTraderV5[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -740,7 +756,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
740
756
|
wrapperReadableName: 'PT-wstETH Isolation Mode Wrapper',
|
|
741
757
|
isAsync: false,
|
|
742
758
|
},
|
|
743
|
-
|
|
759
|
+
_45[PENDLE_PT_WST_ETH_JUN_2025_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
744
760
|
tokenAddress: Deployments.PendlePtWstEthJun2025IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
745
761
|
unwrapper: Deployments.PendlePtWstEthJun2025IsolationModeUnwrapperTraderV5[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
746
762
|
wrapper: Deployments.PendlePtWstEthJun2025IsolationModeWrapperTraderV5[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -750,7 +766,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
750
766
|
wrapperReadableName: 'PT-wstETH Isolation Mode Wrapper',
|
|
751
767
|
isAsync: false,
|
|
752
768
|
},
|
|
753
|
-
|
|
769
|
+
_45[ARB_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
754
770
|
tokenAddress: Deployments.ARBIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
755
771
|
unwrapper: Deployments.ARBIsolationModeUnwrapperTraderV4[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
756
772
|
wrapper: Deployments.ARBIsolationModeWrapperTraderV4[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -760,7 +776,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
760
776
|
wrapperReadableName: 'ARB Isolation Mode Wrapper',
|
|
761
777
|
isAsync: false,
|
|
762
778
|
},
|
|
763
|
-
|
|
779
|
+
_45[GMX_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
764
780
|
tokenAddress: Deployments.GMXIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
765
781
|
unwrapper: Deployments.GMXIsolationModeUnwrapperTraderV4[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
766
782
|
wrapper: Deployments.GMXIsolationModeWrapperTraderV4[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -770,7 +786,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
770
786
|
wrapperReadableName: 'GMX Isolation Mode Wrapper',
|
|
771
787
|
isAsync: false,
|
|
772
788
|
},
|
|
773
|
-
|
|
789
|
+
_45[GM_ARB_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
774
790
|
tokenAddress: Deployments.GmxV2ARBIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
775
791
|
unwrapper: Deployments.GmxV2ARBAsyncIsolationModeUnwrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
776
792
|
wrapper: Deployments.GmxV2ARBAsyncIsolationModeWrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -786,7 +802,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
786
802
|
wrapperReadableName: GM_WRAPPER_LABEL,
|
|
787
803
|
isAsync: true,
|
|
788
804
|
},
|
|
789
|
-
|
|
805
|
+
_45[GM_BTC_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
790
806
|
tokenAddress: Deployments.GmxV2BTCIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
791
807
|
unwrapper: Deployments.GmxV2BTCAsyncIsolationModeUnwrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
792
808
|
wrapper: Deployments.GmxV2BTCAsyncIsolationModeWrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -802,7 +818,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
802
818
|
wrapperReadableName: GM_WRAPPER_LABEL,
|
|
803
819
|
isAsync: true,
|
|
804
820
|
},
|
|
805
|
-
|
|
821
|
+
_45[GM_ETH_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
806
822
|
tokenAddress: Deployments.GmxV2ETHIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
807
823
|
unwrapper: Deployments.GmxV2ETHAsyncIsolationModeUnwrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
808
824
|
wrapper: Deployments.GmxV2ETHAsyncIsolationModeWrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -818,7 +834,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
818
834
|
wrapperReadableName: GM_WRAPPER_LABEL,
|
|
819
835
|
isAsync: true,
|
|
820
836
|
},
|
|
821
|
-
|
|
837
|
+
_45[GM_LINK_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
822
838
|
tokenAddress: Deployments.GmxV2LINKIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
823
839
|
unwrapper: Deployments.GmxV2LINKAsyncIsolationModeUnwrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
824
840
|
wrapper: Deployments.GmxV2LINKAsyncIsolationModeWrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -834,7 +850,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
834
850
|
wrapperReadableName: GM_WRAPPER_LABEL,
|
|
835
851
|
isAsync: true,
|
|
836
852
|
},
|
|
837
|
-
|
|
853
|
+
_45[PENDLE_PT_WE_ETH_APR_2024_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
838
854
|
tokenAddress: Deployments.PendlePtWeETHApr2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
839
855
|
unwrapper: Deployments.PendlePtWeETHApr2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
840
856
|
wrapper: Deployments.PendlePtWeETHApr2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -844,7 +860,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
844
860
|
wrapperReadableName: 'PT-eETH Isolation Mode Wrapper',
|
|
845
861
|
isAsync: false,
|
|
846
862
|
},
|
|
847
|
-
|
|
863
|
+
_45[PENDLE_PT_EZ_ETH_JUN_2024_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
848
864
|
tokenAddress: Deployments.PendlePtEzETHJun2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
849
865
|
unwrapper: Deployments.PendlePtEzETHJun2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
850
866
|
wrapper: Deployments.PendlePtEzETHJun2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -854,7 +870,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
854
870
|
wrapperReadableName: 'PT-ezETH Isolation Mode Wrapper',
|
|
855
871
|
isAsync: false,
|
|
856
872
|
},
|
|
857
|
-
|
|
873
|
+
_45[PENDLE_PT_GLP_SEP_2024_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
858
874
|
tokenAddress: Deployments.PendlePtGLPSep2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
859
875
|
unwrapper: Deployments.PendlePtGLPSep2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
860
876
|
wrapper: Deployments.PendlePtGLPSep2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -864,7 +880,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
864
880
|
wrapperReadableName: 'PT-GLP Isolation Mode Wrapper',
|
|
865
881
|
isAsync: false,
|
|
866
882
|
},
|
|
867
|
-
|
|
883
|
+
_45[PENDLE_PT_WE_ETH_JUN_2024_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
868
884
|
tokenAddress: Deployments.PendlePtWeETHJun2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
869
885
|
unwrapper: Deployments.PendlePtWeETHJun2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
870
886
|
wrapper: Deployments.PendlePtWeETHJun2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -874,7 +890,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
874
890
|
wrapperReadableName: 'PT-eETH Isolation Mode Wrapper',
|
|
875
891
|
isAsync: false,
|
|
876
892
|
},
|
|
877
|
-
|
|
893
|
+
_45[GM_BTC_SINGLE_SIDED_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
878
894
|
tokenAddress: Deployments.GmxV2SingleSidedBTCIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
879
895
|
unwrapper: Deployments.GmxV2SingleSidedBTCAsyncIsolationModeUnwrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
880
896
|
wrapper: Deployments.GmxV2SingleSidedBTCAsyncIsolationModeWrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -884,7 +900,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
884
900
|
wrapperReadableName: GM_WRAPPER_LABEL,
|
|
885
901
|
isAsync: true,
|
|
886
902
|
},
|
|
887
|
-
|
|
903
|
+
_45[GM_ETH_SINGLE_SIDED_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
888
904
|
tokenAddress: Deployments.GmxV2SingleSidedETHIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
889
905
|
unwrapper: Deployments.GmxV2SingleSidedETHAsyncIsolationModeUnwrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
890
906
|
wrapper: Deployments.GmxV2SingleSidedETHAsyncIsolationModeWrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -894,7 +910,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
894
910
|
wrapperReadableName: GM_WRAPPER_LABEL,
|
|
895
911
|
isAsync: true,
|
|
896
912
|
},
|
|
897
|
-
|
|
913
|
+
_45[GM_UNI_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
898
914
|
tokenAddress: Deployments.GmxV2UNIIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
899
915
|
unwrapper: Deployments.GmxV2UNIAsyncIsolationModeUnwrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
900
916
|
wrapper: Deployments.GmxV2UNIAsyncIsolationModeWrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -904,7 +920,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
904
920
|
wrapperReadableName: GM_WRAPPER_LABEL,
|
|
905
921
|
isAsync: true,
|
|
906
922
|
},
|
|
907
|
-
|
|
923
|
+
_45[PENDLE_PT_WE_ETH_SEP_2024_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
908
924
|
tokenAddress: Deployments.PendlePtWeETHSep2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
909
925
|
unwrapper: Deployments.PendlePtWeETHSep2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
910
926
|
wrapper: Deployments.PendlePtWeETHSep2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -914,7 +930,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
914
930
|
wrapperReadableName: 'PT-eETH Isolation Mode Wrapper',
|
|
915
931
|
isAsync: false,
|
|
916
932
|
},
|
|
917
|
-
|
|
933
|
+
_45[PENDLE_PT_EZ_ETH_SEP_2024_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
918
934
|
tokenAddress: Deployments.PendlePtEzETHSep2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
919
935
|
unwrapper: Deployments.PendlePtEzETHSep2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
920
936
|
wrapper: Deployments.PendlePtEzETHSep2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -924,7 +940,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
924
940
|
wrapperReadableName: 'PT-ezETH Isolation Mode Wrapper',
|
|
925
941
|
isAsync: false,
|
|
926
942
|
},
|
|
927
|
-
|
|
943
|
+
_45[PENDLE_PT_RS_ETH_SEP_2024_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
928
944
|
tokenAddress: Deployments.PendlePtRsETHSep2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
929
945
|
unwrapper: Deployments.PendlePtRsETHSep2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
930
946
|
wrapper: Deployments.PendlePtRsETHSep2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -934,7 +950,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
934
950
|
wrapperReadableName: 'PT-rsETH Isolation Mode Wrapper',
|
|
935
951
|
isAsync: false,
|
|
936
952
|
},
|
|
937
|
-
|
|
953
|
+
_45[GM_AAVE_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
938
954
|
tokenAddress: Deployments.GmxV2AAVEIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
939
955
|
unwrapper: Deployments.GmxV2AAVEAsyncIsolationModeUnwrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
940
956
|
wrapper: Deployments.GmxV2AAVEAsyncIsolationModeWrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -944,7 +960,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
944
960
|
wrapperReadableName: GM_WRAPPER_LABEL,
|
|
945
961
|
isAsync: true,
|
|
946
962
|
},
|
|
947
|
-
|
|
963
|
+
_45[GM_DOGE_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
948
964
|
tokenAddress: Deployments.GmxV2DOGEIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
949
965
|
unwrapper: Deployments.GmxV2DOGEAsyncIsolationModeUnwrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
950
966
|
wrapper: Deployments.GmxV2DOGEAsyncIsolationModeWrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -954,7 +970,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
954
970
|
wrapperReadableName: GM_WRAPPER_LABEL,
|
|
955
971
|
isAsync: true,
|
|
956
972
|
},
|
|
957
|
-
|
|
973
|
+
_45[GM_GMX_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
958
974
|
tokenAddress: Deployments.GmxV2GMXIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
959
975
|
unwrapper: Deployments.GmxV2GMXAsyncIsolationModeUnwrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
960
976
|
wrapper: Deployments.GmxV2GMXAsyncIsolationModeWrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -964,7 +980,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
964
980
|
wrapperReadableName: GM_WRAPPER_LABEL,
|
|
965
981
|
isAsync: true,
|
|
966
982
|
},
|
|
967
|
-
|
|
983
|
+
_45[GM_SOL_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
968
984
|
tokenAddress: Deployments.GmxV2SOLIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
969
985
|
unwrapper: Deployments.GmxV2SOLAsyncIsolationModeUnwrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
970
986
|
wrapper: Deployments.GmxV2SOLAsyncIsolationModeWrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -974,7 +990,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
974
990
|
wrapperReadableName: GM_WRAPPER_LABEL,
|
|
975
991
|
isAsync: true,
|
|
976
992
|
},
|
|
977
|
-
|
|
993
|
+
_45[GM_WST_ETH_ISOLATED_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
978
994
|
tokenAddress: Deployments.GmxV2WstETHIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
979
995
|
unwrapper: Deployments.GmxV2WstETHAsyncIsolationModeUnwrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
980
996
|
wrapper: Deployments.GmxV2WstETHAsyncIsolationModeWrapperTraderProxyV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -984,11 +1000,31 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
984
1000
|
wrapperReadableName: GM_WRAPPER_LABEL,
|
|
985
1001
|
isAsync: true,
|
|
986
1002
|
},
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
1003
|
+
_45[PENDLE_PT_WE_ETH_DEC_2024_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
1004
|
+
tokenAddress: Deployments.PendlePtWeETHDec2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
1005
|
+
unwrapper: Deployments.PendlePtWeETHDec2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
1006
|
+
wrapper: Deployments.PendlePtWeETHDec2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
1007
|
+
unwrapperMarketIds: [WE_ETH_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE]],
|
|
1008
|
+
wrapperMarketIds: [WE_ETH_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE]],
|
|
1009
|
+
unwrapperReadableName: 'PT-eETH Isolation Mode Unwrapper',
|
|
1010
|
+
wrapperReadableName: 'PT-eETH Isolation Mode Wrapper',
|
|
1011
|
+
isAsync: false,
|
|
1012
|
+
},
|
|
1013
|
+
_45[PENDLE_PT_RS_ETH_DEC_2024_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
1014
|
+
tokenAddress: Deployments.PendlePtRsETHDec2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
1015
|
+
unwrapper: Deployments.PendlePtRsETHDec2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
1016
|
+
wrapper: Deployments.PendlePtRsETHDec2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
1017
|
+
unwrapperMarketIds: [RS_ETH_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE]],
|
|
1018
|
+
wrapperMarketIds: [RS_ETH_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE]],
|
|
1019
|
+
unwrapperReadableName: 'PT-rsETH Isolation Mode Unwrapper',
|
|
1020
|
+
wrapperReadableName: 'PT-rsETH Isolation Mode Wrapper',
|
|
1021
|
+
isAsync: false,
|
|
1022
|
+
},
|
|
1023
|
+
_45),
|
|
1024
|
+
_44[ApiTypes_1.Network.BASE] = {},
|
|
1025
|
+
_44[ApiTypes_1.Network.BERACHAIN] = {},
|
|
1026
|
+
_44[ApiTypes_1.Network.MANTLE] = (_46 = {},
|
|
1027
|
+
_46[PENDLE_PT_METH_DEC_2024_MARKET_ID_MAP[ApiTypes_1.Network.MANTLE].toFixed()] = {
|
|
992
1028
|
tokenAddress: Deployments.PendlePtmETHDec2024IsolationModeVaultFactory[ApiTypes_1.Network.MANTLE].address,
|
|
993
1029
|
unwrapper: Deployments.PendlePtmETHDec2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.MANTLE].address,
|
|
994
1030
|
wrapper: Deployments.PendlePtmETHDec2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.MANTLE].address,
|
|
@@ -998,7 +1034,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
998
1034
|
wrapperReadableName: 'PT-mETH Isolation Mode Wrapper',
|
|
999
1035
|
isAsync: false,
|
|
1000
1036
|
},
|
|
1001
|
-
|
|
1037
|
+
_46[PENDLE_PT_USDE_DEC_2024_MARKET_ID_MAP[ApiTypes_1.Network.MANTLE].toFixed()] = {
|
|
1002
1038
|
tokenAddress: Deployments.PendlePtUSDeDec2024IsolationModeVaultFactory[ApiTypes_1.Network.MANTLE].address,
|
|
1003
1039
|
unwrapper: Deployments.PendlePtUSDeDec2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.MANTLE].address,
|
|
1004
1040
|
wrapper: Deployments.PendlePtUSDeDec2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.MANTLE].address,
|
|
@@ -1008,7 +1044,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
1008
1044
|
wrapperReadableName: 'PT-USDe Isolation Mode Wrapper',
|
|
1009
1045
|
isAsync: false,
|
|
1010
1046
|
},
|
|
1011
|
-
|
|
1047
|
+
_46[PENDLE_PT_USDE_JUL_2024_MARKET_ID_MAP[ApiTypes_1.Network.MANTLE].toFixed()] = {
|
|
1012
1048
|
tokenAddress: Deployments.PendlePtUSDeJul2024IsolationModeVaultFactory[ApiTypes_1.Network.MANTLE].address,
|
|
1013
1049
|
unwrapper: Deployments.PendlePtUSDeJul2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.MANTLE].address,
|
|
1014
1050
|
wrapper: Deployments.PendlePtUSDeJul2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.MANTLE].address,
|
|
@@ -1018,7 +1054,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
1018
1054
|
wrapperReadableName: 'PT-USDe Isolation Mode Wrapper',
|
|
1019
1055
|
isAsync: false,
|
|
1020
1056
|
},
|
|
1021
|
-
|
|
1057
|
+
_46[SMNT_MARKET_ID_MAP[ApiTypes_1.Network.MANTLE].toFixed()] = {
|
|
1022
1058
|
tokenAddress: Deployments.MNTIsolationModeVaultFactory[ApiTypes_1.Network.MANTLE].address,
|
|
1023
1059
|
unwrapper: Deployments.MNTIsolationModeUnwrapperTraderV2[ApiTypes_1.Network.MANTLE].address,
|
|
1024
1060
|
wrapper: Deployments.MNTIsolationModeWrapperTraderV2[ApiTypes_1.Network.MANTLE].address,
|
|
@@ -1028,7 +1064,7 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
1028
1064
|
wrapperReadableName: 'sMNT Isolation Mode Wrapper',
|
|
1029
1065
|
isAsync: false,
|
|
1030
1066
|
},
|
|
1031
|
-
|
|
1067
|
+
_46[PENDLE_PT_MNT_OCT_2024_MARKET_ID_MAP[ApiTypes_1.Network.MANTLE].toFixed()] = {
|
|
1032
1068
|
tokenAddress: Deployments.PendlePtMntOct2024IsolationModeVaultFactory[ApiTypes_1.Network.MANTLE].address,
|
|
1033
1069
|
unwrapper: Deployments.PendlePtMntOct2024IsolationModeUnwrapperTraderV3[ApiTypes_1.Network.MANTLE].address,
|
|
1034
1070
|
wrapper: Deployments.PendlePtMntOct2024IsolationModeWrapperTraderV3[ApiTypes_1.Network.MANTLE].address,
|
|
@@ -1038,14 +1074,14 @@ exports.ISOLATION_MODE_CONVERSION_MARKET_ID_MAP = (_42 = {},
|
|
|
1038
1074
|
wrapperReadableName: 'PT-MNT Isolation Mode Wrapper',
|
|
1039
1075
|
isAsync: false,
|
|
1040
1076
|
},
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1077
|
+
_46),
|
|
1078
|
+
_44[ApiTypes_1.Network.POLYGON_ZKEVM] = {},
|
|
1079
|
+
_44[ApiTypes_1.Network.X_LAYER] = {},
|
|
1080
|
+
_44);
|
|
1045
1081
|
// eslint-disable-next-line max-len
|
|
1046
|
-
exports.LIQUIDITY_TOKEN_CONVERSION_MARKET_ID_MAP = (
|
|
1047
|
-
|
|
1048
|
-
|
|
1082
|
+
exports.LIQUIDITY_TOKEN_CONVERSION_MARKET_ID_MAP = (_47 = {},
|
|
1083
|
+
_47[ApiTypes_1.Network.ARBITRUM_ONE] = (_48 = {},
|
|
1084
|
+
_48[MAGIC_GLP_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
1049
1085
|
tokenAddress: '0x85667409a723684Fe1e57Dd1ABDe8D88C2f54214',
|
|
1050
1086
|
unwrapper: Deployments.MagicGLPUnwrapperTraderV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
1051
1087
|
wrapper: Deployments.MagicGLPWrapperTraderV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -1055,7 +1091,7 @@ exports.LIQUIDITY_TOKEN_CONVERSION_MARKET_ID_MAP = (_45 = {},
|
|
|
1055
1091
|
wrapperReadableName: 'magicGLP Wrapper',
|
|
1056
1092
|
isAsync: false,
|
|
1057
1093
|
},
|
|
1058
|
-
|
|
1094
|
+
_48[GLP_MARKET_ID_MAP[ApiTypes_1.Network.ARBITRUM_ONE].toFixed()] = {
|
|
1059
1095
|
tokenAddress: '0x5402B5F40310bDED796c7D0F3FF6683f5C0cFfdf',
|
|
1060
1096
|
unwrapper: Deployments.GLPUnwrapperTraderV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
1061
1097
|
wrapper: Deployments.GLPWrapperTraderV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
@@ -1065,170 +1101,173 @@ exports.LIQUIDITY_TOKEN_CONVERSION_MARKET_ID_MAP = (_45 = {},
|
|
|
1065
1101
|
wrapperReadableName: 'GLP Wrapper',
|
|
1066
1102
|
isAsync: false,
|
|
1067
1103
|
},
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
_45);
|
|
1075
|
-
exports.ODOS_TRADER_ADDRESS_MAP = (_47 = {},
|
|
1076
|
-
_47[ApiTypes_1.Network.ARBITRUM_ONE] = Deployments.OdosAggregatorTrader[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
1077
|
-
_47[ApiTypes_1.Network.BASE] = Deployments.OdosAggregatorTrader[ApiTypes_1.Network.BASE].address,
|
|
1078
|
-
_47[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
1079
|
-
_47[ApiTypes_1.Network.MANTLE] = Deployments.OdosAggregatorTrader[ApiTypes_1.Network.MANTLE].address,
|
|
1080
|
-
_47[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
1081
|
-
_47[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
1104
|
+
_48),
|
|
1105
|
+
_47[ApiTypes_1.Network.BASE] = {},
|
|
1106
|
+
_47[ApiTypes_1.Network.BERACHAIN] = {},
|
|
1107
|
+
_47[ApiTypes_1.Network.MANTLE] = {},
|
|
1108
|
+
_47[ApiTypes_1.Network.POLYGON_ZKEVM] = {},
|
|
1109
|
+
_47[ApiTypes_1.Network.X_LAYER] = {},
|
|
1082
1110
|
_47);
|
|
1083
|
-
exports.
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
_48[ApiTypes_1.Network.BERACHAIN] = Deployments.OogaBoogaAggregatorTrader[ApiTypes_1.Network.BERACHAIN].address,
|
|
1087
|
-
_48[ApiTypes_1.Network.MANTLE] = undefined,
|
|
1088
|
-
_48[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
1089
|
-
_48[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
1090
|
-
_48);
|
|
1091
|
-
exports.PARASWAP_TRADER_ADDRESS_MAP = (_49 = {},
|
|
1092
|
-
_49[ApiTypes_1.Network.ARBITRUM_ONE] = Deployments.ParaswapAggregatorTraderV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
1093
|
-
_49[ApiTypes_1.Network.BASE] = Deployments.ParaswapAggregatorTraderV2[ApiTypes_1.Network.BASE].address,
|
|
1111
|
+
exports.ODOS_TRADER_ADDRESS_MAP = (_49 = {},
|
|
1112
|
+
_49[ApiTypes_1.Network.ARBITRUM_ONE] = Deployments.OdosAggregatorTrader[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
1113
|
+
_49[ApiTypes_1.Network.BASE] = Deployments.OdosAggregatorTrader[ApiTypes_1.Network.BASE].address,
|
|
1094
1114
|
_49[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
1095
|
-
_49[ApiTypes_1.Network.MANTLE] =
|
|
1096
|
-
_49[ApiTypes_1.Network.POLYGON_ZKEVM] =
|
|
1115
|
+
_49[ApiTypes_1.Network.MANTLE] = Deployments.OdosAggregatorTrader[ApiTypes_1.Network.MANTLE].address,
|
|
1116
|
+
_49[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
1097
1117
|
_49[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
1098
1118
|
_49);
|
|
1119
|
+
exports.OOGA_BOOGA_TRADER_ADDRESS_MAP = (_50 = {},
|
|
1120
|
+
_50[ApiTypes_1.Network.ARBITRUM_ONE] = undefined,
|
|
1121
|
+
_50[ApiTypes_1.Network.BASE] = undefined,
|
|
1122
|
+
_50[ApiTypes_1.Network.BERACHAIN] = Deployments.OogaBoogaAggregatorTrader[ApiTypes_1.Network.BERACHAIN].address,
|
|
1123
|
+
_50[ApiTypes_1.Network.MANTLE] = undefined,
|
|
1124
|
+
_50[ApiTypes_1.Network.POLYGON_ZKEVM] = undefined,
|
|
1125
|
+
_50[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
1126
|
+
_50);
|
|
1127
|
+
exports.PARASWAP_TRADER_ADDRESS_MAP = (_51 = {},
|
|
1128
|
+
_51[ApiTypes_1.Network.ARBITRUM_ONE] = Deployments.ParaswapAggregatorTraderV2[ApiTypes_1.Network.ARBITRUM_ONE].address,
|
|
1129
|
+
_51[ApiTypes_1.Network.BASE] = Deployments.ParaswapAggregatorTraderV2[ApiTypes_1.Network.BASE].address,
|
|
1130
|
+
_51[ApiTypes_1.Network.BERACHAIN] = undefined,
|
|
1131
|
+
_51[ApiTypes_1.Network.MANTLE] = undefined,
|
|
1132
|
+
_51[ApiTypes_1.Network.POLYGON_ZKEVM] = Deployments.ParaswapAggregatorTraderV2[ApiTypes_1.Network.POLYGON_ZKEVM].address,
|
|
1133
|
+
_51[ApiTypes_1.Network.X_LAYER] = undefined,
|
|
1134
|
+
_51);
|
|
1099
1135
|
var PT_EZ_ETH_JUN_2024_MARKET_ARBITRUM = '0x5E03C94Fc5Fb2E21882000A96Df0b63d2c4312e2';
|
|
1100
1136
|
var PT_EZ_ETH_SEP_2024_MARKET_ARBITRUM = '0x35f3db08a6e9cb4391348b0b404f493e7ae264c0';
|
|
1101
1137
|
var PT_GLP_MAR_2024_MARKET_ARBITRUM = '0x7D49E5Adc0EAAD9C027857767638613253eF125f';
|
|
1102
1138
|
var PT_GLP_SEP_2024_MARKET_ARBITRUM = '0x551c423c441db0b691b5630f04d2080caee25963';
|
|
1103
1139
|
var PT_METH_DEC_2024_MARKET_MANTLE = '0x99E83709846b6cB82d47a0D78b175E68497EA28B';
|
|
1104
1140
|
var PT_R_ETH_2025_MARKET_ARBITRUM = '0x14FbC760eFaF36781cB0eb3Cb255aD976117B9Bd';
|
|
1141
|
+
var PT_RS_ETH_DEC_2024_MARKET_ARBITRUM = '0xcb471665bf23b2ac6196d84d947490fd5571215f';
|
|
1105
1142
|
var PT_RS_ETH_SEP_2024_MARKET_ARBITRUM = '0xed99fc8bdb8e9e7b8240f62f69609a125a0fbf14';
|
|
1106
1143
|
var PT_USDE_DEC_2024_MARKET_MANTLE = '0x2ddD4808fBB2e08b563af99B8F340433c32C8cc2';
|
|
1107
1144
|
var PT_USDE_JUL_2024_MARKET_MANTLE = '0x7dc07c575a0c512422dcab82ce9ed74db58be30c';
|
|
1108
1145
|
var PT_WE_ETH_APR_2024_MARKET_ARBITRUM = '0xE11f9786B06438456b044B3E21712228ADcAA0D1';
|
|
1146
|
+
var PT_WE_ETH_DEC_2024_MARKET_ARBITRUM = '0x6b92feb89ed16aa971b096e247fe234db4aaa262';
|
|
1109
1147
|
var PT_WE_ETH_JUN_2024_MARKET_ARBITRUM = '0x952083cde7aaa11ab8449057f7de23a970aa8472';
|
|
1110
1148
|
var PT_WE_ETH_SEP_2024_MARKET_ARBITRUM = '0xf9f9779d8ff604732eba9ad345e6a27ef5c2a9d6';
|
|
1111
1149
|
var PT_WST_ETH_2024_MARKET_ARBITRUM = '0xFd8AeE8FCC10aac1897F8D5271d112810C79e022';
|
|
1112
1150
|
var PT_WST_ETH_2025_MARKET_ARBITRUM = '0x08a152834de126d2ef83D612ff36e4523FD0017F';
|
|
1113
|
-
var PENDLE_PT_MARKET_MAP = (
|
|
1114
|
-
|
|
1115
|
-
|
|
1151
|
+
var PENDLE_PT_MARKET_MAP = (_52 = {},
|
|
1152
|
+
_52[ApiTypes_1.Network.ARBITRUM_ONE] = (_53 = {},
|
|
1153
|
+
_53[Deployments.PendlePtEzETHJun2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1116
1154
|
marketTokenAddress: PT_EZ_ETH_JUN_2024_MARKET_ARBITRUM,
|
|
1117
1155
|
transformerTokenAddress: exports.EZ_ETH_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1118
1156
|
ytTokenAddress: '0x05735b65686635f5c87aa9d2dae494fb2e838f38',
|
|
1119
1157
|
maturityTimestamp: 1719446400, // 27-JUN-2024
|
|
1120
1158
|
},
|
|
1121
|
-
|
|
1159
|
+
_53[Deployments.PendlePtEzETHSep2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1122
1160
|
marketTokenAddress: PT_EZ_ETH_SEP_2024_MARKET_ARBITRUM,
|
|
1123
1161
|
transformerTokenAddress: exports.EZ_ETH_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1124
1162
|
ytTokenAddress: '0x05735b65686635f5c87aa9d2dae494fb2e838f38',
|
|
1125
1163
|
maturityTimestamp: 1727308800, // 26-SEP-2024
|
|
1126
1164
|
},
|
|
1127
|
-
|
|
1165
|
+
_53[Deployments.PendlePtGLPMar2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1128
1166
|
marketTokenAddress: PT_GLP_MAR_2024_MARKET_ARBITRUM,
|
|
1129
1167
|
transformerTokenAddress: S_GLP_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1130
1168
|
ytTokenAddress: '0x56051f8e46b67b4d286454995dbc6f5f3c433e34',
|
|
1131
1169
|
maturityTimestamp: 1711584000, // 28-MAR-2024
|
|
1132
1170
|
},
|
|
1133
|
-
|
|
1171
|
+
_53[Deployments.PendlePtGLPSep2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1134
1172
|
marketTokenAddress: PT_GLP_SEP_2024_MARKET_ARBITRUM,
|
|
1135
1173
|
transformerTokenAddress: S_GLP_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1136
1174
|
ytTokenAddress: '0xf875f32648BE14d04e0Df4a977Afd4290DD92713',
|
|
1137
1175
|
maturityTimestamp: 1727308800, // 26-SEP-2024
|
|
1138
1176
|
},
|
|
1139
|
-
|
|
1177
|
+
_53[Deployments.PendlePtREthJun2025IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1140
1178
|
marketTokenAddress: PT_R_ETH_2025_MARKET_ARBITRUM,
|
|
1141
1179
|
transformerTokenAddress: R_ETH_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1142
1180
|
maturityTimestamp: 1750896000,
|
|
1143
1181
|
ytTokenAddress: '0xe822ae44eb2466b4e263b1cbc94b4833ddef9700',
|
|
1144
1182
|
},
|
|
1145
|
-
|
|
1183
|
+
_53[Deployments.PendlePtRsETHDec2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1184
|
+
marketTokenAddress: PT_RS_ETH_DEC_2024_MARKET_ARBITRUM,
|
|
1185
|
+
transformerTokenAddress: RS_ETH_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1186
|
+
ytTokenAddress: '0x4b755c030b455b959246fc0f940de3a95f8e81ec',
|
|
1187
|
+
maturityTimestamp: 1735171200, // 26-DEC-2024
|
|
1188
|
+
},
|
|
1189
|
+
_53[Deployments.PendlePtRsETHSep2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1146
1190
|
marketTokenAddress: PT_RS_ETH_SEP_2024_MARKET_ARBITRUM,
|
|
1147
1191
|
transformerTokenAddress: RS_ETH_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1148
1192
|
ytTokenAddress: '0x2fdc424946aa72d42e2f897447d7c335e64845f0',
|
|
1149
1193
|
maturityTimestamp: 1727308800, // 26-SEP-2024
|
|
1150
1194
|
},
|
|
1151
|
-
|
|
1195
|
+
_53[Deployments.PendlePtWeETHApr2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1152
1196
|
marketTokenAddress: PT_WE_ETH_APR_2024_MARKET_ARBITRUM,
|
|
1153
1197
|
transformerTokenAddress: exports.WE_ETH_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1154
1198
|
ytTokenAddress: '0xf28db483773e3616da91fdfa7b5d4090ac40cc59',
|
|
1155
1199
|
maturityTimestamp: 1714003200, // 25-APR-2024
|
|
1156
1200
|
},
|
|
1157
|
-
|
|
1201
|
+
_53[Deployments.PendlePtWeETHDec2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1202
|
+
marketTokenAddress: PT_WE_ETH_DEC_2024_MARKET_ARBITRUM,
|
|
1203
|
+
transformerTokenAddress: exports.WE_ETH_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1204
|
+
ytTokenAddress: '0x7f37674e5c6dc16b30829b7ae1e0b7fe08144b7d',
|
|
1205
|
+
maturityTimestamp: 1735171200, // 26-DEC-2024
|
|
1206
|
+
},
|
|
1207
|
+
_53[Deployments.PendlePtWeETHJun2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1158
1208
|
marketTokenAddress: PT_WE_ETH_JUN_2024_MARKET_ARBITRUM,
|
|
1159
1209
|
transformerTokenAddress: exports.WE_ETH_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1160
1210
|
ytTokenAddress: '0xDcdC1004d5C271ADc048982d7EB900cC4F472333',
|
|
1161
1211
|
maturityTimestamp: 1719446400, // 27-JUN-2024
|
|
1162
1212
|
},
|
|
1163
|
-
|
|
1213
|
+
_53[Deployments.PendlePtWeETHSep2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1164
1214
|
marketTokenAddress: PT_WE_ETH_SEP_2024_MARKET_ARBITRUM,
|
|
1165
1215
|
transformerTokenAddress: exports.WE_ETH_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1166
1216
|
ytTokenAddress: '0xfb2a7ac0372c2425c273932f8d438518402a873e',
|
|
1167
1217
|
maturityTimestamp: 1727308800, // 26-SEP-2024
|
|
1168
1218
|
},
|
|
1169
|
-
|
|
1219
|
+
_53[Deployments.PendlePtWstEthJun2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1170
1220
|
marketTokenAddress: PT_WST_ETH_2024_MARKET_ARBITRUM,
|
|
1171
1221
|
transformerTokenAddress: WST_ETH_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1172
1222
|
ytTokenAddress: '0x0052b6096f8c1dcbefb9ba381eb6b67479b5c56b',
|
|
1173
1223
|
maturityTimestamp: 1719446400, // 27-JUN-2024
|
|
1174
1224
|
},
|
|
1175
|
-
|
|
1225
|
+
_53[Deployments.PendlePtWstEthJun2025IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1176
1226
|
marketTokenAddress: PT_WST_ETH_2025_MARKET_ARBITRUM,
|
|
1177
1227
|
transformerTokenAddress: WST_ETH_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1178
1228
|
ytTokenAddress: '0xc8d9369809e48d03ff7b69d7979b174e2d34874c',
|
|
1179
1229
|
maturityTimestamp: 1750896000, // 28-JUN-2025
|
|
1180
1230
|
},
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1231
|
+
_53),
|
|
1232
|
+
_52[ApiTypes_1.Network.BASE] = {},
|
|
1233
|
+
_52[ApiTypes_1.Network.BERACHAIN] = {},
|
|
1234
|
+
_52[ApiTypes_1.Network.MANTLE] = (_54 = {},
|
|
1235
|
+
_54[Deployments.PendlePtmETHDec2024IsolationModeVaultFactory[ApiTypes_1.Network.MANTLE].address] = {
|
|
1186
1236
|
marketTokenAddress: PT_METH_DEC_2024_MARKET_MANTLE,
|
|
1187
1237
|
transformerTokenAddress: exports.METH_MAP[ApiTypes_1.Network.MANTLE],
|
|
1188
1238
|
ytTokenAddress: '0x007d35c67f97f2a898102a66df346f9e9422f7f0',
|
|
1189
1239
|
maturityTimestamp: 1735171200, // 26-DEC-2024
|
|
1190
1240
|
},
|
|
1191
|
-
|
|
1241
|
+
_54[Deployments.PendlePtMntOct2024IsolationModeVaultFactory[ApiTypes_1.Network.MANTLE].address] = {
|
|
1192
1242
|
marketTokenAddress: '0x4604FC1C52cBfc38C4E6DFd2CD2a9bF5b84f65Cb',
|
|
1193
1243
|
transformerTokenAddress: exports.WMNT_MAP[ApiTypes_1.Network.MANTLE],
|
|
1194
1244
|
ytTokenAddress: '0x40ae8dbd3c41e38fe1bbc010eee40685003945a3',
|
|
1195
1245
|
maturityTimestamp: 1727913600, // 03-OCT-2024
|
|
1196
1246
|
},
|
|
1197
|
-
|
|
1247
|
+
_54[Deployments.PendlePtUSDeJul2024IsolationModeVaultFactory[ApiTypes_1.Network.MANTLE].address] = {
|
|
1198
1248
|
marketTokenAddress: PT_USDE_JUL_2024_MARKET_MANTLE,
|
|
1199
1249
|
transformerTokenAddress: USDE_MAP[ApiTypes_1.Network.MANTLE],
|
|
1200
1250
|
ytTokenAddress: '0xb3c0f96c4208185cc22afd1b7cf21f1dabd9648a',
|
|
1201
1251
|
maturityTimestamp: 1721865600, // 25-JUL-2024
|
|
1202
1252
|
},
|
|
1203
|
-
|
|
1253
|
+
_54[Deployments.PendlePtUSDeDec2024IsolationModeVaultFactory[ApiTypes_1.Network.MANTLE].address] = {
|
|
1204
1254
|
marketTokenAddress: PT_USDE_DEC_2024_MARKET_MANTLE,
|
|
1205
1255
|
transformerTokenAddress: USDE_MAP[ApiTypes_1.Network.MANTLE],
|
|
1206
1256
|
ytTokenAddress: '0xb3c0f96c4208185cc22afd1b7cf21f1dabd9648a',
|
|
1207
1257
|
maturityTimestamp: 1735171200, // 26-DEC-2024
|
|
1208
1258
|
},
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
var PENDLE_YT_MARKET_MAP = (
|
|
1214
|
-
|
|
1215
|
-
|
|
1259
|
+
_54),
|
|
1260
|
+
_52[ApiTypes_1.Network.POLYGON_ZKEVM] = {},
|
|
1261
|
+
_52[ApiTypes_1.Network.X_LAYER] = {},
|
|
1262
|
+
_52);
|
|
1263
|
+
var PENDLE_YT_MARKET_MAP = (_55 = {},
|
|
1264
|
+
_55[ApiTypes_1.Network.ARBITRUM_ONE] = (_56 = {},
|
|
1265
|
+
_56[Deployments.PendleYtGLPMar2024IsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = {
|
|
1216
1266
|
marketTokenAddress: PT_GLP_MAR_2024_MARKET_ARBITRUM,
|
|
1217
1267
|
transformerTokenAddress: S_GLP_MAP[ApiTypes_1.Network.ARBITRUM_ONE],
|
|
1218
1268
|
ytTokenAddress: '0x56051f8e46b67b4d286454995dbc6f5f3c433e34',
|
|
1219
1269
|
maturityTimestamp: 1711584000, // 28-MAR-2024
|
|
1220
1270
|
},
|
|
1221
|
-
_54),
|
|
1222
|
-
_53[ApiTypes_1.Network.BASE] = {},
|
|
1223
|
-
_53[ApiTypes_1.Network.BERACHAIN] = {},
|
|
1224
|
-
_53[ApiTypes_1.Network.MANTLE] = {},
|
|
1225
|
-
_53[ApiTypes_1.Network.POLYGON_ZKEVM] = {},
|
|
1226
|
-
_53[ApiTypes_1.Network.X_LAYER] = {},
|
|
1227
|
-
_53);
|
|
1228
|
-
var SIMPLE_ISOLATION_MODE_MAP = (_55 = {},
|
|
1229
|
-
_55[ApiTypes_1.Network.ARBITRUM_ONE] = (_56 = {},
|
|
1230
|
-
_56[Deployments.ARBIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = true,
|
|
1231
|
-
_56[Deployments.GMXIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = true,
|
|
1232
1271
|
_56),
|
|
1233
1272
|
_55[ApiTypes_1.Network.BASE] = {},
|
|
1234
1273
|
_55[ApiTypes_1.Network.BERACHAIN] = {},
|
|
@@ -1236,6 +1275,17 @@ var SIMPLE_ISOLATION_MODE_MAP = (_55 = {},
|
|
|
1236
1275
|
_55[ApiTypes_1.Network.POLYGON_ZKEVM] = {},
|
|
1237
1276
|
_55[ApiTypes_1.Network.X_LAYER] = {},
|
|
1238
1277
|
_55);
|
|
1278
|
+
var SIMPLE_ISOLATION_MODE_MAP = (_57 = {},
|
|
1279
|
+
_57[ApiTypes_1.Network.ARBITRUM_ONE] = (_58 = {},
|
|
1280
|
+
_58[Deployments.ARBIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = true,
|
|
1281
|
+
_58[Deployments.GMXIsolationModeVaultFactory[ApiTypes_1.Network.ARBITRUM_ONE].address] = true,
|
|
1282
|
+
_58),
|
|
1283
|
+
_57[ApiTypes_1.Network.BASE] = {},
|
|
1284
|
+
_57[ApiTypes_1.Network.BERACHAIN] = {},
|
|
1285
|
+
_57[ApiTypes_1.Network.MANTLE] = {},
|
|
1286
|
+
_57[ApiTypes_1.Network.POLYGON_ZKEVM] = {},
|
|
1287
|
+
_57[ApiTypes_1.Network.X_LAYER] = {},
|
|
1288
|
+
_57);
|
|
1239
1289
|
function isSimpleIsolationModeAsset(network, tokenAddress) {
|
|
1240
1290
|
return !!SIMPLE_ISOLATION_MODE_MAP[network][tokenAddress];
|
|
1241
1291
|
}
|