@gearbox-protocol/deploy-tools 5.9.0 → 5.9.2
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/index.mjs +780 -109
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -134960,58 +134960,58 @@ var require_sonic_boom = __commonJS({
|
|
|
134960
134960
|
var kContentModeUtf8 = "utf8";
|
|
134961
134961
|
var [major2, minor] = (process.versions.node || "0.0").split(".").map(Number);
|
|
134962
134962
|
var kCopyBuffer = major2 >= 22 && minor >= 7;
|
|
134963
|
-
function openFile(file,
|
|
134964
|
-
|
|
134965
|
-
|
|
134966
|
-
|
|
134963
|
+
function openFile(file, sonic2) {
|
|
134964
|
+
sonic2._opening = true;
|
|
134965
|
+
sonic2._writing = true;
|
|
134966
|
+
sonic2._asyncDrainScheduled = false;
|
|
134967
134967
|
function fileOpened(err, fd) {
|
|
134968
134968
|
if (err) {
|
|
134969
|
-
|
|
134970
|
-
|
|
134971
|
-
|
|
134972
|
-
if (
|
|
134969
|
+
sonic2._reopening = false;
|
|
134970
|
+
sonic2._writing = false;
|
|
134971
|
+
sonic2._opening = false;
|
|
134972
|
+
if (sonic2.sync) {
|
|
134973
134973
|
process.nextTick(() => {
|
|
134974
|
-
if (
|
|
134975
|
-
|
|
134974
|
+
if (sonic2.listenerCount("error") > 0) {
|
|
134975
|
+
sonic2.emit("error", err);
|
|
134976
134976
|
}
|
|
134977
134977
|
});
|
|
134978
134978
|
} else {
|
|
134979
|
-
|
|
134979
|
+
sonic2.emit("error", err);
|
|
134980
134980
|
}
|
|
134981
134981
|
return;
|
|
134982
134982
|
}
|
|
134983
|
-
const reopening =
|
|
134984
|
-
|
|
134985
|
-
|
|
134986
|
-
|
|
134987
|
-
|
|
134988
|
-
|
|
134989
|
-
if (
|
|
134990
|
-
process.nextTick(() =>
|
|
134983
|
+
const reopening = sonic2._reopening;
|
|
134984
|
+
sonic2.fd = fd;
|
|
134985
|
+
sonic2.file = file;
|
|
134986
|
+
sonic2._reopening = false;
|
|
134987
|
+
sonic2._opening = false;
|
|
134988
|
+
sonic2._writing = false;
|
|
134989
|
+
if (sonic2.sync) {
|
|
134990
|
+
process.nextTick(() => sonic2.emit("ready"));
|
|
134991
134991
|
} else {
|
|
134992
|
-
|
|
134992
|
+
sonic2.emit("ready");
|
|
134993
134993
|
}
|
|
134994
|
-
if (
|
|
134994
|
+
if (sonic2.destroyed) {
|
|
134995
134995
|
return;
|
|
134996
134996
|
}
|
|
134997
|
-
if (!
|
|
134998
|
-
|
|
134997
|
+
if (!sonic2._writing && sonic2._len > sonic2.minLength || sonic2._flushPending) {
|
|
134998
|
+
sonic2._actualWrite();
|
|
134999
134999
|
} else if (reopening) {
|
|
135000
|
-
process.nextTick(() =>
|
|
135000
|
+
process.nextTick(() => sonic2.emit("drain"));
|
|
135001
135001
|
}
|
|
135002
135002
|
}
|
|
135003
|
-
const flags =
|
|
135004
|
-
const mode =
|
|
135005
|
-
if (
|
|
135003
|
+
const flags = sonic2.append ? "a" : "w";
|
|
135004
|
+
const mode = sonic2.mode;
|
|
135005
|
+
if (sonic2.sync) {
|
|
135006
135006
|
try {
|
|
135007
|
-
if (
|
|
135007
|
+
if (sonic2.mkdir) fs3.mkdirSync(path11.dirname(file), { recursive: true });
|
|
135008
135008
|
const fd = fs3.openSync(file, flags, mode);
|
|
135009
135009
|
fileOpened(null, fd);
|
|
135010
135010
|
} catch (err) {
|
|
135011
135011
|
fileOpened(err);
|
|
135012
135012
|
throw err;
|
|
135013
135013
|
}
|
|
135014
|
-
} else if (
|
|
135014
|
+
} else if (sonic2.mkdir) {
|
|
135015
135015
|
fs3.mkdir(path11.dirname(file), { recursive: true }, (err) => {
|
|
135016
135016
|
if (err) return fileOpened(err);
|
|
135017
135017
|
fs3.open(file, flags, mode, fileOpened);
|
|
@@ -135169,11 +135169,11 @@ var require_sonic_boom = __commonJS({
|
|
|
135169
135169
|
writingBuf = writingBuf.slice(n);
|
|
135170
135170
|
return { writingBuf, len };
|
|
135171
135171
|
}
|
|
135172
|
-
function emitDrain(
|
|
135173
|
-
const hasListeners =
|
|
135172
|
+
function emitDrain(sonic2) {
|
|
135173
|
+
const hasListeners = sonic2.listenerCount("drain") > 0;
|
|
135174
135174
|
if (!hasListeners) return;
|
|
135175
|
-
|
|
135176
|
-
|
|
135175
|
+
sonic2._asyncDrainScheduled = false;
|
|
135176
|
+
sonic2.emit("drain");
|
|
135177
135177
|
}
|
|
135178
135178
|
inherits(SonicBoom, EventEmitter);
|
|
135179
135179
|
function mergeBuf(bufs, len) {
|
|
@@ -135478,38 +135478,38 @@ var require_sonic_boom = __commonJS({
|
|
|
135478
135478
|
fs3.write(this.fd, this._writingBuf, release);
|
|
135479
135479
|
}
|
|
135480
135480
|
}
|
|
135481
|
-
function actualClose(
|
|
135482
|
-
if (
|
|
135483
|
-
|
|
135481
|
+
function actualClose(sonic2) {
|
|
135482
|
+
if (sonic2.fd === -1) {
|
|
135483
|
+
sonic2.once("ready", actualClose.bind(null, sonic2));
|
|
135484
135484
|
return;
|
|
135485
135485
|
}
|
|
135486
|
-
if (
|
|
135487
|
-
clearInterval(
|
|
135486
|
+
if (sonic2._periodicFlushTimer !== void 0) {
|
|
135487
|
+
clearInterval(sonic2._periodicFlushTimer);
|
|
135488
135488
|
}
|
|
135489
|
-
|
|
135490
|
-
|
|
135491
|
-
|
|
135492
|
-
assert(typeof
|
|
135489
|
+
sonic2.destroyed = true;
|
|
135490
|
+
sonic2._bufs = [];
|
|
135491
|
+
sonic2._lens = [];
|
|
135492
|
+
assert(typeof sonic2.fd === "number", `sonic.fd must be a number, got ${typeof sonic2.fd}`);
|
|
135493
135493
|
try {
|
|
135494
|
-
fs3.fsync(
|
|
135494
|
+
fs3.fsync(sonic2.fd, closeWrapped);
|
|
135495
135495
|
} catch {
|
|
135496
135496
|
}
|
|
135497
135497
|
function closeWrapped() {
|
|
135498
|
-
if (
|
|
135499
|
-
fs3.close(
|
|
135498
|
+
if (sonic2.fd !== 1 && sonic2.fd !== 2) {
|
|
135499
|
+
fs3.close(sonic2.fd, done);
|
|
135500
135500
|
} else {
|
|
135501
135501
|
done();
|
|
135502
135502
|
}
|
|
135503
135503
|
}
|
|
135504
135504
|
function done(err) {
|
|
135505
135505
|
if (err) {
|
|
135506
|
-
|
|
135506
|
+
sonic2.emit("error", err);
|
|
135507
135507
|
return;
|
|
135508
135508
|
}
|
|
135509
|
-
if (
|
|
135510
|
-
|
|
135509
|
+
if (sonic2._ending && !sonic2._writing) {
|
|
135510
|
+
sonic2.emit("finish");
|
|
135511
135511
|
}
|
|
135512
|
-
|
|
135512
|
+
sonic2.emit("close");
|
|
135513
135513
|
}
|
|
135514
135514
|
}
|
|
135515
135515
|
SonicBoom.SonicBoom = SonicBoom;
|
|
@@ -339692,6 +339692,33 @@ var optimism = /* @__PURE__ */ defineChain({
|
|
|
339692
339692
|
sourceId: sourceId2
|
|
339693
339693
|
});
|
|
339694
339694
|
|
|
339695
|
+
// ../../node_modules/viem/_esm/chains/definitions/sonic.js
|
|
339696
|
+
var sonic = /* @__PURE__ */ defineChain({
|
|
339697
|
+
id: 146,
|
|
339698
|
+
name: "Sonic",
|
|
339699
|
+
nativeCurrency: {
|
|
339700
|
+
decimals: 18,
|
|
339701
|
+
name: "Sonic",
|
|
339702
|
+
symbol: "S"
|
|
339703
|
+
},
|
|
339704
|
+
rpcUrls: {
|
|
339705
|
+
default: { http: ["https://rpc.soniclabs.com"] }
|
|
339706
|
+
},
|
|
339707
|
+
blockExplorers: {
|
|
339708
|
+
default: {
|
|
339709
|
+
name: "Sonic Explorer",
|
|
339710
|
+
url: "https://sonicscan.org/"
|
|
339711
|
+
}
|
|
339712
|
+
},
|
|
339713
|
+
contracts: {
|
|
339714
|
+
multicall3: {
|
|
339715
|
+
address: "0xca11bde05977b3631167028862be2a173976ca11",
|
|
339716
|
+
blockCreated: 60
|
|
339717
|
+
}
|
|
339718
|
+
},
|
|
339719
|
+
testnet: false
|
|
339720
|
+
});
|
|
339721
|
+
|
|
339695
339722
|
// ../../node_modules/@gearbox-protocol/sdk/dist/esm/sdk/index.mjs
|
|
339696
339723
|
var import_evm_connector = __toESM(require_src5(), 1);
|
|
339697
339724
|
var import_protocol = __toESM(require_src(), 1);
|
|
@@ -364446,19 +364473,22 @@ var USDC = {
|
|
|
364446
364473
|
Mainnet: "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
|
|
364447
364474
|
Arbitrum: "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
|
|
364448
364475
|
Optimism: "0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85",
|
|
364449
|
-
Base: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
|
|
364476
|
+
Base: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
|
|
364477
|
+
Sonic: "0x29219dd400f2Bf60E5a23d13Be72B486D4038894"
|
|
364450
364478
|
};
|
|
364451
364479
|
var TIMELOCK = {
|
|
364452
364480
|
Mainnet: "0xa133C9A92Fb8dDB962Af1cbae58b2723A0bdf23b",
|
|
364453
364481
|
Arbitrum: "0x148DD932eCe1155c11006F5650c6Ff428f8D374A",
|
|
364454
364482
|
Optimism: "0x148DD932eCe1155c11006F5650c6Ff428f8D374A",
|
|
364455
|
-
Base: NOT_DEPLOYED
|
|
364483
|
+
Base: NOT_DEPLOYED,
|
|
364484
|
+
Sonic: NOT_DEPLOYED
|
|
364456
364485
|
};
|
|
364457
364486
|
var GEARBOX_RISK_CURATORS = {
|
|
364458
364487
|
Mainnet: [TIMELOCK.Mainnet],
|
|
364459
364488
|
Arbitrum: [TIMELOCK.Arbitrum],
|
|
364460
364489
|
Optimism: [TIMELOCK.Optimism],
|
|
364461
|
-
Base: [TIMELOCK.Base]
|
|
364490
|
+
Base: [TIMELOCK.Base],
|
|
364491
|
+
Sonic: [TIMELOCK.Sonic]
|
|
364462
364492
|
};
|
|
364463
364493
|
var DEPRECIATED_POOLS = {
|
|
364464
364494
|
Mainnet: {
|
|
@@ -364466,7 +364496,8 @@ var DEPRECIATED_POOLS = {
|
|
|
364466
364496
|
},
|
|
364467
364497
|
Arbitrum: {},
|
|
364468
364498
|
Optimism: {},
|
|
364469
|
-
Base: {}
|
|
364499
|
+
Base: {},
|
|
364500
|
+
Sonic: {}
|
|
364470
364501
|
};
|
|
364471
364502
|
var NO_VERSION = 0;
|
|
364472
364503
|
var AP_MARKET_COMPRESSOR = "MARKET_COMPRESSOR";
|
|
@@ -364482,7 +364513,8 @@ var ADDRESS_PROVIDER = {
|
|
|
364482
364513
|
Mainnet: "0x9ea7b04Da02a5373317D745c1571c84aaD03321D",
|
|
364483
364514
|
Arbitrum: "0x7d04eCdb892Ae074f03B5D0aBA03796F90F3F2af",
|
|
364484
364515
|
Optimism: "0x3761ca4BFAcFCFFc1B8034e69F19116dD6756726",
|
|
364485
|
-
Base: NOT_DEPLOYED
|
|
364516
|
+
Base: NOT_DEPLOYED,
|
|
364517
|
+
Sonic: NOT_DEPLOYED
|
|
364486
364518
|
};
|
|
364487
364519
|
var BotPermissions = /* @__PURE__ */ ((BotPermissions2) => {
|
|
364488
364520
|
BotPermissions2[BotPermissions2["ADD_COLLATERAL"] = 1] = "ADD_COLLATERAL";
|
|
@@ -364529,27 +364561,32 @@ var ADDRESS_PROVIDER_BLOCK = {
|
|
|
364529
364561
|
Mainnet: 18433056n,
|
|
364530
364562
|
Arbitrum: 184650310n,
|
|
364531
364563
|
Optimism: 118410666n,
|
|
364532
|
-
Base: 0n
|
|
364564
|
+
Base: 0n,
|
|
364565
|
+
Sonic: 0n
|
|
364533
364566
|
};
|
|
364534
364567
|
var BLOCK_DURATION_BY_NETWORK = {
|
|
364535
364568
|
Mainnet: 12.16,
|
|
364536
364569
|
Arbitrum: 0.26,
|
|
364537
364570
|
Optimism: 1.64,
|
|
364538
|
-
Base: 2.01
|
|
364571
|
+
Base: 2.01,
|
|
364572
|
+
// TODO:
|
|
364573
|
+
Sonic: 1
|
|
364539
364574
|
};
|
|
364540
364575
|
var RAMP_TIME = 30 * 24 * 60 * 60 * 1.2;
|
|
364541
364576
|
var RAMP_DURATION_BY_NETWORK = {
|
|
364542
364577
|
Mainnet: BigInt(Math.floor(RAMP_TIME / BLOCK_DURATION_BY_NETWORK.Mainnet)),
|
|
364543
364578
|
Arbitrum: BigInt(Math.floor(RAMP_TIME / BLOCK_DURATION_BY_NETWORK.Arbitrum)),
|
|
364544
364579
|
Optimism: BigInt(Math.floor(RAMP_TIME / BLOCK_DURATION_BY_NETWORK.Optimism)),
|
|
364545
|
-
Base: BigInt(Math.floor(RAMP_TIME / BLOCK_DURATION_BY_NETWORK.Base))
|
|
364580
|
+
Base: BigInt(Math.floor(RAMP_TIME / BLOCK_DURATION_BY_NETWORK.Base)),
|
|
364581
|
+
Sonic: BigInt(Math.floor(RAMP_TIME / BLOCK_DURATION_BY_NETWORK.Sonic))
|
|
364546
364582
|
};
|
|
364547
364583
|
var WEEK = 7 * 24 * 60 * 60;
|
|
364548
364584
|
var BLOCKS_PER_WEEK_BY_NETWORK = {
|
|
364549
364585
|
Mainnet: BigInt(Math.floor(WEEK / BLOCK_DURATION_BY_NETWORK.Mainnet)),
|
|
364550
364586
|
Arbitrum: BigInt(Math.floor(WEEK / BLOCK_DURATION_BY_NETWORK.Arbitrum)),
|
|
364551
364587
|
Optimism: BigInt(Math.floor(WEEK / BLOCK_DURATION_BY_NETWORK.Optimism)),
|
|
364552
|
-
Base: BigInt(Math.floor(WEEK / BLOCK_DURATION_BY_NETWORK.Base))
|
|
364588
|
+
Base: BigInt(Math.floor(WEEK / BLOCK_DURATION_BY_NETWORK.Base)),
|
|
364589
|
+
Sonic: BigInt(Math.floor(WEEK / BLOCK_DURATION_BY_NETWORK.Sonic))
|
|
364553
364590
|
};
|
|
364554
364591
|
var AddressMap = class {
|
|
364555
364592
|
#map;
|
|
@@ -366221,22 +366258,22 @@ var SUPPORTED_CHAINS = [
|
|
|
366221
366258
|
"Mainnet",
|
|
366222
366259
|
"Arbitrum",
|
|
366223
366260
|
"Optimism",
|
|
366224
|
-
"Base"
|
|
366225
|
-
|
|
366261
|
+
"Base",
|
|
366262
|
+
"Sonic"
|
|
366226
366263
|
];
|
|
366227
366264
|
var chains = {
|
|
366228
366265
|
Mainnet: mainnet,
|
|
366229
366266
|
Arbitrum: arbitrum,
|
|
366230
366267
|
Optimism: optimism,
|
|
366231
|
-
Base: base
|
|
366232
|
-
|
|
366268
|
+
Base: base,
|
|
366269
|
+
Sonic: sonic
|
|
366233
366270
|
};
|
|
366234
366271
|
var CHAINS_BY_ID = {
|
|
366235
366272
|
[mainnet.id]: "Mainnet",
|
|
366236
366273
|
[arbitrum.id]: "Arbitrum",
|
|
366237
366274
|
[optimism.id]: "Optimism",
|
|
366238
|
-
[base.id]: "Base"
|
|
366239
|
-
|
|
366275
|
+
[base.id]: "Base",
|
|
366276
|
+
[sonic.id]: "Sonic"
|
|
366240
366277
|
};
|
|
366241
366278
|
async function detectChain(transportOrRPC) {
|
|
366242
366279
|
const transport = typeof transportOrRPC === "string" ? http(transportOrRPC) : transportOrRPC;
|
|
@@ -367408,6 +367445,46 @@ var balancerLpTokens = {
|
|
|
367408
367445
|
underlying: ["wstETH", "sfrxETH", "rETH"],
|
|
367409
367446
|
poolId: "0x5f8893506ddc4c271837187d14a9c87964a074dc000000000000000000000106"
|
|
367410
367447
|
},
|
|
367448
|
+
bpt_rsb: {
|
|
367449
|
+
name: "Ringing Stable Beets",
|
|
367450
|
+
symbol: "bpt_rsb",
|
|
367451
|
+
type: {
|
|
367452
|
+
AllNetworks: 10
|
|
367453
|
+
/* BALANCER_LP_TOKEN */
|
|
367454
|
+
},
|
|
367455
|
+
underlying: ["USDC", "scUSD"],
|
|
367456
|
+
poolId: "0xcd4d2b142235d5650ffa6a38787ed0b7d7a51c0c000000000000000000000037"
|
|
367457
|
+
},
|
|
367458
|
+
bpt_sss: {
|
|
367459
|
+
name: "Staked Sonic Symphony",
|
|
367460
|
+
symbol: "bpt_sss",
|
|
367461
|
+
type: {
|
|
367462
|
+
AllNetworks: 10
|
|
367463
|
+
/* BALANCER_LP_TOKEN */
|
|
367464
|
+
},
|
|
367465
|
+
underlying: ["wS", "stS"],
|
|
367466
|
+
poolId: "0x374641076b68371e69d03c417dac3e5f236c32fa000000000000000000000006"
|
|
367467
|
+
},
|
|
367468
|
+
BPT_scUSD_stS: {
|
|
367469
|
+
name: "Put A Ring On It",
|
|
367470
|
+
symbol: "BPT_scUSD_stS",
|
|
367471
|
+
type: {
|
|
367472
|
+
AllNetworks: 10
|
|
367473
|
+
/* BALANCER_LP_TOKEN */
|
|
367474
|
+
},
|
|
367475
|
+
underlying: ["scUSD", "stS"],
|
|
367476
|
+
poolId: "0x25ca5451cd5a50ab1d324b5e64f32c0799661891000200000000000000000018"
|
|
367477
|
+
},
|
|
367478
|
+
BPT_USDCe_stS: {
|
|
367479
|
+
name: "Staked Sonic & Circle Concerto",
|
|
367480
|
+
symbol: "BPT_USDCe_stS",
|
|
367481
|
+
type: {
|
|
367482
|
+
AllNetworks: 10
|
|
367483
|
+
/* BALANCER_LP_TOKEN */
|
|
367484
|
+
},
|
|
367485
|
+
underlying: ["USDC", "stS"],
|
|
367486
|
+
poolId: "0x713fb5036dc70012588d77a5b066f1dd05c712d7000200000000000000000041"
|
|
367487
|
+
},
|
|
367411
367488
|
tETH_wstETH_BPT: {
|
|
367412
367489
|
name: "Balancer tETH/wstETH",
|
|
367413
367490
|
symbol: "tETH_wstETH_BPT",
|
|
@@ -368440,6 +368517,9 @@ var decimals = {
|
|
|
368440
368517
|
SKY: 18,
|
|
368441
368518
|
WLD: 18,
|
|
368442
368519
|
OP: 18,
|
|
368520
|
+
wS: 18,
|
|
368521
|
+
scUSD: 6,
|
|
368522
|
+
stS: 18,
|
|
368443
368523
|
GHO: 18,
|
|
368444
368524
|
LBTC: 8,
|
|
368445
368525
|
eBTC: 8,
|
|
@@ -368607,6 +368687,10 @@ var decimals = {
|
|
|
368607
368687
|
pumpBTC_WBTC_BPT: 18,
|
|
368608
368688
|
eBTC_WBTC_BPT: 18,
|
|
368609
368689
|
sUSDe_USDC_BPT: 18,
|
|
368690
|
+
bpt_rsb: 18,
|
|
368691
|
+
bpt_sss: 18,
|
|
368692
|
+
BPT_scUSD_stS: 18,
|
|
368693
|
+
BPT_USDCe_stS: 18,
|
|
368610
368694
|
tETH_wstETH_BPT: 18,
|
|
368611
368695
|
auraB_rETH_STABLE: 18,
|
|
368612
368696
|
auraB_rETH_STABLE_vault: 18,
|
|
@@ -369339,6 +369423,30 @@ var normalTokens = {
|
|
|
369339
369423
|
/* NORMAL_TOKEN */
|
|
369340
369424
|
}
|
|
369341
369425
|
},
|
|
369426
|
+
wS: {
|
|
369427
|
+
name: "Wrapped Sonic",
|
|
369428
|
+
symbol: "wS",
|
|
369429
|
+
type: {
|
|
369430
|
+
AllNetworks: 1
|
|
369431
|
+
/* NORMAL_TOKEN */
|
|
369432
|
+
}
|
|
369433
|
+
},
|
|
369434
|
+
stS: {
|
|
369435
|
+
name: "Beets Staked Sonic",
|
|
369436
|
+
symbol: "stS",
|
|
369437
|
+
type: {
|
|
369438
|
+
AllNetworks: 1
|
|
369439
|
+
/* NORMAL_TOKEN */
|
|
369440
|
+
}
|
|
369441
|
+
},
|
|
369442
|
+
scUSD: {
|
|
369443
|
+
name: "Sonic USD",
|
|
369444
|
+
symbol: "scUSD",
|
|
369445
|
+
type: {
|
|
369446
|
+
AllNetworks: 1
|
|
369447
|
+
/* NORMAL_TOKEN */
|
|
369448
|
+
}
|
|
369449
|
+
},
|
|
369342
369450
|
frxETH: {
|
|
369343
369451
|
name: "Frax ETH",
|
|
369344
369452
|
symbol: "frxETH",
|
|
@@ -369802,6 +369910,9 @@ var tokenDataByNetwork = {
|
|
|
369802
369910
|
pufETH: "0xD9A442856C234a39a81a089C06451EBAa4306a72",
|
|
369803
369911
|
USDS: "0xdC035D45d973E3EC169d2276DDab16f1e407384F",
|
|
369804
369912
|
SKY: "0x56072C95FAA701256059aa122697B133aDEd9279",
|
|
369913
|
+
wS: NOT_DEPLOYED,
|
|
369914
|
+
stS: NOT_DEPLOYED,
|
|
369915
|
+
scUSD: NOT_DEPLOYED,
|
|
369805
369916
|
T: "0xCdF7028ceAB81fA0C6971208e83fa7872994beE5",
|
|
369806
369917
|
// CURVE LP TOKENS
|
|
369807
369918
|
"3Crv": "0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490",
|
|
@@ -369931,6 +370042,10 @@ var tokenDataByNetwork = {
|
|
|
369931
370042
|
pumpBTC_WBTC_BPT: "0x2238aB6c8c58473a5e81b86ec352322fB3f5Edd8",
|
|
369932
370043
|
eBTC_WBTC_BPT: "0xda17f3663C5D04C0B316cfA1A04Aa53eBBC8c12C",
|
|
369933
370044
|
B_50WBTC_50WETH: "0xA6F548DF93de924d73be7D25dC02554c6bD66dB5",
|
|
370045
|
+
bpt_rsb: NOT_DEPLOYED,
|
|
370046
|
+
bpt_sss: NOT_DEPLOYED,
|
|
370047
|
+
BPT_scUSD_stS: NOT_DEPLOYED,
|
|
370048
|
+
BPT_USDCe_stS: NOT_DEPLOYED,
|
|
369934
370049
|
tETH_wstETH_BPT: "0x1D13531bf6344c102280CE4c458781FBF14Dad14",
|
|
369935
370050
|
// AURA
|
|
369936
370051
|
auraB_rETH_STABLE: "0x9497df26e5bD669Cb925eC68E730492b9300c482",
|
|
@@ -370055,6 +370170,9 @@ var tokenDataByNetwork = {
|
|
|
370055
370170
|
AURA: "0x1509706a6c66CA549ff0cB464de88231DDBe213B",
|
|
370056
370171
|
SWISE: NOT_DEPLOYED,
|
|
370057
370172
|
SKY: NOT_DEPLOYED,
|
|
370173
|
+
wS: NOT_DEPLOYED,
|
|
370174
|
+
stS: NOT_DEPLOYED,
|
|
370175
|
+
scUSD: NOT_DEPLOYED,
|
|
370058
370176
|
/// UPDATE
|
|
370059
370177
|
STETH: NOT_DEPLOYED,
|
|
370060
370178
|
wstETH: "0x5979D7b546E38E414F7E9822514be443A4800529",
|
|
@@ -370220,6 +370338,10 @@ var tokenDataByNetwork = {
|
|
|
370220
370338
|
pumpBTC_WBTC_BPT: NOT_DEPLOYED,
|
|
370221
370339
|
eBTC_WBTC_BPT: NOT_DEPLOYED,
|
|
370222
370340
|
B_50WBTC_50WETH: NOT_DEPLOYED,
|
|
370341
|
+
bpt_rsb: NOT_DEPLOYED,
|
|
370342
|
+
bpt_sss: NOT_DEPLOYED,
|
|
370343
|
+
BPT_scUSD_stS: NOT_DEPLOYED,
|
|
370344
|
+
BPT_USDCe_stS: NOT_DEPLOYED,
|
|
370223
370345
|
tETH_wstETH_BPT: NOT_DEPLOYED,
|
|
370224
370346
|
// AURA
|
|
370225
370347
|
auraB_rETH_STABLE: NOT_DEPLOYED,
|
|
@@ -370376,6 +370498,9 @@ var tokenDataByNetwork = {
|
|
|
370376
370498
|
pufETH: NOT_DEPLOYED,
|
|
370377
370499
|
USDS: NOT_DEPLOYED,
|
|
370378
370500
|
SKY: NOT_DEPLOYED,
|
|
370501
|
+
wS: NOT_DEPLOYED,
|
|
370502
|
+
stS: NOT_DEPLOYED,
|
|
370503
|
+
scUSD: NOT_DEPLOYED,
|
|
370379
370504
|
T: NOT_DEPLOYED,
|
|
370380
370505
|
// REDSTONE
|
|
370381
370506
|
SHIB: NOT_DEPLOYED,
|
|
@@ -370507,6 +370632,10 @@ var tokenDataByNetwork = {
|
|
|
370507
370632
|
bpt_ethtri: "0x5F8893506Ddc4C271837187d14A9C87964a074Dc",
|
|
370508
370633
|
pumpBTC_WBTC_BPT: NOT_DEPLOYED,
|
|
370509
370634
|
eBTC_WBTC_BPT: NOT_DEPLOYED,
|
|
370635
|
+
bpt_rsb: NOT_DEPLOYED,
|
|
370636
|
+
bpt_sss: NOT_DEPLOYED,
|
|
370637
|
+
BPT_scUSD_stS: NOT_DEPLOYED,
|
|
370638
|
+
BPT_USDCe_stS: NOT_DEPLOYED,
|
|
370510
370639
|
tETH_wstETH_BPT: NOT_DEPLOYED,
|
|
370511
370640
|
// AURA
|
|
370512
370641
|
auraB_rETH_STABLE: NOT_DEPLOYED,
|
|
@@ -370607,11 +370736,6 @@ var tokenDataByNetwork = {
|
|
|
370607
370736
|
// BASE
|
|
370608
370737
|
//
|
|
370609
370738
|
//
|
|
370610
|
-
///
|
|
370611
|
-
///
|
|
370612
|
-
/// OPTIMISM
|
|
370613
|
-
///
|
|
370614
|
-
///
|
|
370615
370739
|
Base: {
|
|
370616
370740
|
"1INCH": NOT_DEPLOYED,
|
|
370617
370741
|
AAVE: NOT_DEPLOYED,
|
|
@@ -370636,6 +370760,9 @@ var tokenDataByNetwork = {
|
|
|
370636
370760
|
WLD: NOT_DEPLOYED,
|
|
370637
370761
|
OP: NOT_DEPLOYED,
|
|
370638
370762
|
SKY: NOT_DEPLOYED,
|
|
370763
|
+
wS: NOT_DEPLOYED,
|
|
370764
|
+
stS: NOT_DEPLOYED,
|
|
370765
|
+
scUSD: NOT_DEPLOYED,
|
|
370639
370766
|
/// UPDATE
|
|
370640
370767
|
STETH: NOT_DEPLOYED,
|
|
370641
370768
|
wstETH: NOT_DEPLOYED,
|
|
@@ -370796,6 +370923,303 @@ var tokenDataByNetwork = {
|
|
|
370796
370923
|
bpt_ethtri: NOT_DEPLOYED,
|
|
370797
370924
|
pumpBTC_WBTC_BPT: NOT_DEPLOYED,
|
|
370798
370925
|
eBTC_WBTC_BPT: NOT_DEPLOYED,
|
|
370926
|
+
bpt_rsb: NOT_DEPLOYED,
|
|
370927
|
+
bpt_sss: NOT_DEPLOYED,
|
|
370928
|
+
BPT_scUSD_stS: NOT_DEPLOYED,
|
|
370929
|
+
BPT_USDCe_stS: NOT_DEPLOYED,
|
|
370930
|
+
tETH_wstETH_BPT: NOT_DEPLOYED,
|
|
370931
|
+
// AURA
|
|
370932
|
+
auraB_rETH_STABLE: NOT_DEPLOYED,
|
|
370933
|
+
auraweETH_rETH: NOT_DEPLOYED,
|
|
370934
|
+
auraosETH_wETH_BPT: NOT_DEPLOYED,
|
|
370935
|
+
auraBPT_rETH_ETH: NOT_DEPLOYED,
|
|
370936
|
+
auraBPT_WSTETH_ETH: NOT_DEPLOYED,
|
|
370937
|
+
aurarETH_wETH_BPT: NOT_DEPLOYED,
|
|
370938
|
+
auracbETH_rETH_wstETH: NOT_DEPLOYED,
|
|
370939
|
+
aurawstETH_rETH_sfrxETH: NOT_DEPLOYED,
|
|
370940
|
+
aurawstETH_WETH_BPT: NOT_DEPLOYED,
|
|
370941
|
+
auraB_rETH_STABLE_vault: NOT_DEPLOYED,
|
|
370942
|
+
auraweETH_rETH_vault: NOT_DEPLOYED,
|
|
370943
|
+
auraosETH_wETH_BPT_vault: NOT_DEPLOYED,
|
|
370944
|
+
auraBPT_rETH_ETH_vault: NOT_DEPLOYED,
|
|
370945
|
+
auraBPT_WSTETH_ETH_vault: NOT_DEPLOYED,
|
|
370946
|
+
aurarETH_wETH_BPT_vault: NOT_DEPLOYED,
|
|
370947
|
+
auracbETH_rETH_wstETH_vault: NOT_DEPLOYED,
|
|
370948
|
+
aurawstETH_rETH_sfrxETH_vault: NOT_DEPLOYED,
|
|
370949
|
+
aurawstETH_WETH_BPT_vault: NOT_DEPLOYED,
|
|
370950
|
+
// PENDLE
|
|
370951
|
+
PT_rsETH_26SEP2024: NOT_DEPLOYED,
|
|
370952
|
+
PT_sUSDe_26DEC2024: NOT_DEPLOYED,
|
|
370953
|
+
PT_eETH_26DEC2024: NOT_DEPLOYED,
|
|
370954
|
+
PT_ezETH_26DEC2024: NOT_DEPLOYED,
|
|
370955
|
+
PT_eBTC_26DEC2024: NOT_DEPLOYED,
|
|
370956
|
+
PT_LBTC_27MAR2025: NOT_DEPLOYED,
|
|
370957
|
+
PT_corn_solvBTC_BBN_26DEC2024: NOT_DEPLOYED,
|
|
370958
|
+
PT_corn_pumpBTC_26DEC2024: NOT_DEPLOYED,
|
|
370959
|
+
PT_cornLBTC_26DEC2024: NOT_DEPLOYED,
|
|
370960
|
+
PT_corn_eBTC_27MAR2025: NOT_DEPLOYED,
|
|
370961
|
+
PT_sUSDe_27MAR2025: NOT_DEPLOYED,
|
|
370962
|
+
PT_sUSDe_29MAY2025: NOT_DEPLOYED,
|
|
370963
|
+
// GEARBOX
|
|
370964
|
+
dDAI: NOT_DEPLOYED,
|
|
370965
|
+
dUSDC: NOT_DEPLOYED,
|
|
370966
|
+
dWBTC: NOT_DEPLOYED,
|
|
370967
|
+
dWETH: NOT_DEPLOYED,
|
|
370968
|
+
dwstETH: NOT_DEPLOYED,
|
|
370969
|
+
dFRAX: NOT_DEPLOYED,
|
|
370970
|
+
dUSDCV3: NOT_DEPLOYED,
|
|
370971
|
+
dWBTCV3: NOT_DEPLOYED,
|
|
370972
|
+
dWETHV3: NOT_DEPLOYED,
|
|
370973
|
+
sdUSDCV3: NOT_DEPLOYED,
|
|
370974
|
+
sdWBTCV3: NOT_DEPLOYED,
|
|
370975
|
+
sdWETHV3: NOT_DEPLOYED,
|
|
370976
|
+
sdWETHV3_OLD: NOT_DEPLOYED,
|
|
370977
|
+
dUSDTV3: NOT_DEPLOYED,
|
|
370978
|
+
dGHOV3: NOT_DEPLOYED,
|
|
370979
|
+
dDAIV3: NOT_DEPLOYED,
|
|
370980
|
+
sdUSDTV3: NOT_DEPLOYED,
|
|
370981
|
+
sdGHOV3: NOT_DEPLOYED,
|
|
370982
|
+
sdDAIV3: NOT_DEPLOYED,
|
|
370983
|
+
dcrvUSDV3: NOT_DEPLOYED,
|
|
370984
|
+
sdcrvUSDV3: NOT_DEPLOYED,
|
|
370985
|
+
dDOLAV3: NOT_DEPLOYED,
|
|
370986
|
+
dwstETHV3: NOT_DEPLOYED,
|
|
370987
|
+
dtBTCV3: NOT_DEPLOYED,
|
|
370988
|
+
dUSDC_eV3: NOT_DEPLOYED,
|
|
370989
|
+
sdUSDC_eV3: NOT_DEPLOYED,
|
|
370990
|
+
GEAR: NOT_DEPLOYED,
|
|
370991
|
+
// AAVE
|
|
370992
|
+
aUSDC: NOT_DEPLOYED,
|
|
370993
|
+
aDAI: NOT_DEPLOYED,
|
|
370994
|
+
aUSDT: NOT_DEPLOYED,
|
|
370995
|
+
aWETH: NOT_DEPLOYED,
|
|
370996
|
+
waDAI: NOT_DEPLOYED,
|
|
370997
|
+
waUSDC: NOT_DEPLOYED,
|
|
370998
|
+
waUSDT: NOT_DEPLOYED,
|
|
370999
|
+
waWETH: NOT_DEPLOYED,
|
|
371000
|
+
cDAI: NOT_DEPLOYED,
|
|
371001
|
+
cUSDC: NOT_DEPLOYED,
|
|
371002
|
+
cUSDT: NOT_DEPLOYED,
|
|
371003
|
+
cETH: NOT_DEPLOYED,
|
|
371004
|
+
cLINK: NOT_DEPLOYED,
|
|
371005
|
+
fUSDC: NOT_DEPLOYED,
|
|
371006
|
+
sDAI: NOT_DEPLOYED,
|
|
371007
|
+
YieldETH: NOT_DEPLOYED,
|
|
371008
|
+
sUSDe: NOT_DEPLOYED,
|
|
371009
|
+
sUSDS: NOT_DEPLOYED,
|
|
371010
|
+
scrvUSD: NOT_DEPLOYED,
|
|
371011
|
+
tETH: NOT_DEPLOYED,
|
|
371012
|
+
beraSTONE: NOT_DEPLOYED,
|
|
371013
|
+
GHO: NOT_DEPLOYED,
|
|
371014
|
+
GHOUSDe: NOT_DEPLOYED,
|
|
371015
|
+
GHO_USDT_USDC: NOT_DEPLOYED,
|
|
371016
|
+
zpufETH: NOT_DEPLOYED,
|
|
371017
|
+
// SKY
|
|
371018
|
+
stkUSDS: NOT_DEPLOYED,
|
|
371019
|
+
// MELLOW LRT
|
|
371020
|
+
steakLRT: NOT_DEPLOYED,
|
|
371021
|
+
Re7LRT: NOT_DEPLOYED,
|
|
371022
|
+
amphrETH: NOT_DEPLOYED,
|
|
371023
|
+
rstETH: NOT_DEPLOYED,
|
|
371024
|
+
pzETH: NOT_DEPLOYED,
|
|
371025
|
+
DVstETH: NOT_DEPLOYED
|
|
371026
|
+
},
|
|
371027
|
+
//
|
|
371028
|
+
//
|
|
371029
|
+
// SONIC
|
|
371030
|
+
//
|
|
371031
|
+
//
|
|
371032
|
+
Sonic: {
|
|
371033
|
+
"1INCH": NOT_DEPLOYED,
|
|
371034
|
+
AAVE: NOT_DEPLOYED,
|
|
371035
|
+
CRV: NOT_DEPLOYED,
|
|
371036
|
+
DAI: NOT_DEPLOYED,
|
|
371037
|
+
LINK: NOT_DEPLOYED,
|
|
371038
|
+
SNX: NOT_DEPLOYED,
|
|
371039
|
+
UNI: NOT_DEPLOYED,
|
|
371040
|
+
USDT: NOT_DEPLOYED,
|
|
371041
|
+
DOLA: NOT_DEPLOYED,
|
|
371042
|
+
USDC: "0x29219dd400f2Bf60E5a23d13Be72B486D4038894",
|
|
371043
|
+
USDC_e: NOT_DEPLOYED,
|
|
371044
|
+
WBTC: NOT_DEPLOYED,
|
|
371045
|
+
tBTC: NOT_DEPLOYED,
|
|
371046
|
+
WETH: "0x309C92261178fA0CF748A855e90Ae73FDb79EBc7",
|
|
371047
|
+
YFI: NOT_DEPLOYED,
|
|
371048
|
+
GMX: NOT_DEPLOYED,
|
|
371049
|
+
ARB: NOT_DEPLOYED,
|
|
371050
|
+
BAL: NOT_DEPLOYED,
|
|
371051
|
+
AURA: NOT_DEPLOYED,
|
|
371052
|
+
SWISE: NOT_DEPLOYED,
|
|
371053
|
+
WLD: NOT_DEPLOYED,
|
|
371054
|
+
OP: NOT_DEPLOYED,
|
|
371055
|
+
SKY: NOT_DEPLOYED,
|
|
371056
|
+
wS: "0x039e2fB66102314Ce7b64Ce5Ce3E5183bc94aD38",
|
|
371057
|
+
stS: "0xE5DA20F15420aD15DE0fa650600aFc998bbE3955",
|
|
371058
|
+
scUSD: "0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE",
|
|
371059
|
+
T: NOT_DEPLOYED,
|
|
371060
|
+
/// UPDATE
|
|
371061
|
+
STETH: NOT_DEPLOYED,
|
|
371062
|
+
wstETH: NOT_DEPLOYED,
|
|
371063
|
+
CVX: NOT_DEPLOYED,
|
|
371064
|
+
FRAX: NOT_DEPLOYED,
|
|
371065
|
+
FXS: NOT_DEPLOYED,
|
|
371066
|
+
LDO: NOT_DEPLOYED,
|
|
371067
|
+
LUSD: NOT_DEPLOYED,
|
|
371068
|
+
sUSD: NOT_DEPLOYED,
|
|
371069
|
+
GUSD: NOT_DEPLOYED,
|
|
371070
|
+
LQTY: NOT_DEPLOYED,
|
|
371071
|
+
MKR: NOT_DEPLOYED,
|
|
371072
|
+
RPL: NOT_DEPLOYED,
|
|
371073
|
+
APE: NOT_DEPLOYED,
|
|
371074
|
+
LBTC: NOT_DEPLOYED,
|
|
371075
|
+
eBTC: NOT_DEPLOYED,
|
|
371076
|
+
solvBTC: NOT_DEPLOYED,
|
|
371077
|
+
pumpBTC: NOT_DEPLOYED,
|
|
371078
|
+
rETH: NOT_DEPLOYED,
|
|
371079
|
+
osETH: NOT_DEPLOYED,
|
|
371080
|
+
weETH: NOT_DEPLOYED,
|
|
371081
|
+
ezETH: NOT_DEPLOYED,
|
|
371082
|
+
rsETH: NOT_DEPLOYED,
|
|
371083
|
+
PENDLE: NOT_DEPLOYED,
|
|
371084
|
+
frxETH: NOT_DEPLOYED,
|
|
371085
|
+
sfrxETH: NOT_DEPLOYED,
|
|
371086
|
+
cbETH: NOT_DEPLOYED,
|
|
371087
|
+
rswETH: NOT_DEPLOYED,
|
|
371088
|
+
USDe: NOT_DEPLOYED,
|
|
371089
|
+
pufETH: NOT_DEPLOYED,
|
|
371090
|
+
USDS: NOT_DEPLOYED,
|
|
371091
|
+
// REDSTONE
|
|
371092
|
+
SHIB: NOT_DEPLOYED,
|
|
371093
|
+
// YEARN TOKENS
|
|
371094
|
+
yvDAI: NOT_DEPLOYED,
|
|
371095
|
+
yvUSDC: NOT_DEPLOYED,
|
|
371096
|
+
yvUSDC_e: NOT_DEPLOYED,
|
|
371097
|
+
yvUSDT: NOT_DEPLOYED,
|
|
371098
|
+
yvWETH: NOT_DEPLOYED,
|
|
371099
|
+
yvWBTC: NOT_DEPLOYED,
|
|
371100
|
+
yvOP: NOT_DEPLOYED,
|
|
371101
|
+
yvCurve_stETH: NOT_DEPLOYED,
|
|
371102
|
+
yvCurve_FRAX: NOT_DEPLOYED,
|
|
371103
|
+
// CURVE LP TOKENS
|
|
371104
|
+
"3Crv": NOT_DEPLOYED,
|
|
371105
|
+
"3CRV": NOT_DEPLOYED,
|
|
371106
|
+
wstETHCRV: NOT_DEPLOYED,
|
|
371107
|
+
crvFRAX: NOT_DEPLOYED,
|
|
371108
|
+
steCRV: NOT_DEPLOYED,
|
|
371109
|
+
FRAX3CRV: NOT_DEPLOYED,
|
|
371110
|
+
LUSD3CRV: NOT_DEPLOYED,
|
|
371111
|
+
crvPlain3andSUSD: NOT_DEPLOYED,
|
|
371112
|
+
gusd3CRV: NOT_DEPLOYED,
|
|
371113
|
+
USDeUSDC: NOT_DEPLOYED,
|
|
371114
|
+
FRAXUSDe: NOT_DEPLOYED,
|
|
371115
|
+
USDecrvUSD: NOT_DEPLOYED,
|
|
371116
|
+
FRAXsDAI: NOT_DEPLOYED,
|
|
371117
|
+
DOLAsUSDe: NOT_DEPLOYED,
|
|
371118
|
+
DOLAFRAXBP3CRV_f: NOT_DEPLOYED,
|
|
371119
|
+
crvUSDDOLA_f: NOT_DEPLOYED,
|
|
371120
|
+
crvCRVETH: NOT_DEPLOYED,
|
|
371121
|
+
crvCVXETH: NOT_DEPLOYED,
|
|
371122
|
+
crvUSDTWBTCWETH: NOT_DEPLOYED,
|
|
371123
|
+
LDOETH: NOT_DEPLOYED,
|
|
371124
|
+
USDeDAI: NOT_DEPLOYED,
|
|
371125
|
+
MtEthena: NOT_DEPLOYED,
|
|
371126
|
+
pufETHwstE: NOT_DEPLOYED,
|
|
371127
|
+
GHOcrvUSD: NOT_DEPLOYED,
|
|
371128
|
+
ezETHWETH: NOT_DEPLOYED,
|
|
371129
|
+
ezpzETH: NOT_DEPLOYED,
|
|
371130
|
+
LBTCWBTC: NOT_DEPLOYED,
|
|
371131
|
+
eBTCWBTC: NOT_DEPLOYED,
|
|
371132
|
+
pumpBTCWBTC: NOT_DEPLOYED,
|
|
371133
|
+
TriBTC: NOT_DEPLOYED,
|
|
371134
|
+
"2BTC-f": NOT_DEPLOYED,
|
|
371135
|
+
tETHwstETH: NOT_DEPLOYED,
|
|
371136
|
+
tETHweETH: NOT_DEPLOYED,
|
|
371137
|
+
pzETHstETH: NOT_DEPLOYED,
|
|
371138
|
+
crvUSDUSDC: NOT_DEPLOYED,
|
|
371139
|
+
crvUSDUSDT: NOT_DEPLOYED,
|
|
371140
|
+
crvUSDFRAX: NOT_DEPLOYED,
|
|
371141
|
+
crvUSDETHCRV: NOT_DEPLOYED,
|
|
371142
|
+
crvUsUSDe: NOT_DEPLOYED,
|
|
371143
|
+
llamathena: NOT_DEPLOYED,
|
|
371144
|
+
"2CRV": NOT_DEPLOYED,
|
|
371145
|
+
"3c-crvUSD": NOT_DEPLOYED,
|
|
371146
|
+
crvUSDC: NOT_DEPLOYED,
|
|
371147
|
+
crvUSDC_e: NOT_DEPLOYED,
|
|
371148
|
+
crvUSDT: NOT_DEPLOYED,
|
|
371149
|
+
USDEUSDC: NOT_DEPLOYED,
|
|
371150
|
+
rETH_f: NOT_DEPLOYED,
|
|
371151
|
+
// CONVEX LP TOKENS
|
|
371152
|
+
cvx3Crv: NOT_DEPLOYED,
|
|
371153
|
+
cvxcrvFRAX: NOT_DEPLOYED,
|
|
371154
|
+
cvxsteCRV: NOT_DEPLOYED,
|
|
371155
|
+
cvxcrvPlain3andSUSD: NOT_DEPLOYED,
|
|
371156
|
+
cvxFRAX3CRV: NOT_DEPLOYED,
|
|
371157
|
+
cvxLUSD3CRV: NOT_DEPLOYED,
|
|
371158
|
+
cvxgusd3CRV: NOT_DEPLOYED,
|
|
371159
|
+
cvxcrvCRVETH: NOT_DEPLOYED,
|
|
371160
|
+
cvxcrvCVXETH: NOT_DEPLOYED,
|
|
371161
|
+
cvxcrvUSDTWBTCWETH: NOT_DEPLOYED,
|
|
371162
|
+
cvxLDOETH: NOT_DEPLOYED,
|
|
371163
|
+
cvxcrvUSDUSDC: NOT_DEPLOYED,
|
|
371164
|
+
cvxcrvUSDUSDT: NOT_DEPLOYED,
|
|
371165
|
+
cvxcrvUSDFRAX: NOT_DEPLOYED,
|
|
371166
|
+
cvxcrvUSDETHCRV: NOT_DEPLOYED,
|
|
371167
|
+
cvxGHOcrvUSD: NOT_DEPLOYED,
|
|
371168
|
+
cvxllamathena: NOT_DEPLOYED,
|
|
371169
|
+
crvUSD: NOT_DEPLOYED,
|
|
371170
|
+
// CONVEX PHANTOM TOKEN ADDRESSES
|
|
371171
|
+
stkcvx3Crv: NOT_DEPLOYED,
|
|
371172
|
+
stkcvxcrvFRAX: NOT_DEPLOYED,
|
|
371173
|
+
stkcvxFRAX3CRV: NOT_DEPLOYED,
|
|
371174
|
+
stkcvxgusd3CRV: NOT_DEPLOYED,
|
|
371175
|
+
stkcvxsteCRV: NOT_DEPLOYED,
|
|
371176
|
+
stkcvxcrvPlain3andSUSD: NOT_DEPLOYED,
|
|
371177
|
+
stkcvxLUSD3CRV: NOT_DEPLOYED,
|
|
371178
|
+
stkcvxcrvCRVETH: NOT_DEPLOYED,
|
|
371179
|
+
stkcvxcrvCVXETH: NOT_DEPLOYED,
|
|
371180
|
+
stkcvxcrvUSDTWBTCWETH: NOT_DEPLOYED,
|
|
371181
|
+
stkcvxLDOETH: NOT_DEPLOYED,
|
|
371182
|
+
stkcvxcrvUSDUSDC: NOT_DEPLOYED,
|
|
371183
|
+
stkcvxcrvUSDUSDT: NOT_DEPLOYED,
|
|
371184
|
+
stkcvxcrvUSDFRAX: NOT_DEPLOYED,
|
|
371185
|
+
stkcvxcrvUSDETHCRV: NOT_DEPLOYED,
|
|
371186
|
+
stkcvxGHOcrvUSD: NOT_DEPLOYED,
|
|
371187
|
+
stkcvxllamathena: NOT_DEPLOYED,
|
|
371188
|
+
cvxcrvUSDT: NOT_DEPLOYED,
|
|
371189
|
+
// BALANCER TOKENS
|
|
371190
|
+
USDC_DAI_USDT: NOT_DEPLOYED,
|
|
371191
|
+
B_rETH_STABLE: NOT_DEPLOYED,
|
|
371192
|
+
weETH_rETH: NOT_DEPLOYED,
|
|
371193
|
+
osETH_wETH_BPT: NOT_DEPLOYED,
|
|
371194
|
+
B_80BAL_20WETH: NOT_DEPLOYED,
|
|
371195
|
+
"50WETH_50AURA": NOT_DEPLOYED,
|
|
371196
|
+
wstETH_WETH_BPT: NOT_DEPLOYED,
|
|
371197
|
+
wstETH_rETH_cbETH: NOT_DEPLOYED,
|
|
371198
|
+
cbETH_rETH_wstETH: NOT_DEPLOYED,
|
|
371199
|
+
wstETH_rETH_sfrxETH: NOT_DEPLOYED,
|
|
371200
|
+
rETH_WETH_BPT_deprecated: NOT_DEPLOYED,
|
|
371201
|
+
rETH_wETH_BPT: NOT_DEPLOYED,
|
|
371202
|
+
ezETH_WETH_BPT: NOT_DEPLOYED,
|
|
371203
|
+
sUSDe_USDC_BPT: NOT_DEPLOYED,
|
|
371204
|
+
trenSTETH: NOT_DEPLOYED,
|
|
371205
|
+
DVstETH_wstETH_BPT: NOT_DEPLOYED,
|
|
371206
|
+
weETH_ezETH_rswETH: NOT_DEPLOYED,
|
|
371207
|
+
rsETH_WETH: NOT_DEPLOYED,
|
|
371208
|
+
rsETH_wETH_Arb: NOT_DEPLOYED,
|
|
371209
|
+
"33AURA_33ARB_33BAL": NOT_DEPLOYED,
|
|
371210
|
+
ezETH_wstETH: NOT_DEPLOYED,
|
|
371211
|
+
BPT_rETH_ETH: NOT_DEPLOYED,
|
|
371212
|
+
BPT_WSTETH_ETH: NOT_DEPLOYED,
|
|
371213
|
+
BPT_ROAD: NOT_DEPLOYED,
|
|
371214
|
+
ECLP_wstETH_WETH: NOT_DEPLOYED,
|
|
371215
|
+
bpt_ethtri: NOT_DEPLOYED,
|
|
371216
|
+
pumpBTC_WBTC_BPT: NOT_DEPLOYED,
|
|
371217
|
+
eBTC_WBTC_BPT: NOT_DEPLOYED,
|
|
371218
|
+
B_50WBTC_50WETH: NOT_DEPLOYED,
|
|
371219
|
+
bpt_rsb: "0xCd4D2b142235D5650fFA6A38787eD0b7d7A51c0C",
|
|
371220
|
+
bpt_sss: "0x374641076B68371e69D03C417DAc3E5F236c32FA",
|
|
371221
|
+
BPT_scUSD_stS: "0x25ca5451CD5a50AB1d324B5E64F32C0799661891",
|
|
371222
|
+
BPT_USDCe_stS: "0x713FB5036dC70012588d77a5B066f1Dd05c712d7",
|
|
370799
371223
|
tETH_wstETH_BPT: NOT_DEPLOYED,
|
|
370800
371224
|
// AURA
|
|
370801
371225
|
auraB_rETH_STABLE: NOT_DEPLOYED,
|
|
@@ -371263,7 +371687,8 @@ var tickerInfoTokensByNetwork = {
|
|
|
371263
371687
|
}
|
|
371264
371688
|
]
|
|
371265
371689
|
},
|
|
371266
|
-
Base: {}
|
|
371690
|
+
Base: {},
|
|
371691
|
+
Sonic: {}
|
|
371267
371692
|
};
|
|
371268
371693
|
var tickerTokensByNetwork = Object.fromEntries(
|
|
371269
371694
|
Object.entries(tickerInfoTokensByNetwork).map(([network, data]) => {
|
|
@@ -371336,7 +371761,8 @@ var connectors = {
|
|
|
371336
371761
|
],
|
|
371337
371762
|
Arbitrum: ["WETH", "DAI", "USDC", "USDT", "rETH", "USDC_e", "wstETH"],
|
|
371338
371763
|
Optimism: ["WETH", "USDC", "USDT", "USDC_e", "wstETH"],
|
|
371339
|
-
Base: ["WETH", "USDC", "USDT"]
|
|
371764
|
+
Base: ["WETH", "USDC", "USDT"],
|
|
371765
|
+
Sonic: []
|
|
371340
371766
|
};
|
|
371341
371767
|
function getConnectors(networkType) {
|
|
371342
371768
|
return connectors[networkType].map((e) => {
|
|
@@ -371356,6 +371782,8 @@ var contractsByNetwork = {
|
|
|
371356
371782
|
FRAXSWAP_ROUTER: "0xC14d550632db8592D1243Edc8B95b0Ad06703867",
|
|
371357
371783
|
VELODROME_V2_ROUTER: NOT_DEPLOYED,
|
|
371358
371784
|
VELODROME_CL_ROUTER: NOT_DEPLOYED,
|
|
371785
|
+
EQUALIZER_ROUTER: NOT_DEPLOYED,
|
|
371786
|
+
SHADOW_ROUTER: NOT_DEPLOYED,
|
|
371359
371787
|
CAMELOT_V3_ROUTER: NOT_DEPLOYED,
|
|
371360
371788
|
PENDLE_ROUTER: "0x888888888889758F76e7103c6CbF23ABbF58F946",
|
|
371361
371789
|
// CURVE
|
|
@@ -371467,6 +371895,8 @@ var contractsByNetwork = {
|
|
|
371467
371895
|
LIDO_WSTETH: tokenDataByNetwork.Mainnet.wstETH,
|
|
371468
371896
|
// BALANCER
|
|
371469
371897
|
BALANCER_VAULT: "0xBA12222222228d8Ba445958a75a0704d566BF2C8",
|
|
371898
|
+
// BEETS
|
|
371899
|
+
BEETS_VAULT: NOT_DEPLOYED,
|
|
371470
371900
|
// GEARBOX
|
|
371471
371901
|
UNIVERSAL_ADAPTER: "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
|
|
371472
371902
|
// AAVE
|
|
@@ -371511,6 +371941,8 @@ var contractsByNetwork = {
|
|
|
371511
371941
|
FRAXSWAP_ROUTER: NOT_DEPLOYED,
|
|
371512
371942
|
VELODROME_V2_ROUTER: NOT_DEPLOYED,
|
|
371513
371943
|
VELODROME_CL_ROUTER: NOT_DEPLOYED,
|
|
371944
|
+
EQUALIZER_ROUTER: NOT_DEPLOYED,
|
|
371945
|
+
SHADOW_ROUTER: NOT_DEPLOYED,
|
|
371514
371946
|
CAMELOT_V3_ROUTER: "0x1F721E2E82F6676FCE4eA07A5958cF098D339e18",
|
|
371515
371947
|
PENDLE_ROUTER: NOT_DEPLOYED,
|
|
371516
371948
|
// CURVE
|
|
@@ -371617,6 +372049,8 @@ var contractsByNetwork = {
|
|
|
371617
372049
|
LIDO_WSTETH: NOT_DEPLOYED,
|
|
371618
372050
|
// BALANCER
|
|
371619
372051
|
BALANCER_VAULT: "0xBA12222222228d8Ba445958a75a0704d566BF2C8",
|
|
372052
|
+
// BEETS
|
|
372053
|
+
BEETS_VAULT: NOT_DEPLOYED,
|
|
371620
372054
|
// GEARBOX
|
|
371621
372055
|
UNIVERSAL_ADAPTER: "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
|
|
371622
372056
|
// AAVE
|
|
@@ -371662,6 +372096,8 @@ var contractsByNetwork = {
|
|
|
371662
372096
|
// UNVERIFIED!
|
|
371663
372097
|
VELODROME_V2_ROUTER: "0xa062aE8A9c5e11aaA026fc2670B0D65cCc8B2858",
|
|
371664
372098
|
VELODROME_CL_ROUTER: "0x0792a633F0c19c351081CF4B211F68F79bCc9676",
|
|
372099
|
+
EQUALIZER_ROUTER: NOT_DEPLOYED,
|
|
372100
|
+
SHADOW_ROUTER: NOT_DEPLOYED,
|
|
371665
372101
|
CAMELOT_V3_ROUTER: NOT_DEPLOYED,
|
|
371666
372102
|
PENDLE_ROUTER: NOT_DEPLOYED,
|
|
371667
372103
|
// CURVE
|
|
@@ -371769,6 +372205,8 @@ var contractsByNetwork = {
|
|
|
371769
372205
|
LIDO_WSTETH: NOT_DEPLOYED,
|
|
371770
372206
|
// BALANCER
|
|
371771
372207
|
BALANCER_VAULT: "0xBA12222222228d8Ba445958a75a0704d566BF2C8",
|
|
372208
|
+
// BEETS
|
|
372209
|
+
BEETS_VAULT: NOT_DEPLOYED,
|
|
371772
372210
|
// GEARBOX
|
|
371773
372211
|
UNIVERSAL_ADAPTER: "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
|
|
371774
372212
|
// AAVE
|
|
@@ -371812,6 +372250,8 @@ var contractsByNetwork = {
|
|
|
371812
372250
|
FRAXSWAP_ROUTER: NOT_DEPLOYED,
|
|
371813
372251
|
VELODROME_V2_ROUTER: NOT_DEPLOYED,
|
|
371814
372252
|
VELODROME_CL_ROUTER: NOT_DEPLOYED,
|
|
372253
|
+
EQUALIZER_ROUTER: NOT_DEPLOYED,
|
|
372254
|
+
SHADOW_ROUTER: NOT_DEPLOYED,
|
|
371815
372255
|
CAMELOT_V3_ROUTER: NOT_DEPLOYED,
|
|
371816
372256
|
PENDLE_ROUTER: NOT_DEPLOYED,
|
|
371817
372257
|
// CURVE
|
|
@@ -371918,6 +372358,8 @@ var contractsByNetwork = {
|
|
|
371918
372358
|
LIDO_WSTETH: NOT_DEPLOYED,
|
|
371919
372359
|
// BALANCER
|
|
371920
372360
|
BALANCER_VAULT: NOT_DEPLOYED,
|
|
372361
|
+
// BEETS
|
|
372362
|
+
BEETS_VAULT: NOT_DEPLOYED,
|
|
371921
372363
|
// GEARBOX
|
|
371922
372364
|
UNIVERSAL_ADAPTER: NOT_DEPLOYED,
|
|
371923
372365
|
// AAVE
|
|
@@ -371944,12 +372386,167 @@ var contractsByNetwork = {
|
|
|
371944
372386
|
MELLOW_DECENTALIZED_VALIDATOR_VAULT: tokenDataByNetwork.Base.DVstETH,
|
|
371945
372387
|
SKY_STAKING_REWARDS: NOT_DEPLOYED,
|
|
371946
372388
|
DAI_USDS: NOT_DEPLOYED
|
|
372389
|
+
},
|
|
372390
|
+
//
|
|
372391
|
+
//
|
|
372392
|
+
//
|
|
372393
|
+
//
|
|
372394
|
+
// SONIC
|
|
372395
|
+
//
|
|
372396
|
+
//
|
|
372397
|
+
//
|
|
372398
|
+
//
|
|
372399
|
+
Sonic: {
|
|
372400
|
+
UNISWAP_V2_ROUTER: NOT_DEPLOYED,
|
|
372401
|
+
UNISWAP_V3_ROUTER: NOT_DEPLOYED,
|
|
372402
|
+
PANCAKESWAP_V3_ROUTER: NOT_DEPLOYED,
|
|
372403
|
+
SUSHISWAP_ROUTER: NOT_DEPLOYED,
|
|
372404
|
+
FRAXSWAP_ROUTER: NOT_DEPLOYED,
|
|
372405
|
+
VELODROME_V2_ROUTER: NOT_DEPLOYED,
|
|
372406
|
+
VELODROME_CL_ROUTER: NOT_DEPLOYED,
|
|
372407
|
+
EQUALIZER_ROUTER: "0xcC6169aA1E879d3a4227536671F85afdb2d23fAD",
|
|
372408
|
+
SHADOW_ROUTER: "0x5543c6176FEb9B4b179078205d7C29EEa2e2d695",
|
|
372409
|
+
CAMELOT_V3_ROUTER: NOT_DEPLOYED,
|
|
372410
|
+
PENDLE_ROUTER: NOT_DEPLOYED,
|
|
372411
|
+
// CURVE
|
|
372412
|
+
CURVE_3CRV_POOL_OP: NOT_DEPLOYED,
|
|
372413
|
+
CURVE_3CRV_POOL: NOT_DEPLOYED,
|
|
372414
|
+
CURVE_FRAX_USDC_POOL: NOT_DEPLOYED,
|
|
372415
|
+
CURVE_STETH_GATEWAY: NOT_DEPLOYED,
|
|
372416
|
+
CURVE_FRAX_POOL: NOT_DEPLOYED,
|
|
372417
|
+
CURVE_LUSD_POOL: NOT_DEPLOYED,
|
|
372418
|
+
CURVE_SUSD_POOL: NOT_DEPLOYED,
|
|
372419
|
+
CURVE_SUSD_DEPOSIT: NOT_DEPLOYED,
|
|
372420
|
+
CURVE_GUSD_POOL: NOT_DEPLOYED,
|
|
372421
|
+
CURVE_CRVETH_POOL: NOT_DEPLOYED,
|
|
372422
|
+
CURVE_CVXETH_POOL: NOT_DEPLOYED,
|
|
372423
|
+
CURVE_3CRYPTO_POOL: NOT_DEPLOYED,
|
|
372424
|
+
CURVE_LDOETH_POOL: NOT_DEPLOYED,
|
|
372425
|
+
CURVE_USDE_USDC_POOL: NOT_DEPLOYED,
|
|
372426
|
+
CURVE_FRAX_USDE_POOL: NOT_DEPLOYED,
|
|
372427
|
+
CURVE_USDE_CRVUSD_POOL: NOT_DEPLOYED,
|
|
372428
|
+
CURVE_FRAX_SDAI_POOL: NOT_DEPLOYED,
|
|
372429
|
+
CURVE_DOLA_SUSDE_POOL: NOT_DEPLOYED,
|
|
372430
|
+
CURVE_DOLA_FRAXBP_POOL: NOT_DEPLOYED,
|
|
372431
|
+
CURVE_DOLA_CRVUSD_POOL: NOT_DEPLOYED,
|
|
372432
|
+
CURVE_USDE_DAI_POOL: NOT_DEPLOYED,
|
|
372433
|
+
CURVE_SDAI_SUSDE_POOL: NOT_DEPLOYED,
|
|
372434
|
+
CURVE_GHO_USDE_POOL: NOT_DEPLOYED,
|
|
372435
|
+
CURVE_PUFETH_WSTETH_POOL: NOT_DEPLOYED,
|
|
372436
|
+
CURVE_GHO_CRVUSD_POOL: NOT_DEPLOYED,
|
|
372437
|
+
CURVE_ETH_WSTETH_GATEWAY_OP: NOT_DEPLOYED,
|
|
372438
|
+
CURVE_EZETH_ETH_POOL: NOT_DEPLOYED,
|
|
372439
|
+
CURVE_EZPZ_ETH_POOL: NOT_DEPLOYED,
|
|
372440
|
+
CURVE_LBTC_WBTC_POOL: NOT_DEPLOYED,
|
|
372441
|
+
CURVE_EBTC_WBTC_POOL: NOT_DEPLOYED,
|
|
372442
|
+
CURVE_PUMPBTC_WBTC_POOL: NOT_DEPLOYED,
|
|
372443
|
+
CURVE_TRIBTC_POOL: NOT_DEPLOYED,
|
|
372444
|
+
CURVE_tBTC_WBTC_POOL: NOT_DEPLOYED,
|
|
372445
|
+
CURVE_tETH_wstETH_POOL: NOT_DEPLOYED,
|
|
372446
|
+
CURVE_tETH_weETH_POOL: NOT_DEPLOYED,
|
|
372447
|
+
CURVE_pzETH_stETH_POOL: NOT_DEPLOYED,
|
|
372448
|
+
CURVE_GEAR_POOL: NOT_DEPLOYED,
|
|
372449
|
+
CURVE_CRVUSD_USDC_POOL: NOT_DEPLOYED,
|
|
372450
|
+
CURVE_CRVUSD_USDT_POOL: NOT_DEPLOYED,
|
|
372451
|
+
CURVE_CRVUSD_FRAX_POOL: NOT_DEPLOYED,
|
|
372452
|
+
CURVE_TRI_CRV_POOL: NOT_DEPLOYED,
|
|
372453
|
+
CURVE_CRVUSD_SUSDE_POOL: NOT_DEPLOYED,
|
|
372454
|
+
CURVE_LLAMA_THENA_POOL: NOT_DEPLOYED,
|
|
372455
|
+
CURVE_RETH_ETH_POOL: NOT_DEPLOYED,
|
|
372456
|
+
CURVE_2CRV_POOL_ARB: NOT_DEPLOYED,
|
|
372457
|
+
CURVE_TRICRYPTO_CRVUSD_POOL_ARB: NOT_DEPLOYED,
|
|
372458
|
+
CURVE_CRVUSD_USDC_POOL_ARB: NOT_DEPLOYED,
|
|
372459
|
+
CURVE_CRVUSD_USDT_POOL_ARB: NOT_DEPLOYED,
|
|
372460
|
+
CURVE_CRVUSD_USDC_E_POOL_ARB: NOT_DEPLOYED,
|
|
372461
|
+
CURVE_USDE_USDC_POOL_ARB: NOT_DEPLOYED,
|
|
372462
|
+
// YEARN
|
|
372463
|
+
YEARN_DAI_VAULT: NOT_DEPLOYED,
|
|
372464
|
+
YEARN_USDC_VAULT: NOT_DEPLOYED,
|
|
372465
|
+
YEARN_USDC_E_VAULT: NOT_DEPLOYED,
|
|
372466
|
+
YEARN_WETH_VAULT: NOT_DEPLOYED,
|
|
372467
|
+
YEARN_WBTC_VAULT: NOT_DEPLOYED,
|
|
372468
|
+
YEARN_USDT_VAULT: NOT_DEPLOYED,
|
|
372469
|
+
YEARN_OP_VAULT: NOT_DEPLOYED,
|
|
372470
|
+
YEARN_CURVE_FRAX_VAULT: NOT_DEPLOYED,
|
|
372471
|
+
YEARN_CURVE_STETH_VAULT: NOT_DEPLOYED,
|
|
372472
|
+
/// ERC4626
|
|
372473
|
+
MAKER_DSR_VAULT: NOT_DEPLOYED,
|
|
372474
|
+
YIELD_ETH_VAULT: NOT_DEPLOYED,
|
|
372475
|
+
STAKED_USDE_VAULT: NOT_DEPLOYED,
|
|
372476
|
+
STAKED_USDS_VAULT: NOT_DEPLOYED,
|
|
372477
|
+
SAVINGS_CRVUSD_VAULT: NOT_DEPLOYED,
|
|
372478
|
+
TREEHOUSE_ETH_VAULT: NOT_DEPLOYED,
|
|
372479
|
+
// CONVEX
|
|
372480
|
+
CONVEX_BOOSTER: NOT_DEPLOYED,
|
|
372481
|
+
CONVEX_3CRV_POOL: NOT_DEPLOYED,
|
|
372482
|
+
CONVEX_FRAX_USDC_POOL: NOT_DEPLOYED,
|
|
372483
|
+
CONVEX_STECRV_POOL: NOT_DEPLOYED,
|
|
372484
|
+
CONVEX_SUSD_POOL: NOT_DEPLOYED,
|
|
372485
|
+
CONVEX_FRAX3CRV_POOL: NOT_DEPLOYED,
|
|
372486
|
+
CONVEX_LUSD3CRV_POOL: NOT_DEPLOYED,
|
|
372487
|
+
CONVEX_GUSD_POOL: NOT_DEPLOYED,
|
|
372488
|
+
CONVEX_CRVETH_POOL: NOT_DEPLOYED,
|
|
372489
|
+
CONVEX_CVXETH_POOL: NOT_DEPLOYED,
|
|
372490
|
+
CONVEX_3CRYPTO_POOL: NOT_DEPLOYED,
|
|
372491
|
+
CONVEX_LDOETH_POOL: NOT_DEPLOYED,
|
|
372492
|
+
CONVEX_CRVUSD_USDC_POOL: NOT_DEPLOYED,
|
|
372493
|
+
CONVEX_CRVUSD_USDT_POOL: NOT_DEPLOYED,
|
|
372494
|
+
CONVEX_CRVUSD_FRAX_POOL: NOT_DEPLOYED,
|
|
372495
|
+
CONVEX_TRI_CRV_POOL: NOT_DEPLOYED,
|
|
372496
|
+
CONVEX_GHO_CRVUSD_POOL: NOT_DEPLOYED,
|
|
372497
|
+
CONVEX_LLAMA_THENA_POOL: NOT_DEPLOYED,
|
|
372498
|
+
CONVEX_BOOSTER_ARB: NOT_DEPLOYED,
|
|
372499
|
+
CONVEX_CRVUSD_USDT_POOL_ARB: NOT_DEPLOYED,
|
|
372500
|
+
// AURA
|
|
372501
|
+
AURA_BOOSTER: NOT_DEPLOYED,
|
|
372502
|
+
AURA_WEETH_RETH_POOL: NOT_DEPLOYED,
|
|
372503
|
+
AURA_OSETH_WETH_POOL: NOT_DEPLOYED,
|
|
372504
|
+
AURA_B_RETH_STABLE_POOL: NOT_DEPLOYED,
|
|
372505
|
+
AURA_BPT_RETH_ETH_POOL: NOT_DEPLOYED,
|
|
372506
|
+
AURA_BPT_WSTETH_ETH_POOL: NOT_DEPLOYED,
|
|
372507
|
+
AURA_RETH_WETH_POOL_ARB: NOT_DEPLOYED,
|
|
372508
|
+
AURA_WSTETH_WETH_POOL_ARB: NOT_DEPLOYED,
|
|
372509
|
+
AURA_CBETH_RETH_WSTETH_POOL_ARB: NOT_DEPLOYED,
|
|
372510
|
+
AURA_WSTETH_RETH_SFRXETH_POOL_ARB: NOT_DEPLOYED,
|
|
372511
|
+
// LIDO
|
|
372512
|
+
LIDO_STETH_GATEWAY: NOT_DEPLOYED,
|
|
372513
|
+
LIDO_WSTETH: NOT_DEPLOYED,
|
|
372514
|
+
// BALANCER
|
|
372515
|
+
BALANCER_VAULT: NOT_DEPLOYED,
|
|
372516
|
+
// BEETS
|
|
372517
|
+
BEETS_VAULT: "0xBA12222222228d8Ba445958a75a0704d566BF2C8",
|
|
372518
|
+
// GEARBOX
|
|
372519
|
+
UNIVERSAL_ADAPTER: NOT_DEPLOYED,
|
|
372520
|
+
// AAVE
|
|
372521
|
+
AAVE_V2_LENDING_POOL: NOT_DEPLOYED,
|
|
372522
|
+
AAVE_V3_LENDING_POOL: NOT_DEPLOYED,
|
|
372523
|
+
AAVE_V2_DAI_TOKEN_WRAPPER: NOT_DEPLOYED,
|
|
372524
|
+
AAVE_V2_USDC_TOKEN_WRAPPER: NOT_DEPLOYED,
|
|
372525
|
+
AAVE_V2_USDT_TOKEN_WRAPPER: NOT_DEPLOYED,
|
|
372526
|
+
AAVE_V2_WETH_TOKEN_WRAPPER: NOT_DEPLOYED,
|
|
372527
|
+
COMPOUND_V2_DAI_POOL: NOT_DEPLOYED,
|
|
372528
|
+
COMPOUND_V2_USDC_POOL: NOT_DEPLOYED,
|
|
372529
|
+
COMPOUND_V2_USDT_POOL: NOT_DEPLOYED,
|
|
372530
|
+
COMPOUND_V2_LINK_POOL: NOT_DEPLOYED,
|
|
372531
|
+
COMPOUND_V2_ETH_GATEWAY: NOT_DEPLOYED,
|
|
372532
|
+
FLUX_USDC_POOL: NOT_DEPLOYED,
|
|
372533
|
+
ZIRCUIT_POOL: NOT_DEPLOYED,
|
|
372534
|
+
// MELLOW
|
|
372535
|
+
MELLOW_STEAKHOUSE_VAULT: NOT_DEPLOYED,
|
|
372536
|
+
MELLOW_RE7_LABS_VAULT: NOT_DEPLOYED,
|
|
372537
|
+
MELLOW_AMPHOR_VAULT: NOT_DEPLOYED,
|
|
372538
|
+
MELLOW_RESTAKING_VAULT: NOT_DEPLOYED,
|
|
372539
|
+
MELLOW_RENZO_VAULT: NOT_DEPLOYED,
|
|
372540
|
+
MELLOW_DECENTALIZED_VALIDATOR_VAULT: NOT_DEPLOYED,
|
|
372541
|
+
SKY_STAKING_REWARDS: NOT_DEPLOYED,
|
|
372542
|
+
DAI_USDS: NOT_DEPLOYED
|
|
371947
372543
|
}
|
|
371948
372544
|
};
|
|
371949
372545
|
var UNISWAP_V3_QUOTER = "0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6";
|
|
371950
372546
|
var CAMELOT_V3_QUOTER = "0x0Fc73040b26E9bC8514fA028D998E73A254Fa76E";
|
|
371951
372547
|
var PANCAKESWAP_V3_QUOTER = "0xB048Bbc1Ee6b733FFfCFb9e9CeF7375518e25997";
|
|
371952
372548
|
var VELODROME_CL_QUOTER = "0x89D8218ed5fF1e46d8dcd33fb0bbeE3be1621466";
|
|
372549
|
+
var SHADOW_QUOTER = "0x219b7ADebc0935a3eC889a148c6924D51A07535A";
|
|
371953
372550
|
var contractParams = {
|
|
371954
372551
|
UNISWAP_V2_ROUTER: {
|
|
371955
372552
|
name: "Uniswap V2",
|
|
@@ -371989,6 +372586,12 @@ var contractParams = {
|
|
|
371989
372586
|
type: 22
|
|
371990
372587
|
/* VELODROME_V2_ROUTER */
|
|
371991
372588
|
},
|
|
372589
|
+
EQUALIZER_ROUTER: {
|
|
372590
|
+
name: "Equalizer",
|
|
372591
|
+
protocol: 24,
|
|
372592
|
+
type: 35
|
|
372593
|
+
/* EQUALIZER_ROUTER */
|
|
372594
|
+
},
|
|
371992
372595
|
VELODROME_CL_ROUTER: {
|
|
371993
372596
|
name: "Velodrome CL Router",
|
|
371994
372597
|
protocol: 15,
|
|
@@ -371996,6 +372599,13 @@ var contractParams = {
|
|
|
371996
372599
|
type: 2
|
|
371997
372600
|
/* UNISWAP_V3_ROUTER */
|
|
371998
372601
|
},
|
|
372602
|
+
SHADOW_ROUTER: {
|
|
372603
|
+
name: "Shadow Router",
|
|
372604
|
+
protocol: 26,
|
|
372605
|
+
quoter: SHADOW_QUOTER,
|
|
372606
|
+
type: 2
|
|
372607
|
+
/* UNISWAP_V3_ROUTER */
|
|
372608
|
+
},
|
|
371999
372609
|
CAMELOT_V3_ROUTER: {
|
|
372000
372610
|
name: "Camelot V3",
|
|
372001
372611
|
protocol: 16,
|
|
@@ -372034,7 +372644,8 @@ var contractParams = {
|
|
|
372034
372644
|
Arbitrum: NOT_DEPLOYED,
|
|
372035
372645
|
// CURVE_STECRV_POOL
|
|
372036
372646
|
Optimism: NOT_DEPLOYED,
|
|
372037
|
-
Base: NOT_DEPLOYED
|
|
372647
|
+
Base: NOT_DEPLOYED,
|
|
372648
|
+
Sonic: NOT_DEPLOYED
|
|
372038
372649
|
},
|
|
372039
372650
|
tokens: ["WETH", "STETH"],
|
|
372040
372651
|
lpToken: "steCRV"
|
|
@@ -372048,7 +372659,8 @@ var contractParams = {
|
|
|
372048
372659
|
Mainnet: NOT_DEPLOYED,
|
|
372049
372660
|
Arbitrum: NOT_DEPLOYED,
|
|
372050
372661
|
Optimism: "0xb90b9b1f91a01ea22a182cd84c1e22222e39b415",
|
|
372051
|
-
Base: NOT_DEPLOYED
|
|
372662
|
+
Base: NOT_DEPLOYED,
|
|
372663
|
+
Sonic: NOT_DEPLOYED
|
|
372052
372664
|
},
|
|
372053
372665
|
tokens: ["WETH", "wstETH"],
|
|
372054
372666
|
lpToken: "wstETHCRV"
|
|
@@ -372062,7 +372674,8 @@ var contractParams = {
|
|
|
372062
372674
|
Mainnet: "0x0E9B5B092caD6F1c5E6bc7f89Ffe1abb5c95F1C2",
|
|
372063
372675
|
Arbitrum: NOT_DEPLOYED,
|
|
372064
372676
|
Optimism: NOT_DEPLOYED,
|
|
372065
|
-
Base: NOT_DEPLOYED
|
|
372677
|
+
Base: NOT_DEPLOYED,
|
|
372678
|
+
Sonic: NOT_DEPLOYED
|
|
372066
372679
|
},
|
|
372067
372680
|
tokens: ["GEAR", "WETH"],
|
|
372068
372681
|
lpToken: "GEAR"
|
|
@@ -372561,7 +373174,8 @@ var contractParams = {
|
|
|
372561
373174
|
Arbitrum: NOT_DEPLOYED,
|
|
372562
373175
|
// CONVEX_SUSD_POOL_EXTRA_SNX
|
|
372563
373176
|
Optimism: NOT_DEPLOYED,
|
|
372564
|
-
Base: NOT_DEPLOYED
|
|
373177
|
+
Base: NOT_DEPLOYED,
|
|
373178
|
+
Sonic: NOT_DEPLOYED
|
|
372565
373179
|
}
|
|
372566
373180
|
}
|
|
372567
373181
|
]
|
|
@@ -372579,7 +373193,8 @@ var contractParams = {
|
|
|
372579
373193
|
Arbitrum: NOT_DEPLOYED,
|
|
372580
373194
|
// CONVEX_STECRV_POOL_EXTRA_LDO
|
|
372581
373195
|
Optimism: NOT_DEPLOYED,
|
|
372582
|
-
Base: NOT_DEPLOYED
|
|
373196
|
+
Base: NOT_DEPLOYED,
|
|
373197
|
+
Sonic: NOT_DEPLOYED
|
|
372583
373198
|
}
|
|
372584
373199
|
}
|
|
372585
373200
|
]
|
|
@@ -372597,7 +373212,8 @@ var contractParams = {
|
|
|
372597
373212
|
Arbitrum: NOT_DEPLOYED,
|
|
372598
373213
|
// CONVEX_FRAX3CRV_POOL_EXTRA_FXS
|
|
372599
373214
|
Optimism: NOT_DEPLOYED,
|
|
372600
|
-
Base: NOT_DEPLOYED
|
|
373215
|
+
Base: NOT_DEPLOYED,
|
|
373216
|
+
Sonic: NOT_DEPLOYED
|
|
372601
373217
|
}
|
|
372602
373218
|
}
|
|
372603
373219
|
]
|
|
@@ -372615,7 +373231,8 @@ var contractParams = {
|
|
|
372615
373231
|
Arbitrum: NOT_DEPLOYED,
|
|
372616
373232
|
// CONVEX_LUSD3CRV_POOL_EXTRA_LQTY
|
|
372617
373233
|
Optimism: NOT_DEPLOYED,
|
|
372618
|
-
Base: NOT_DEPLOYED
|
|
373234
|
+
Base: NOT_DEPLOYED,
|
|
373235
|
+
Sonic: NOT_DEPLOYED
|
|
372619
373236
|
}
|
|
372620
373237
|
}
|
|
372621
373238
|
]
|
|
@@ -372632,7 +373249,8 @@ var contractParams = {
|
|
|
372632
373249
|
Mainnet: "0xE1eCBB4181378E2346EAC90Eb5606c01Aa08f052",
|
|
372633
373250
|
Arbitrum: NOT_DEPLOYED,
|
|
372634
373251
|
Optimism: NOT_DEPLOYED,
|
|
372635
|
-
Base: NOT_DEPLOYED
|
|
373252
|
+
Base: NOT_DEPLOYED,
|
|
373253
|
+
Sonic: NOT_DEPLOYED
|
|
372636
373254
|
}
|
|
372637
373255
|
}
|
|
372638
373256
|
]
|
|
@@ -372649,7 +373267,8 @@ var contractParams = {
|
|
|
372649
373267
|
Mainnet: "0x834B9147Fd23bF131644aBC6e557Daf99C5cDa15",
|
|
372650
373268
|
Arbitrum: NOT_DEPLOYED,
|
|
372651
373269
|
Optimism: NOT_DEPLOYED,
|
|
372652
|
-
Base: NOT_DEPLOYED
|
|
373270
|
+
Base: NOT_DEPLOYED,
|
|
373271
|
+
Sonic: NOT_DEPLOYED
|
|
372653
373272
|
}
|
|
372654
373273
|
}
|
|
372655
373274
|
]
|
|
@@ -372673,7 +373292,8 @@ var contractParams = {
|
|
|
372673
373292
|
Mainnet: "0x95e6092449a0f3946A5a0f308Ead4adcff244E2B",
|
|
372674
373293
|
Arbitrum: NOT_DEPLOYED,
|
|
372675
373294
|
Optimism: NOT_DEPLOYED,
|
|
372676
|
-
Base: NOT_DEPLOYED
|
|
373295
|
+
Base: NOT_DEPLOYED,
|
|
373296
|
+
Sonic: NOT_DEPLOYED
|
|
372677
373297
|
}
|
|
372678
373298
|
}
|
|
372679
373299
|
]
|
|
@@ -372690,7 +373310,8 @@ var contractParams = {
|
|
|
372690
373310
|
Mainnet: "0xac183F7cd62d5b04Fa40362EB67249A80339541A",
|
|
372691
373311
|
Arbitrum: NOT_DEPLOYED,
|
|
372692
373312
|
Optimism: NOT_DEPLOYED,
|
|
372693
|
-
Base: NOT_DEPLOYED
|
|
373313
|
+
Base: NOT_DEPLOYED,
|
|
373314
|
+
Sonic: NOT_DEPLOYED
|
|
372694
373315
|
}
|
|
372695
373316
|
}
|
|
372696
373317
|
]
|
|
@@ -372707,7 +373328,8 @@ var contractParams = {
|
|
|
372707
373328
|
Mainnet: "0xD490178B568b07c6DDbDfBBfaF9043772209Ec01",
|
|
372708
373329
|
Arbitrum: NOT_DEPLOYED,
|
|
372709
373330
|
Optimism: NOT_DEPLOYED,
|
|
372710
|
-
Base: NOT_DEPLOYED
|
|
373331
|
+
Base: NOT_DEPLOYED,
|
|
373332
|
+
Sonic: NOT_DEPLOYED
|
|
372711
373333
|
}
|
|
372712
373334
|
}
|
|
372713
373335
|
]
|
|
@@ -372724,7 +373346,8 @@ var contractParams = {
|
|
|
372724
373346
|
Mainnet: "0x749cFfCb53e008841d7387ba37f9284BDeCEe0A9",
|
|
372725
373347
|
Arbitrum: NOT_DEPLOYED,
|
|
372726
373348
|
Optimism: NOT_DEPLOYED,
|
|
372727
|
-
Base: NOT_DEPLOYED
|
|
373349
|
+
Base: NOT_DEPLOYED,
|
|
373350
|
+
Sonic: NOT_DEPLOYED
|
|
372728
373351
|
}
|
|
372729
373352
|
}
|
|
372730
373353
|
]
|
|
@@ -372741,7 +373364,8 @@ var contractParams = {
|
|
|
372741
373364
|
Mainnet: "0x01eC96F1eEBF470E3fEAEEfB843fbC63424e668d",
|
|
372742
373365
|
Arbitrum: NOT_DEPLOYED,
|
|
372743
373366
|
Optimism: NOT_DEPLOYED,
|
|
372744
|
-
Base: NOT_DEPLOYED
|
|
373367
|
+
Base: NOT_DEPLOYED,
|
|
373368
|
+
Sonic: NOT_DEPLOYED
|
|
372745
373369
|
}
|
|
372746
373370
|
}
|
|
372747
373371
|
]
|
|
@@ -372758,7 +373382,8 @@ var contractParams = {
|
|
|
372758
373382
|
Mainnet: "0xE7cC925739E41E2A03A53770F5E9Ed43afe13993",
|
|
372759
373383
|
Arbitrum: NOT_DEPLOYED,
|
|
372760
373384
|
Optimism: NOT_DEPLOYED,
|
|
372761
|
-
Base: NOT_DEPLOYED
|
|
373385
|
+
Base: NOT_DEPLOYED,
|
|
373386
|
+
Sonic: NOT_DEPLOYED
|
|
372762
373387
|
}
|
|
372763
373388
|
}
|
|
372764
373389
|
]
|
|
@@ -372775,7 +373400,8 @@ var contractParams = {
|
|
|
372775
373400
|
Mainnet: "0xc66844E5788b7d7D6DFFa5EC1Db62d898c59D6e7",
|
|
372776
373401
|
Arbitrum: NOT_DEPLOYED,
|
|
372777
373402
|
Optimism: NOT_DEPLOYED,
|
|
372778
|
-
Base: NOT_DEPLOYED
|
|
373403
|
+
Base: NOT_DEPLOYED,
|
|
373404
|
+
Sonic: NOT_DEPLOYED
|
|
372779
373405
|
}
|
|
372780
373406
|
}
|
|
372781
373407
|
]
|
|
@@ -372811,7 +373437,8 @@ var contractParams = {
|
|
|
372811
373437
|
Mainnet: "0xf66a72886749c96b18526E8E124cC2e18b7c72D2",
|
|
372812
373438
|
Arbitrum: NOT_DEPLOYED,
|
|
372813
373439
|
Optimism: NOT_DEPLOYED,
|
|
372814
|
-
Base: NOT_DEPLOYED
|
|
373440
|
+
Base: NOT_DEPLOYED,
|
|
373441
|
+
Sonic: NOT_DEPLOYED
|
|
372815
373442
|
}
|
|
372816
373443
|
}
|
|
372817
373444
|
]
|
|
@@ -372828,7 +373455,8 @@ var contractParams = {
|
|
|
372828
373455
|
Mainnet: "0x25d22C5191C67D63AAB70a37FAe06e1c1E1a830F",
|
|
372829
373456
|
Arbitrum: NOT_DEPLOYED,
|
|
372830
373457
|
Optimism: NOT_DEPLOYED,
|
|
372831
|
-
Base: NOT_DEPLOYED
|
|
373458
|
+
Base: NOT_DEPLOYED,
|
|
373459
|
+
Sonic: NOT_DEPLOYED
|
|
372832
373460
|
}
|
|
372833
373461
|
}
|
|
372834
373462
|
]
|
|
@@ -372845,7 +373473,8 @@ var contractParams = {
|
|
|
372845
373473
|
Mainnet: "0x62e6D8dAe7089C8F2f2a5C328c710aa1788742fb",
|
|
372846
373474
|
Arbitrum: NOT_DEPLOYED,
|
|
372847
373475
|
Optimism: NOT_DEPLOYED,
|
|
372848
|
-
Base: NOT_DEPLOYED
|
|
373476
|
+
Base: NOT_DEPLOYED,
|
|
373477
|
+
Sonic: NOT_DEPLOYED
|
|
372849
373478
|
}
|
|
372850
373479
|
},
|
|
372851
373480
|
{
|
|
@@ -372854,7 +373483,8 @@ var contractParams = {
|
|
|
372854
373483
|
Mainnet: "0xC5E75ccd4d40e2Fb280f008f8AFB5EF3415EFA72",
|
|
372855
373484
|
Arbitrum: NOT_DEPLOYED,
|
|
372856
373485
|
Optimism: NOT_DEPLOYED,
|
|
372857
|
-
Base: NOT_DEPLOYED
|
|
373486
|
+
Base: NOT_DEPLOYED,
|
|
373487
|
+
Sonic: NOT_DEPLOYED
|
|
372858
373488
|
}
|
|
372859
373489
|
}
|
|
372860
373490
|
]
|
|
@@ -372871,7 +373501,8 @@ var contractParams = {
|
|
|
372871
373501
|
Mainnet: NOT_DEPLOYED,
|
|
372872
373502
|
Arbitrum: NOT_DEPLOYED,
|
|
372873
373503
|
Optimism: "0x0A22Ae9D9D149C14f6c15A235e715bB6C1Cfa739",
|
|
372874
|
-
Base: NOT_DEPLOYED
|
|
373504
|
+
Base: NOT_DEPLOYED,
|
|
373505
|
+
Sonic: NOT_DEPLOYED
|
|
372875
373506
|
}
|
|
372876
373507
|
},
|
|
372877
373508
|
{
|
|
@@ -372880,7 +373511,8 @@ var contractParams = {
|
|
|
372880
373511
|
Mainnet: NOT_DEPLOYED,
|
|
372881
373512
|
Arbitrum: NOT_DEPLOYED,
|
|
372882
373513
|
Optimism: "0x81673Cdd00c2839440f31575cCFa5B6ca4a87B2B",
|
|
372883
|
-
Base: NOT_DEPLOYED
|
|
373514
|
+
Base: NOT_DEPLOYED,
|
|
373515
|
+
Sonic: NOT_DEPLOYED
|
|
372884
373516
|
}
|
|
372885
373517
|
}
|
|
372886
373518
|
]
|
|
@@ -372897,7 +373529,8 @@ var contractParams = {
|
|
|
372897
373529
|
Mainnet: NOT_DEPLOYED,
|
|
372898
373530
|
Arbitrum: NOT_DEPLOYED,
|
|
372899
373531
|
Optimism: "0x903d716fe68e7e091eCC43AA93c0F8cfD7e7BC0a",
|
|
372900
|
-
Base: NOT_DEPLOYED
|
|
373532
|
+
Base: NOT_DEPLOYED,
|
|
373533
|
+
Sonic: NOT_DEPLOYED
|
|
372901
373534
|
}
|
|
372902
373535
|
},
|
|
372903
373536
|
{
|
|
@@ -372906,7 +373539,8 @@ var contractParams = {
|
|
|
372906
373539
|
Mainnet: NOT_DEPLOYED,
|
|
372907
373540
|
Arbitrum: NOT_DEPLOYED,
|
|
372908
373541
|
Optimism: "0xb0709c230C06BE6e2A84b2Ba877094EB9a4fA014",
|
|
372909
|
-
Base: NOT_DEPLOYED
|
|
373542
|
+
Base: NOT_DEPLOYED,
|
|
373543
|
+
Sonic: NOT_DEPLOYED
|
|
372910
373544
|
}
|
|
372911
373545
|
}
|
|
372912
373546
|
]
|
|
@@ -372923,7 +373557,8 @@ var contractParams = {
|
|
|
372923
373557
|
Mainnet: NOT_DEPLOYED,
|
|
372924
373558
|
Arbitrum: "0xC0353d05D3F2b6e14E36c5d3B4bF8d179890A001",
|
|
372925
373559
|
Optimism: NOT_DEPLOYED,
|
|
372926
|
-
Base: NOT_DEPLOYED
|
|
373560
|
+
Base: NOT_DEPLOYED,
|
|
373561
|
+
Sonic: NOT_DEPLOYED
|
|
372927
373562
|
}
|
|
372928
373563
|
},
|
|
372929
373564
|
{
|
|
@@ -372932,7 +373567,8 @@ var contractParams = {
|
|
|
372932
373567
|
Mainnet: NOT_DEPLOYED,
|
|
372933
373568
|
Arbitrum: "0x3a0beff39E243453960aD1198Fc3aAabdBDDe56C",
|
|
372934
373569
|
Optimism: NOT_DEPLOYED,
|
|
372935
|
-
Base: NOT_DEPLOYED
|
|
373570
|
+
Base: NOT_DEPLOYED,
|
|
373571
|
+
Sonic: NOT_DEPLOYED
|
|
372936
373572
|
}
|
|
372937
373573
|
}
|
|
372938
373574
|
]
|
|
@@ -372949,7 +373585,8 @@ var contractParams = {
|
|
|
372949
373585
|
Mainnet: NOT_DEPLOYED,
|
|
372950
373586
|
Arbitrum: "0x5901ce1c3Bf6C97fC49ED0fF08A88a57ea6E4Ca4",
|
|
372951
373587
|
Optimism: NOT_DEPLOYED,
|
|
372952
|
-
Base: NOT_DEPLOYED
|
|
373588
|
+
Base: NOT_DEPLOYED,
|
|
373589
|
+
Sonic: NOT_DEPLOYED
|
|
372953
373590
|
}
|
|
372954
373591
|
},
|
|
372955
373592
|
{
|
|
@@ -372958,7 +373595,8 @@ var contractParams = {
|
|
|
372958
373595
|
Mainnet: NOT_DEPLOYED,
|
|
372959
373596
|
Arbitrum: "0x4601Ec46A285714e6F2A9466DA7f2BcB33646391",
|
|
372960
373597
|
Optimism: NOT_DEPLOYED,
|
|
372961
|
-
Base: NOT_DEPLOYED
|
|
373598
|
+
Base: NOT_DEPLOYED,
|
|
373599
|
+
Sonic: NOT_DEPLOYED
|
|
372962
373600
|
}
|
|
372963
373601
|
}
|
|
372964
373602
|
]
|
|
@@ -372975,7 +373613,8 @@ var contractParams = {
|
|
|
372975
373613
|
Mainnet: NOT_DEPLOYED,
|
|
372976
373614
|
Arbitrum: "0xf0dcb30811228bED2b87b2753fabAfe80A9D0fb9",
|
|
372977
373615
|
Optimism: NOT_DEPLOYED,
|
|
372978
|
-
Base: NOT_DEPLOYED
|
|
373616
|
+
Base: NOT_DEPLOYED,
|
|
373617
|
+
Sonic: NOT_DEPLOYED
|
|
372979
373618
|
}
|
|
372980
373619
|
},
|
|
372981
373620
|
{
|
|
@@ -372984,7 +373623,8 @@ var contractParams = {
|
|
|
372984
373623
|
Mainnet: NOT_DEPLOYED,
|
|
372985
373624
|
Arbitrum: "0xE42D389058D820177b83E2863FEb13733d6Dd5f2",
|
|
372986
373625
|
Optimism: NOT_DEPLOYED,
|
|
372987
|
-
Base: NOT_DEPLOYED
|
|
373626
|
+
Base: NOT_DEPLOYED,
|
|
373627
|
+
Sonic: NOT_DEPLOYED
|
|
372988
373628
|
}
|
|
372989
373629
|
}
|
|
372990
373630
|
]
|
|
@@ -373001,7 +373641,8 @@ var contractParams = {
|
|
|
373001
373641
|
Mainnet: NOT_DEPLOYED,
|
|
373002
373642
|
Arbitrum: "0xeA270927C226454452DDF80e24a02087D0D7089F",
|
|
373003
373643
|
Optimism: NOT_DEPLOYED,
|
|
373004
|
-
Base: NOT_DEPLOYED
|
|
373644
|
+
Base: NOT_DEPLOYED,
|
|
373645
|
+
Sonic: NOT_DEPLOYED
|
|
373005
373646
|
}
|
|
373006
373647
|
},
|
|
373007
373648
|
{
|
|
@@ -373010,7 +373651,8 @@ var contractParams = {
|
|
|
373010
373651
|
Mainnet: NOT_DEPLOYED,
|
|
373011
373652
|
Arbitrum: "0xB05Dc0b460Ca3ed5174b33A7dA2104388764F62D",
|
|
373012
373653
|
Optimism: NOT_DEPLOYED,
|
|
373013
|
-
Base: NOT_DEPLOYED
|
|
373654
|
+
Base: NOT_DEPLOYED,
|
|
373655
|
+
Sonic: NOT_DEPLOYED
|
|
373014
373656
|
}
|
|
373015
373657
|
}
|
|
373016
373658
|
]
|
|
@@ -373024,7 +373666,8 @@ var contractParams = {
|
|
|
373024
373666
|
Arbitrum: NOT_DEPLOYED,
|
|
373025
373667
|
// LIDO_ORACLE
|
|
373026
373668
|
Optimism: NOT_DEPLOYED,
|
|
373027
|
-
Base: NOT_DEPLOYED
|
|
373669
|
+
Base: NOT_DEPLOYED,
|
|
373670
|
+
Sonic: NOT_DEPLOYED
|
|
373028
373671
|
},
|
|
373029
373672
|
lpToken: "steCRV"
|
|
373030
373673
|
},
|
|
@@ -373048,7 +373691,20 @@ var contractParams = {
|
|
|
373048
373691
|
Mainnet: "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5",
|
|
373049
373692
|
Arbitrum: "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5",
|
|
373050
373693
|
Optimism: "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5",
|
|
373051
|
-
Base: NOT_DEPLOYED
|
|
373694
|
+
Base: NOT_DEPLOYED,
|
|
373695
|
+
Sonic: NOT_DEPLOYED
|
|
373696
|
+
}
|
|
373697
|
+
},
|
|
373698
|
+
BEETS_VAULT: {
|
|
373699
|
+
name: "Beets Vault",
|
|
373700
|
+
protocol: 25,
|
|
373701
|
+
type: 16,
|
|
373702
|
+
queries: {
|
|
373703
|
+
Mainnet: NOT_DEPLOYED,
|
|
373704
|
+
Arbitrum: NOT_DEPLOYED,
|
|
373705
|
+
Optimism: NOT_DEPLOYED,
|
|
373706
|
+
Base: NOT_DEPLOYED,
|
|
373707
|
+
Sonic: "0x4B29DB997Ec0efDFEF13bAeE2a2D7783bCf67f17"
|
|
373052
373708
|
}
|
|
373053
373709
|
},
|
|
373054
373710
|
AAVE_V2_LENDING_POOL: {
|
|
@@ -376262,7 +376918,8 @@ var TESTNET_CHAINS = {
|
|
|
376262
376918
|
Mainnet: 7878,
|
|
376263
376919
|
Optimism: 7879,
|
|
376264
376920
|
Arbitrum: 7880,
|
|
376265
|
-
Base: 7881
|
|
376921
|
+
Base: 7881,
|
|
376922
|
+
Sonic: 7882
|
|
376266
376923
|
};
|
|
376267
376924
|
var CHARTS_BACKEND_ADDRESSES = {
|
|
376268
376925
|
[chains.Mainnet.id]: "https://charts-server.fly.dev",
|
|
@@ -398297,6 +398954,10 @@ var ForkTemplate = z.object({
|
|
|
398297
398954
|
gip: z.string().regex(/^[a-z][a-z0-9\-_]{3,}$/, {
|
|
398298
398955
|
message: "gip id must contain lowercase letters, numbers, dashes and underscores, and must be minimum 4 symbols"
|
|
398299
398956
|
}).or(z.literal("")).nullish(),
|
|
398957
|
+
/**
|
|
398958
|
+
* Anvil chain id override, if not set, defaults to 7878... etc.
|
|
398959
|
+
*/
|
|
398960
|
+
chainId: z.number().int().nonnegative().nullish(),
|
|
398300
398961
|
/**
|
|
398301
398962
|
* Will set appropriate RPC urls
|
|
398302
398963
|
*/
|
|
@@ -402540,7 +403201,9 @@ var ProviderBase = class {
|
|
|
402540
403201
|
var API_KEYS = {
|
|
402541
403202
|
Mainnet: (o) => o.etherscanApiKey,
|
|
402542
403203
|
Optimism: (o) => o.etherscanOptimism,
|
|
402543
|
-
Arbitrum: (o) => o.etherscanArbitrum
|
|
403204
|
+
Arbitrum: (o) => o.etherscanArbitrum,
|
|
403205
|
+
Base: (o) => o.etherscanBase,
|
|
403206
|
+
Sonic: (o) => o.etherscanSonic
|
|
402544
403207
|
};
|
|
402545
403208
|
var EtherscanVerifier = class extends ProviderBase {
|
|
402546
403209
|
#logger = log_default.child({ name: "etherscan" });
|
|
@@ -407459,6 +408122,14 @@ function newCommand() {
|
|
|
407459
408122
|
"--etherscan-arbitrum <key>",
|
|
407460
408123
|
"etherscan api key for Arbitrum"
|
|
407461
408124
|
).env("ETHERSCAN_ARBITRUM")
|
|
408125
|
+
).addOption(
|
|
408126
|
+
new Option("--etherscan-sonic <key>", "etherscan api key for Sonic").env(
|
|
408127
|
+
"ETHERSCAN_SONIC"
|
|
408128
|
+
)
|
|
408129
|
+
).addOption(
|
|
408130
|
+
new Option("--etherscan-base <key>", "etherscan api key for Base").env(
|
|
408131
|
+
"ETHERSCAN_BASE"
|
|
408132
|
+
)
|
|
407462
408133
|
).addOption(
|
|
407463
408134
|
new Option(
|
|
407464
408135
|
"--governance-json <file>",
|
|
@@ -408665,7 +409336,7 @@ function getRenderer(opts) {
|
|
|
408665
409336
|
var package_default = {
|
|
408666
409337
|
name: "@gearbox-protocol/deploy-tools",
|
|
408667
409338
|
description: "Gearbox deploy tools",
|
|
408668
|
-
version: "5.9.
|
|
409339
|
+
version: "5.9.2",
|
|
408669
409340
|
homepage: "https://gearbox.fi",
|
|
408670
409341
|
keywords: [
|
|
408671
409342
|
"gearbox"
|
|
@@ -408708,7 +409379,7 @@ var package_default = {
|
|
|
408708
409379
|
"@gearbox-protocol/deploy-tools-node": "0.0.0",
|
|
408709
409380
|
"@gearbox-protocol/deploy-tools-shared": "0.0.0",
|
|
408710
409381
|
"@gearbox-protocol/deploy-tools-types": "0.0.0",
|
|
408711
|
-
"@gearbox-protocol/sdk": "
|
|
409382
|
+
"@gearbox-protocol/sdk": "3.0.0-vfour.206",
|
|
408712
409383
|
"@gearbox-protocol/sdk-gov": "^2.34.0",
|
|
408713
409384
|
"@types/lodash-es": "^4.17.12",
|
|
408714
409385
|
"@types/node": "^22.12.0",
|