@ichidao/ichi-vaults-sdk 0.0.110 → 0.0.112
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/README.md +3 -0
- package/dist/abis/types/ClPool.d.ts +986 -0
- package/dist/abis/types/ClPool.js +3 -0
- package/dist/abis/types/ClPool.js.map +1 -0
- package/dist/abis/types/factories/ClPool__factory.d.ts +1020 -0
- package/dist/abis/types/factories/ClPool__factory.js +1317 -0
- package/dist/abis/types/factories/ClPool__factory.js.map +1 -0
- package/dist/abis/types/factories/index.d.ts +1 -0
- package/dist/abis/types/factories/index.js +3 -1
- package/dist/abis/types/factories/index.js.map +1 -1
- package/dist/abis/types/index.d.ts +2 -0
- package/dist/abis/types/index.js +3 -1
- package/dist/abis/types/index.js.map +1 -1
- package/dist/src/abis/types/ClPool.d.ts +986 -0
- package/dist/src/abis/types/factories/ClPool__factory.d.ts +1020 -0
- package/dist/src/abis/types/factories/index.d.ts +1 -0
- package/dist/src/abis/types/index.d.ts +2 -0
- package/dist/src/contracts/index.d.ts +2 -1
- package/dist/src/contracts/index.js +11 -1
- package/dist/src/contracts/index.js.map +1 -1
- package/dist/src/functions/priceFromPool.d.ts +2 -1
- package/dist/src/functions/priceFromPool.js +63 -33
- package/dist/src/functions/priceFromPool.js.map +1 -1
- package/dist/src/functions/vaultMetrics.js +31 -55
- package/dist/src/functions/vaultMetrics.js.map +1 -1
- package/dist/src/graphql/constants.js +81 -68
- package/dist/src/graphql/constants.js.map +1 -1
- package/dist/src/index.cjs.js +1 -1
- package/dist/src/index.esm.js +1 -1
- package/dist/src/src/contracts/index.d.ts +2 -1
- package/dist/src/src/functions/priceFromPool.d.ts +2 -1
- package/dist/src/src/types/index.d.ts +3 -0
- package/dist/src/src/utils/config/addresses.d.ts +4 -0
- package/dist/src/types/index.d.ts +3 -0
- package/dist/src/types/index.js +3 -1
- package/dist/src/types/index.js.map +1 -1
- package/dist/src/utils/config/addresses.d.ts +4 -0
- package/dist/src/utils/config/addresses.js +152 -126
- package/dist/src/utils/config/addresses.js.map +1 -1
- package/package.json +1 -1
@@ -1,8 +1,12 @@
|
|
1
1
|
"use strict";
|
2
|
-
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;
|
2
|
+
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;
|
3
3
|
Object.defineProperty(exports, "__esModule", { value: true });
|
4
|
-
exports.MULTICALL_ADDRESSES = exports.addressConfig = void 0;
|
4
|
+
exports.MULTICALL_ADDRESSES = exports.addressConfig = exports.AMM_VERSIONS = void 0;
|
5
5
|
var types_1 = require("../../types");
|
6
|
+
exports.AMM_VERSIONS = {
|
7
|
+
ALGEBRA_INTEGRAL: 'algebraIntegral',
|
8
|
+
VELODROME: 'velodrome',
|
9
|
+
};
|
6
10
|
exports.addressConfig = (_a = {},
|
7
11
|
_a[types_1.SupportedChainId.arbitrum] = (_b = {},
|
8
12
|
_b[types_1.SupportedDex.UniswapV3] = {
|
@@ -51,7 +55,7 @@ exports.addressConfig = (_a = {},
|
|
51
55
|
},
|
52
56
|
vaultDeployerAddress: '0xd466e09be665dDb3e1B3e2631413c6fa033E0e1e',
|
53
57
|
isAlgebra: true,
|
54
|
-
ammVersion:
|
58
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
55
59
|
},
|
56
60
|
_c),
|
57
61
|
_a[types_1.SupportedChainId.arthera_testnet] = (_d = {},
|
@@ -63,7 +67,7 @@ exports.addressConfig = (_a = {},
|
|
63
67
|
},
|
64
68
|
vaultDeployerAddress: '0x21222daEcAB7E64556ADED3EE7B891742E7e766b',
|
65
69
|
isAlgebra: true,
|
66
|
-
ammVersion:
|
70
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
67
71
|
},
|
68
72
|
_d),
|
69
73
|
_a[types_1.SupportedChainId.polygon] = (_e = {},
|
@@ -152,7 +156,7 @@ exports.addressConfig = (_a = {},
|
|
152
156
|
},
|
153
157
|
vaultDeployerAddress: '0x7d11De61c219b70428Bb3199F0DD88bA9E76bfEE',
|
154
158
|
isAlgebra: true,
|
155
|
-
ammVersion:
|
159
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
156
160
|
},
|
157
161
|
_g[types_1.SupportedDex.Kim] = {
|
158
162
|
factoryAddress: '0x28cF3b462a1ADdE87fe7144d110BcF0D464C97b7',
|
@@ -162,7 +166,7 @@ exports.addressConfig = (_a = {},
|
|
162
166
|
},
|
163
167
|
vaultDeployerAddress: '0x7d11De61c219b70428Bb3199F0DD88bA9E76bfEE',
|
164
168
|
isAlgebra: true,
|
165
|
-
ammVersion:
|
169
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
166
170
|
},
|
167
171
|
_g[types_1.SupportedDex.Pancakeswap] = {
|
168
172
|
factoryAddress: '0x24430E837efB64EF87bb32be03437fc6005EEF74',
|
@@ -181,7 +185,7 @@ exports.addressConfig = (_a = {},
|
|
181
185
|
},
|
182
186
|
vaultDeployerAddress: '0x7d11De61c219b70428Bb3199F0DD88bA9E76bfEE',
|
183
187
|
isAlgebra: true,
|
184
|
-
ammVersion:
|
188
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
185
189
|
},
|
186
190
|
_g[types_1.SupportedDex.UniswapV3] = {
|
187
191
|
factoryAddress: '0xaBe5B5AC472Ead17B4B4CaC7fAF42430748ab3b3',
|
@@ -202,7 +206,7 @@ exports.addressConfig = (_a = {},
|
|
202
206
|
},
|
203
207
|
vaultDeployerAddress: '0xAe781EB26fcA1486032e8A37FAae0C610979C7a1',
|
204
208
|
isAlgebra: true,
|
205
|
-
ammVersion:
|
209
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
206
210
|
},
|
207
211
|
_h),
|
208
212
|
_a[types_1.SupportedChainId.berachain] = (_j = {},
|
@@ -223,7 +227,7 @@ exports.addressConfig = (_a = {},
|
|
223
227
|
},
|
224
228
|
vaultDeployerAddress: '0x9Fbba6c87923af2561A2391198166b51Cf5736E8',
|
225
229
|
isAlgebra: true,
|
226
|
-
ammVersion:
|
230
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
227
231
|
},
|
228
232
|
_j),
|
229
233
|
_a[types_1.SupportedChainId.berachain_bartio] = (_k = {},
|
@@ -235,7 +239,7 @@ exports.addressConfig = (_a = {},
|
|
235
239
|
},
|
236
240
|
vaultDeployerAddress: '0x249397Aa78bE5955DBc2102DF31B3FB2A92B1AA8',
|
237
241
|
isAlgebra: true,
|
238
|
-
ammVersion:
|
242
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
239
243
|
},
|
240
244
|
_k[types_1.SupportedDex.Kodiak] = {
|
241
245
|
factoryAddress: '0xCa8310832053de4909fe1A6C89C7200D033CBB76',
|
@@ -256,7 +260,7 @@ exports.addressConfig = (_a = {},
|
|
256
260
|
},
|
257
261
|
vaultDeployerAddress: '0xaD7cf2b8ce5eB8b75dA393fc164C4F4502761379',
|
258
262
|
isAlgebra: true,
|
259
|
-
ammVersion:
|
263
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
260
264
|
},
|
261
265
|
_l[types_1.SupportedDex.Thruster] = {
|
262
266
|
factoryAddress: '0x2145B1CCe3A13AF4fBB14131f1F480fc121EAD93',
|
@@ -286,7 +290,7 @@ exports.addressConfig = (_a = {},
|
|
286
290
|
},
|
287
291
|
vaultDeployerAddress: '0x4d999694f53614de3fd6748C0f5c7f0CdC16639b',
|
288
292
|
isAlgebra: true,
|
289
|
-
ammVersion:
|
293
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
290
294
|
},
|
291
295
|
_m),
|
292
296
|
_a[types_1.SupportedChainId.bsc] = (_o = {},
|
@@ -325,7 +329,7 @@ exports.addressConfig = (_a = {},
|
|
325
329
|
},
|
326
330
|
vaultDeployerAddress: '0x05cC3CA6E768a68A7f86b09e3ceE754437bd5f12',
|
327
331
|
isAlgebra: true,
|
328
|
-
ammVersion:
|
332
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
329
333
|
},
|
330
334
|
_o),
|
331
335
|
_a[types_1.SupportedChainId.celo] = (_p = {},
|
@@ -388,7 +392,7 @@ exports.addressConfig = (_a = {},
|
|
388
392
|
},
|
389
393
|
vaultDeployerAddress: '0xE495eFdf1d19668a27042D30ee22AC3C58b6fB6c',
|
390
394
|
isAlgebra: true,
|
391
|
-
ammVersion:
|
395
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
392
396
|
},
|
393
397
|
_s),
|
394
398
|
_a[types_1.SupportedChainId.flare] = (_t = {},
|
@@ -466,8 +470,19 @@ exports.addressConfig = (_a = {},
|
|
466
470
|
isAlgebra: false,
|
467
471
|
},
|
468
472
|
_y),
|
469
|
-
_a[types_1.SupportedChainId.
|
470
|
-
_z[types_1.SupportedDex.
|
473
|
+
_a[types_1.SupportedChainId.hyperevm] = (_z = {},
|
474
|
+
_z[types_1.SupportedDex.HyperSwap] = {
|
475
|
+
factoryAddress: '0x8cCd02E769e6A668a447Bd15e134C31bEccd8182',
|
476
|
+
depositGuard: {
|
477
|
+
address: '0x4858d61E83118f124b7dF3E908a3bb465540fFBc',
|
478
|
+
version: 2,
|
479
|
+
},
|
480
|
+
vaultDeployerAddress: '0xd71D9b66875C7d57AD630ee58F82e5e76B227aaB',
|
481
|
+
isAlgebra: false,
|
482
|
+
},
|
483
|
+
_z),
|
484
|
+
_a[types_1.SupportedChainId.ink] = (_0 = {},
|
485
|
+
_0[types_1.SupportedDex.Reservoir] = {
|
471
486
|
factoryAddress: '0x65CD1f0ac298519BE4891B5812053e00BD2074AC',
|
472
487
|
depositGuard: {
|
473
488
|
address: '0x51339a25FB3f8351c43b4B552AF82C1B234FED93',
|
@@ -476,9 +491,19 @@ exports.addressConfig = (_a = {},
|
|
476
491
|
vaultDeployerAddress: '0xcBd1F70235904d3764f5d159022BA0281536E3E8',
|
477
492
|
isAlgebra: false,
|
478
493
|
},
|
479
|
-
|
480
|
-
|
481
|
-
|
494
|
+
_0[types_1.SupportedDex.Velodrome] = {
|
495
|
+
factoryAddress: '0x2A3EB890dC0902c7Ca6CC71a1E9670463b32a3f0',
|
496
|
+
depositGuard: {
|
497
|
+
address: '0x388C3aC7039b2C1522B9Fb423e6D4271aca708D1',
|
498
|
+
version: 2,
|
499
|
+
},
|
500
|
+
vaultDeployerAddress: '0xcBd1F70235904d3764f5d159022BA0281536E3E8',
|
501
|
+
isAlgebra: false,
|
502
|
+
ammVersion: exports.AMM_VERSIONS.VELODROME,
|
503
|
+
},
|
504
|
+
_0),
|
505
|
+
_a[types_1.SupportedChainId.ink_sepolia] = (_1 = {},
|
506
|
+
_1[types_1.SupportedDex.UniswapV3] = {
|
482
507
|
factoryAddress: '0x259743Ff627313D55b6a15735bD40Aa9aC4D6aDE',
|
483
508
|
depositGuard: {
|
484
509
|
address: '0xCa8310832053de4909fe1A6C89C7200D033CBB76',
|
@@ -487,9 +512,9 @@ exports.addressConfig = (_a = {},
|
|
487
512
|
vaultDeployerAddress: '0xC5901f39c510c6D8c4d7b692608A6AA8982E4C3f',
|
488
513
|
isAlgebra: false,
|
489
514
|
},
|
490
|
-
|
491
|
-
_a[types_1.SupportedChainId.kava] = (
|
492
|
-
|
515
|
+
_1),
|
516
|
+
_a[types_1.SupportedChainId.kava] = (_2 = {},
|
517
|
+
_2[types_1.SupportedDex.Kinetix] = {
|
493
518
|
factoryAddress: '0x2d2c72C4dC71AA32D64e5142e336741131A73fc0',
|
494
519
|
depositGuard: {
|
495
520
|
address: '0xADDA3A15EA71c223a82Af86d4578EF2B076035F1',
|
@@ -498,9 +523,9 @@ exports.addressConfig = (_a = {},
|
|
498
523
|
vaultDeployerAddress: '0x75178e0a2829B73E3AE4C21eE64F4B684085392a',
|
499
524
|
isAlgebra: false,
|
500
525
|
},
|
501
|
-
|
502
|
-
_a[types_1.SupportedChainId.linea] = (
|
503
|
-
|
526
|
+
_2),
|
527
|
+
_a[types_1.SupportedChainId.linea] = (_3 = {},
|
528
|
+
_3[types_1.SupportedDex.Linehub] = {
|
504
529
|
factoryAddress: '0xb0e7871d53BE1b1d746bBfD9511e2eF3cD70a6E7',
|
505
530
|
depositGuard: {
|
506
531
|
address: '0x60f50858953dBf1A699B88037D9dce235b8c505D',
|
@@ -509,7 +534,7 @@ exports.addressConfig = (_a = {},
|
|
509
534
|
vaultDeployerAddress: '0x75178e0a2829B73E3AE4C21eE64F4B684085392a',
|
510
535
|
isAlgebra: false,
|
511
536
|
},
|
512
|
-
|
537
|
+
_3[types_1.SupportedDex.Lynex] = {
|
513
538
|
factoryAddress: '0x0248b992ac2a75294b05286E9DD3A2bD3C9CFE4B',
|
514
539
|
depositGuard: {
|
515
540
|
address: '0x57C9d919AEA56171506cfb62B60ce76be0A079DF',
|
@@ -518,7 +543,7 @@ exports.addressConfig = (_a = {},
|
|
518
543
|
vaultDeployerAddress: '0x75178e0a2829B73E3AE4C21eE64F4B684085392a',
|
519
544
|
isAlgebra: true,
|
520
545
|
},
|
521
|
-
|
546
|
+
_3[types_1.SupportedDex.Metavault] = {
|
522
547
|
factoryAddress: '0x2592686212C164C1851dF2f62c5d5EC50600195E',
|
523
548
|
depositGuard: {
|
524
549
|
address: '0x92Bce3972916C2CEDA46c4EEbC9684aC26EFfe5B',
|
@@ -527,7 +552,7 @@ exports.addressConfig = (_a = {},
|
|
527
552
|
vaultDeployerAddress: '0x75178e0a2829B73E3AE4C21eE64F4B684085392a',
|
528
553
|
isAlgebra: false,
|
529
554
|
},
|
530
|
-
|
555
|
+
_3[types_1.SupportedDex.Nile] = {
|
531
556
|
factoryAddress: '0xa29F3D5403D50Ea1BF597E2Ef01791A1Ce4F544E',
|
532
557
|
depositGuard: {
|
533
558
|
address: '0x19227E17944FAF42419F019Dcc8762C400fE50A7',
|
@@ -536,7 +561,7 @@ exports.addressConfig = (_a = {},
|
|
536
561
|
vaultDeployerAddress: '0x75178e0a2829B73E3AE4C21eE64F4B684085392a',
|
537
562
|
isAlgebra: false,
|
538
563
|
},
|
539
|
-
|
564
|
+
_3[types_1.SupportedDex.UniswapV3] = {
|
540
565
|
factoryAddress: '0x6E3eB904966B0158833852cAFD1200c171772b53',
|
541
566
|
depositGuard: {
|
542
567
|
address: '0xCf99c2b3D1a9588A9a9A34eab25cD6f425FA8801',
|
@@ -545,9 +570,9 @@ exports.addressConfig = (_a = {},
|
|
545
570
|
vaultDeployerAddress: '0x75178e0a2829B73E3AE4C21eE64F4B684085392a',
|
546
571
|
isAlgebra: false,
|
547
572
|
},
|
548
|
-
|
549
|
-
_a[types_1.SupportedChainId.mode] = (
|
550
|
-
|
573
|
+
_3),
|
574
|
+
_a[types_1.SupportedChainId.mode] = (_4 = {},
|
575
|
+
_4[types_1.SupportedDex.Kim] = {
|
551
576
|
factoryAddress: '0x9FAb4bdD4E05f5C023CCC85D2071b49791D7418F',
|
552
577
|
depositGuard: {
|
553
578
|
address: '0x2E76A8D053f839A04235341dF1f25235437fEDd6',
|
@@ -555,11 +580,11 @@ exports.addressConfig = (_a = {},
|
|
555
580
|
},
|
556
581
|
vaultDeployerAddress: '0x124871b2FC05fD96521238cA2Bd01B770FBf1E37',
|
557
582
|
isAlgebra: true,
|
558
|
-
ammVersion:
|
583
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
559
584
|
},
|
560
|
-
|
561
|
-
_a[types_1.SupportedChainId.mantle] = (
|
562
|
-
|
585
|
+
_4),
|
586
|
+
_a[types_1.SupportedChainId.mantle] = (_5 = {},
|
587
|
+
_5[types_1.SupportedDex.Agni] = {
|
563
588
|
factoryAddress: '0x92Bce3972916C2CEDA46c4EEbC9684aC26EFfe5B',
|
564
589
|
depositGuard: {
|
565
590
|
address: '0x2121AA95a8B05d9C1Db90368B60C6867618814b8',
|
@@ -568,7 +593,7 @@ exports.addressConfig = (_a = {},
|
|
568
593
|
vaultDeployerAddress: '0xC4183bCcBa1D825A8aC971e13E698368b744F43C',
|
569
594
|
isAlgebra: false,
|
570
595
|
},
|
571
|
-
|
596
|
+
_5[types_1.SupportedDex.Cleo] = {
|
572
597
|
factoryAddress: '0xbBB97d634460DACCA0d41E249510Bb741ef46ad3',
|
573
598
|
depositGuard: {
|
574
599
|
address: '0xADDA3A15EA71c223a82Af86d4578EF2B076035F1',
|
@@ -577,7 +602,7 @@ exports.addressConfig = (_a = {},
|
|
577
602
|
vaultDeployerAddress: '0xC4183bCcBa1D825A8aC971e13E698368b744F43C',
|
578
603
|
isAlgebra: false,
|
579
604
|
},
|
580
|
-
|
605
|
+
_5[types_1.SupportedDex.Crust] = {
|
581
606
|
factoryAddress: '0x797ebB6A84367B0409094FEA0D10aC7516432433',
|
582
607
|
depositGuard: {
|
583
608
|
address: '0x15Ea9A2a0FfBaA8Ad51a10a9bda84E60585Ba0De',
|
@@ -586,9 +611,9 @@ exports.addressConfig = (_a = {},
|
|
586
611
|
vaultDeployerAddress: '0xC4183bCcBa1D825A8aC971e13E698368b744F43C',
|
587
612
|
isAlgebra: false,
|
588
613
|
},
|
589
|
-
|
590
|
-
_a[types_1.SupportedChainId.polygon_zkevm] = (
|
591
|
-
|
614
|
+
_5),
|
615
|
+
_a[types_1.SupportedChainId.polygon_zkevm] = (_6 = {},
|
616
|
+
_6[types_1.SupportedDex.Pancakeswap] = {
|
592
617
|
factoryAddress: '0xe8532Db60408f2d47693dA5b9093D71580B8C23F',
|
593
618
|
depositGuard: {
|
594
619
|
address: '0x71338eAcdE9eF818d4F5ff979e0E727b90Dd5F59',
|
@@ -597,7 +622,7 @@ exports.addressConfig = (_a = {},
|
|
597
622
|
vaultDeployerAddress: '0xCAE2d9760B852861e1A552b35e48c263047Fbc0f',
|
598
623
|
isAlgebra: false,
|
599
624
|
},
|
600
|
-
|
625
|
+
_6[types_1.SupportedDex.Quickswap] = {
|
601
626
|
factoryAddress: '0x1721cB3ff3cAF70a79bDE9d771B27646ed8115b1',
|
602
627
|
depositGuard: {
|
603
628
|
address: '0xC030BEf30EDE8ebd7Fd319361ceBa54c81754AD3',
|
@@ -606,9 +631,9 @@ exports.addressConfig = (_a = {},
|
|
606
631
|
vaultDeployerAddress: '0xCAE2d9760B852861e1A552b35e48c263047Fbc0f',
|
607
632
|
isAlgebra: true,
|
608
633
|
},
|
609
|
-
|
610
|
-
_a[types_1.SupportedChainId.real] = (
|
611
|
-
|
634
|
+
_6),
|
635
|
+
_a[types_1.SupportedChainId.real] = (_7 = {},
|
636
|
+
_7[types_1.SupportedDex.Pearl] = {
|
612
637
|
factoryAddress: '0x860F3881aCBbF05D48a324C5b8ca9004D31A146C',
|
613
638
|
depositGuard: {
|
614
639
|
address: '0x89FFdaa18b296d9F0CF02fBD88e5c633FEFA5f34',
|
@@ -617,9 +642,9 @@ exports.addressConfig = (_a = {},
|
|
617
642
|
vaultDeployerAddress: '0xBAd0700365De39C932b905002604B0A22aA4Bb77',
|
618
643
|
isAlgebra: false,
|
619
644
|
},
|
620
|
-
|
621
|
-
_a[types_1.SupportedChainId.rootstock] = (
|
622
|
-
|
645
|
+
_7),
|
646
|
+
_a[types_1.SupportedChainId.rootstock] = (_8 = {},
|
647
|
+
_8[types_1.SupportedDex.UniswapV3] = {
|
623
648
|
factoryAddress: '0x8cCd02E769e6A668a447Bd15e134C31bEccd8182',
|
624
649
|
depositGuard: {
|
625
650
|
address: '0x74C85FF93D0ff3B5E48c119390EF75A43D78d549',
|
@@ -628,9 +653,9 @@ exports.addressConfig = (_a = {},
|
|
628
653
|
vaultDeployerAddress: '0x9708b4a2BDd23C8c432F04972AaDE12e4a346447',
|
629
654
|
isAlgebra: false,
|
630
655
|
},
|
631
|
-
|
632
|
-
_a[types_1.SupportedChainId.scroll] = (
|
633
|
-
|
656
|
+
_8),
|
657
|
+
_a[types_1.SupportedChainId.scroll] = (_9 = {},
|
658
|
+
_9[types_1.SupportedDex.UniswapV3] = {
|
634
659
|
factoryAddress: '0x9FAb4bdD4E05f5C023CCC85D2071b49791D7418F',
|
635
660
|
depositGuard: {
|
636
661
|
address: '0xb62399d23d1c81f08eA445A42d7F15cC12090A71',
|
@@ -639,7 +664,7 @@ exports.addressConfig = (_a = {},
|
|
639
664
|
vaultDeployerAddress: '0x596643Ce4fe8b2e72F340584cec02Ab99dA866c1',
|
640
665
|
isAlgebra: false,
|
641
666
|
},
|
642
|
-
|
667
|
+
_9[types_1.SupportedDex.Metavault] = {
|
643
668
|
factoryAddress: '0xb42D5956cDe4386B65C087CfCD16910aB6114F15',
|
644
669
|
depositGuard: {
|
645
670
|
address: '0x131c03ca881B7cC66d7a5120A9273ebf675C241D',
|
@@ -648,9 +673,9 @@ exports.addressConfig = (_a = {},
|
|
648
673
|
vaultDeployerAddress: '0x596643Ce4fe8b2e72F340584cec02Ab99dA866c1',
|
649
674
|
isAlgebra: false,
|
650
675
|
},
|
651
|
-
|
652
|
-
_a[types_1.SupportedChainId.skale_europa] = (
|
653
|
-
|
676
|
+
_9),
|
677
|
+
_a[types_1.SupportedChainId.skale_europa] = (_10 = {},
|
678
|
+
_10[types_1.SupportedDex.Sushiswap] = {
|
654
679
|
factoryAddress: '0x1B0ef045830466171D617dD0F1142aD699A4Cd63',
|
655
680
|
depositGuard: {
|
656
681
|
address: '0x860F3881aCBbF05D48a324C5b8ca9004D31A146C',
|
@@ -659,9 +684,9 @@ exports.addressConfig = (_a = {},
|
|
659
684
|
vaultDeployerAddress: '0xED0A10A7db58d9dB23DDfB7EEbFE1Fe863ef67aA',
|
660
685
|
isAlgebra: false,
|
661
686
|
},
|
662
|
-
|
663
|
-
_a[types_1.SupportedChainId.sonic] = (
|
664
|
-
|
687
|
+
_10),
|
688
|
+
_a[types_1.SupportedChainId.sonic] = (_11 = {},
|
689
|
+
_11[types_1.SupportedDex.Equalizer] = {
|
665
690
|
factoryAddress: '0x7D18F2D60E4fd6F485419727515807d09A542eb9',
|
666
691
|
depositGuard: {
|
667
692
|
address: '0x4c8c0D2Ca19a97896AA9135449e6d6471a53FC5f',
|
@@ -671,7 +696,7 @@ exports.addressConfig = (_a = {},
|
|
671
696
|
isAlgebra: false,
|
672
697
|
is2Thick: true,
|
673
698
|
},
|
674
|
-
|
699
|
+
_11[types_1.SupportedDex.SwapX] = {
|
675
700
|
factoryAddress: '0x34513e8A327987Bb44acF5A925a7f3b4092d8b5F',
|
676
701
|
depositGuard: {
|
677
702
|
address: '0x65CD1f0ac298519BE4891B5812053e00BD2074AC',
|
@@ -679,11 +704,11 @@ exports.addressConfig = (_a = {},
|
|
679
704
|
},
|
680
705
|
vaultDeployerAddress: '0x0b2a31D95B1a4c8b1e772599ffcB8875FB4e2d33',
|
681
706
|
isAlgebra: true,
|
682
|
-
ammVersion:
|
707
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
683
708
|
},
|
684
|
-
|
685
|
-
_a[types_1.SupportedChainId.taiko] = (
|
686
|
-
|
709
|
+
_11),
|
710
|
+
_a[types_1.SupportedChainId.taiko] = (_12 = {},
|
711
|
+
_12[types_1.SupportedDex.Henjin] = {
|
687
712
|
factoryAddress: '0x9FAb4bdD4E05f5C023CCC85D2071b49791D7418F',
|
688
713
|
depositGuard: {
|
689
714
|
address: '0x2E76A8D053f839A04235341dF1f25235437fEDd6',
|
@@ -691,11 +716,11 @@ exports.addressConfig = (_a = {},
|
|
691
716
|
},
|
692
717
|
vaultDeployerAddress: '0xD639392f0fD8686E1739CE3E3174115e33E95a26',
|
693
718
|
isAlgebra: true,
|
694
|
-
ammVersion:
|
719
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
695
720
|
},
|
696
|
-
|
697
|
-
_a[types_1.SupportedChainId.taiko_hekla] = (
|
698
|
-
|
721
|
+
_12),
|
722
|
+
_a[types_1.SupportedChainId.taiko_hekla] = (_13 = {},
|
723
|
+
_13[types_1.SupportedDex.Henjin] = {
|
699
724
|
factoryAddress: '0x7C6389714719C68cAAc8Ae06baE6E878B3605f6D',
|
700
725
|
depositGuard: {
|
701
726
|
address: '0xF8b3f6727e44abb211C0049FC849FbB091Ff765E',
|
@@ -703,11 +728,11 @@ exports.addressConfig = (_a = {},
|
|
703
728
|
},
|
704
729
|
vaultDeployerAddress: '0x92403A045a2C908920D6A7FD5A5591a01dB7EE6E',
|
705
730
|
isAlgebra: true,
|
706
|
-
ammVersion:
|
731
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
707
732
|
},
|
708
|
-
|
709
|
-
_a[types_1.SupportedChainId.unreal] = (
|
710
|
-
|
733
|
+
_13),
|
734
|
+
_a[types_1.SupportedChainId.unreal] = (_14 = {},
|
735
|
+
_14[types_1.SupportedDex.Pearl] = {
|
711
736
|
factoryAddress: '0x1294EC9615C91077ebdC57CfC7DDB65140750992',
|
712
737
|
depositGuard: {
|
713
738
|
address: '0x6DC9b390130c96b788eBEB389cb3cba992289532',
|
@@ -716,9 +741,9 @@ exports.addressConfig = (_a = {},
|
|
716
741
|
vaultDeployerAddress: '0xBAd0700365De39C932b905002604B0A22aA4Bb77',
|
717
742
|
isAlgebra: false,
|
718
743
|
},
|
719
|
-
|
720
|
-
_a[types_1.SupportedChainId.x_layer_testnet] = (
|
721
|
-
|
744
|
+
_14),
|
745
|
+
_a[types_1.SupportedChainId.x_layer_testnet] = (_15 = {},
|
746
|
+
_15[types_1.SupportedDex.XSwap] = {
|
722
747
|
factoryAddress: '0xADDA3A15EA71c223a82Af86d4578EF2B076035F1',
|
723
748
|
depositGuard: {
|
724
749
|
address: '0xe573920139a208989d83C57ea48837C6285F2cd3',
|
@@ -726,11 +751,11 @@ exports.addressConfig = (_a = {},
|
|
726
751
|
},
|
727
752
|
vaultDeployerAddress: '0x412840Fd29A78428d3dbAeca811414c08b554599',
|
728
753
|
isAlgebra: true,
|
729
|
-
ammVersion:
|
754
|
+
ammVersion: exports.AMM_VERSIONS.ALGEBRA_INTEGRAL,
|
730
755
|
},
|
731
|
-
|
732
|
-
_a[types_1.SupportedChainId.zircuit] = (
|
733
|
-
|
756
|
+
_15),
|
757
|
+
_a[types_1.SupportedChainId.zircuit] = (_16 = {},
|
758
|
+
_16[types_1.SupportedDex.Ocelex] = {
|
734
759
|
factoryAddress: '0x1A58D4CFF22C7E2e0c4cCf4a0010b87822d024A1',
|
735
760
|
depositGuard: {
|
736
761
|
address: '0x259743Ff627313D55b6a15735bD40Aa9aC4D6aDE',
|
@@ -739,9 +764,9 @@ exports.addressConfig = (_a = {},
|
|
739
764
|
vaultDeployerAddress: '0x8fC4aFAA9B4C3cbE97F08e040e945411EFb18993',
|
740
765
|
isAlgebra: true,
|
741
766
|
},
|
742
|
-
|
743
|
-
_a[types_1.SupportedChainId.zksync_era] = (
|
744
|
-
|
767
|
+
_16),
|
768
|
+
_a[types_1.SupportedChainId.zksync_era] = (_17 = {},
|
769
|
+
_17[types_1.SupportedDex.Pancakeswap] = {
|
745
770
|
factoryAddress: '0x8a76c26E0089111989C14EF56b9733aa38B94148',
|
746
771
|
depositGuard: {
|
747
772
|
address: '0x5997487384CDae95E1AED6eAab1bb827180E1154',
|
@@ -750,7 +775,7 @@ exports.addressConfig = (_a = {},
|
|
750
775
|
isAlgebra: false,
|
751
776
|
vaultDeployerAddress: '0x12C1F03a443A5B893870ea6cBDb2362f666275Da',
|
752
777
|
},
|
753
|
-
|
778
|
+
_17[types_1.SupportedDex.Velocore] = {
|
754
779
|
factoryAddress: '0x1Cd7f4a2E9e7EFb23E27CFB9eF3a2F3CFAf27675',
|
755
780
|
depositGuard: {
|
756
781
|
address: '0x01292A32a0b8F8f56fBb8DB90d3756a0EF06C666',
|
@@ -759,9 +784,9 @@ exports.addressConfig = (_a = {},
|
|
759
784
|
vaultDeployerAddress: '0x12C1F03a443A5B893870ea6cBDb2362f666275Da',
|
760
785
|
isAlgebra: true,
|
761
786
|
},
|
762
|
-
|
763
|
-
_a[types_1.SupportedChainId.zksync_era_testnet] = (
|
764
|
-
|
787
|
+
_17),
|
788
|
+
_a[types_1.SupportedChainId.zksync_era_testnet] = (_18 = {},
|
789
|
+
_18[types_1.SupportedDex.Velocore] = {
|
765
790
|
factoryAddress: '0x0227f2b783b610107349da9b9DF516b8d476aB4F',
|
766
791
|
depositGuard: {
|
767
792
|
address: '0x7570c7b58c68d95F0663f89C228B7b13d05c15e6',
|
@@ -770,46 +795,47 @@ exports.addressConfig = (_a = {},
|
|
770
795
|
vaultDeployerAddress: '0x451Efff92a3a1471b7af9DDc1369D9D157E6475A',
|
771
796
|
isAlgebra: true,
|
772
797
|
},
|
773
|
-
|
798
|
+
_18),
|
774
799
|
_a);
|
775
|
-
exports.MULTICALL_ADDRESSES = (
|
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
|
-
|
800
|
+
exports.MULTICALL_ADDRESSES = (_19 = {},
|
801
|
+
_19[types_1.SupportedChainId.mainnet] = '0x1F98415757620B543A52E61c46B32eB19261F984',
|
802
|
+
_19[types_1.SupportedChainId.flare] = '0x921aCCA39e8D3519A503EE4A11b56d6eEACbb2Aa',
|
803
|
+
_19[types_1.SupportedChainId.rootstock] = '0x8CF119F15575CAb4beb427Fb485087e71a96Fbaa',
|
804
|
+
_19[types_1.SupportedChainId.arbitrum] = '0xd9e7c0932a7D3e40Db3Fe78d95A3ED375a37Ab1a',
|
805
|
+
_19[types_1.SupportedChainId.base_sepolia] = '0xd867e273eAbD6c853fCd0Ca0bFB6a3aE6491d2C1',
|
806
|
+
_19[types_1.SupportedChainId.berachain] = '0x89ff70257bc747F310bB538eeFC46aDD763e75d8',
|
807
|
+
_19[types_1.SupportedChainId.haven1_devnet] = '0xe573920139a208989d83C57ea48837C6285F2cd3',
|
808
|
+
_19[types_1.SupportedChainId.fantom] = '0xd9e7c0932a7D3e40Db3Fe78d95A3ED375a37Ab1a',
|
809
|
+
_19[types_1.SupportedChainId.hedera_testnet] = '0x0B10E483AAC4340256772754d23131B6E0Dc31EA',
|
810
|
+
_19[types_1.SupportedChainId.hedera] = '0x0B10E483AAC4340256772754d23131B6E0Dc31EA',
|
811
|
+
_19[types_1.SupportedChainId.hyperevm] = '0xE8571fd6629DA6E488f7BbD83e729c20Fa9B97B4',
|
812
|
+
_19[types_1.SupportedChainId.ink] = '0xcfEA11557Bc9cB71bc6916e09fC8493D668b8d53',
|
813
|
+
_19[types_1.SupportedChainId.ink_sepolia] = '0x27404A54D594Aa6307C3f9Be102646363d6279a1',
|
814
|
+
_19[types_1.SupportedChainId.mantle] = '0xf5bb4e61ccAC9080fb520e5F69224eE85a4D588F',
|
815
|
+
_19[types_1.SupportedChainId.mode] = '0x481BE66De423B6a0Df368b526713bA632EF23ADd',
|
816
|
+
_19[types_1.SupportedChainId.sonic] = '0x9B500c0a544B870D9C4c441147dCaEf599e542E7',
|
817
|
+
_19[types_1.SupportedChainId.zircuit] = '0x89EC5589c030FcEf8c29E7EeC491D2E73b53A623',
|
818
|
+
_19[types_1.SupportedChainId.zksync_era_testnet] = '0x8A23CB45E5F4d5a1b2DB673663Ea2aAedc48acff',
|
819
|
+
_19[types_1.SupportedChainId.zksync_era] = '0x95071cBD09184083E7F732a710c2e30c9882Fd5f',
|
820
|
+
_19[types_1.SupportedChainId.polygon_zkevm] = '0xe05b539447B17630Cb087473F6b50E5c5f73FDeb',
|
821
|
+
_19[types_1.SupportedChainId.polygon] = '0xFb6021617c03dcEF189C3f783C56e3D9ff284919',
|
822
|
+
_19[types_1.SupportedChainId.fuse] = '0x607F5841eFf0505d3c7A868558aD4562fD176C8F',
|
823
|
+
_19[types_1.SupportedChainId.bsc] = '0x74d8b6407b8f33b40d7a1e34375176394f59afe6',
|
824
|
+
_19[types_1.SupportedChainId.evmos] = '0x8a4A5eEC59899F2d23B08f0188d6eB540cF4EccC',
|
825
|
+
_19[types_1.SupportedChainId.arthera] = '0x15fCbF9bC0797567053A8265b7E6f4eC43EA7327',
|
826
|
+
_19[types_1.SupportedChainId.arthera_testnet] = '0xEC250E6856e14A494cb1f0abC61d72348c79F418',
|
827
|
+
_19[types_1.SupportedChainId.unreal] = '0xe573920139a208989d83C57ea48837C6285F2cd3',
|
828
|
+
_19[types_1.SupportedChainId.real] = '0xbBB97d634460DACCA0d41E249510Bb741ef46ad3',
|
829
|
+
_19[types_1.SupportedChainId.base] = '0x091e99cb1C49331a94dD62755D168E941AbD0693',
|
830
|
+
_19[types_1.SupportedChainId.linea] = '0xe573920139a208989d83C57ea48837C6285F2cd3',
|
831
|
+
_19[types_1.SupportedChainId.berachain_bartio] = '0x932E1908461De58b0891E5022431dc995Cb95C5E',
|
832
|
+
_19[types_1.SupportedChainId.blast] = '0xdC7f370de7631cE9e2c2e1DCDA6B3B5744Cf4705',
|
833
|
+
_19[types_1.SupportedChainId.taiko] = '0xaF0C5CBbCEfB685BF3200684d2aE19B8eA6186ca',
|
834
|
+
_19[types_1.SupportedChainId.scroll] = '0xC1D2e074C38FdD5CA965000668420C80316F0915',
|
835
|
+
_19[types_1.SupportedChainId.blast_sepolia_testnet] = '0xEc27362204a1D02e9803d0eB4904e8df470b2B39',
|
836
|
+
_19[types_1.SupportedChainId.x_layer_testnet] = '0x7B4553a35D3020064cB464a8D75a4735FfdA15Bd',
|
837
|
+
_19[types_1.SupportedChainId.celo] = '0x633987602DE5C4F337e3DbF265303A1080324204',
|
838
|
+
_19[types_1.SupportedChainId.kava] = '0x481BE66De423B6a0Df368b526713bA632EF23ADd',
|
839
|
+
_19[types_1.SupportedChainId.skale_europa] = '0x15bA62A09E6e295A696D02f8E4B80a8a13bF3785',
|
840
|
+
_19);
|
815
841
|
//# sourceMappingURL=addresses.js.map
|