@gearbox-protocol/deploy-tools 4.21.4 → 4.22.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +1317 -330
- package/package.json +4 -4
package/dist/index.mjs
CHANGED
|
@@ -6867,6 +6867,29 @@ var require_retry2 = __commonJS({
|
|
|
6867
6867
|
}
|
|
6868
6868
|
});
|
|
6869
6869
|
|
|
6870
|
+
// ../../node_modules/@gearbox-protocol/sdk-gov/lib/bots/permissions.js
|
|
6871
|
+
var require_permissions = __commonJS({
|
|
6872
|
+
"../../node_modules/@gearbox-protocol/sdk-gov/lib/bots/permissions.js"(exports2) {
|
|
6873
|
+
"use strict";
|
|
6874
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
6875
|
+
exports2.BotPermissions = void 0;
|
|
6876
|
+
var BotPermissions;
|
|
6877
|
+
(function(BotPermissions2) {
|
|
6878
|
+
BotPermissions2[BotPermissions2["ADD_COLLATERAL"] = 1] = "ADD_COLLATERAL";
|
|
6879
|
+
BotPermissions2[BotPermissions2["INCREASE_DEBT"] = 2] = "INCREASE_DEBT";
|
|
6880
|
+
BotPermissions2[BotPermissions2["DECREASE_DEBT"] = 4] = "DECREASE_DEBT";
|
|
6881
|
+
BotPermissions2[BotPermissions2["ENABLE_TOKEN"] = 8] = "ENABLE_TOKEN";
|
|
6882
|
+
BotPermissions2[BotPermissions2["DISABLE_TOKEN"] = 16] = "DISABLE_TOKEN";
|
|
6883
|
+
BotPermissions2[BotPermissions2["WITHDRAW_COLLATERAL"] = 32] = "WITHDRAW_COLLATERAL";
|
|
6884
|
+
BotPermissions2[BotPermissions2["UPDATE_QUOTA"] = 64] = "UPDATE_QUOTA";
|
|
6885
|
+
BotPermissions2[BotPermissions2["REVOKE_ALLOWANCES"] = 128] = "REVOKE_ALLOWANCES";
|
|
6886
|
+
BotPermissions2[BotPermissions2["EXTERNAL_CALLS"] = 65536] = "EXTERNAL_CALLS";
|
|
6887
|
+
BotPermissions2[BotPermissions2["ALL_CREDIT_FACADE_CALLS"] = 255] = "ALL_CREDIT_FACADE_CALLS";
|
|
6888
|
+
BotPermissions2[BotPermissions2["ALLS"] = 65791] = "ALLS";
|
|
6889
|
+
})(BotPermissions || (exports2.BotPermissions = BotPermissions = {}));
|
|
6890
|
+
}
|
|
6891
|
+
});
|
|
6892
|
+
|
|
6870
6893
|
// ../../node_modules/@gearbox-protocol/sdk-gov/lib/config/adapters.js
|
|
6871
6894
|
var require_adapters = __commonJS({
|
|
6872
6895
|
"../../node_modules/@gearbox-protocol/sdk-gov/lib/config/adapters.js"(exports2) {
|
|
@@ -6958,15 +6981,15 @@ var require_daiConfigMainnet = __commonJS({
|
|
|
6958
6981
|
// POINTS FARMING
|
|
6959
6982
|
USDe: {
|
|
6960
6983
|
minRate: 5,
|
|
6961
|
-
maxRate:
|
|
6984
|
+
maxRate: 5e3,
|
|
6962
6985
|
quotaIncreaseFee: 0,
|
|
6963
|
-
limit: BigInt(
|
|
6986
|
+
limit: BigInt(5e6) * POOL_DECIMALS
|
|
6964
6987
|
},
|
|
6965
6988
|
sUSDe: {
|
|
6966
6989
|
minRate: 5,
|
|
6967
|
-
maxRate:
|
|
6990
|
+
maxRate: 5e3,
|
|
6968
6991
|
quotaIncreaseFee: 0,
|
|
6969
|
-
limit: BigInt(
|
|
6992
|
+
limit: BigInt(0)
|
|
6970
6993
|
}
|
|
6971
6994
|
},
|
|
6972
6995
|
creditManagers: [tier1CreditManager],
|
|
@@ -7064,6 +7087,12 @@ var require_ghoConfigMainnet = __commonJS({
|
|
|
7064
7087
|
},
|
|
7065
7088
|
ratesAndLimits: {
|
|
7066
7089
|
// TRADEABLE TOKENS
|
|
7090
|
+
USDC: {
|
|
7091
|
+
minRate: 4,
|
|
7092
|
+
maxRate: 1200,
|
|
7093
|
+
quotaIncreaseFee: 1,
|
|
7094
|
+
limit: BigInt(3e7) * POOL_DECIMALS
|
|
7095
|
+
},
|
|
7067
7096
|
DAI: {
|
|
7068
7097
|
minRate: 4,
|
|
7069
7098
|
maxRate: 1200,
|
|
@@ -7086,15 +7115,15 @@ var require_ghoConfigMainnet = __commonJS({
|
|
|
7086
7115
|
// POINTS FARMING
|
|
7087
7116
|
USDe: {
|
|
7088
7117
|
minRate: 5,
|
|
7089
|
-
maxRate:
|
|
7118
|
+
maxRate: 5e3,
|
|
7090
7119
|
quotaIncreaseFee: 0,
|
|
7091
7120
|
limit: BigInt(3e6) * POOL_DECIMALS
|
|
7092
7121
|
},
|
|
7093
7122
|
sUSDe: {
|
|
7094
7123
|
minRate: 5,
|
|
7095
|
-
maxRate:
|
|
7124
|
+
maxRate: 5e3,
|
|
7096
7125
|
quotaIncreaseFee: 0,
|
|
7097
|
-
limit: BigInt(
|
|
7126
|
+
limit: BigInt(0)
|
|
7098
7127
|
}
|
|
7099
7128
|
},
|
|
7100
7129
|
creditManagers: [tier1CreditManager],
|
|
@@ -8470,7 +8499,7 @@ var require_usdtConfigMainnet = __commonJS({
|
|
|
8470
8499
|
exports2.usdtConfigMainnet = void 0;
|
|
8471
8500
|
var POOL_DECIMALS = BigInt(1e6);
|
|
8472
8501
|
var tier1CreditManager = {
|
|
8473
|
-
name: "USDT Tier 1",
|
|
8502
|
+
name: "Universal USDT Tier 1",
|
|
8474
8503
|
degenNft: false,
|
|
8475
8504
|
expirationDate: void 0,
|
|
8476
8505
|
minDebt: BigInt(2e4) * POOL_DECIMALS,
|
|
@@ -8522,7 +8551,7 @@ var require_usdtConfigMainnet = __commonJS({
|
|
|
8522
8551
|
exports2.usdtConfigMainnet = {
|
|
8523
8552
|
id: "mainnet-usdt-v3",
|
|
8524
8553
|
symbol: "dUSDTV3",
|
|
8525
|
-
name: "USDT v3",
|
|
8554
|
+
name: "Universal USDT v3",
|
|
8526
8555
|
network: "Mainnet",
|
|
8527
8556
|
underlying: "USDT",
|
|
8528
8557
|
accountAmount: BigInt(1e5) * POOL_DECIMALS,
|
|
@@ -8561,15 +8590,15 @@ var require_usdtConfigMainnet = __commonJS({
|
|
|
8561
8590
|
// POINTS FARMING
|
|
8562
8591
|
USDe: {
|
|
8563
8592
|
minRate: 5,
|
|
8564
|
-
maxRate:
|
|
8593
|
+
maxRate: 5e3,
|
|
8565
8594
|
quotaIncreaseFee: 0,
|
|
8566
|
-
limit: BigInt(
|
|
8595
|
+
limit: BigInt(5e6) * POOL_DECIMALS
|
|
8567
8596
|
},
|
|
8568
8597
|
sUSDe: {
|
|
8569
8598
|
minRate: 5,
|
|
8570
|
-
maxRate:
|
|
8599
|
+
maxRate: 5e3,
|
|
8571
8600
|
quotaIncreaseFee: 0,
|
|
8572
|
-
limit: BigInt(
|
|
8601
|
+
limit: BigInt(0)
|
|
8573
8602
|
}
|
|
8574
8603
|
},
|
|
8575
8604
|
creditManagers: [tier1CreditManager],
|
|
@@ -10417,7 +10446,7 @@ var require_constants2 = __commonJS({
|
|
|
10417
10446
|
exports2.DUMB_ADDRESS2 = "0x93548eB8453a498222C4FF2C4375b7De8af5A38a";
|
|
10418
10447
|
exports2.DUMB_ADDRESS3 = "0x822293548EB8453A49c4fF2c4375B7DE8AF5a38A";
|
|
10419
10448
|
exports2.DUMB_ADDRESS4 = "0x498222C4Ff2C4393548eb8453a75B7dE8AF5A38a";
|
|
10420
|
-
exports2.NOT_DEPLOYED = "
|
|
10449
|
+
exports2.NOT_DEPLOYED = "0xNOT DEPLOYED";
|
|
10421
10450
|
exports2.FIRST_EPOCH_TIMESTAMP = 1702900800;
|
|
10422
10451
|
}
|
|
10423
10452
|
});
|
|
@@ -10565,6 +10594,12 @@ var require_decimals = __commonJS({
|
|
|
10565
10594
|
sdUSDCV3: 6,
|
|
10566
10595
|
sdWBTCV3: 8,
|
|
10567
10596
|
sdWETHV3: 18,
|
|
10597
|
+
dUSDTV3: 6,
|
|
10598
|
+
dGHOV3: 18,
|
|
10599
|
+
dDAIV3: 18,
|
|
10600
|
+
sdUSDTV3: 6,
|
|
10601
|
+
sdGHOV3: 18,
|
|
10602
|
+
sdDAIV3: 18,
|
|
10568
10603
|
GEAR: 18,
|
|
10569
10604
|
"50OHM_50DAI": 18,
|
|
10570
10605
|
"50OHM_50WETH": 18,
|
|
@@ -109618,6 +109653,24 @@ var require_gear = __commonJS({
|
|
|
109618
109653
|
symbol: "dWETHV3",
|
|
109619
109654
|
type: { AllNetworks: tokenType_1.TokenType.DIESEL_LP_TOKEN },
|
|
109620
109655
|
stakedToken: "sdWETHV3"
|
|
109656
|
+
},
|
|
109657
|
+
dUSDTV3: {
|
|
109658
|
+
name: "dUSDTV3",
|
|
109659
|
+
symbol: "dUSDTV3",
|
|
109660
|
+
type: { AllNetworks: tokenType_1.TokenType.DIESEL_LP_TOKEN },
|
|
109661
|
+
stakedToken: "sdUSDTV3"
|
|
109662
|
+
},
|
|
109663
|
+
dGHOV3: {
|
|
109664
|
+
name: "dGHOV3",
|
|
109665
|
+
symbol: "dGHOV3",
|
|
109666
|
+
type: { AllNetworks: tokenType_1.TokenType.DIESEL_LP_TOKEN },
|
|
109667
|
+
stakedToken: "sdGHOV3"
|
|
109668
|
+
},
|
|
109669
|
+
dDAIV3: {
|
|
109670
|
+
name: "dDAIV3",
|
|
109671
|
+
symbol: "dDAIV3",
|
|
109672
|
+
type: { AllNetworks: tokenType_1.TokenType.DIESEL_LP_TOKEN },
|
|
109673
|
+
stakedToken: "sdDAIV3"
|
|
109621
109674
|
}
|
|
109622
109675
|
};
|
|
109623
109676
|
var dieselTokens = { ...dieselSimpleTokens, ...dieselWithStkTokens };
|
|
@@ -109639,6 +109692,24 @@ var require_gear = __commonJS({
|
|
|
109639
109692
|
symbol: "sdWETHV3",
|
|
109640
109693
|
type: { AllNetworks: tokenType_1.TokenType.DIESEL_LP_TOKEN },
|
|
109641
109694
|
underlying: "dWETHV3"
|
|
109695
|
+
},
|
|
109696
|
+
sdUSDTV3: {
|
|
109697
|
+
name: "sdUSDTV3",
|
|
109698
|
+
symbol: "sdUSDTV3",
|
|
109699
|
+
type: { AllNetworks: tokenType_1.TokenType.DIESEL_LP_TOKEN },
|
|
109700
|
+
underlying: "dUSDTV3"
|
|
109701
|
+
},
|
|
109702
|
+
sdGHOV3: {
|
|
109703
|
+
name: "sdGHOV3",
|
|
109704
|
+
symbol: "sdGHOV3",
|
|
109705
|
+
type: { AllNetworks: tokenType_1.TokenType.DIESEL_LP_TOKEN },
|
|
109706
|
+
underlying: "dGHOV3"
|
|
109707
|
+
},
|
|
109708
|
+
sdDAIV3: {
|
|
109709
|
+
name: "sdDAIV3",
|
|
109710
|
+
symbol: "sdDAIV3",
|
|
109711
|
+
type: { AllNetworks: tokenType_1.TokenType.DIESEL_LP_TOKEN },
|
|
109712
|
+
underlying: "dDAIV3"
|
|
109642
109713
|
}
|
|
109643
109714
|
};
|
|
109644
109715
|
exports2.gearTokens = {
|
|
@@ -110268,6 +110339,12 @@ var require_token = __commonJS({
|
|
|
110268
110339
|
sdUSDCV3: "0x9ef444a6d7F4A5adcd68FD5329aA5240C90E14d2",
|
|
110269
110340
|
sdWBTCV3: "0xA8cE662E45E825DAF178DA2c8d5Fae97696A788A",
|
|
110270
110341
|
sdWETHV3: "0x0418fEB7d0B25C411EB77cD654305d29FcbFf685",
|
|
110342
|
+
dUSDTV3: "0x05A811275fE9b4DE503B3311F51edF6A856D936e",
|
|
110343
|
+
dGHOV3: "0x4d56c9cBa373AD39dF69Eb18F076b7348000AE09",
|
|
110344
|
+
dDAIV3: "0xe7146F53dBcae9D6Fa3555FE502648deb0B2F823",
|
|
110345
|
+
sdUSDTV3: "0x16adAb68bDEcE3089D4f1626Bb5AEDD0d02471aD",
|
|
110346
|
+
sdGHOV3: "0xE2037090f896A858E3168B978668F22026AC52e7",
|
|
110347
|
+
sdDAIV3: "0xC853E4DA38d9Bd1d01675355b8c8f3BBC1451973",
|
|
110271
110348
|
GEAR: "0xBa3335588D9403515223F109EdC4eB7269a9Ab5D",
|
|
110272
110349
|
// ERC4626
|
|
110273
110350
|
sDAI: "0x83F20F44975D03b1b09e64809B757c47f942BEeA",
|
|
@@ -110483,6 +110560,12 @@ var require_token = __commonJS({
|
|
|
110483
110560
|
sdUSDCV3: "0x608F9e2E8933Ce6b39A8CddBc34a1e3E8D21cE75",
|
|
110484
110561
|
sdWBTCV3: constants_1.NOT_DEPLOYED,
|
|
110485
110562
|
sdWETHV3: "0x6773fF780Dd38175247795545Ee37adD6ab6139a",
|
|
110563
|
+
dUSDTV3: constants_1.NOT_DEPLOYED,
|
|
110564
|
+
dGHOV3: constants_1.NOT_DEPLOYED,
|
|
110565
|
+
dDAIV3: constants_1.NOT_DEPLOYED,
|
|
110566
|
+
sdUSDTV3: constants_1.NOT_DEPLOYED,
|
|
110567
|
+
sdGHOV3: constants_1.NOT_DEPLOYED,
|
|
110568
|
+
sdDAIV3: constants_1.NOT_DEPLOYED,
|
|
110486
110569
|
GEAR: "0x2F26337576127efabEEc1f62BE79dB1bcA9148A4",
|
|
110487
110570
|
// AAVE
|
|
110488
110571
|
aUSDC: "0x724dc807b04555b71ed48a6896b6F41593b8C637",
|
|
@@ -110696,6 +110779,12 @@ var require_token = __commonJS({
|
|
|
110696
110779
|
sdUSDCV3: constants_1.NOT_DEPLOYED,
|
|
110697
110780
|
sdWBTCV3: constants_1.NOT_DEPLOYED,
|
|
110698
110781
|
sdWETHV3: constants_1.NOT_DEPLOYED,
|
|
110782
|
+
dUSDTV3: constants_1.NOT_DEPLOYED,
|
|
110783
|
+
dGHOV3: constants_1.NOT_DEPLOYED,
|
|
110784
|
+
dDAIV3: constants_1.NOT_DEPLOYED,
|
|
110785
|
+
sdUSDTV3: constants_1.NOT_DEPLOYED,
|
|
110786
|
+
sdGHOV3: constants_1.NOT_DEPLOYED,
|
|
110787
|
+
sdDAIV3: constants_1.NOT_DEPLOYED,
|
|
110699
110788
|
GEAR: constants_1.NOT_DEPLOYED,
|
|
110700
110789
|
// AAVE
|
|
110701
110790
|
aUSDC: constants_1.NOT_DEPLOYED,
|
|
@@ -110715,6 +110804,230 @@ var require_token = __commonJS({
|
|
|
110715
110804
|
sDAI: constants_1.NOT_DEPLOYED,
|
|
110716
110805
|
YieldETH: constants_1.NOT_DEPLOYED,
|
|
110717
110806
|
sUSDe: constants_1.NOT_DEPLOYED
|
|
110807
|
+
},
|
|
110808
|
+
//
|
|
110809
|
+
//
|
|
110810
|
+
// BASE
|
|
110811
|
+
//
|
|
110812
|
+
//
|
|
110813
|
+
///
|
|
110814
|
+
///
|
|
110815
|
+
/// OPTIMISM
|
|
110816
|
+
///
|
|
110817
|
+
///
|
|
110818
|
+
Base: {
|
|
110819
|
+
"1INCH": constants_1.NOT_DEPLOYED,
|
|
110820
|
+
AAVE: constants_1.NOT_DEPLOYED,
|
|
110821
|
+
COMP: constants_1.NOT_DEPLOYED,
|
|
110822
|
+
CRV: constants_1.NOT_DEPLOYED,
|
|
110823
|
+
DAI: constants_1.NOT_DEPLOYED,
|
|
110824
|
+
DPI: constants_1.NOT_DEPLOYED,
|
|
110825
|
+
FEI: constants_1.NOT_DEPLOYED,
|
|
110826
|
+
LINK: constants_1.NOT_DEPLOYED,
|
|
110827
|
+
SNX: constants_1.NOT_DEPLOYED,
|
|
110828
|
+
UNI: constants_1.NOT_DEPLOYED,
|
|
110829
|
+
USDT: constants_1.NOT_DEPLOYED,
|
|
110830
|
+
USDC: "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
|
|
110831
|
+
USDC_e: constants_1.NOT_DEPLOYED,
|
|
110832
|
+
WBTC: constants_1.NOT_DEPLOYED,
|
|
110833
|
+
WETH: constants_1.NOT_DEPLOYED,
|
|
110834
|
+
YFI: constants_1.NOT_DEPLOYED,
|
|
110835
|
+
OHM: constants_1.NOT_DEPLOYED,
|
|
110836
|
+
MIM: constants_1.NOT_DEPLOYED,
|
|
110837
|
+
SPELL: constants_1.NOT_DEPLOYED,
|
|
110838
|
+
GMX: constants_1.NOT_DEPLOYED,
|
|
110839
|
+
ARB: constants_1.NOT_DEPLOYED,
|
|
110840
|
+
RDNT: constants_1.NOT_DEPLOYED,
|
|
110841
|
+
BAL: constants_1.NOT_DEPLOYED,
|
|
110842
|
+
AURA: constants_1.NOT_DEPLOYED,
|
|
110843
|
+
SWISE: constants_1.NOT_DEPLOYED,
|
|
110844
|
+
WLD: constants_1.NOT_DEPLOYED,
|
|
110845
|
+
OP: constants_1.NOT_DEPLOYED,
|
|
110846
|
+
/// UPDATE
|
|
110847
|
+
STETH: constants_1.NOT_DEPLOYED,
|
|
110848
|
+
wstETH: constants_1.NOT_DEPLOYED,
|
|
110849
|
+
CVX: constants_1.NOT_DEPLOYED,
|
|
110850
|
+
FRAX: constants_1.NOT_DEPLOYED,
|
|
110851
|
+
FXS: constants_1.NOT_DEPLOYED,
|
|
110852
|
+
LDO: constants_1.NOT_DEPLOYED,
|
|
110853
|
+
LUSD: constants_1.NOT_DEPLOYED,
|
|
110854
|
+
sUSD: constants_1.NOT_DEPLOYED,
|
|
110855
|
+
GUSD: constants_1.NOT_DEPLOYED,
|
|
110856
|
+
LQTY: constants_1.NOT_DEPLOYED,
|
|
110857
|
+
MKR: constants_1.NOT_DEPLOYED,
|
|
110858
|
+
RPL: constants_1.NOT_DEPLOYED,
|
|
110859
|
+
APE: constants_1.NOT_DEPLOYED,
|
|
110860
|
+
rETH: constants_1.NOT_DEPLOYED,
|
|
110861
|
+
osETH: constants_1.NOT_DEPLOYED,
|
|
110862
|
+
weETH: constants_1.NOT_DEPLOYED,
|
|
110863
|
+
ezETH: constants_1.NOT_DEPLOYED,
|
|
110864
|
+
rsETH: constants_1.NOT_DEPLOYED,
|
|
110865
|
+
PENDLE: constants_1.NOT_DEPLOYED,
|
|
110866
|
+
frxETH: constants_1.NOT_DEPLOYED,
|
|
110867
|
+
sfrxETH: constants_1.NOT_DEPLOYED,
|
|
110868
|
+
cbETH: constants_1.NOT_DEPLOYED,
|
|
110869
|
+
rswETH: constants_1.NOT_DEPLOYED,
|
|
110870
|
+
USDe: constants_1.NOT_DEPLOYED,
|
|
110871
|
+
// REDSTONE
|
|
110872
|
+
SHIB: constants_1.NOT_DEPLOYED,
|
|
110873
|
+
// YEARN TOKENS
|
|
110874
|
+
yvDAI: constants_1.NOT_DEPLOYED,
|
|
110875
|
+
yvUSDC: constants_1.NOT_DEPLOYED,
|
|
110876
|
+
yvUSDT: constants_1.NOT_DEPLOYED,
|
|
110877
|
+
yvWETH: constants_1.NOT_DEPLOYED,
|
|
110878
|
+
yvWBTC: constants_1.NOT_DEPLOYED,
|
|
110879
|
+
yvOP: constants_1.NOT_DEPLOYED,
|
|
110880
|
+
yvCurve_stETH: constants_1.NOT_DEPLOYED,
|
|
110881
|
+
yvCurve_FRAX: constants_1.NOT_DEPLOYED,
|
|
110882
|
+
// CURVE LP TOKENS
|
|
110883
|
+
"3Crv": constants_1.NOT_DEPLOYED,
|
|
110884
|
+
"3CRV": constants_1.NOT_DEPLOYED,
|
|
110885
|
+
wstETHCRV: constants_1.NOT_DEPLOYED,
|
|
110886
|
+
crvFRAX: constants_1.NOT_DEPLOYED,
|
|
110887
|
+
steCRV: constants_1.NOT_DEPLOYED,
|
|
110888
|
+
FRAX3CRV: constants_1.NOT_DEPLOYED,
|
|
110889
|
+
LUSD3CRV: constants_1.NOT_DEPLOYED,
|
|
110890
|
+
crvPlain3andSUSD: constants_1.NOT_DEPLOYED,
|
|
110891
|
+
gusd3CRV: constants_1.NOT_DEPLOYED,
|
|
110892
|
+
USDeUSDC: constants_1.NOT_DEPLOYED,
|
|
110893
|
+
FRAXUSDe: constants_1.NOT_DEPLOYED,
|
|
110894
|
+
USDecrvUSD: constants_1.NOT_DEPLOYED,
|
|
110895
|
+
OHMFRAXBP: constants_1.NOT_DEPLOYED,
|
|
110896
|
+
MIM_3LP3CRV: constants_1.NOT_DEPLOYED,
|
|
110897
|
+
crvCRVETH: constants_1.NOT_DEPLOYED,
|
|
110898
|
+
crvCVXETH: constants_1.NOT_DEPLOYED,
|
|
110899
|
+
crvUSDTWBTCWETH: constants_1.NOT_DEPLOYED,
|
|
110900
|
+
LDOETH: constants_1.NOT_DEPLOYED,
|
|
110901
|
+
USDeDAI: constants_1.NOT_DEPLOYED,
|
|
110902
|
+
MtEthena: constants_1.NOT_DEPLOYED,
|
|
110903
|
+
crvUSDUSDC: constants_1.NOT_DEPLOYED,
|
|
110904
|
+
crvUSDUSDT: constants_1.NOT_DEPLOYED,
|
|
110905
|
+
crvUSDFRAX: constants_1.NOT_DEPLOYED,
|
|
110906
|
+
crvUSDETHCRV: constants_1.NOT_DEPLOYED,
|
|
110907
|
+
"2CRV": constants_1.NOT_DEPLOYED,
|
|
110908
|
+
"3c-crvUSD": constants_1.NOT_DEPLOYED,
|
|
110909
|
+
crvUSDC: constants_1.NOT_DEPLOYED,
|
|
110910
|
+
crvUSDC_e: constants_1.NOT_DEPLOYED,
|
|
110911
|
+
crvUSDT: constants_1.NOT_DEPLOYED,
|
|
110912
|
+
rETH_f: constants_1.NOT_DEPLOYED,
|
|
110913
|
+
// CONVEX LP TOKENS
|
|
110914
|
+
cvx3Crv: constants_1.NOT_DEPLOYED,
|
|
110915
|
+
cvxcrvFRAX: constants_1.NOT_DEPLOYED,
|
|
110916
|
+
cvxsteCRV: constants_1.NOT_DEPLOYED,
|
|
110917
|
+
cvxcrvPlain3andSUSD: constants_1.NOT_DEPLOYED,
|
|
110918
|
+
cvxFRAX3CRV: constants_1.NOT_DEPLOYED,
|
|
110919
|
+
cvxLUSD3CRV: constants_1.NOT_DEPLOYED,
|
|
110920
|
+
cvxgusd3CRV: constants_1.NOT_DEPLOYED,
|
|
110921
|
+
cvxOHMFRAXBP: constants_1.NOT_DEPLOYED,
|
|
110922
|
+
cvxMIM_3LP3CRV: constants_1.NOT_DEPLOYED,
|
|
110923
|
+
cvxcrvCRVETH: constants_1.NOT_DEPLOYED,
|
|
110924
|
+
cvxcrvCVXETH: constants_1.NOT_DEPLOYED,
|
|
110925
|
+
cvxcrvUSDTWBTCWETH: constants_1.NOT_DEPLOYED,
|
|
110926
|
+
cvxLDOETH: constants_1.NOT_DEPLOYED,
|
|
110927
|
+
cvxcrvUSDUSDC: constants_1.NOT_DEPLOYED,
|
|
110928
|
+
cvxcrvUSDUSDT: constants_1.NOT_DEPLOYED,
|
|
110929
|
+
cvxcrvUSDFRAX: constants_1.NOT_DEPLOYED,
|
|
110930
|
+
cvxcrvUSDETHCRV: constants_1.NOT_DEPLOYED,
|
|
110931
|
+
crvUSD: constants_1.NOT_DEPLOYED,
|
|
110932
|
+
// CONVEX PHANTOM TOKEN ADDRESSES
|
|
110933
|
+
stkcvx3Crv: constants_1.NOT_DEPLOYED,
|
|
110934
|
+
stkcvxcrvFRAX: constants_1.NOT_DEPLOYED,
|
|
110935
|
+
stkcvxFRAX3CRV: constants_1.NOT_DEPLOYED,
|
|
110936
|
+
stkcvxgusd3CRV: constants_1.NOT_DEPLOYED,
|
|
110937
|
+
stkcvxsteCRV: constants_1.NOT_DEPLOYED,
|
|
110938
|
+
stkcvxcrvPlain3andSUSD: constants_1.NOT_DEPLOYED,
|
|
110939
|
+
stkcvxLUSD3CRV: constants_1.NOT_DEPLOYED,
|
|
110940
|
+
stkcvxOHMFRAXBP: constants_1.NOT_DEPLOYED,
|
|
110941
|
+
stkcvxMIM_3LP3CRV: constants_1.NOT_DEPLOYED,
|
|
110942
|
+
stkcvxcrvCRVETH: constants_1.NOT_DEPLOYED,
|
|
110943
|
+
stkcvxcrvCVXETH: constants_1.NOT_DEPLOYED,
|
|
110944
|
+
stkcvxcrvUSDTWBTCWETH: constants_1.NOT_DEPLOYED,
|
|
110945
|
+
stkcvxLDOETH: constants_1.NOT_DEPLOYED,
|
|
110946
|
+
stkcvxcrvUSDUSDC: constants_1.NOT_DEPLOYED,
|
|
110947
|
+
stkcvxcrvUSDUSDT: constants_1.NOT_DEPLOYED,
|
|
110948
|
+
stkcvxcrvUSDFRAX: constants_1.NOT_DEPLOYED,
|
|
110949
|
+
stkcvxcrvUSDETHCRV: constants_1.NOT_DEPLOYED,
|
|
110950
|
+
// BALANCER TOKENS
|
|
110951
|
+
"50OHM_50DAI": constants_1.NOT_DEPLOYED,
|
|
110952
|
+
"50OHM_50WETH": constants_1.NOT_DEPLOYED,
|
|
110953
|
+
OHM_wstETH: constants_1.NOT_DEPLOYED,
|
|
110954
|
+
USDC_DAI_USDT: constants_1.NOT_DEPLOYED,
|
|
110955
|
+
B_rETH_STABLE: constants_1.NOT_DEPLOYED,
|
|
110956
|
+
weETH_rETH: constants_1.NOT_DEPLOYED,
|
|
110957
|
+
osETH_wETH_BPT: constants_1.NOT_DEPLOYED,
|
|
110958
|
+
B_80BAL_20WETH: constants_1.NOT_DEPLOYED,
|
|
110959
|
+
"50WETH_50AURA": constants_1.NOT_DEPLOYED,
|
|
110960
|
+
wstETH_WETH_BPT: constants_1.NOT_DEPLOYED,
|
|
110961
|
+
wstETH_rETH_cbETH: constants_1.NOT_DEPLOYED,
|
|
110962
|
+
wstETH_rETH_sfrxETH: constants_1.NOT_DEPLOYED,
|
|
110963
|
+
rETH_WETH_BPT: constants_1.NOT_DEPLOYED,
|
|
110964
|
+
ezETH_WETH_BPT: constants_1.NOT_DEPLOYED,
|
|
110965
|
+
weETH_ezETH_rswETH: constants_1.NOT_DEPLOYED,
|
|
110966
|
+
"33AURA_33ARB_33BAL": constants_1.NOT_DEPLOYED,
|
|
110967
|
+
BPT_rETH_ETH: constants_1.NOT_DEPLOYED,
|
|
110968
|
+
BPT_WSTETH_ETH: constants_1.NOT_DEPLOYED,
|
|
110969
|
+
BPT_ROAD: constants_1.NOT_DEPLOYED,
|
|
110970
|
+
ECLP_wstETH_WETH: constants_1.NOT_DEPLOYED,
|
|
110971
|
+
// AURA
|
|
110972
|
+
auraB_rETH_STABLE: constants_1.NOT_DEPLOYED,
|
|
110973
|
+
auraweETH_rETH: constants_1.NOT_DEPLOYED,
|
|
110974
|
+
auraosETH_wETH_BPT: constants_1.NOT_DEPLOYED,
|
|
110975
|
+
auraBPT_rETH_ETH: constants_1.NOT_DEPLOYED,
|
|
110976
|
+
auraBPT_WSTETH_ETH: constants_1.NOT_DEPLOYED,
|
|
110977
|
+
aurarETH_WETH_BPT: constants_1.NOT_DEPLOYED,
|
|
110978
|
+
aurawstETH_rETH_cbETH: constants_1.NOT_DEPLOYED,
|
|
110979
|
+
aurawstETH_rETH_sfrxETH: constants_1.NOT_DEPLOYED,
|
|
110980
|
+
aurawstETH_WETH_BPT: constants_1.NOT_DEPLOYED,
|
|
110981
|
+
auraB_rETH_STABLE_vault: constants_1.NOT_DEPLOYED,
|
|
110982
|
+
auraweETH_rETH_vault: constants_1.NOT_DEPLOYED,
|
|
110983
|
+
auraosETH_wETH_BPT_vault: constants_1.NOT_DEPLOYED,
|
|
110984
|
+
auraBPT_rETH_ETH_vault: constants_1.NOT_DEPLOYED,
|
|
110985
|
+
auraBPT_WSTETH_ETH_vault: constants_1.NOT_DEPLOYED,
|
|
110986
|
+
aurarETH_WETH_BPT_vault: constants_1.NOT_DEPLOYED,
|
|
110987
|
+
aurawstETH_rETH_cbETH_vault: constants_1.NOT_DEPLOYED,
|
|
110988
|
+
aurawstETH_rETH_sfrxETH_vault: constants_1.NOT_DEPLOYED,
|
|
110989
|
+
aurawstETH_WETH_BPT_vault: constants_1.NOT_DEPLOYED,
|
|
110990
|
+
// GEARBOX
|
|
110991
|
+
dDAI: constants_1.NOT_DEPLOYED,
|
|
110992
|
+
dUSDC: constants_1.NOT_DEPLOYED,
|
|
110993
|
+
dWBTC: constants_1.NOT_DEPLOYED,
|
|
110994
|
+
dWETH: constants_1.NOT_DEPLOYED,
|
|
110995
|
+
dwstETH: constants_1.NOT_DEPLOYED,
|
|
110996
|
+
dFRAX: constants_1.NOT_DEPLOYED,
|
|
110997
|
+
dUSDCV3: constants_1.NOT_DEPLOYED,
|
|
110998
|
+
dWBTCV3: constants_1.NOT_DEPLOYED,
|
|
110999
|
+
dWETHV3: constants_1.NOT_DEPLOYED,
|
|
111000
|
+
sdUSDCV3: constants_1.NOT_DEPLOYED,
|
|
111001
|
+
sdWBTCV3: constants_1.NOT_DEPLOYED,
|
|
111002
|
+
sdWETHV3: constants_1.NOT_DEPLOYED,
|
|
111003
|
+
dUSDTV3: constants_1.NOT_DEPLOYED,
|
|
111004
|
+
dGHOV3: constants_1.NOT_DEPLOYED,
|
|
111005
|
+
dDAIV3: constants_1.NOT_DEPLOYED,
|
|
111006
|
+
sdUSDTV3: constants_1.NOT_DEPLOYED,
|
|
111007
|
+
sdGHOV3: constants_1.NOT_DEPLOYED,
|
|
111008
|
+
sdDAIV3: constants_1.NOT_DEPLOYED,
|
|
111009
|
+
GEAR: constants_1.NOT_DEPLOYED,
|
|
111010
|
+
// AAVE
|
|
111011
|
+
aUSDC: constants_1.NOT_DEPLOYED,
|
|
111012
|
+
aDAI: constants_1.NOT_DEPLOYED,
|
|
111013
|
+
aUSDT: constants_1.NOT_DEPLOYED,
|
|
111014
|
+
aWETH: constants_1.NOT_DEPLOYED,
|
|
111015
|
+
waDAI: constants_1.NOT_DEPLOYED,
|
|
111016
|
+
waUSDC: constants_1.NOT_DEPLOYED,
|
|
111017
|
+
waUSDT: constants_1.NOT_DEPLOYED,
|
|
111018
|
+
waWETH: constants_1.NOT_DEPLOYED,
|
|
111019
|
+
cDAI: constants_1.NOT_DEPLOYED,
|
|
111020
|
+
cUSDC: constants_1.NOT_DEPLOYED,
|
|
111021
|
+
cUSDT: constants_1.NOT_DEPLOYED,
|
|
111022
|
+
cETH: constants_1.NOT_DEPLOYED,
|
|
111023
|
+
cLINK: constants_1.NOT_DEPLOYED,
|
|
111024
|
+
fUSDC: constants_1.NOT_DEPLOYED,
|
|
111025
|
+
sDAI: constants_1.NOT_DEPLOYED,
|
|
111026
|
+
YieldETH: constants_1.NOT_DEPLOYED,
|
|
111027
|
+
sUSDe: constants_1.NOT_DEPLOYED,
|
|
111028
|
+
GHO: constants_1.NOT_DEPLOYED,
|
|
111029
|
+
GHOUSDe: constants_1.NOT_DEPLOYED,
|
|
111030
|
+
GHO_USDT_USDC: constants_1.NOT_DEPLOYED
|
|
110718
111031
|
}
|
|
110719
111032
|
};
|
|
110720
111033
|
exports2.tokenSymbolByAddress = mappers_1.TypedObjectUtils.entries(exports2.tokenDataByNetwork).reduce((acc, [, tokens]) => ({
|
|
@@ -110778,6 +111091,9 @@ var require_adapters2 = __commonJS({
|
|
|
110778
111091
|
AdapterInterface3[AdapterInterface3["VELODROME_V2_ROUTER"] = 22] = "VELODROME_V2_ROUTER";
|
|
110779
111092
|
AdapterInterface3[AdapterInterface3["CURVE_STABLE_NG"] = 23] = "CURVE_STABLE_NG";
|
|
110780
111093
|
AdapterInterface3[AdapterInterface3["CAMELOT_V3_ROUTER"] = 24] = "CAMELOT_V3_ROUTER";
|
|
111094
|
+
AdapterInterface3[AdapterInterface3["CONVEX_L2_BOOSTER"] = 25] = "CONVEX_L2_BOOSTER";
|
|
111095
|
+
AdapterInterface3[AdapterInterface3["CONVEX_L2_REWARD_POOL"] = 26] = "CONVEX_L2_REWARD_POOL";
|
|
111096
|
+
AdapterInterface3[AdapterInterface3["AAVE_V3_LENDING_POOL"] = 27] = "AAVE_V3_LENDING_POOL";
|
|
110781
111097
|
})(AdapterInterface2 || (exports2.AdapterInterface = AdapterInterface2 = {}));
|
|
110782
111098
|
}
|
|
110783
111099
|
});
|
|
@@ -110808,6 +111124,7 @@ var require_protocols = __commonJS({
|
|
|
110808
111124
|
Protocols2[Protocols2["Velodrome"] = 15] = "Velodrome";
|
|
110809
111125
|
Protocols2[Protocols2["Camelot"] = 16] = "Camelot";
|
|
110810
111126
|
Protocols2[Protocols2["Ethena"] = 17] = "Ethena";
|
|
111127
|
+
Protocols2[Protocols2["AaveV3"] = 18] = "AaveV3";
|
|
110811
111128
|
})(Protocols || (exports2.Protocols = Protocols = {}));
|
|
110812
111129
|
}
|
|
110813
111130
|
});
|
|
@@ -110917,6 +111234,7 @@ var require_contracts = __commonJS({
|
|
|
110917
111234
|
UNIVERSAL_ADAPTER: "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
|
|
110918
111235
|
// AAVE
|
|
110919
111236
|
AAVE_V2_LENDING_POOL: "0x7d2768dE32b0b80b7a3454c06BdAc94A69DDc7A9",
|
|
111237
|
+
AAVE_V3_LENDING_POOL: "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2",
|
|
110920
111238
|
AAVE_V2_DAI_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Mainnet.waDAI,
|
|
110921
111239
|
AAVE_V2_USDC_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Mainnet.waUSDC,
|
|
110922
111240
|
AAVE_V2_USDT_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Mainnet.waUSDT,
|
|
@@ -111029,6 +111347,7 @@ var require_contracts = __commonJS({
|
|
|
111029
111347
|
UNIVERSAL_ADAPTER: "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
|
|
111030
111348
|
// AAVE
|
|
111031
111349
|
AAVE_V2_LENDING_POOL: constants_1.NOT_DEPLOYED,
|
|
111350
|
+
AAVE_V3_LENDING_POOL: "0x794a61358D6845594F94dc1DB02A252b5b4814aD",
|
|
111032
111351
|
AAVE_V2_DAI_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Arbitrum.waDAI,
|
|
111033
111352
|
AAVE_V2_USDC_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Arbitrum.waUSDC,
|
|
111034
111353
|
AAVE_V2_USDT_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Arbitrum.waUSDT,
|
|
@@ -111142,6 +111461,7 @@ var require_contracts = __commonJS({
|
|
|
111142
111461
|
UNIVERSAL_ADAPTER: "0xCcCCccccCCCCcCCCCCCcCcCccCcCCCcCcccccccC",
|
|
111143
111462
|
// AAVE
|
|
111144
111463
|
AAVE_V2_LENDING_POOL: constants_1.NOT_DEPLOYED,
|
|
111464
|
+
AAVE_V3_LENDING_POOL: "0x794a61358D6845594F94dc1DB02A252b5b4814aD",
|
|
111145
111465
|
AAVE_V2_DAI_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Optimism.waDAI,
|
|
111146
111466
|
AAVE_V2_USDC_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Optimism.waUSDC,
|
|
111147
111467
|
AAVE_V2_USDT_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Optimism.waUSDT,
|
|
@@ -111152,6 +111472,120 @@ var require_contracts = __commonJS({
|
|
|
111152
111472
|
COMPOUND_V2_LINK_POOL: token_1.tokenDataByNetwork.Optimism.cLINK,
|
|
111153
111473
|
COMPOUND_V2_ETH_GATEWAY: constants_1.NOT_DEPLOYED,
|
|
111154
111474
|
FLUX_USDC_POOL: token_1.tokenDataByNetwork.Optimism.fUSDC
|
|
111475
|
+
},
|
|
111476
|
+
//
|
|
111477
|
+
//
|
|
111478
|
+
//
|
|
111479
|
+
//
|
|
111480
|
+
// BASE
|
|
111481
|
+
//
|
|
111482
|
+
//
|
|
111483
|
+
//
|
|
111484
|
+
//
|
|
111485
|
+
Base: {
|
|
111486
|
+
UNISWAP_V2_ROUTER: constants_1.NOT_DEPLOYED,
|
|
111487
|
+
UNISWAP_V3_ROUTER: constants_1.NOT_DEPLOYED,
|
|
111488
|
+
SUSHISWAP_ROUTER: constants_1.NOT_DEPLOYED,
|
|
111489
|
+
FRAXSWAP_ROUTER: constants_1.NOT_DEPLOYED,
|
|
111490
|
+
VELODROME_V2_ROUTER: constants_1.NOT_DEPLOYED,
|
|
111491
|
+
CAMELOT_V3_ROUTER: constants_1.NOT_DEPLOYED,
|
|
111492
|
+
// CURVE
|
|
111493
|
+
CURVE_3CRV_POOL_OP: constants_1.NOT_DEPLOYED,
|
|
111494
|
+
CURVE_3CRV_POOL: constants_1.NOT_DEPLOYED,
|
|
111495
|
+
CURVE_FRAX_USDC_POOL: constants_1.NOT_DEPLOYED,
|
|
111496
|
+
CURVE_STETH_GATEWAY: constants_1.NOT_DEPLOYED,
|
|
111497
|
+
CURVE_FRAX_POOL: token_1.tokenDataByNetwork.Optimism.FRAX3CRV,
|
|
111498
|
+
CURVE_LUSD_POOL: token_1.tokenDataByNetwork.Optimism.LUSD3CRV,
|
|
111499
|
+
CURVE_SUSD_POOL: constants_1.NOT_DEPLOYED,
|
|
111500
|
+
CURVE_SUSD_DEPOSIT: constants_1.NOT_DEPLOYED,
|
|
111501
|
+
CURVE_GUSD_POOL: constants_1.NOT_DEPLOYED,
|
|
111502
|
+
CURVE_MIM_POOL: token_1.tokenDataByNetwork.Optimism.MIM_3LP3CRV,
|
|
111503
|
+
CURVE_OHMFRAXBP_POOL: constants_1.NOT_DEPLOYED,
|
|
111504
|
+
CURVE_CRVETH_POOL: constants_1.NOT_DEPLOYED,
|
|
111505
|
+
CURVE_CVXETH_POOL: constants_1.NOT_DEPLOYED,
|
|
111506
|
+
CURVE_3CRYPTO_POOL: constants_1.NOT_DEPLOYED,
|
|
111507
|
+
CURVE_LDOETH_POOL: constants_1.NOT_DEPLOYED,
|
|
111508
|
+
CURVE_USDE_USDC_POOL: token_1.tokenDataByNetwork.Optimism.USDeUSDC,
|
|
111509
|
+
CURVE_FRAX_USDE_POOL: token_1.tokenDataByNetwork.Optimism.FRAXUSDe,
|
|
111510
|
+
CURVE_USDE_CRVUSD_POOL: token_1.tokenDataByNetwork.Optimism.USDecrvUSD,
|
|
111511
|
+
CURVE_USDE_DAI_POOL: token_1.tokenDataByNetwork.Optimism.USDeDAI,
|
|
111512
|
+
CURVE_SDAI_SUSDE_POOL: token_1.tokenDataByNetwork.Optimism.MtEthena,
|
|
111513
|
+
CURVE_ETH_WSTETH_GATEWAY_OP: constants_1.NOT_DEPLOYED,
|
|
111514
|
+
CURVE_GEAR_POOL: constants_1.NOT_DEPLOYED,
|
|
111515
|
+
CURVE_CRVUSD_USDC_POOL: token_1.tokenDataByNetwork.Optimism.crvUSDUSDC,
|
|
111516
|
+
CURVE_CRVUSD_USDT_POOL: token_1.tokenDataByNetwork.Optimism.crvUSDUSDT,
|
|
111517
|
+
CURVE_CRVUSD_FRAX_POOL: token_1.tokenDataByNetwork.Optimism.crvUSDFRAX,
|
|
111518
|
+
CURVE_TRI_CRV_POOL: token_1.tokenDataByNetwork.Optimism.crvUSDETHCRV,
|
|
111519
|
+
CURVE_RETH_ETH_POOL: constants_1.NOT_DEPLOYED,
|
|
111520
|
+
CURVE_2CRV_POOL_ARB: token_1.tokenDataByNetwork.Optimism["2CRV"],
|
|
111521
|
+
CURVE_TRICRYPTO_CRVUSD_POOL_ARB: token_1.tokenDataByNetwork.Optimism["3c-crvUSD"],
|
|
111522
|
+
CURVE_CRVUSD_USDC_POOL_ARB: token_1.tokenDataByNetwork.Optimism.crvUSDC,
|
|
111523
|
+
CURVE_CRVUSD_USDT_POOL_ARB: token_1.tokenDataByNetwork.Optimism.crvUSDT,
|
|
111524
|
+
CURVE_CRVUSD_USDC_E_POOL_ARB: token_1.tokenDataByNetwork.Optimism.crvUSDC_e,
|
|
111525
|
+
// YEARN
|
|
111526
|
+
YEARN_DAI_VAULT: token_1.tokenDataByNetwork.Optimism.yvDAI,
|
|
111527
|
+
YEARN_USDC_VAULT: token_1.tokenDataByNetwork.Optimism.yvUSDC,
|
|
111528
|
+
YEARN_WETH_VAULT: token_1.tokenDataByNetwork.Optimism.yvWETH,
|
|
111529
|
+
YEARN_WBTC_VAULT: token_1.tokenDataByNetwork.Optimism.yvWBTC,
|
|
111530
|
+
YEARN_USDT_VAULT: token_1.tokenDataByNetwork.Optimism.yvUSDT,
|
|
111531
|
+
YEARN_OP_VAULT: token_1.tokenDataByNetwork.Optimism.yvOP,
|
|
111532
|
+
YEARN_CURVE_FRAX_VAULT: token_1.tokenDataByNetwork.Optimism.yvCurve_FRAX,
|
|
111533
|
+
YEARN_CURVE_STETH_VAULT: token_1.tokenDataByNetwork.Optimism.yvCurve_stETH,
|
|
111534
|
+
/// ERC4626
|
|
111535
|
+
MAKER_DSR_VAULT: token_1.tokenDataByNetwork.Optimism.sDAI,
|
|
111536
|
+
YIELD_ETH_VAULT: token_1.tokenDataByNetwork.Optimism.YieldETH,
|
|
111537
|
+
STAKED_USDE_VAULT: token_1.tokenDataByNetwork.Optimism.sUSDe,
|
|
111538
|
+
// CONVEX
|
|
111539
|
+
CONVEX_BOOSTER: constants_1.NOT_DEPLOYED,
|
|
111540
|
+
CONVEX_3CRV_POOL: constants_1.NOT_DEPLOYED,
|
|
111541
|
+
CONVEX_FRAX_USDC_POOL: constants_1.NOT_DEPLOYED,
|
|
111542
|
+
CONVEX_STECRV_POOL: constants_1.NOT_DEPLOYED,
|
|
111543
|
+
CONVEX_SUSD_POOL: constants_1.NOT_DEPLOYED,
|
|
111544
|
+
CONVEX_FRAX3CRV_POOL: constants_1.NOT_DEPLOYED,
|
|
111545
|
+
CONVEX_LUSD3CRV_POOL: constants_1.NOT_DEPLOYED,
|
|
111546
|
+
CONVEX_GUSD_POOL: constants_1.NOT_DEPLOYED,
|
|
111547
|
+
CONVEX_OHMFRAXBP_POOL: constants_1.NOT_DEPLOYED,
|
|
111548
|
+
CONVEX_MIM3CRV_POOL: constants_1.NOT_DEPLOYED,
|
|
111549
|
+
CONVEX_CRVETH_POOL: constants_1.NOT_DEPLOYED,
|
|
111550
|
+
CONVEX_CVXETH_POOL: constants_1.NOT_DEPLOYED,
|
|
111551
|
+
CONVEX_3CRYPTO_POOL: constants_1.NOT_DEPLOYED,
|
|
111552
|
+
CONVEX_LDOETH_POOL: constants_1.NOT_DEPLOYED,
|
|
111553
|
+
CONVEX_CRVUSD_USDC_POOL: constants_1.NOT_DEPLOYED,
|
|
111554
|
+
CONVEX_CRVUSD_USDT_POOL: constants_1.NOT_DEPLOYED,
|
|
111555
|
+
CONVEX_CRVUSD_FRAX_POOL: constants_1.NOT_DEPLOYED,
|
|
111556
|
+
CONVEX_TRI_CRV_POOL: constants_1.NOT_DEPLOYED,
|
|
111557
|
+
// AURA
|
|
111558
|
+
AURA_BOOSTER: constants_1.NOT_DEPLOYED,
|
|
111559
|
+
AURA_WEETH_RETH_POOL: token_1.tokenDataByNetwork.Optimism.auraweETH_rETH_vault,
|
|
111560
|
+
AURA_OSETH_WETH_POOL: token_1.tokenDataByNetwork.Optimism.auraosETH_wETH_BPT_vault,
|
|
111561
|
+
AURA_B_RETH_STABLE_POOL: token_1.tokenDataByNetwork.Optimism.auraB_rETH_STABLE_vault,
|
|
111562
|
+
AURA_BPT_RETH_ETH_POOL: token_1.tokenDataByNetwork.Optimism.auraBPT_rETH_ETH_vault,
|
|
111563
|
+
AURA_BPT_WSTETH_ETH_POOL: token_1.tokenDataByNetwork.Optimism.auraBPT_WSTETH_ETH_vault,
|
|
111564
|
+
AURA_RETH_WETH_POOL_ARB: token_1.tokenDataByNetwork.Optimism.aurarETH_WETH_BPT_vault,
|
|
111565
|
+
AURA_WSTETH_WETH_POOL_ARB: token_1.tokenDataByNetwork.Optimism.aurawstETH_WETH_BPT_vault,
|
|
111566
|
+
AURA_WSTETH_RETH_CBETH_POOL_ARB: token_1.tokenDataByNetwork.Optimism.aurawstETH_rETH_cbETH_vault,
|
|
111567
|
+
AURA_WSTETH_RETH_SFRXETH_POOL_ARB: token_1.tokenDataByNetwork.Optimism.aurawstETH_rETH_sfrxETH_vault,
|
|
111568
|
+
// LIDO
|
|
111569
|
+
LIDO_STETH_GATEWAY: constants_1.NOT_DEPLOYED,
|
|
111570
|
+
LIDO_WSTETH: constants_1.NOT_DEPLOYED,
|
|
111571
|
+
// BALANCER
|
|
111572
|
+
BALANCER_VAULT: constants_1.NOT_DEPLOYED,
|
|
111573
|
+
// GEARBOX
|
|
111574
|
+
UNIVERSAL_ADAPTER: constants_1.NOT_DEPLOYED,
|
|
111575
|
+
// AAVE
|
|
111576
|
+
AAVE_V2_LENDING_POOL: constants_1.NOT_DEPLOYED,
|
|
111577
|
+
AAVE_V3_LENDING_POOL: "0xA238Dd80C259a72e81d7e4664a9801593F98d1c5",
|
|
111578
|
+
AAVE_V2_DAI_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Optimism.waDAI,
|
|
111579
|
+
AAVE_V2_USDC_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Optimism.waUSDC,
|
|
111580
|
+
AAVE_V2_USDT_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Optimism.waUSDT,
|
|
111581
|
+
AAVE_V2_WETH_TOKEN_WRAPPER: token_1.tokenDataByNetwork.Optimism.waWETH,
|
|
111582
|
+
COMPOUND_V2_DAI_POOL: token_1.tokenDataByNetwork.Optimism.cDAI,
|
|
111583
|
+
COMPOUND_V2_USDC_POOL: token_1.tokenDataByNetwork.Optimism.cUSDC,
|
|
111584
|
+
COMPOUND_V2_USDT_POOL: token_1.tokenDataByNetwork.Optimism.cUSDT,
|
|
111585
|
+
COMPOUND_V2_LINK_POOL: token_1.tokenDataByNetwork.Optimism.cLINK,
|
|
111586
|
+
COMPOUND_V2_ETH_GATEWAY: constants_1.NOT_DEPLOYED,
|
|
111587
|
+
FLUX_USDC_POOL: token_1.tokenDataByNetwork.Optimism.fUSDC,
|
|
111588
|
+
CURVE_GHO_USDE_POOL: constants_1.NOT_DEPLOYED
|
|
111155
111589
|
}
|
|
111156
111590
|
};
|
|
111157
111591
|
exports2.UNISWAP_V3_QUOTER = "0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6";
|
|
@@ -111213,7 +111647,8 @@ var require_contracts = __commonJS({
|
|
|
111213
111647
|
pool: {
|
|
111214
111648
|
Mainnet: "0xDC24316b9AE028F1497c275EB9192a3Ea0f67022",
|
|
111215
111649
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111216
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
111650
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
111651
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111217
111652
|
},
|
|
111218
111653
|
tokens: ["WETH", "STETH"],
|
|
111219
111654
|
lpToken: "steCRV"
|
|
@@ -111226,7 +111661,8 @@ var require_contracts = __commonJS({
|
|
|
111226
111661
|
pool: {
|
|
111227
111662
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111228
111663
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111229
|
-
Optimism: "0xb90b9b1f91a01ea22a182cd84c1e22222e39b415"
|
|
111664
|
+
Optimism: "0xb90b9b1f91a01ea22a182cd84c1e22222e39b415",
|
|
111665
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111230
111666
|
},
|
|
111231
111667
|
tokens: ["WETH", "STETH"],
|
|
111232
111668
|
lpToken: "wstETHCRV"
|
|
@@ -111239,7 +111675,8 @@ var require_contracts = __commonJS({
|
|
|
111239
111675
|
pool: {
|
|
111240
111676
|
Mainnet: "0x0E9B5B092caD6F1c5E6bc7f89Ffe1abb5c95F1C2",
|
|
111241
111677
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111242
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
111678
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
111679
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111243
111680
|
},
|
|
111244
111681
|
tokens: ["GEAR", "WETH"],
|
|
111245
111682
|
lpToken: "GEAR"
|
|
@@ -111577,7 +112014,8 @@ var require_contracts = __commonJS({
|
|
|
111577
112014
|
poolAddress: {
|
|
111578
112015
|
Mainnet: "0x81fCe3E10D12Da6c7266a1A169c4C96813435263",
|
|
111579
112016
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111580
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112017
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112018
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111581
112019
|
}
|
|
111582
112020
|
}
|
|
111583
112021
|
]
|
|
@@ -111593,7 +112031,8 @@ var require_contracts = __commonJS({
|
|
|
111593
112031
|
poolAddress: {
|
|
111594
112032
|
Mainnet: "0x008aEa5036b819B4FEAEd10b2190FBb3954981E8",
|
|
111595
112033
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111596
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112034
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112035
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111597
112036
|
}
|
|
111598
112037
|
}
|
|
111599
112038
|
]
|
|
@@ -111609,7 +112048,8 @@ var require_contracts = __commonJS({
|
|
|
111609
112048
|
poolAddress: {
|
|
111610
112049
|
Mainnet: "0xcDEC6714eB482f28f4889A0c122868450CDBF0b0",
|
|
111611
112050
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111612
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112051
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112052
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111613
112053
|
}
|
|
111614
112054
|
}
|
|
111615
112055
|
]
|
|
@@ -111625,7 +112065,8 @@ var require_contracts = __commonJS({
|
|
|
111625
112065
|
poolAddress: {
|
|
111626
112066
|
Mainnet: "0x55d59b791f06dc519B176791c4E037E8Cf2f6361",
|
|
111627
112067
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111628
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112068
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112069
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111629
112070
|
}
|
|
111630
112071
|
}
|
|
111631
112072
|
]
|
|
@@ -111641,7 +112082,8 @@ var require_contracts = __commonJS({
|
|
|
111641
112082
|
poolAddress: {
|
|
111642
112083
|
Mainnet: "0x69a92f1656cd2e193797546cFe2EaF32EACcf6f7",
|
|
111643
112084
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111644
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112085
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112086
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111645
112087
|
}
|
|
111646
112088
|
}
|
|
111647
112089
|
]
|
|
@@ -111664,7 +112106,8 @@ var require_contracts = __commonJS({
|
|
|
111664
112106
|
poolAddress: {
|
|
111665
112107
|
Mainnet: "0xE1eCBB4181378E2346EAC90Eb5606c01Aa08f052",
|
|
111666
112108
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111667
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112109
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112110
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111668
112111
|
}
|
|
111669
112112
|
}
|
|
111670
112113
|
]
|
|
@@ -111680,7 +112123,8 @@ var require_contracts = __commonJS({
|
|
|
111680
112123
|
poolAddress: {
|
|
111681
112124
|
Mainnet: "0x834B9147Fd23bF131644aBC6e557Daf99C5cDa15",
|
|
111682
112125
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111683
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112126
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112127
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111684
112128
|
}
|
|
111685
112129
|
}
|
|
111686
112130
|
]
|
|
@@ -111703,7 +112147,8 @@ var require_contracts = __commonJS({
|
|
|
111703
112147
|
poolAddress: {
|
|
111704
112148
|
Mainnet: "0x95e6092449a0f3946A5a0f308Ead4adcff244E2B",
|
|
111705
112149
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111706
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112150
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112151
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111707
112152
|
}
|
|
111708
112153
|
}
|
|
111709
112154
|
]
|
|
@@ -111719,7 +112164,8 @@ var require_contracts = __commonJS({
|
|
|
111719
112164
|
poolAddress: {
|
|
111720
112165
|
Mainnet: "0xac183F7cd62d5b04Fa40362EB67249A80339541A",
|
|
111721
112166
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111722
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112167
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112168
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111723
112169
|
}
|
|
111724
112170
|
}
|
|
111725
112171
|
]
|
|
@@ -111735,7 +112181,8 @@ var require_contracts = __commonJS({
|
|
|
111735
112181
|
poolAddress: {
|
|
111736
112182
|
Mainnet: "0xD490178B568b07c6DDbDfBBfaF9043772209Ec01",
|
|
111737
112183
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111738
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112184
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112185
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111739
112186
|
}
|
|
111740
112187
|
}
|
|
111741
112188
|
]
|
|
@@ -111751,7 +112198,8 @@ var require_contracts = __commonJS({
|
|
|
111751
112198
|
poolAddress: {
|
|
111752
112199
|
Mainnet: "0x749cFfCb53e008841d7387ba37f9284BDeCEe0A9",
|
|
111753
112200
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111754
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112201
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112202
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111755
112203
|
}
|
|
111756
112204
|
}
|
|
111757
112205
|
]
|
|
@@ -111767,7 +112215,8 @@ var require_contracts = __commonJS({
|
|
|
111767
112215
|
poolAddress: {
|
|
111768
112216
|
Mainnet: "0x01eC96F1eEBF470E3fEAEEfB843fbC63424e668d",
|
|
111769
112217
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111770
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112218
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112219
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111771
112220
|
}
|
|
111772
112221
|
}
|
|
111773
112222
|
]
|
|
@@ -111788,7 +112237,8 @@ var require_contracts = __commonJS({
|
|
|
111788
112237
|
poolAddress: {
|
|
111789
112238
|
Mainnet: "0xf66a72886749c96b18526E8E124cC2e18b7c72D2",
|
|
111790
112239
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111791
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112240
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112241
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111792
112242
|
}
|
|
111793
112243
|
}
|
|
111794
112244
|
]
|
|
@@ -111804,7 +112254,8 @@ var require_contracts = __commonJS({
|
|
|
111804
112254
|
poolAddress: {
|
|
111805
112255
|
Mainnet: "0x25d22C5191C67D63AAB70a37FAe06e1c1E1a830F",
|
|
111806
112256
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111807
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112257
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112258
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111808
112259
|
}
|
|
111809
112260
|
}
|
|
111810
112261
|
]
|
|
@@ -111820,7 +112271,8 @@ var require_contracts = __commonJS({
|
|
|
111820
112271
|
poolAddress: {
|
|
111821
112272
|
Mainnet: "0x62e6D8dAe7089C8F2f2a5C328c710aa1788742fb",
|
|
111822
112273
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111823
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112274
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112275
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111824
112276
|
}
|
|
111825
112277
|
},
|
|
111826
112278
|
{
|
|
@@ -111828,7 +112280,8 @@ var require_contracts = __commonJS({
|
|
|
111828
112280
|
poolAddress: {
|
|
111829
112281
|
Mainnet: "0xC5E75ccd4d40e2Fb280f008f8AFB5EF3415EFA72",
|
|
111830
112282
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111831
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112283
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112284
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111832
112285
|
}
|
|
111833
112286
|
}
|
|
111834
112287
|
]
|
|
@@ -111844,7 +112297,8 @@ var require_contracts = __commonJS({
|
|
|
111844
112297
|
poolAddress: {
|
|
111845
112298
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111846
112299
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111847
|
-
Optimism: "0x0A22Ae9D9D149C14f6c15A235e715bB6C1Cfa739"
|
|
112300
|
+
Optimism: "0x0A22Ae9D9D149C14f6c15A235e715bB6C1Cfa739",
|
|
112301
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111848
112302
|
}
|
|
111849
112303
|
},
|
|
111850
112304
|
{
|
|
@@ -111852,7 +112306,8 @@ var require_contracts = __commonJS({
|
|
|
111852
112306
|
poolAddress: {
|
|
111853
112307
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111854
112308
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111855
|
-
Optimism: "0x81673Cdd00c2839440f31575cCFa5B6ca4a87B2B"
|
|
112309
|
+
Optimism: "0x81673Cdd00c2839440f31575cCFa5B6ca4a87B2B",
|
|
112310
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111856
112311
|
}
|
|
111857
112312
|
}
|
|
111858
112313
|
]
|
|
@@ -111868,7 +112323,8 @@ var require_contracts = __commonJS({
|
|
|
111868
112323
|
poolAddress: {
|
|
111869
112324
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111870
112325
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111871
|
-
Optimism: "0x903d716fe68e7e091eCC43AA93c0F8cfD7e7BC0a"
|
|
112326
|
+
Optimism: "0x903d716fe68e7e091eCC43AA93c0F8cfD7e7BC0a",
|
|
112327
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111872
112328
|
}
|
|
111873
112329
|
},
|
|
111874
112330
|
{
|
|
@@ -111876,7 +112332,8 @@ var require_contracts = __commonJS({
|
|
|
111876
112332
|
poolAddress: {
|
|
111877
112333
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111878
112334
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111879
|
-
Optimism: "0xb0709c230C06BE6e2A84b2Ba877094EB9a4fA014"
|
|
112335
|
+
Optimism: "0xb0709c230C06BE6e2A84b2Ba877094EB9a4fA014",
|
|
112336
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111880
112337
|
}
|
|
111881
112338
|
}
|
|
111882
112339
|
]
|
|
@@ -111892,7 +112349,8 @@ var require_contracts = __commonJS({
|
|
|
111892
112349
|
poolAddress: {
|
|
111893
112350
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111894
112351
|
Arbitrum: "0xC0353d05D3F2b6e14E36c5d3B4bF8d179890A001",
|
|
111895
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112352
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112353
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111896
112354
|
}
|
|
111897
112355
|
},
|
|
111898
112356
|
{
|
|
@@ -111900,7 +112358,8 @@ var require_contracts = __commonJS({
|
|
|
111900
112358
|
poolAddress: {
|
|
111901
112359
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111902
112360
|
Arbitrum: "0x3a0beff39E243453960aD1198Fc3aAabdBDDe56C",
|
|
111903
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112361
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112362
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111904
112363
|
}
|
|
111905
112364
|
}
|
|
111906
112365
|
]
|
|
@@ -111916,7 +112375,8 @@ var require_contracts = __commonJS({
|
|
|
111916
112375
|
poolAddress: {
|
|
111917
112376
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111918
112377
|
Arbitrum: "0x5901ce1c3Bf6C97fC49ED0fF08A88a57ea6E4Ca4",
|
|
111919
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112378
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112379
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111920
112380
|
}
|
|
111921
112381
|
},
|
|
111922
112382
|
{
|
|
@@ -111924,7 +112384,8 @@ var require_contracts = __commonJS({
|
|
|
111924
112384
|
poolAddress: {
|
|
111925
112385
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111926
112386
|
Arbitrum: "0x4601Ec46A285714e6F2A9466DA7f2BcB33646391",
|
|
111927
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112387
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112388
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111928
112389
|
}
|
|
111929
112390
|
}
|
|
111930
112391
|
]
|
|
@@ -111940,7 +112401,8 @@ var require_contracts = __commonJS({
|
|
|
111940
112401
|
poolAddress: {
|
|
111941
112402
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111942
112403
|
Arbitrum: "0xf0dcb30811228bED2b87b2753fabAfe80A9D0fb9",
|
|
111943
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112404
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112405
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111944
112406
|
}
|
|
111945
112407
|
},
|
|
111946
112408
|
{
|
|
@@ -111948,7 +112410,8 @@ var require_contracts = __commonJS({
|
|
|
111948
112410
|
poolAddress: {
|
|
111949
112411
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111950
112412
|
Arbitrum: "0xE42D389058D820177b83E2863FEb13733d6Dd5f2",
|
|
111951
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112413
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112414
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111952
112415
|
}
|
|
111953
112416
|
}
|
|
111954
112417
|
]
|
|
@@ -111964,7 +112427,8 @@ var require_contracts = __commonJS({
|
|
|
111964
112427
|
poolAddress: {
|
|
111965
112428
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111966
112429
|
Arbitrum: "0xeA270927C226454452DDF80e24a02087D0D7089F",
|
|
111967
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112430
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112431
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111968
112432
|
}
|
|
111969
112433
|
},
|
|
111970
112434
|
{
|
|
@@ -111972,7 +112436,8 @@ var require_contracts = __commonJS({
|
|
|
111972
112436
|
poolAddress: {
|
|
111973
112437
|
Mainnet: constants_1.NOT_DEPLOYED,
|
|
111974
112438
|
Arbitrum: "0xB05Dc0b460Ca3ed5174b33A7dA2104388764F62D",
|
|
111975
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112439
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112440
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111976
112441
|
}
|
|
111977
112442
|
}
|
|
111978
112443
|
]
|
|
@@ -111984,7 +112449,8 @@ var require_contracts = __commonJS({
|
|
|
111984
112449
|
oracle: {
|
|
111985
112450
|
Mainnet: "0x442af784A788A5bd6F42A01Ebe9F287a871243fb",
|
|
111986
112451
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
111987
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112452
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112453
|
+
Base: constants_1.NOT_DEPLOYED
|
|
111988
112454
|
},
|
|
111989
112455
|
lpToken: "steCRV"
|
|
111990
112456
|
},
|
|
@@ -112005,7 +112471,8 @@ var require_contracts = __commonJS({
|
|
|
112005
112471
|
queries: {
|
|
112006
112472
|
Mainnet: "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5",
|
|
112007
112473
|
Arbitrum: "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5",
|
|
112008
|
-
Optimism: "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5"
|
|
112474
|
+
Optimism: "0xE39B5e3B6D74016b2F6A9673D7d7493B6DF549d5",
|
|
112475
|
+
Base: constants_1.NOT_DEPLOYED
|
|
112009
112476
|
}
|
|
112010
112477
|
},
|
|
112011
112478
|
AAVE_V2_LENDING_POOL: {
|
|
@@ -112037,6 +112504,11 @@ var require_contracts = __commonJS({
|
|
|
112037
112504
|
type: adapters_1.AdapterInterface.AAVE_V2_WRAPPED_ATOKEN,
|
|
112038
112505
|
underlying: "aWETH"
|
|
112039
112506
|
},
|
|
112507
|
+
AAVE_V3_LENDING_POOL: {
|
|
112508
|
+
name: "Aave V3 Lending Pool",
|
|
112509
|
+
protocol: protocols_1.Protocols.AaveV3,
|
|
112510
|
+
type: adapters_1.AdapterInterface.AAVE_V3_LENDING_POOL
|
|
112511
|
+
},
|
|
112040
112512
|
COMPOUND_V2_DAI_POOL: {
|
|
112041
112513
|
name: "Compound V2 DAI",
|
|
112042
112514
|
protocol: protocols_1.Protocols.CompoundV2,
|
|
@@ -112093,57 +112565,68 @@ var require_utilsContracts = __commonJS({
|
|
|
112093
112565
|
exports2.ADDRESS_PROVIDER = {
|
|
112094
112566
|
Mainnet: "0x9ea7b04Da02a5373317D745c1571c84aaD03321D",
|
|
112095
112567
|
Arbitrum: "0x7d04eCdb892Ae074f03B5D0aBA03796F90F3F2af",
|
|
112096
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112568
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112569
|
+
Base: constants_1.NOT_DEPLOYED
|
|
112097
112570
|
};
|
|
112098
112571
|
exports2.TIMELOCK = {
|
|
112099
112572
|
Mainnet: "0xa133C9A92Fb8dDB962Af1cbae58b2723A0bdf23b",
|
|
112100
112573
|
Arbitrum: "0x148DD932eCe1155c11006F5650c6Ff428f8D374A",
|
|
112101
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112574
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112575
|
+
Base: constants_1.NOT_DEPLOYED
|
|
112102
112576
|
};
|
|
112103
112577
|
exports2.GOVERNOR = {
|
|
112104
112578
|
Mainnet: "0x29B97F37B3E0C704bCFD785F5b7bBa2A0B7df2c7",
|
|
112105
112579
|
Arbitrum: "0xF0C89a0eDCD68B4176A26B3bf7574498DD3E6d09",
|
|
112106
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112580
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112581
|
+
Base: constants_1.NOT_DEPLOYED
|
|
112107
112582
|
};
|
|
112108
112583
|
exports2.BATCH_CHAIN = {
|
|
112109
112584
|
Mainnet: "0xB900bDEf6eAc8C5D97F8e876aBC39573Cf6626b2",
|
|
112110
112585
|
Arbitrum: "0xAEbaa1015D0bc250F5b38aac9b8f65E0668cE3c2",
|
|
112111
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112586
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112587
|
+
Base: constants_1.NOT_DEPLOYED
|
|
112112
112588
|
};
|
|
112113
112589
|
exports2.BLACKLIST_HELPER = {
|
|
112114
112590
|
Mainnet: "0xFfbF344741654a1B9Ab1286Cf05A42f275F67839",
|
|
112115
112591
|
Arbitrum: constants_1.NOT_DEPLOYED,
|
|
112116
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112592
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112593
|
+
Base: constants_1.NOT_DEPLOYED
|
|
112117
112594
|
};
|
|
112118
112595
|
exports2.CREATE2FACTORY = {
|
|
112119
112596
|
Mainnet: "0x45d146CAA25aa565Cfc7434926633f4F1C97c873",
|
|
112120
112597
|
Arbitrum: "0xad1231A64eE68D6BF721a1E8e177776cc49bAA2C",
|
|
112121
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112598
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112599
|
+
Base: constants_1.NOT_DEPLOYED
|
|
112122
112600
|
};
|
|
112123
112601
|
exports2.MULTISIG = {
|
|
112124
112602
|
Mainnet: "0xA7D5DDc1b8557914F158076b228AA91eF613f1D5",
|
|
112125
112603
|
Arbitrum: "0x57Fd8B1a9213624157786Fff4a7bc532Ce717773",
|
|
112126
|
-
Optimism: "0x8bA8cd6D00919ceCc19D9B4A2c8669a524883C4c"
|
|
112604
|
+
Optimism: "0x8bA8cd6D00919ceCc19D9B4A2c8669a524883C4c",
|
|
112605
|
+
Base: constants_1.NOT_DEPLOYED
|
|
112127
112606
|
};
|
|
112128
112607
|
exports2.VETO_ADMIN = {
|
|
112129
112608
|
Mainnet: "0xbb803559B4D58b75E12dd74641AB955e8B0Df40E",
|
|
112130
112609
|
Arbitrum: "0x746fb3AcAfF6Bfe246206EC2E51F587d2E57abb6",
|
|
112131
|
-
Optimism: "0x9744f76dc5239Eb4DC2CE8D5538e1BA89C8FA90f"
|
|
112610
|
+
Optimism: "0x9744f76dc5239Eb4DC2CE8D5538e1BA89C8FA90f",
|
|
112611
|
+
Base: constants_1.NOT_DEPLOYED
|
|
112132
112612
|
};
|
|
112133
112613
|
exports2.TREASURY = {
|
|
112134
112614
|
Mainnet: "0x7b065fcb0760df0cea8cfd144e08554f3cea73d1",
|
|
112135
112615
|
Arbitrum: "0x2c31eFFE426765E68A43163A96DD13DF70B53C14",
|
|
112136
|
-
Optimism: "0x1ACc5BC353f23B901801f3Ba48e1E51a14263808"
|
|
112616
|
+
Optimism: "0x1ACc5BC353f23B901801f3Ba48e1E51a14263808",
|
|
112617
|
+
Base: constants_1.NOT_DEPLOYED
|
|
112137
112618
|
};
|
|
112138
112619
|
exports2.ROUTER_MULTISIG_ADDRESS = {
|
|
112139
112620
|
Mainnet: "0xaaDf86C39a76eEEf5a5337Ca449C7EfA66E3175E",
|
|
112140
112621
|
Arbitrum: "0xEAb23245937A4F0894B0c92f08992C2c45Fc8df5",
|
|
112141
|
-
Optimism: "0x4cda5Fa96B5d436002175d958667C7EF3B644aA1"
|
|
112622
|
+
Optimism: "0x4cda5Fa96B5d436002175d958667C7EF3B644aA1",
|
|
112623
|
+
Base: constants_1.NOT_DEPLOYED
|
|
112142
112624
|
};
|
|
112143
112625
|
exports2.ROUTER_CREATE2FACTORY = {
|
|
112144
112626
|
Mainnet: "0xA287577Fb7Cf49246e569EA268FE919F1cD6d9E2",
|
|
112145
112627
|
Arbitrum: "0x95345A4d55DAf6864924fC8861b311B9BC860E5f",
|
|
112146
|
-
Optimism: constants_1.NOT_DEPLOYED
|
|
112628
|
+
Optimism: constants_1.NOT_DEPLOYED,
|
|
112629
|
+
Base: constants_1.NOT_DEPLOYED
|
|
112147
112630
|
};
|
|
112148
112631
|
exports2.emergencyLiquidators = [
|
|
112149
112632
|
"0x7BD9c8161836b1F402233E80F55E3CaE0Fde4d87",
|
|
@@ -112857,31 +113340,36 @@ var require_chains = __commonJS({
|
|
|
112857
113340
|
"../../node_modules/@gearbox-protocol/sdk-gov/lib/core/chains.js"(exports2) {
|
|
112858
113341
|
"use strict";
|
|
112859
113342
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
112860
|
-
exports2.detectNetwork = exports2.isSupportedNetwork = exports2.getNetworkType = exports2.supportedChains = exports2.CHAINS = exports2.
|
|
113343
|
+
exports2.detectNetwork = exports2.isSupportedNetwork = exports2.getNetworkType = exports2.supportedChains = exports2.CHAINS = exports2.BASE_NETWORK = exports2.ARBITRUM_NETWORK = exports2.HARDHAT_NETWORK = exports2.LOCAL_NETWORK = exports2.OPTIMISM_NETWORK = exports2.GOERLI_NETWORK = exports2.MAINNET_NETWORK = void 0;
|
|
112861
113344
|
var ethers_1 = require_lib220();
|
|
112862
113345
|
var token_1 = require_token();
|
|
112863
113346
|
exports2.MAINNET_NETWORK = 1;
|
|
112864
113347
|
exports2.GOERLI_NETWORK = 5;
|
|
112865
113348
|
exports2.OPTIMISM_NETWORK = 10;
|
|
112866
|
-
exports2.POLYGON_NETWORK = 137;
|
|
112867
113349
|
exports2.LOCAL_NETWORK = 1337;
|
|
112868
113350
|
exports2.HARDHAT_NETWORK = 31337;
|
|
112869
113351
|
exports2.ARBITRUM_NETWORK = 42161;
|
|
113352
|
+
exports2.BASE_NETWORK = 8453;
|
|
112870
113353
|
exports2.CHAINS = {
|
|
112871
113354
|
Mainnet: exports2.MAINNET_NETWORK,
|
|
112872
113355
|
Arbitrum: exports2.ARBITRUM_NETWORK,
|
|
112873
113356
|
Local: exports2.LOCAL_NETWORK,
|
|
112874
113357
|
Hardhat: exports2.HARDHAT_NETWORK,
|
|
112875
113358
|
Optimism: exports2.OPTIMISM_NETWORK,
|
|
112876
|
-
|
|
113359
|
+
Base: exports2.BASE_NETWORK
|
|
112877
113360
|
};
|
|
112878
|
-
exports2.supportedChains = [
|
|
113361
|
+
exports2.supportedChains = [
|
|
113362
|
+
"Mainnet",
|
|
113363
|
+
"Arbitrum",
|
|
113364
|
+
"Optimism",
|
|
113365
|
+
"Base"
|
|
113366
|
+
];
|
|
112879
113367
|
var SUPPORTED_CHAINS = {
|
|
112880
113368
|
[exports2.CHAINS.Mainnet]: "Mainnet",
|
|
112881
113369
|
[exports2.CHAINS.Arbitrum]: "Arbitrum",
|
|
112882
113370
|
[exports2.CHAINS.Local]: "Mainnet",
|
|
112883
113371
|
[exports2.CHAINS.Optimism]: "Optimism"
|
|
112884
|
-
// [CHAINS.
|
|
113372
|
+
// [CHAINS.Base]: "Polygon",
|
|
112885
113373
|
};
|
|
112886
113374
|
var getNetworkType = (chainId, localAs = "Mainnet") => {
|
|
112887
113375
|
const chainType = SUPPORTED_CHAINS[chainId];
|
|
@@ -113372,10 +113860,16 @@ var require_priceFeeds = __commonJS({
|
|
|
113372
113860
|
Mainnet: {
|
|
113373
113861
|
Main: {
|
|
113374
113862
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113375
|
-
targetToBasePriceFeed:
|
|
113376
|
-
|
|
113377
|
-
|
|
113378
|
-
|
|
113863
|
+
targetToBasePriceFeed: {
|
|
113864
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
113865
|
+
address: "0xfdFD9C85aD200c506Cf9e21F1FD8dd01932FBB23",
|
|
113866
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
113867
|
+
},
|
|
113868
|
+
baseToUsdPriceFeed: {
|
|
113869
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
113870
|
+
address: "0xF4030086522a5bEEa4988F8cA5B36dbC97BeE88c",
|
|
113871
|
+
stalenessPeriod: pricefeedType_1.HOUR_1_BUFFERED
|
|
113872
|
+
},
|
|
113379
113873
|
trusted: true
|
|
113380
113874
|
},
|
|
113381
113875
|
Reserve: {
|
|
@@ -113389,10 +113883,16 @@ var require_priceFeeds = __commonJS({
|
|
|
113389
113883
|
Arbitrum: {
|
|
113390
113884
|
Main: {
|
|
113391
113885
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113392
|
-
targetToBasePriceFeed:
|
|
113393
|
-
|
|
113394
|
-
|
|
113395
|
-
|
|
113886
|
+
targetToBasePriceFeed: {
|
|
113887
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
113888
|
+
address: "0x0017abAc5b6f291F9164e35B1234CA1D697f9CF4",
|
|
113889
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
113890
|
+
},
|
|
113891
|
+
baseToUsdPriceFeed: {
|
|
113892
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
113893
|
+
address: "0x6ce185860a4963106506C203335A2910413708e9",
|
|
113894
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
113895
|
+
},
|
|
113396
113896
|
trusted: true
|
|
113397
113897
|
}
|
|
113398
113898
|
},
|
|
@@ -113460,10 +113960,16 @@ var require_priceFeeds = __commonJS({
|
|
|
113460
113960
|
Mainnet: {
|
|
113461
113961
|
Main: {
|
|
113462
113962
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113463
|
-
targetToBasePriceFeed:
|
|
113464
|
-
|
|
113465
|
-
|
|
113466
|
-
|
|
113963
|
+
targetToBasePriceFeed: {
|
|
113964
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
113965
|
+
address: "0x86392dC19c0b719886221c78AB11eb8Cf5c52812",
|
|
113966
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
113967
|
+
},
|
|
113968
|
+
baseToUsdPriceFeed: {
|
|
113969
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
113970
|
+
address: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
|
|
113971
|
+
stalenessPeriod: pricefeedType_1.HOUR_1_BUFFERED
|
|
113972
|
+
},
|
|
113467
113973
|
trusted: false
|
|
113468
113974
|
},
|
|
113469
113975
|
Reserve: {
|
|
@@ -113493,20 +113999,32 @@ var require_priceFeeds = __commonJS({
|
|
|
113493
113999
|
Arbitrum: {
|
|
113494
114000
|
Main: {
|
|
113495
114001
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113496
|
-
targetToBasePriceFeed:
|
|
113497
|
-
|
|
113498
|
-
|
|
113499
|
-
|
|
114002
|
+
targetToBasePriceFeed: {
|
|
114003
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114004
|
+
address: "0xb523AE262D20A936BC152e6023996e46FDC2A95D",
|
|
114005
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114006
|
+
},
|
|
114007
|
+
baseToUsdPriceFeed: {
|
|
114008
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114009
|
+
address: "0x639Fe6ab55C921f74e7fac1ee960C0B6293ba612",
|
|
114010
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114011
|
+
},
|
|
113500
114012
|
trusted: false
|
|
113501
114013
|
}
|
|
113502
114014
|
},
|
|
113503
114015
|
Optimism: {
|
|
113504
114016
|
Main: {
|
|
113505
114017
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113506
|
-
targetToBasePriceFeed:
|
|
113507
|
-
|
|
113508
|
-
|
|
113509
|
-
|
|
114018
|
+
targetToBasePriceFeed: {
|
|
114019
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114020
|
+
address: "0x524299Ab0987a7c4B3c8022a35669DdcdC715a10",
|
|
114021
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114022
|
+
},
|
|
114023
|
+
baseToUsdPriceFeed: {
|
|
114024
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114025
|
+
address: "0x13e3Ee699D1909E989722E753853AE30b17e08c5",
|
|
114026
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114027
|
+
},
|
|
113510
114028
|
trusted: false
|
|
113511
114029
|
}
|
|
113512
114030
|
}
|
|
@@ -113565,7 +114083,11 @@ var require_priceFeeds = __commonJS({
|
|
|
113565
114083
|
Mainnet: {
|
|
113566
114084
|
Main: {
|
|
113567
114085
|
type: pricefeedType_1.PriceFeedType.BOUNDED_ORACLE,
|
|
113568
|
-
priceFeed:
|
|
114086
|
+
priceFeed: {
|
|
114087
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114088
|
+
address: "0x3D7aE7E594f2f2091Ad8798313450130d0Aba3a0",
|
|
114089
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
114090
|
+
},
|
|
113569
114091
|
upperBound: BigInt(1e8) * 11n / 10n,
|
|
113570
114092
|
trusted: false
|
|
113571
114093
|
}
|
|
@@ -113573,7 +114095,11 @@ var require_priceFeeds = __commonJS({
|
|
|
113573
114095
|
Arbitrum: {
|
|
113574
114096
|
Main: {
|
|
113575
114097
|
type: pricefeedType_1.PriceFeedType.BOUNDED_ORACLE,
|
|
113576
|
-
priceFeed:
|
|
114098
|
+
priceFeed: {
|
|
114099
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114100
|
+
address: "0x0411D28c94d85A36bC72Cb0f875dfA8371D8fFfF",
|
|
114101
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114102
|
+
},
|
|
113577
114103
|
upperBound: BigInt(1e8) * 11n / 10n,
|
|
113578
114104
|
trusted: false
|
|
113579
114105
|
}
|
|
@@ -113583,8 +114109,16 @@ var require_priceFeeds = __commonJS({
|
|
|
113583
114109
|
Mainnet: {
|
|
113584
114110
|
Main: {
|
|
113585
114111
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113586
|
-
targetToBasePriceFeed:
|
|
113587
|
-
|
|
114112
|
+
targetToBasePriceFeed: {
|
|
114113
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114114
|
+
address: "0x8e0b7e6062272B5eF4524250bFFF8e5Bd3497757",
|
|
114115
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
114116
|
+
},
|
|
114117
|
+
baseToUsdPriceFeed: {
|
|
114118
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114119
|
+
address: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
|
|
114120
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
114121
|
+
},
|
|
113588
114122
|
trusted: false
|
|
113589
114123
|
}
|
|
113590
114124
|
},
|
|
@@ -113635,10 +114169,16 @@ var require_priceFeeds = __commonJS({
|
|
|
113635
114169
|
Mainnet: {
|
|
113636
114170
|
Main: {
|
|
113637
114171
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113638
|
-
targetToBasePriceFeed:
|
|
113639
|
-
|
|
113640
|
-
|
|
113641
|
-
|
|
114172
|
+
targetToBasePriceFeed: {
|
|
114173
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114174
|
+
address: "0x4e844125952D32AcdF339BE976c98E22F6F318dB",
|
|
114175
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
114176
|
+
},
|
|
114177
|
+
baseToUsdPriceFeed: {
|
|
114178
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114179
|
+
address: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
|
|
114180
|
+
stalenessPeriod: pricefeedType_1.HOUR_1_BUFFERED
|
|
114181
|
+
},
|
|
113642
114182
|
trusted: false
|
|
113643
114183
|
}
|
|
113644
114184
|
},
|
|
@@ -113662,8 +114202,16 @@ var require_priceFeeds = __commonJS({
|
|
|
113662
114202
|
Mainnet: {
|
|
113663
114203
|
Main: {
|
|
113664
114204
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113665
|
-
targetToBasePriceFeed:
|
|
113666
|
-
|
|
114205
|
+
targetToBasePriceFeed: {
|
|
114206
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114207
|
+
address: "0x9a72298ae3886221820B1c878d12D872087D3a23",
|
|
114208
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
114209
|
+
},
|
|
114210
|
+
baseToUsdPriceFeed: {
|
|
114211
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114212
|
+
address: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
|
|
114213
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
114214
|
+
},
|
|
113667
114215
|
trusted: false
|
|
113668
114216
|
}
|
|
113669
114217
|
},
|
|
@@ -113787,8 +114335,16 @@ var require_priceFeeds = __commonJS({
|
|
|
113787
114335
|
Mainnet: {
|
|
113788
114336
|
Main: {
|
|
113789
114337
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113790
|
-
targetToBasePriceFeed:
|
|
113791
|
-
|
|
114338
|
+
targetToBasePriceFeed: {
|
|
114339
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114340
|
+
address: "0x536218f9E9Eb48863970252233c8F271f554C2d0",
|
|
114341
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
114342
|
+
},
|
|
114343
|
+
baseToUsdPriceFeed: {
|
|
114344
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114345
|
+
address: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
|
|
114346
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
114347
|
+
},
|
|
113792
114348
|
trusted: false
|
|
113793
114349
|
},
|
|
113794
114350
|
Reserve: {
|
|
@@ -113802,20 +114358,32 @@ var require_priceFeeds = __commonJS({
|
|
|
113802
114358
|
Arbitrum: {
|
|
113803
114359
|
Main: {
|
|
113804
114360
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113805
|
-
targetToBasePriceFeed:
|
|
113806
|
-
|
|
113807
|
-
|
|
113808
|
-
|
|
114361
|
+
targetToBasePriceFeed: {
|
|
114362
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114363
|
+
address: "0xF3272CAfe65b190e76caAF483db13424a3e23dD2",
|
|
114364
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114365
|
+
},
|
|
114366
|
+
baseToUsdPriceFeed: {
|
|
114367
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114368
|
+
address: "0x639Fe6ab55C921f74e7fac1ee960C0B6293ba612",
|
|
114369
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114370
|
+
},
|
|
113809
114371
|
trusted: false
|
|
113810
114372
|
}
|
|
113811
114373
|
},
|
|
113812
114374
|
Optimism: {
|
|
113813
114375
|
Main: {
|
|
113814
114376
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113815
|
-
targetToBasePriceFeed:
|
|
113816
|
-
|
|
113817
|
-
|
|
113818
|
-
|
|
114377
|
+
targetToBasePriceFeed: {
|
|
114378
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114379
|
+
address: "0xb429DE60943a8e6DeD356dca2F93Cd31201D9ed0",
|
|
114380
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114381
|
+
},
|
|
114382
|
+
baseToUsdPriceFeed: {
|
|
114383
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114384
|
+
address: "0x13e3Ee699D1909E989722E753853AE30b17e08c5",
|
|
114385
|
+
stalenessPeriod: pricefeedType_1.MINUTES_20_BUFFERED_L2
|
|
114386
|
+
},
|
|
113819
114387
|
trusted: false
|
|
113820
114388
|
}
|
|
113821
114389
|
}
|
|
@@ -113824,10 +114392,16 @@ var require_priceFeeds = __commonJS({
|
|
|
113824
114392
|
Mainnet: {
|
|
113825
114393
|
Main: {
|
|
113826
114394
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113827
|
-
targetToBasePriceFeed:
|
|
113828
|
-
|
|
113829
|
-
|
|
113830
|
-
|
|
114395
|
+
targetToBasePriceFeed: {
|
|
114396
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114397
|
+
address: "0x66ac817f997Efd114EDFcccdce99F3268557B32C",
|
|
114398
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
114399
|
+
},
|
|
114400
|
+
baseToUsdPriceFeed: {
|
|
114401
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114402
|
+
address: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
|
|
114403
|
+
stalenessPeriod: pricefeedType_1.HOUR_1_BUFFERED
|
|
114404
|
+
},
|
|
113831
114405
|
trusted: false
|
|
113832
114406
|
},
|
|
113833
114407
|
Reserve: {
|
|
@@ -113840,10 +114414,16 @@ var require_priceFeeds = __commonJS({
|
|
|
113840
114414
|
Mainnet: {
|
|
113841
114415
|
Main: {
|
|
113842
114416
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113843
|
-
targetToBasePriceFeed:
|
|
113844
|
-
|
|
113845
|
-
|
|
113846
|
-
|
|
114417
|
+
targetToBasePriceFeed: {
|
|
114418
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114419
|
+
address: "0x8751F736E94F6CD167e8C5B97E245680FbD9CC36",
|
|
114420
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
114421
|
+
},
|
|
114422
|
+
baseToUsdPriceFeed: {
|
|
114423
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114424
|
+
address: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
|
|
114425
|
+
stalenessPeriod: pricefeedType_1.HOUR_1_BUFFERED
|
|
114426
|
+
},
|
|
113847
114427
|
trusted: false
|
|
113848
114428
|
},
|
|
113849
114429
|
Reserve: {
|
|
@@ -113856,10 +114436,16 @@ var require_priceFeeds = __commonJS({
|
|
|
113856
114436
|
Mainnet: {
|
|
113857
114437
|
Main: {
|
|
113858
114438
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113859
|
-
targetToBasePriceFeed:
|
|
113860
|
-
|
|
113861
|
-
|
|
113862
|
-
|
|
114439
|
+
targetToBasePriceFeed: {
|
|
114440
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114441
|
+
address: "0xF4a3e183F59D2599ee3DF213ff78b1B3b1923696",
|
|
114442
|
+
stalenessPeriod: pricefeedType_1.HOUR_12_BUFFERED
|
|
114443
|
+
},
|
|
114444
|
+
baseToUsdPriceFeed: {
|
|
114445
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114446
|
+
address: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
|
|
114447
|
+
stalenessPeriod: pricefeedType_1.HOUR_1_BUFFERED
|
|
114448
|
+
},
|
|
113863
114449
|
trusted: false
|
|
113864
114450
|
},
|
|
113865
114451
|
Reserve: {
|
|
@@ -113874,11 +114460,14 @@ var require_priceFeeds = __commonJS({
|
|
|
113874
114460
|
type: pricefeedType_1.PriceFeedType.REDSTONE_ORACLE,
|
|
113875
114461
|
dataServiceId: "redstone-primary-prod",
|
|
113876
114462
|
dataId: "ezETH/ETH",
|
|
113877
|
-
...exports2.REDSTONE_SIGNERS
|
|
114463
|
+
...exports2.REDSTONE_SIGNERS,
|
|
114464
|
+
stalenessPeriod: pricefeedType_1.FOUR_MINUTES
|
|
114465
|
+
},
|
|
114466
|
+
baseToUsdPriceFeed: {
|
|
114467
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114468
|
+
address: "0x639Fe6ab55C921f74e7fac1ee960C0B6293ba612",
|
|
114469
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
113878
114470
|
},
|
|
113879
|
-
targetStalenessPeriod: pricefeedType_1.FOUR_MINUTES,
|
|
113880
|
-
baseToUsdPriceFeed: "0x639Fe6ab55C921f74e7fac1ee960C0B6293ba612",
|
|
113881
|
-
baseStalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2,
|
|
113882
114471
|
trusted: false
|
|
113883
114472
|
},
|
|
113884
114473
|
Reserve: {
|
|
@@ -113899,10 +114488,16 @@ var require_priceFeeds = __commonJS({
|
|
|
113899
114488
|
Mainnet: {
|
|
113900
114489
|
Main: {
|
|
113901
114490
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113902
|
-
targetToBasePriceFeed:
|
|
113903
|
-
|
|
113904
|
-
|
|
113905
|
-
|
|
114491
|
+
targetToBasePriceFeed: {
|
|
114492
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114493
|
+
address: "0xA736eAe8805dDeFFba40cAB8c99bCB309dEaBd9B",
|
|
114494
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
114495
|
+
},
|
|
114496
|
+
baseToUsdPriceFeed: {
|
|
114497
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114498
|
+
address: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
|
|
114499
|
+
stalenessPeriod: pricefeedType_1.HOUR_1_BUFFERED
|
|
114500
|
+
},
|
|
113906
114501
|
trusted: false
|
|
113907
114502
|
}
|
|
113908
114503
|
}
|
|
@@ -113917,10 +114512,16 @@ var require_priceFeeds = __commonJS({
|
|
|
113917
114512
|
Arbitrum: {
|
|
113918
114513
|
Main: {
|
|
113919
114514
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113920
|
-
targetToBasePriceFeed:
|
|
113921
|
-
|
|
113922
|
-
|
|
113923
|
-
|
|
114515
|
+
targetToBasePriceFeed: {
|
|
114516
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114517
|
+
address: "0x5C3e80763862CB777Aa07BDDBcCE0123104e1c34",
|
|
114518
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114519
|
+
},
|
|
114520
|
+
baseToUsdPriceFeed: {
|
|
114521
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114522
|
+
address: "0x639Fe6ab55C921f74e7fac1ee960C0B6293ba612",
|
|
114523
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114524
|
+
},
|
|
113924
114525
|
trusted: false
|
|
113925
114526
|
}
|
|
113926
114527
|
}
|
|
@@ -113944,30 +114545,48 @@ var require_priceFeeds = __commonJS({
|
|
|
113944
114545
|
Mainnet: {
|
|
113945
114546
|
Main: {
|
|
113946
114547
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113947
|
-
targetToBasePriceFeed:
|
|
113948
|
-
|
|
113949
|
-
|
|
113950
|
-
|
|
114548
|
+
targetToBasePriceFeed: {
|
|
114549
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114550
|
+
address: "0xF017fcB346A1885194689bA23Eff2fE6fA5C483b",
|
|
114551
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED
|
|
114552
|
+
},
|
|
114553
|
+
baseToUsdPriceFeed: {
|
|
114554
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114555
|
+
address: "0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419",
|
|
114556
|
+
stalenessPeriod: pricefeedType_1.HOUR_1_BUFFERED
|
|
114557
|
+
},
|
|
113951
114558
|
trusted: false
|
|
113952
114559
|
}
|
|
113953
114560
|
},
|
|
113954
114561
|
Arbitrum: {
|
|
113955
114562
|
Main: {
|
|
113956
114563
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113957
|
-
targetToBasePriceFeed:
|
|
113958
|
-
|
|
113959
|
-
|
|
113960
|
-
|
|
114564
|
+
targetToBasePriceFeed: {
|
|
114565
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114566
|
+
address: "0xa668682974E3f121185a3cD94f00322beC674275",
|
|
114567
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114568
|
+
},
|
|
114569
|
+
baseToUsdPriceFeed: {
|
|
114570
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114571
|
+
address: "0x639Fe6ab55C921f74e7fac1ee960C0B6293ba612",
|
|
114572
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114573
|
+
},
|
|
113961
114574
|
trusted: false
|
|
113962
114575
|
}
|
|
113963
114576
|
},
|
|
113964
114577
|
Optimism: {
|
|
113965
114578
|
Main: {
|
|
113966
114579
|
type: pricefeedType_1.PriceFeedType.COMPOSITE_ORACLE,
|
|
113967
|
-
targetToBasePriceFeed:
|
|
113968
|
-
|
|
113969
|
-
|
|
113970
|
-
|
|
114580
|
+
targetToBasePriceFeed: {
|
|
114581
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114582
|
+
address: "0x138b809B8472fF09Cd3E075E6EcbB2e42D41d870",
|
|
114583
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114584
|
+
},
|
|
114585
|
+
baseToUsdPriceFeed: {
|
|
114586
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
114587
|
+
address: "0x13e3Ee699D1909E989722E753853AE30b17e08c5",
|
|
114588
|
+
stalenessPeriod: pricefeedType_1.HOUR_24_BUFFERED_L2
|
|
114589
|
+
},
|
|
113971
114590
|
trusted: false
|
|
113972
114591
|
}
|
|
113973
114592
|
}
|
|
@@ -115077,6 +115696,102 @@ var require_priceFeeds = __commonJS({
|
|
|
115077
115696
|
}
|
|
115078
115697
|
}
|
|
115079
115698
|
},
|
|
115699
|
+
dUSDTV3: {
|
|
115700
|
+
Mainnet: {
|
|
115701
|
+
Main: {
|
|
115702
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
115703
|
+
address: constants_1.NOT_DEPLOYED,
|
|
115704
|
+
trusted: false
|
|
115705
|
+
}
|
|
115706
|
+
},
|
|
115707
|
+
Arbitrum: {
|
|
115708
|
+
Main: {
|
|
115709
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
115710
|
+
address: constants_1.NOT_DEPLOYED,
|
|
115711
|
+
trusted: false
|
|
115712
|
+
}
|
|
115713
|
+
}
|
|
115714
|
+
},
|
|
115715
|
+
dGHOV3: {
|
|
115716
|
+
Mainnet: {
|
|
115717
|
+
Main: {
|
|
115718
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
115719
|
+
address: constants_1.NOT_DEPLOYED,
|
|
115720
|
+
trusted: false
|
|
115721
|
+
}
|
|
115722
|
+
},
|
|
115723
|
+
Arbitrum: {
|
|
115724
|
+
Main: {
|
|
115725
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
115726
|
+
address: constants_1.NOT_DEPLOYED,
|
|
115727
|
+
trusted: false
|
|
115728
|
+
}
|
|
115729
|
+
}
|
|
115730
|
+
},
|
|
115731
|
+
dDAIV3: {
|
|
115732
|
+
Mainnet: {
|
|
115733
|
+
Main: {
|
|
115734
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
115735
|
+
address: constants_1.NOT_DEPLOYED,
|
|
115736
|
+
trusted: false
|
|
115737
|
+
}
|
|
115738
|
+
},
|
|
115739
|
+
Arbitrum: {
|
|
115740
|
+
Main: {
|
|
115741
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
115742
|
+
address: constants_1.NOT_DEPLOYED,
|
|
115743
|
+
trusted: false
|
|
115744
|
+
}
|
|
115745
|
+
}
|
|
115746
|
+
},
|
|
115747
|
+
sdUSDTV3: {
|
|
115748
|
+
Mainnet: {
|
|
115749
|
+
Main: {
|
|
115750
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
115751
|
+
address: constants_1.NOT_DEPLOYED,
|
|
115752
|
+
trusted: false
|
|
115753
|
+
}
|
|
115754
|
+
},
|
|
115755
|
+
Arbitrum: {
|
|
115756
|
+
Main: {
|
|
115757
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
115758
|
+
address: constants_1.NOT_DEPLOYED,
|
|
115759
|
+
trusted: false
|
|
115760
|
+
}
|
|
115761
|
+
}
|
|
115762
|
+
},
|
|
115763
|
+
sdGHOV3: {
|
|
115764
|
+
Mainnet: {
|
|
115765
|
+
Main: {
|
|
115766
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
115767
|
+
address: constants_1.NOT_DEPLOYED,
|
|
115768
|
+
trusted: false
|
|
115769
|
+
}
|
|
115770
|
+
},
|
|
115771
|
+
Arbitrum: {
|
|
115772
|
+
Main: {
|
|
115773
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
115774
|
+
address: constants_1.NOT_DEPLOYED,
|
|
115775
|
+
trusted: false
|
|
115776
|
+
}
|
|
115777
|
+
}
|
|
115778
|
+
},
|
|
115779
|
+
sdDAIV3: {
|
|
115780
|
+
Mainnet: {
|
|
115781
|
+
Main: {
|
|
115782
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
115783
|
+
address: constants_1.NOT_DEPLOYED,
|
|
115784
|
+
trusted: false
|
|
115785
|
+
}
|
|
115786
|
+
},
|
|
115787
|
+
Arbitrum: {
|
|
115788
|
+
Main: {
|
|
115789
|
+
type: pricefeedType_1.PriceFeedType.CHAINLINK_ORACLE,
|
|
115790
|
+
address: constants_1.NOT_DEPLOYED,
|
|
115791
|
+
trusted: false
|
|
115792
|
+
}
|
|
115793
|
+
}
|
|
115794
|
+
},
|
|
115080
115795
|
GEAR: {
|
|
115081
115796
|
Mainnet: {
|
|
115082
115797
|
Main: {
|
|
@@ -121795,9 +122510,10 @@ var require_tokenData = __commonJS({
|
|
|
121795
122510
|
var constants_1 = require_constants2();
|
|
121796
122511
|
var token_1 = require_token();
|
|
121797
122512
|
exports2.connectors = {
|
|
121798
|
-
Mainnet: ["WETH", "DAI", "USDC", "FRAX", "rETH", "ezETH"],
|
|
122513
|
+
Mainnet: ["WETH", "DAI", "USDC", "FRAX", "rETH", "ezETH", "GHO"],
|
|
121799
122514
|
Arbitrum: ["WETH", "DAI", "USDC", "USDT", "rETH"],
|
|
121800
|
-
Optimism: ["WETH", "USDC", "USDT"]
|
|
122515
|
+
Optimism: ["WETH", "USDC", "USDT"],
|
|
122516
|
+
Base: ["WETH", "USDC", "USDT"]
|
|
121801
122517
|
};
|
|
121802
122518
|
function getConnectors(networkType) {
|
|
121803
122519
|
return exports2.connectors[networkType].map((e) => {
|
|
@@ -121820,7 +122536,7 @@ var require_multicall = __commonJS({
|
|
|
121820
122536
|
exports2.MultiCallContract = exports2.safeMulticall = exports2.multicall = exports2.multicallInterface = exports2.MULTICALL_ADDRESS = void 0;
|
|
121821
122537
|
var ethers_1 = require_lib220();
|
|
121822
122538
|
exports2.MULTICALL_ADDRESS = "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
121823
|
-
var
|
|
122539
|
+
var _abi51 = [
|
|
121824
122540
|
{
|
|
121825
122541
|
inputs: [
|
|
121826
122542
|
{
|
|
@@ -121906,7 +122622,7 @@ var require_multicall = __commonJS({
|
|
|
121906
122622
|
type: "function"
|
|
121907
122623
|
}
|
|
121908
122624
|
];
|
|
121909
|
-
exports2.multicallInterface = new ethers_1.ethers.utils.Interface(
|
|
122625
|
+
exports2.multicallInterface = new ethers_1.ethers.utils.Interface(_abi51);
|
|
121910
122626
|
async function multicall(calls, p, overrides) {
|
|
121911
122627
|
const multiCallContract = new ethers_1.ethers.Contract(exports2.MULTICALL_ADDRESS, exports2.multicallInterface, p);
|
|
121912
122628
|
const { returnData } = await multiCallContract.callStatic.aggregate(calls.map((c) => ({
|
|
@@ -122204,7 +122920,8 @@ var require_explorers = __commonJS({
|
|
|
122204
122920
|
exports2.explorerUrl = {
|
|
122205
122921
|
Mainnet: "https://api.etherscan.io/api",
|
|
122206
122922
|
Arbitrum: "https://api.arbiscan.io/api",
|
|
122207
|
-
Optimism: "https://api.optimistic.etherscan.io/api"
|
|
122923
|
+
Optimism: "https://api.optimistic.etherscan.io/api",
|
|
122924
|
+
Base: "https://api.basescan.org/api"
|
|
122208
122925
|
};
|
|
122209
122926
|
}
|
|
122210
122927
|
});
|
|
@@ -135977,6 +136694,7 @@ var require_lib222 = __commonJS({
|
|
|
135977
136694
|
};
|
|
135978
136695
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
135979
136696
|
exports2.TokenType = void 0;
|
|
136697
|
+
__exportStar3(require_permissions(), exports2);
|
|
135980
136698
|
__exportStar3(require_adapters(), exports2);
|
|
135981
136699
|
__exportStar3(require_configs(), exports2);
|
|
135982
136700
|
__exportStar3(require_poolV3Core(), exports2);
|
|
@@ -203746,7 +204464,7 @@ var require_Gnosis_safe_factory = __commonJS({
|
|
|
203746
204464
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
203747
204465
|
exports2.Gnosis_safe__factory = void 0;
|
|
203748
204466
|
var ethers_1 = require_lib228();
|
|
203749
|
-
var
|
|
204467
|
+
var _abi51 = [
|
|
203750
204468
|
{
|
|
203751
204469
|
constant: false,
|
|
203752
204470
|
inputs: [
|
|
@@ -204525,14 +205243,14 @@ var require_Gnosis_safe_factory = __commonJS({
|
|
|
204525
205243
|
];
|
|
204526
205244
|
var Gnosis_safe__factory = class {
|
|
204527
205245
|
static createInterface() {
|
|
204528
|
-
return new ethers_1.Interface(
|
|
205246
|
+
return new ethers_1.Interface(_abi51);
|
|
204529
205247
|
}
|
|
204530
205248
|
static connect(address, runner) {
|
|
204531
|
-
return new ethers_1.Contract(address,
|
|
205249
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
204532
205250
|
}
|
|
204533
205251
|
};
|
|
204534
205252
|
exports2.Gnosis_safe__factory = Gnosis_safe__factory;
|
|
204535
|
-
Gnosis_safe__factory.abi =
|
|
205253
|
+
Gnosis_safe__factory.abi = _abi51;
|
|
204536
205254
|
}
|
|
204537
205255
|
});
|
|
204538
205256
|
|
|
@@ -204543,7 +205261,7 @@ var require_Proxy_factory_factory = __commonJS({
|
|
|
204543
205261
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
204544
205262
|
exports2.Proxy_factory__factory = void 0;
|
|
204545
205263
|
var ethers_1 = require_lib228();
|
|
204546
|
-
var
|
|
205264
|
+
var _abi51 = [
|
|
204547
205265
|
{
|
|
204548
205266
|
constant: false,
|
|
204549
205267
|
inputs: [
|
|
@@ -204637,14 +205355,14 @@ var require_Proxy_factory_factory = __commonJS({
|
|
|
204637
205355
|
];
|
|
204638
205356
|
var Proxy_factory__factory = class {
|
|
204639
205357
|
static createInterface() {
|
|
204640
|
-
return new ethers_1.Interface(
|
|
205358
|
+
return new ethers_1.Interface(_abi51);
|
|
204641
205359
|
}
|
|
204642
205360
|
static connect(address, runner) {
|
|
204643
|
-
return new ethers_1.Contract(address,
|
|
205361
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
204644
205362
|
}
|
|
204645
205363
|
};
|
|
204646
205364
|
exports2.Proxy_factory__factory = Proxy_factory__factory;
|
|
204647
|
-
Proxy_factory__factory.abi =
|
|
205365
|
+
Proxy_factory__factory.abi = _abi51;
|
|
204648
205366
|
}
|
|
204649
205367
|
});
|
|
204650
205368
|
|
|
@@ -204655,7 +205373,7 @@ var require_Gnosis_safe_factory2 = __commonJS({
|
|
|
204655
205373
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
204656
205374
|
exports2.Gnosis_safe__factory = void 0;
|
|
204657
205375
|
var ethers_1 = require_lib228();
|
|
204658
|
-
var
|
|
205376
|
+
var _abi51 = [
|
|
204659
205377
|
{
|
|
204660
205378
|
inputs: [],
|
|
204661
205379
|
payable: false,
|
|
@@ -205636,14 +206354,14 @@ var require_Gnosis_safe_factory2 = __commonJS({
|
|
|
205636
206354
|
];
|
|
205637
206355
|
var Gnosis_safe__factory = class {
|
|
205638
206356
|
static createInterface() {
|
|
205639
|
-
return new ethers_1.Interface(
|
|
206357
|
+
return new ethers_1.Interface(_abi51);
|
|
205640
206358
|
}
|
|
205641
206359
|
static connect(address, runner) {
|
|
205642
|
-
return new ethers_1.Contract(address,
|
|
206360
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
205643
206361
|
}
|
|
205644
206362
|
};
|
|
205645
206363
|
exports2.Gnosis_safe__factory = Gnosis_safe__factory;
|
|
205646
|
-
Gnosis_safe__factory.abi =
|
|
206364
|
+
Gnosis_safe__factory.abi = _abi51;
|
|
205647
206365
|
}
|
|
205648
206366
|
});
|
|
205649
206367
|
|
|
@@ -205654,7 +206372,7 @@ var require_Multi_send_factory = __commonJS({
|
|
|
205654
206372
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
205655
206373
|
exports2.Multi_send__factory = void 0;
|
|
205656
206374
|
var ethers_1 = require_lib228();
|
|
205657
|
-
var
|
|
206375
|
+
var _abi51 = [
|
|
205658
206376
|
{
|
|
205659
206377
|
inputs: [],
|
|
205660
206378
|
payable: false,
|
|
@@ -205679,14 +206397,14 @@ var require_Multi_send_factory = __commonJS({
|
|
|
205679
206397
|
];
|
|
205680
206398
|
var Multi_send__factory = class {
|
|
205681
206399
|
static createInterface() {
|
|
205682
|
-
return new ethers_1.Interface(
|
|
206400
|
+
return new ethers_1.Interface(_abi51);
|
|
205683
206401
|
}
|
|
205684
206402
|
static connect(address, runner) {
|
|
205685
|
-
return new ethers_1.Contract(address,
|
|
206403
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
205686
206404
|
}
|
|
205687
206405
|
};
|
|
205688
206406
|
exports2.Multi_send__factory = Multi_send__factory;
|
|
205689
|
-
Multi_send__factory.abi =
|
|
206407
|
+
Multi_send__factory.abi = _abi51;
|
|
205690
206408
|
}
|
|
205691
206409
|
});
|
|
205692
206410
|
|
|
@@ -205697,7 +206415,7 @@ var require_Proxy_factory_factory2 = __commonJS({
|
|
|
205697
206415
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
205698
206416
|
exports2.Proxy_factory__factory = void 0;
|
|
205699
206417
|
var ethers_1 = require_lib228();
|
|
205700
|
-
var
|
|
206418
|
+
var _abi51 = [
|
|
205701
206419
|
{
|
|
205702
206420
|
anonymous: false,
|
|
205703
206421
|
inputs: [
|
|
@@ -205868,14 +206586,14 @@ var require_Proxy_factory_factory2 = __commonJS({
|
|
|
205868
206586
|
];
|
|
205869
206587
|
var Proxy_factory__factory = class {
|
|
205870
206588
|
static createInterface() {
|
|
205871
|
-
return new ethers_1.Interface(
|
|
206589
|
+
return new ethers_1.Interface(_abi51);
|
|
205872
206590
|
}
|
|
205873
206591
|
static connect(address, runner) {
|
|
205874
|
-
return new ethers_1.Contract(address,
|
|
206592
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
205875
206593
|
}
|
|
205876
206594
|
};
|
|
205877
206595
|
exports2.Proxy_factory__factory = Proxy_factory__factory;
|
|
205878
|
-
Proxy_factory__factory.abi =
|
|
206596
|
+
Proxy_factory__factory.abi = _abi51;
|
|
205879
206597
|
}
|
|
205880
206598
|
});
|
|
205881
206599
|
|
|
@@ -205886,7 +206604,7 @@ var require_Gnosis_safe_factory3 = __commonJS({
|
|
|
205886
206604
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
205887
206605
|
exports2.Gnosis_safe__factory = void 0;
|
|
205888
206606
|
var ethers_1 = require_lib228();
|
|
205889
|
-
var
|
|
206607
|
+
var _abi51 = [
|
|
205890
206608
|
{
|
|
205891
206609
|
inputs: [],
|
|
205892
206610
|
payable: false,
|
|
@@ -206888,14 +207606,14 @@ var require_Gnosis_safe_factory3 = __commonJS({
|
|
|
206888
207606
|
];
|
|
206889
207607
|
var Gnosis_safe__factory = class {
|
|
206890
207608
|
static createInterface() {
|
|
206891
|
-
return new ethers_1.Interface(
|
|
207609
|
+
return new ethers_1.Interface(_abi51);
|
|
206892
207610
|
}
|
|
206893
207611
|
static connect(address, runner) {
|
|
206894
|
-
return new ethers_1.Contract(address,
|
|
207612
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
206895
207613
|
}
|
|
206896
207614
|
};
|
|
206897
207615
|
exports2.Gnosis_safe__factory = Gnosis_safe__factory;
|
|
206898
|
-
Gnosis_safe__factory.abi =
|
|
207616
|
+
Gnosis_safe__factory.abi = _abi51;
|
|
206899
207617
|
}
|
|
206900
207618
|
});
|
|
206901
207619
|
|
|
@@ -206906,7 +207624,7 @@ var require_Compatibility_fallback_handler_factory = __commonJS({
|
|
|
206906
207624
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
206907
207625
|
exports2.Compatibility_fallback_handler__factory = void 0;
|
|
206908
207626
|
var ethers_1 = require_lib228();
|
|
206909
|
-
var
|
|
207627
|
+
var _abi51 = [
|
|
206910
207628
|
{
|
|
206911
207629
|
inputs: [],
|
|
206912
207630
|
name: "NAME",
|
|
@@ -207233,14 +207951,14 @@ var require_Compatibility_fallback_handler_factory = __commonJS({
|
|
|
207233
207951
|
];
|
|
207234
207952
|
var Compatibility_fallback_handler__factory = class {
|
|
207235
207953
|
static createInterface() {
|
|
207236
|
-
return new ethers_1.Interface(
|
|
207954
|
+
return new ethers_1.Interface(_abi51);
|
|
207237
207955
|
}
|
|
207238
207956
|
static connect(address, runner) {
|
|
207239
|
-
return new ethers_1.Contract(address,
|
|
207957
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
207240
207958
|
}
|
|
207241
207959
|
};
|
|
207242
207960
|
exports2.Compatibility_fallback_handler__factory = Compatibility_fallback_handler__factory;
|
|
207243
|
-
Compatibility_fallback_handler__factory.abi =
|
|
207961
|
+
Compatibility_fallback_handler__factory.abi = _abi51;
|
|
207244
207962
|
}
|
|
207245
207963
|
});
|
|
207246
207964
|
|
|
@@ -207251,7 +207969,7 @@ var require_Create_call_factory = __commonJS({
|
|
|
207251
207969
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
207252
207970
|
exports2.Create_call__factory = void 0;
|
|
207253
207971
|
var ethers_1 = require_lib228();
|
|
207254
|
-
var
|
|
207972
|
+
var _abi51 = [
|
|
207255
207973
|
{
|
|
207256
207974
|
anonymous: false,
|
|
207257
207975
|
inputs: [
|
|
@@ -207321,14 +208039,14 @@ var require_Create_call_factory = __commonJS({
|
|
|
207321
208039
|
];
|
|
207322
208040
|
var Create_call__factory = class {
|
|
207323
208041
|
static createInterface() {
|
|
207324
|
-
return new ethers_1.Interface(
|
|
208042
|
+
return new ethers_1.Interface(_abi51);
|
|
207325
208043
|
}
|
|
207326
208044
|
static connect(address, runner) {
|
|
207327
|
-
return new ethers_1.Contract(address,
|
|
208045
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
207328
208046
|
}
|
|
207329
208047
|
};
|
|
207330
208048
|
exports2.Create_call__factory = Create_call__factory;
|
|
207331
|
-
Create_call__factory.abi =
|
|
208049
|
+
Create_call__factory.abi = _abi51;
|
|
207332
208050
|
}
|
|
207333
208051
|
});
|
|
207334
208052
|
|
|
@@ -207339,7 +208057,7 @@ var require_Gnosis_safe_factory4 = __commonJS({
|
|
|
207339
208057
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
207340
208058
|
exports2.Gnosis_safe__factory = void 0;
|
|
207341
208059
|
var ethers_1 = require_lib228();
|
|
207342
|
-
var
|
|
208060
|
+
var _abi51 = [
|
|
207343
208061
|
{
|
|
207344
208062
|
inputs: [],
|
|
207345
208063
|
stateMutability: "nonpayable",
|
|
@@ -208374,14 +209092,14 @@ var require_Gnosis_safe_factory4 = __commonJS({
|
|
|
208374
209092
|
];
|
|
208375
209093
|
var Gnosis_safe__factory = class {
|
|
208376
209094
|
static createInterface() {
|
|
208377
|
-
return new ethers_1.Interface(
|
|
209095
|
+
return new ethers_1.Interface(_abi51);
|
|
208378
209096
|
}
|
|
208379
209097
|
static connect(address, runner) {
|
|
208380
|
-
return new ethers_1.Contract(address,
|
|
209098
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
208381
209099
|
}
|
|
208382
209100
|
};
|
|
208383
209101
|
exports2.Gnosis_safe__factory = Gnosis_safe__factory;
|
|
208384
|
-
Gnosis_safe__factory.abi =
|
|
209102
|
+
Gnosis_safe__factory.abi = _abi51;
|
|
208385
209103
|
}
|
|
208386
209104
|
});
|
|
208387
209105
|
|
|
@@ -208392,7 +209110,7 @@ var require_Multi_send_factory2 = __commonJS({
|
|
|
208392
209110
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
208393
209111
|
exports2.Multi_send__factory = void 0;
|
|
208394
209112
|
var ethers_1 = require_lib228();
|
|
208395
|
-
var
|
|
209113
|
+
var _abi51 = [
|
|
208396
209114
|
{
|
|
208397
209115
|
inputs: [],
|
|
208398
209116
|
stateMutability: "nonpayable",
|
|
@@ -208414,14 +209132,14 @@ var require_Multi_send_factory2 = __commonJS({
|
|
|
208414
209132
|
];
|
|
208415
209133
|
var Multi_send__factory = class {
|
|
208416
209134
|
static createInterface() {
|
|
208417
|
-
return new ethers_1.Interface(
|
|
209135
|
+
return new ethers_1.Interface(_abi51);
|
|
208418
209136
|
}
|
|
208419
209137
|
static connect(address, runner) {
|
|
208420
|
-
return new ethers_1.Contract(address,
|
|
209138
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
208421
209139
|
}
|
|
208422
209140
|
};
|
|
208423
209141
|
exports2.Multi_send__factory = Multi_send__factory;
|
|
208424
|
-
Multi_send__factory.abi =
|
|
209142
|
+
Multi_send__factory.abi = _abi51;
|
|
208425
209143
|
}
|
|
208426
209144
|
});
|
|
208427
209145
|
|
|
@@ -208432,7 +209150,7 @@ var require_Multi_send_call_only_factory = __commonJS({
|
|
|
208432
209150
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
208433
209151
|
exports2.Multi_send_call_only__factory = void 0;
|
|
208434
209152
|
var ethers_1 = require_lib228();
|
|
208435
|
-
var
|
|
209153
|
+
var _abi51 = [
|
|
208436
209154
|
{
|
|
208437
209155
|
inputs: [
|
|
208438
209156
|
{
|
|
@@ -208449,14 +209167,14 @@ var require_Multi_send_call_only_factory = __commonJS({
|
|
|
208449
209167
|
];
|
|
208450
209168
|
var Multi_send_call_only__factory = class {
|
|
208451
209169
|
static createInterface() {
|
|
208452
|
-
return new ethers_1.Interface(
|
|
209170
|
+
return new ethers_1.Interface(_abi51);
|
|
208453
209171
|
}
|
|
208454
209172
|
static connect(address, runner) {
|
|
208455
|
-
return new ethers_1.Contract(address,
|
|
209173
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
208456
209174
|
}
|
|
208457
209175
|
};
|
|
208458
209176
|
exports2.Multi_send_call_only__factory = Multi_send_call_only__factory;
|
|
208459
|
-
Multi_send_call_only__factory.abi =
|
|
209177
|
+
Multi_send_call_only__factory.abi = _abi51;
|
|
208460
209178
|
}
|
|
208461
209179
|
});
|
|
208462
209180
|
|
|
@@ -208467,7 +209185,7 @@ var require_Proxy_factory_factory3 = __commonJS({
|
|
|
208467
209185
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
208468
209186
|
exports2.Proxy_factory__factory = void 0;
|
|
208469
209187
|
var ethers_1 = require_lib228();
|
|
208470
|
-
var
|
|
209188
|
+
var _abi51 = [
|
|
208471
209189
|
{
|
|
208472
209190
|
anonymous: false,
|
|
208473
209191
|
inputs: [
|
|
@@ -208632,14 +209350,14 @@ var require_Proxy_factory_factory3 = __commonJS({
|
|
|
208632
209350
|
];
|
|
208633
209351
|
var Proxy_factory__factory = class {
|
|
208634
209352
|
static createInterface() {
|
|
208635
|
-
return new ethers_1.Interface(
|
|
209353
|
+
return new ethers_1.Interface(_abi51);
|
|
208636
209354
|
}
|
|
208637
209355
|
static connect(address, runner) {
|
|
208638
|
-
return new ethers_1.Contract(address,
|
|
209356
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
208639
209357
|
}
|
|
208640
209358
|
};
|
|
208641
209359
|
exports2.Proxy_factory__factory = Proxy_factory__factory;
|
|
208642
|
-
Proxy_factory__factory.abi =
|
|
209360
|
+
Proxy_factory__factory.abi = _abi51;
|
|
208643
209361
|
}
|
|
208644
209362
|
});
|
|
208645
209363
|
|
|
@@ -208650,7 +209368,7 @@ var require_Sign_message_lib_factory = __commonJS({
|
|
|
208650
209368
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
208651
209369
|
exports2.Sign_message_lib__factory = void 0;
|
|
208652
209370
|
var ethers_1 = require_lib228();
|
|
208653
|
-
var
|
|
209371
|
+
var _abi51 = [
|
|
208654
209372
|
{
|
|
208655
209373
|
anonymous: false,
|
|
208656
209374
|
inputs: [
|
|
@@ -208699,14 +209417,14 @@ var require_Sign_message_lib_factory = __commonJS({
|
|
|
208699
209417
|
];
|
|
208700
209418
|
var Sign_message_lib__factory = class {
|
|
208701
209419
|
static createInterface() {
|
|
208702
|
-
return new ethers_1.Interface(
|
|
209420
|
+
return new ethers_1.Interface(_abi51);
|
|
208703
209421
|
}
|
|
208704
209422
|
static connect(address, runner) {
|
|
208705
|
-
return new ethers_1.Contract(address,
|
|
209423
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
208706
209424
|
}
|
|
208707
209425
|
};
|
|
208708
209426
|
exports2.Sign_message_lib__factory = Sign_message_lib__factory;
|
|
208709
|
-
Sign_message_lib__factory.abi =
|
|
209427
|
+
Sign_message_lib__factory.abi = _abi51;
|
|
208710
209428
|
}
|
|
208711
209429
|
});
|
|
208712
209430
|
|
|
@@ -208717,7 +209435,7 @@ var require_Simulate_tx_accessor_factory = __commonJS({
|
|
|
208717
209435
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
208718
209436
|
exports2.Simulate_tx_accessor__factory = void 0;
|
|
208719
209437
|
var ethers_1 = require_lib228();
|
|
208720
|
-
var
|
|
209438
|
+
var _abi51 = [
|
|
208721
209439
|
{
|
|
208722
209440
|
inputs: [],
|
|
208723
209441
|
stateMutability: "nonpayable",
|
|
@@ -208770,14 +209488,14 @@ var require_Simulate_tx_accessor_factory = __commonJS({
|
|
|
208770
209488
|
];
|
|
208771
209489
|
var Simulate_tx_accessor__factory = class {
|
|
208772
209490
|
static createInterface() {
|
|
208773
|
-
return new ethers_1.Interface(
|
|
209491
|
+
return new ethers_1.Interface(_abi51);
|
|
208774
209492
|
}
|
|
208775
209493
|
static connect(address, runner) {
|
|
208776
|
-
return new ethers_1.Contract(address,
|
|
209494
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
208777
209495
|
}
|
|
208778
209496
|
};
|
|
208779
209497
|
exports2.Simulate_tx_accessor__factory = Simulate_tx_accessor__factory;
|
|
208780
|
-
Simulate_tx_accessor__factory.abi =
|
|
209498
|
+
Simulate_tx_accessor__factory.abi = _abi51;
|
|
208781
209499
|
}
|
|
208782
209500
|
});
|
|
208783
209501
|
|
|
@@ -208788,7 +209506,7 @@ var require_Compatibility_fallback_handler_factory2 = __commonJS({
|
|
|
208788
209506
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
208789
209507
|
exports2.Compatibility_fallback_handler__factory = void 0;
|
|
208790
209508
|
var ethers_1 = require_lib228();
|
|
208791
|
-
var
|
|
209509
|
+
var _abi51 = [
|
|
208792
209510
|
{
|
|
208793
209511
|
inputs: [
|
|
208794
209512
|
{
|
|
@@ -209113,14 +209831,14 @@ var require_Compatibility_fallback_handler_factory2 = __commonJS({
|
|
|
209113
209831
|
];
|
|
209114
209832
|
var Compatibility_fallback_handler__factory = class {
|
|
209115
209833
|
static createInterface() {
|
|
209116
|
-
return new ethers_1.Interface(
|
|
209834
|
+
return new ethers_1.Interface(_abi51);
|
|
209117
209835
|
}
|
|
209118
209836
|
static connect(address, runner) {
|
|
209119
|
-
return new ethers_1.Contract(address,
|
|
209837
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
209120
209838
|
}
|
|
209121
209839
|
};
|
|
209122
209840
|
exports2.Compatibility_fallback_handler__factory = Compatibility_fallback_handler__factory;
|
|
209123
|
-
Compatibility_fallback_handler__factory.abi =
|
|
209841
|
+
Compatibility_fallback_handler__factory.abi = _abi51;
|
|
209124
209842
|
}
|
|
209125
209843
|
});
|
|
209126
209844
|
|
|
@@ -209131,7 +209849,7 @@ var require_Create_call_factory2 = __commonJS({
|
|
|
209131
209849
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
209132
209850
|
exports2.Create_call__factory = void 0;
|
|
209133
209851
|
var ethers_1 = require_lib228();
|
|
209134
|
-
var
|
|
209852
|
+
var _abi51 = [
|
|
209135
209853
|
{
|
|
209136
209854
|
anonymous: false,
|
|
209137
209855
|
inputs: [
|
|
@@ -209201,14 +209919,14 @@ var require_Create_call_factory2 = __commonJS({
|
|
|
209201
209919
|
];
|
|
209202
209920
|
var Create_call__factory = class {
|
|
209203
209921
|
static createInterface() {
|
|
209204
|
-
return new ethers_1.Interface(
|
|
209922
|
+
return new ethers_1.Interface(_abi51);
|
|
209205
209923
|
}
|
|
209206
209924
|
static connect(address, runner) {
|
|
209207
|
-
return new ethers_1.Contract(address,
|
|
209925
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
209208
209926
|
}
|
|
209209
209927
|
};
|
|
209210
209928
|
exports2.Create_call__factory = Create_call__factory;
|
|
209211
|
-
Create_call__factory.abi =
|
|
209929
|
+
Create_call__factory.abi = _abi51;
|
|
209212
209930
|
}
|
|
209213
209931
|
});
|
|
209214
209932
|
|
|
@@ -209219,7 +209937,7 @@ var require_Multi_send_factory3 = __commonJS({
|
|
|
209219
209937
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
209220
209938
|
exports2.Multi_send__factory = void 0;
|
|
209221
209939
|
var ethers_1 = require_lib228();
|
|
209222
|
-
var
|
|
209940
|
+
var _abi51 = [
|
|
209223
209941
|
{
|
|
209224
209942
|
inputs: [],
|
|
209225
209943
|
stateMutability: "nonpayable",
|
|
@@ -209241,14 +209959,14 @@ var require_Multi_send_factory3 = __commonJS({
|
|
|
209241
209959
|
];
|
|
209242
209960
|
var Multi_send__factory = class {
|
|
209243
209961
|
static createInterface() {
|
|
209244
|
-
return new ethers_1.Interface(
|
|
209962
|
+
return new ethers_1.Interface(_abi51);
|
|
209245
209963
|
}
|
|
209246
209964
|
static connect(address, runner) {
|
|
209247
|
-
return new ethers_1.Contract(address,
|
|
209965
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
209248
209966
|
}
|
|
209249
209967
|
};
|
|
209250
209968
|
exports2.Multi_send__factory = Multi_send__factory;
|
|
209251
|
-
Multi_send__factory.abi =
|
|
209969
|
+
Multi_send__factory.abi = _abi51;
|
|
209252
209970
|
}
|
|
209253
209971
|
});
|
|
209254
209972
|
|
|
@@ -209259,7 +209977,7 @@ var require_Multi_send_call_only_factory2 = __commonJS({
|
|
|
209259
209977
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
209260
209978
|
exports2.Multi_send_call_only__factory = void 0;
|
|
209261
209979
|
var ethers_1 = require_lib228();
|
|
209262
|
-
var
|
|
209980
|
+
var _abi51 = [
|
|
209263
209981
|
{
|
|
209264
209982
|
inputs: [
|
|
209265
209983
|
{
|
|
@@ -209276,14 +209994,14 @@ var require_Multi_send_call_only_factory2 = __commonJS({
|
|
|
209276
209994
|
];
|
|
209277
209995
|
var Multi_send_call_only__factory = class {
|
|
209278
209996
|
static createInterface() {
|
|
209279
|
-
return new ethers_1.Interface(
|
|
209997
|
+
return new ethers_1.Interface(_abi51);
|
|
209280
209998
|
}
|
|
209281
209999
|
static connect(address, runner) {
|
|
209282
|
-
return new ethers_1.Contract(address,
|
|
210000
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
209283
210001
|
}
|
|
209284
210002
|
};
|
|
209285
210003
|
exports2.Multi_send_call_only__factory = Multi_send_call_only__factory;
|
|
209286
|
-
Multi_send_call_only__factory.abi =
|
|
210004
|
+
Multi_send_call_only__factory.abi = _abi51;
|
|
209287
210005
|
}
|
|
209288
210006
|
});
|
|
209289
210007
|
|
|
@@ -209294,7 +210012,7 @@ var require_Safe_factory = __commonJS({
|
|
|
209294
210012
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
209295
210013
|
exports2.Safe__factory = void 0;
|
|
209296
210014
|
var ethers_1 = require_lib228();
|
|
209297
|
-
var
|
|
210015
|
+
var _abi51 = [
|
|
209298
210016
|
{
|
|
209299
210017
|
inputs: [],
|
|
209300
210018
|
stateMutability: "nonpayable",
|
|
@@ -210295,14 +211013,14 @@ var require_Safe_factory = __commonJS({
|
|
|
210295
211013
|
];
|
|
210296
211014
|
var Safe__factory = class {
|
|
210297
211015
|
static createInterface() {
|
|
210298
|
-
return new ethers_1.Interface(
|
|
211016
|
+
return new ethers_1.Interface(_abi51);
|
|
210299
211017
|
}
|
|
210300
211018
|
static connect(address, runner) {
|
|
210301
|
-
return new ethers_1.Contract(address,
|
|
211019
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
210302
211020
|
}
|
|
210303
211021
|
};
|
|
210304
211022
|
exports2.Safe__factory = Safe__factory;
|
|
210305
|
-
Safe__factory.abi =
|
|
211023
|
+
Safe__factory.abi = _abi51;
|
|
210306
211024
|
}
|
|
210307
211025
|
});
|
|
210308
211026
|
|
|
@@ -210313,7 +211031,7 @@ var require_Safe_proxy_factory_factory = __commonJS({
|
|
|
210313
211031
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
210314
211032
|
exports2.Safe_proxy_factory__factory = void 0;
|
|
210315
211033
|
var ethers_1 = require_lib228();
|
|
210316
|
-
var
|
|
211034
|
+
var _abi51 = [
|
|
210317
211035
|
{
|
|
210318
211036
|
anonymous: false,
|
|
210319
211037
|
inputs: [
|
|
@@ -210454,14 +211172,14 @@ var require_Safe_proxy_factory_factory = __commonJS({
|
|
|
210454
211172
|
];
|
|
210455
211173
|
var Safe_proxy_factory__factory = class {
|
|
210456
211174
|
static createInterface() {
|
|
210457
|
-
return new ethers_1.Interface(
|
|
211175
|
+
return new ethers_1.Interface(_abi51);
|
|
210458
211176
|
}
|
|
210459
211177
|
static connect(address, runner) {
|
|
210460
|
-
return new ethers_1.Contract(address,
|
|
211178
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
210461
211179
|
}
|
|
210462
211180
|
};
|
|
210463
211181
|
exports2.Safe_proxy_factory__factory = Safe_proxy_factory__factory;
|
|
210464
|
-
Safe_proxy_factory__factory.abi =
|
|
211182
|
+
Safe_proxy_factory__factory.abi = _abi51;
|
|
210465
211183
|
}
|
|
210466
211184
|
});
|
|
210467
211185
|
|
|
@@ -210472,7 +211190,7 @@ var require_Sign_message_lib_factory2 = __commonJS({
|
|
|
210472
211190
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
210473
211191
|
exports2.Sign_message_lib__factory = void 0;
|
|
210474
211192
|
var ethers_1 = require_lib228();
|
|
210475
|
-
var
|
|
211193
|
+
var _abi51 = [
|
|
210476
211194
|
{
|
|
210477
211195
|
anonymous: false,
|
|
210478
211196
|
inputs: [
|
|
@@ -210521,14 +211239,14 @@ var require_Sign_message_lib_factory2 = __commonJS({
|
|
|
210521
211239
|
];
|
|
210522
211240
|
var Sign_message_lib__factory = class {
|
|
210523
211241
|
static createInterface() {
|
|
210524
|
-
return new ethers_1.Interface(
|
|
211242
|
+
return new ethers_1.Interface(_abi51);
|
|
210525
211243
|
}
|
|
210526
211244
|
static connect(address, runner) {
|
|
210527
|
-
return new ethers_1.Contract(address,
|
|
211245
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
210528
211246
|
}
|
|
210529
211247
|
};
|
|
210530
211248
|
exports2.Sign_message_lib__factory = Sign_message_lib__factory;
|
|
210531
|
-
Sign_message_lib__factory.abi =
|
|
211249
|
+
Sign_message_lib__factory.abi = _abi51;
|
|
210532
211250
|
}
|
|
210533
211251
|
});
|
|
210534
211252
|
|
|
@@ -210539,7 +211257,7 @@ var require_Simulate_tx_accessor_factory2 = __commonJS({
|
|
|
210539
211257
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
210540
211258
|
exports2.Simulate_tx_accessor__factory = void 0;
|
|
210541
211259
|
var ethers_1 = require_lib228();
|
|
210542
|
-
var
|
|
211260
|
+
var _abi51 = [
|
|
210543
211261
|
{
|
|
210544
211262
|
inputs: [],
|
|
210545
211263
|
stateMutability: "nonpayable",
|
|
@@ -210592,14 +211310,14 @@ var require_Simulate_tx_accessor_factory2 = __commonJS({
|
|
|
210592
211310
|
];
|
|
210593
211311
|
var Simulate_tx_accessor__factory = class {
|
|
210594
211312
|
static createInterface() {
|
|
210595
|
-
return new ethers_1.Interface(
|
|
211313
|
+
return new ethers_1.Interface(_abi51);
|
|
210596
211314
|
}
|
|
210597
211315
|
static connect(address, runner) {
|
|
210598
|
-
return new ethers_1.Contract(address,
|
|
211316
|
+
return new ethers_1.Contract(address, _abi51, runner);
|
|
210599
211317
|
}
|
|
210600
211318
|
};
|
|
210601
211319
|
exports2.Simulate_tx_accessor__factory = Simulate_tx_accessor__factory;
|
|
210602
|
-
Simulate_tx_accessor__factory.abi =
|
|
211320
|
+
Simulate_tx_accessor__factory.abi = _abi51;
|
|
210603
211321
|
}
|
|
210604
211322
|
});
|
|
210605
211323
|
|
|
@@ -276094,7 +276812,7 @@ var require_utils33 = __commonJS({
|
|
|
276094
276812
|
return mod2 && mod2.__esModule ? mod2 : { "default": mod2 };
|
|
276095
276813
|
};
|
|
276096
276814
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
276097
|
-
exports2.isCellInRange = exports2.areCellEqual = exports2.calculateRangeCoordinate = exports2.
|
|
276815
|
+
exports2.isCellInRange = exports2.areCellEqual = exports2.calculateRangeCoordinate = exports2.flatten = exports2.extractTruncates = exports2.sumArray = exports2.sequence = exports2.distributeUnevenly = exports2.countSpaceSequence = exports2.groupBySizes = exports2.makeBorderConfig = exports2.splitAnsi = exports2.normalizeString = void 0;
|
|
276098
276816
|
var slice_ansi_1 = __importDefault3(require_slice_ansi());
|
|
276099
276817
|
var string_width_1 = __importDefault3(require_string_width());
|
|
276100
276818
|
var strip_ansi_1 = __importDefault3(require_strip_ansi());
|
|
@@ -276164,15 +276882,6 @@ var require_utils33 = __commonJS({
|
|
|
276164
276882
|
return [].concat(...array);
|
|
276165
276883
|
};
|
|
276166
276884
|
exports2.flatten = flatten2;
|
|
276167
|
-
var findOriginalRowIndex = (mappedRowHeights, mappedRowIndex) => {
|
|
276168
|
-
const rowIndexMapping = (0, exports2.flatten)(mappedRowHeights.map((height, index) => {
|
|
276169
|
-
return Array.from({ length: height }, () => {
|
|
276170
|
-
return index;
|
|
276171
|
-
});
|
|
276172
|
-
}));
|
|
276173
|
-
return rowIndexMapping[mappedRowIndex];
|
|
276174
|
-
};
|
|
276175
|
-
exports2.findOriginalRowIndex = findOriginalRowIndex;
|
|
276176
276885
|
var calculateRangeCoordinate = (spanningCellConfig) => {
|
|
276177
276886
|
const { row, col, colSpan = 1, rowSpan = 1 } = spanningCellConfig;
|
|
276178
276887
|
return {
|
|
@@ -280108,10 +280817,11 @@ var require_spanningCellManager = __commonJS({
|
|
|
280108
280817
|
});
|
|
280109
280818
|
const rangeCache = {};
|
|
280110
280819
|
let rowHeights = [];
|
|
280820
|
+
let rowIndexMapping = [];
|
|
280111
280821
|
return {
|
|
280112
280822
|
getContainingRange: (cell, options) => {
|
|
280113
280823
|
var _a;
|
|
280114
|
-
const originalRow = (options === null || options === void 0 ? void 0 : options.mapped) ?
|
|
280824
|
+
const originalRow = (options === null || options === void 0 ? void 0 : options.mapped) ? rowIndexMapping[cell.row] : cell.row;
|
|
280115
280825
|
const range2 = findRangeConfig({
|
|
280116
280826
|
...cell,
|
|
280117
280827
|
row: originalRow
|
|
@@ -280136,8 +280846,16 @@ var require_spanningCellManager = __commonJS({
|
|
|
280136
280846
|
return inSameRange(cell1, cell2, ranges);
|
|
280137
280847
|
},
|
|
280138
280848
|
rowHeights,
|
|
280849
|
+
rowIndexMapping,
|
|
280139
280850
|
setRowHeights: (_rowHeights) => {
|
|
280140
280851
|
rowHeights = _rowHeights;
|
|
280852
|
+
},
|
|
280853
|
+
setRowIndexMapping: (mappedRowHeights) => {
|
|
280854
|
+
rowIndexMapping = (0, utils_1.flatten)(mappedRowHeights.map((height, index) => {
|
|
280855
|
+
return Array.from({ length: height }, () => {
|
|
280856
|
+
return index;
|
|
280857
|
+
});
|
|
280858
|
+
}));
|
|
280141
280859
|
}
|
|
280142
280860
|
};
|
|
280143
280861
|
};
|
|
@@ -280314,6 +281032,7 @@ var require_table = __commonJS({
|
|
|
280314
281032
|
rows = (0, truncateTableData_1.truncateTableData)(injectedRows, (0, utils_1.extractTruncates)(config));
|
|
280315
281033
|
const rowHeights = (0, calculateRowHeights_1.calculateRowHeights)(rows, config);
|
|
280316
281034
|
config.spanningCellManager.setRowHeights(rowHeights);
|
|
281035
|
+
config.spanningCellManager.setRowIndexMapping(rowHeights);
|
|
280317
281036
|
rows = (0, mapDataUsingRowHeights_1.mapDataUsingRowHeights)(rows, rowHeights, config);
|
|
280318
281037
|
rows = (0, alignTableData_1.alignTableData)(rows, config);
|
|
280319
281038
|
rows = (0, padTableData_1.padTableData)(rows, config);
|
|
@@ -332727,19 +333446,6 @@ var _abi39 = [
|
|
|
332727
333446
|
outputs: [],
|
|
332728
333447
|
stateMutability: "nonpayable"
|
|
332729
333448
|
},
|
|
332730
|
-
{
|
|
332731
|
-
type: "function",
|
|
332732
|
-
name: "distributor",
|
|
332733
|
-
inputs: [],
|
|
332734
|
-
outputs: [
|
|
332735
|
-
{
|
|
332736
|
-
name: "",
|
|
332737
|
-
type: "address",
|
|
332738
|
-
internalType: "address"
|
|
332739
|
-
}
|
|
332740
|
-
],
|
|
332741
|
-
stateMutability: "view"
|
|
332742
|
-
},
|
|
332743
333449
|
{
|
|
332744
333450
|
type: "function",
|
|
332745
333451
|
name: "exit",
|
|
@@ -332819,19 +333525,6 @@ var _abi39 = [
|
|
|
332819
333525
|
outputs: [],
|
|
332820
333526
|
stateMutability: "nonpayable"
|
|
332821
333527
|
},
|
|
332822
|
-
{
|
|
332823
|
-
type: "function",
|
|
332824
|
-
name: "setDistributor",
|
|
332825
|
-
inputs: [
|
|
332826
|
-
{
|
|
332827
|
-
name: "distributor_",
|
|
332828
|
-
type: "address",
|
|
332829
|
-
internalType: "address"
|
|
332830
|
-
}
|
|
332831
|
-
],
|
|
332832
|
-
outputs: [],
|
|
332833
|
-
stateMutability: "nonpayable"
|
|
332834
|
-
},
|
|
332835
333528
|
{
|
|
332836
333529
|
type: "function",
|
|
332837
333530
|
name: "startFarming",
|
|
@@ -332850,6 +333543,13 @@ var _abi39 = [
|
|
|
332850
333543
|
outputs: [],
|
|
332851
333544
|
stateMutability: "nonpayable"
|
|
332852
333545
|
},
|
|
333546
|
+
{
|
|
333547
|
+
type: "function",
|
|
333548
|
+
name: "stopFarming",
|
|
333549
|
+
inputs: [],
|
|
333550
|
+
outputs: [],
|
|
333551
|
+
stateMutability: "nonpayable"
|
|
333552
|
+
},
|
|
332853
333553
|
{
|
|
332854
333554
|
type: "function",
|
|
332855
333555
|
name: "totalSupply",
|
|
@@ -332954,25 +333654,6 @@ var _abi39 = [
|
|
|
332954
333654
|
],
|
|
332955
333655
|
anonymous: false
|
|
332956
333656
|
},
|
|
332957
|
-
{
|
|
332958
|
-
type: "event",
|
|
332959
|
-
name: "DistributorChanged",
|
|
332960
|
-
inputs: [
|
|
332961
|
-
{
|
|
332962
|
-
name: "oldDistributor",
|
|
332963
|
-
type: "address",
|
|
332964
|
-
indexed: false,
|
|
332965
|
-
internalType: "address"
|
|
332966
|
-
},
|
|
332967
|
-
{
|
|
332968
|
-
name: "newDistributor",
|
|
332969
|
-
type: "address",
|
|
332970
|
-
indexed: false,
|
|
332971
|
-
internalType: "address"
|
|
332972
|
-
}
|
|
332973
|
-
],
|
|
332974
|
-
anonymous: false
|
|
332975
|
-
},
|
|
332976
333657
|
{
|
|
332977
333658
|
type: "event",
|
|
332978
333659
|
name: "RewardUpdated",
|
|
@@ -334220,25 +334901,134 @@ var _abi44 = [
|
|
|
334220
334901
|
},
|
|
334221
334902
|
{
|
|
334222
334903
|
type: "function",
|
|
334223
|
-
name: "tryBlockAndAggregate",
|
|
334904
|
+
name: "tryBlockAndAggregate",
|
|
334905
|
+
inputs: [
|
|
334906
|
+
{
|
|
334907
|
+
name: "requireSuccess",
|
|
334908
|
+
type: "bool",
|
|
334909
|
+
internalType: "bool"
|
|
334910
|
+
},
|
|
334911
|
+
{
|
|
334912
|
+
name: "calls",
|
|
334913
|
+
type: "tuple[]",
|
|
334914
|
+
internalType: "struct IMulticall3.Call[]",
|
|
334915
|
+
components: [
|
|
334916
|
+
{
|
|
334917
|
+
name: "target",
|
|
334918
|
+
type: "address",
|
|
334919
|
+
internalType: "address"
|
|
334920
|
+
},
|
|
334921
|
+
{
|
|
334922
|
+
name: "callData",
|
|
334923
|
+
type: "bytes",
|
|
334924
|
+
internalType: "bytes"
|
|
334925
|
+
}
|
|
334926
|
+
]
|
|
334927
|
+
}
|
|
334928
|
+
],
|
|
334929
|
+
outputs: [
|
|
334930
|
+
{
|
|
334931
|
+
name: "blockNumber",
|
|
334932
|
+
type: "uint256",
|
|
334933
|
+
internalType: "uint256"
|
|
334934
|
+
},
|
|
334935
|
+
{
|
|
334936
|
+
name: "blockHash",
|
|
334937
|
+
type: "bytes32",
|
|
334938
|
+
internalType: "bytes32"
|
|
334939
|
+
},
|
|
334940
|
+
{
|
|
334941
|
+
name: "returnData",
|
|
334942
|
+
type: "tuple[]",
|
|
334943
|
+
internalType: "struct IMulticall3.Result[]",
|
|
334944
|
+
components: [
|
|
334945
|
+
{
|
|
334946
|
+
name: "success",
|
|
334947
|
+
type: "bool",
|
|
334948
|
+
internalType: "bool"
|
|
334949
|
+
},
|
|
334950
|
+
{
|
|
334951
|
+
name: "returnData",
|
|
334952
|
+
type: "bytes",
|
|
334953
|
+
internalType: "bytes"
|
|
334954
|
+
}
|
|
334955
|
+
]
|
|
334956
|
+
}
|
|
334957
|
+
],
|
|
334958
|
+
stateMutability: "payable"
|
|
334959
|
+
}
|
|
334960
|
+
];
|
|
334961
|
+
var IMulticall3__factory = class {
|
|
334962
|
+
static abi = _abi44;
|
|
334963
|
+
static createInterface() {
|
|
334964
|
+
return new Interface(_abi44);
|
|
334965
|
+
}
|
|
334966
|
+
static connect(address, runner) {
|
|
334967
|
+
return new Contract(address, _abi44, runner);
|
|
334968
|
+
}
|
|
334969
|
+
};
|
|
334970
|
+
|
|
334971
|
+
// ../../packages/types/dist/generated/factories/v3/IPartialLiquidationBotV3__factory.js
|
|
334972
|
+
var _abi45 = [
|
|
334973
|
+
{
|
|
334974
|
+
type: "function",
|
|
334975
|
+
name: "feeScaleFactor",
|
|
334976
|
+
inputs: [],
|
|
334977
|
+
outputs: [
|
|
334978
|
+
{
|
|
334979
|
+
name: "",
|
|
334980
|
+
type: "uint16",
|
|
334981
|
+
internalType: "uint16"
|
|
334982
|
+
}
|
|
334983
|
+
],
|
|
334984
|
+
stateMutability: "view"
|
|
334985
|
+
},
|
|
334986
|
+
{
|
|
334987
|
+
type: "function",
|
|
334988
|
+
name: "liquidateExactCollateral",
|
|
334224
334989
|
inputs: [
|
|
334225
334990
|
{
|
|
334226
|
-
name: "
|
|
334227
|
-
type: "
|
|
334228
|
-
internalType: "
|
|
334991
|
+
name: "creditAccount",
|
|
334992
|
+
type: "address",
|
|
334993
|
+
internalType: "address"
|
|
334229
334994
|
},
|
|
334230
334995
|
{
|
|
334231
|
-
name: "
|
|
334996
|
+
name: "token",
|
|
334997
|
+
type: "address",
|
|
334998
|
+
internalType: "address"
|
|
334999
|
+
},
|
|
335000
|
+
{
|
|
335001
|
+
name: "seizedAmount",
|
|
335002
|
+
type: "uint256",
|
|
335003
|
+
internalType: "uint256"
|
|
335004
|
+
},
|
|
335005
|
+
{
|
|
335006
|
+
name: "maxRepaidAmount",
|
|
335007
|
+
type: "uint256",
|
|
335008
|
+
internalType: "uint256"
|
|
335009
|
+
},
|
|
335010
|
+
{
|
|
335011
|
+
name: "to",
|
|
335012
|
+
type: "address",
|
|
335013
|
+
internalType: "address"
|
|
335014
|
+
},
|
|
335015
|
+
{
|
|
335016
|
+
name: "priceUpdates",
|
|
334232
335017
|
type: "tuple[]",
|
|
334233
|
-
internalType: "struct
|
|
335018
|
+
internalType: "struct IPartialLiquidationBotV3.PriceUpdate[]",
|
|
334234
335019
|
components: [
|
|
334235
335020
|
{
|
|
334236
|
-
name: "
|
|
335021
|
+
name: "token",
|
|
334237
335022
|
type: "address",
|
|
334238
335023
|
internalType: "address"
|
|
334239
335024
|
},
|
|
334240
335025
|
{
|
|
334241
|
-
name: "
|
|
335026
|
+
name: "reserve",
|
|
335027
|
+
type: "bool",
|
|
335028
|
+
internalType: "bool"
|
|
335029
|
+
},
|
|
335030
|
+
{
|
|
335031
|
+
name: "data",
|
|
334242
335032
|
type: "bytes",
|
|
334243
335033
|
internalType: "bytes"
|
|
334244
335034
|
}
|
|
@@ -334247,48 +335037,220 @@ var _abi44 = [
|
|
|
334247
335037
|
],
|
|
334248
335038
|
outputs: [
|
|
334249
335039
|
{
|
|
334250
|
-
name: "
|
|
335040
|
+
name: "repaidAmount",
|
|
334251
335041
|
type: "uint256",
|
|
334252
335042
|
internalType: "uint256"
|
|
335043
|
+
}
|
|
335044
|
+
],
|
|
335045
|
+
stateMutability: "nonpayable"
|
|
335046
|
+
},
|
|
335047
|
+
{
|
|
335048
|
+
type: "function",
|
|
335049
|
+
name: "liquidateExactDebt",
|
|
335050
|
+
inputs: [
|
|
335051
|
+
{
|
|
335052
|
+
name: "creditAccount",
|
|
335053
|
+
type: "address",
|
|
335054
|
+
internalType: "address"
|
|
334253
335055
|
},
|
|
334254
335056
|
{
|
|
334255
|
-
name: "
|
|
334256
|
-
type: "
|
|
334257
|
-
internalType: "
|
|
335057
|
+
name: "token",
|
|
335058
|
+
type: "address",
|
|
335059
|
+
internalType: "address"
|
|
334258
335060
|
},
|
|
334259
335061
|
{
|
|
334260
|
-
name: "
|
|
335062
|
+
name: "repaidAmount",
|
|
335063
|
+
type: "uint256",
|
|
335064
|
+
internalType: "uint256"
|
|
335065
|
+
},
|
|
335066
|
+
{
|
|
335067
|
+
name: "minSeizedAmount",
|
|
335068
|
+
type: "uint256",
|
|
335069
|
+
internalType: "uint256"
|
|
335070
|
+
},
|
|
335071
|
+
{
|
|
335072
|
+
name: "to",
|
|
335073
|
+
type: "address",
|
|
335074
|
+
internalType: "address"
|
|
335075
|
+
},
|
|
335076
|
+
{
|
|
335077
|
+
name: "priceUpdates",
|
|
334261
335078
|
type: "tuple[]",
|
|
334262
|
-
internalType: "struct
|
|
335079
|
+
internalType: "struct IPartialLiquidationBotV3.PriceUpdate[]",
|
|
334263
335080
|
components: [
|
|
334264
335081
|
{
|
|
334265
|
-
name: "
|
|
335082
|
+
name: "token",
|
|
335083
|
+
type: "address",
|
|
335084
|
+
internalType: "address"
|
|
335085
|
+
},
|
|
335086
|
+
{
|
|
335087
|
+
name: "reserve",
|
|
334266
335088
|
type: "bool",
|
|
334267
335089
|
internalType: "bool"
|
|
334268
335090
|
},
|
|
334269
335091
|
{
|
|
334270
|
-
name: "
|
|
335092
|
+
name: "data",
|
|
334271
335093
|
type: "bytes",
|
|
334272
335094
|
internalType: "bytes"
|
|
334273
335095
|
}
|
|
334274
335096
|
]
|
|
334275
335097
|
}
|
|
334276
335098
|
],
|
|
334277
|
-
|
|
335099
|
+
outputs: [
|
|
335100
|
+
{
|
|
335101
|
+
name: "seizedAmount",
|
|
335102
|
+
type: "uint256",
|
|
335103
|
+
internalType: "uint256"
|
|
335104
|
+
}
|
|
335105
|
+
],
|
|
335106
|
+
stateMutability: "nonpayable"
|
|
335107
|
+
},
|
|
335108
|
+
{
|
|
335109
|
+
type: "function",
|
|
335110
|
+
name: "maxHealthFactor",
|
|
335111
|
+
inputs: [],
|
|
335112
|
+
outputs: [
|
|
335113
|
+
{
|
|
335114
|
+
name: "",
|
|
335115
|
+
type: "uint16",
|
|
335116
|
+
internalType: "uint16"
|
|
335117
|
+
}
|
|
335118
|
+
],
|
|
335119
|
+
stateMutability: "view"
|
|
335120
|
+
},
|
|
335121
|
+
{
|
|
335122
|
+
type: "function",
|
|
335123
|
+
name: "minHealthFactor",
|
|
335124
|
+
inputs: [],
|
|
335125
|
+
outputs: [
|
|
335126
|
+
{
|
|
335127
|
+
name: "",
|
|
335128
|
+
type: "uint16",
|
|
335129
|
+
internalType: "uint16"
|
|
335130
|
+
}
|
|
335131
|
+
],
|
|
335132
|
+
stateMutability: "view"
|
|
335133
|
+
},
|
|
335134
|
+
{
|
|
335135
|
+
type: "function",
|
|
335136
|
+
name: "premiumScaleFactor",
|
|
335137
|
+
inputs: [],
|
|
335138
|
+
outputs: [
|
|
335139
|
+
{
|
|
335140
|
+
name: "",
|
|
335141
|
+
type: "uint16",
|
|
335142
|
+
internalType: "uint16"
|
|
335143
|
+
}
|
|
335144
|
+
],
|
|
335145
|
+
stateMutability: "view"
|
|
335146
|
+
},
|
|
335147
|
+
{
|
|
335148
|
+
type: "function",
|
|
335149
|
+
name: "treasury",
|
|
335150
|
+
inputs: [],
|
|
335151
|
+
outputs: [
|
|
335152
|
+
{
|
|
335153
|
+
name: "",
|
|
335154
|
+
type: "address",
|
|
335155
|
+
internalType: "address"
|
|
335156
|
+
}
|
|
335157
|
+
],
|
|
335158
|
+
stateMutability: "view"
|
|
335159
|
+
},
|
|
335160
|
+
{
|
|
335161
|
+
type: "function",
|
|
335162
|
+
name: "version",
|
|
335163
|
+
inputs: [],
|
|
335164
|
+
outputs: [
|
|
335165
|
+
{
|
|
335166
|
+
name: "",
|
|
335167
|
+
type: "uint256",
|
|
335168
|
+
internalType: "uint256"
|
|
335169
|
+
}
|
|
335170
|
+
],
|
|
335171
|
+
stateMutability: "view"
|
|
335172
|
+
},
|
|
335173
|
+
{
|
|
335174
|
+
type: "event",
|
|
335175
|
+
name: "LiquidatePartial",
|
|
335176
|
+
inputs: [
|
|
335177
|
+
{
|
|
335178
|
+
name: "creditManager",
|
|
335179
|
+
type: "address",
|
|
335180
|
+
indexed: true,
|
|
335181
|
+
internalType: "address"
|
|
335182
|
+
},
|
|
335183
|
+
{
|
|
335184
|
+
name: "creditAccount",
|
|
335185
|
+
type: "address",
|
|
335186
|
+
indexed: true,
|
|
335187
|
+
internalType: "address"
|
|
335188
|
+
},
|
|
335189
|
+
{
|
|
335190
|
+
name: "token",
|
|
335191
|
+
type: "address",
|
|
335192
|
+
indexed: true,
|
|
335193
|
+
internalType: "address"
|
|
335194
|
+
},
|
|
335195
|
+
{
|
|
335196
|
+
name: "repaidDebt",
|
|
335197
|
+
type: "uint256",
|
|
335198
|
+
indexed: false,
|
|
335199
|
+
internalType: "uint256"
|
|
335200
|
+
},
|
|
335201
|
+
{
|
|
335202
|
+
name: "seizedCollateral",
|
|
335203
|
+
type: "uint256",
|
|
335204
|
+
indexed: false,
|
|
335205
|
+
internalType: "uint256"
|
|
335206
|
+
},
|
|
335207
|
+
{
|
|
335208
|
+
name: "fee",
|
|
335209
|
+
type: "uint256",
|
|
335210
|
+
indexed: false,
|
|
335211
|
+
internalType: "uint256"
|
|
335212
|
+
}
|
|
335213
|
+
],
|
|
335214
|
+
anonymous: false
|
|
335215
|
+
},
|
|
335216
|
+
{
|
|
335217
|
+
type: "error",
|
|
335218
|
+
name: "LiquidatedLessThanNeededException",
|
|
335219
|
+
inputs: []
|
|
335220
|
+
},
|
|
335221
|
+
{
|
|
335222
|
+
type: "error",
|
|
335223
|
+
name: "LiquidatedMoreThanNeededException",
|
|
335224
|
+
inputs: []
|
|
335225
|
+
},
|
|
335226
|
+
{
|
|
335227
|
+
type: "error",
|
|
335228
|
+
name: "RepaidMoreThanAllowedException",
|
|
335229
|
+
inputs: []
|
|
335230
|
+
},
|
|
335231
|
+
{
|
|
335232
|
+
type: "error",
|
|
335233
|
+
name: "SeizedLessThanRequiredException",
|
|
335234
|
+
inputs: []
|
|
335235
|
+
},
|
|
335236
|
+
{
|
|
335237
|
+
type: "error",
|
|
335238
|
+
name: "UnderlyingNotLiquidatableException",
|
|
335239
|
+
inputs: []
|
|
334278
335240
|
}
|
|
334279
335241
|
];
|
|
334280
|
-
var
|
|
334281
|
-
static abi =
|
|
335242
|
+
var IPartialLiquidationBotV3__factory = class {
|
|
335243
|
+
static abi = _abi45;
|
|
334282
335244
|
static createInterface() {
|
|
334283
|
-
return new Interface(
|
|
335245
|
+
return new Interface(_abi45);
|
|
334284
335246
|
}
|
|
334285
335247
|
static connect(address, runner) {
|
|
334286
|
-
return new Contract(address,
|
|
335248
|
+
return new Contract(address, _abi45, runner);
|
|
334287
335249
|
}
|
|
334288
335250
|
};
|
|
334289
335251
|
|
|
334290
335252
|
// ../../packages/types/dist/generated/factories/v3/IRouterConfiguratorV3__factory.js
|
|
334291
|
-
var
|
|
335253
|
+
var _abi46 = [
|
|
334292
335254
|
{
|
|
334293
335255
|
type: "function",
|
|
334294
335256
|
name: "componentAddressById",
|
|
@@ -335068,17 +336030,17 @@ var _abi45 = [
|
|
|
335068
336030
|
}
|
|
335069
336031
|
];
|
|
335070
336032
|
var IRouterConfiguratorV3__factory = class {
|
|
335071
|
-
static abi =
|
|
336033
|
+
static abi = _abi46;
|
|
335072
336034
|
static createInterface() {
|
|
335073
|
-
return new Interface(
|
|
336035
|
+
return new Interface(_abi46);
|
|
335074
336036
|
}
|
|
335075
336037
|
static connect(address, runner) {
|
|
335076
|
-
return new Contract(address,
|
|
336038
|
+
return new Contract(address, _abi46, runner);
|
|
335077
336039
|
}
|
|
335078
336040
|
};
|
|
335079
336041
|
|
|
335080
336042
|
// ../../packages/types/dist/generated/factories/v3/ITimelock__factory.js
|
|
335081
|
-
var
|
|
336043
|
+
var _abi47 = [
|
|
335082
336044
|
{
|
|
335083
336045
|
type: "function",
|
|
335084
336046
|
name: "acceptAdmin",
|
|
@@ -335270,17 +336232,17 @@ var _abi46 = [
|
|
|
335270
336232
|
}
|
|
335271
336233
|
];
|
|
335272
336234
|
var ITimelock__factory = class {
|
|
335273
|
-
static abi =
|
|
336235
|
+
static abi = _abi47;
|
|
335274
336236
|
static createInterface() {
|
|
335275
|
-
return new Interface(
|
|
336237
|
+
return new Interface(_abi47);
|
|
335276
336238
|
}
|
|
335277
336239
|
static connect(address, runner) {
|
|
335278
|
-
return new Contract(address,
|
|
336240
|
+
return new Contract(address, _abi47, runner);
|
|
335279
336241
|
}
|
|
335280
336242
|
};
|
|
335281
336243
|
|
|
335282
336244
|
// ../../packages/types/dist/generated/factories/v3/IYearnV2Adapter__factory.js
|
|
335283
|
-
var
|
|
336245
|
+
var _abi48 = [
|
|
335284
336246
|
{
|
|
335285
336247
|
type: "function",
|
|
335286
336248
|
name: "_gearboxAdapterType",
|
|
@@ -335575,17 +336537,17 @@ var _abi47 = [
|
|
|
335575
336537
|
}
|
|
335576
336538
|
];
|
|
335577
336539
|
var IYearnV2Adapter__factory = class {
|
|
335578
|
-
static abi =
|
|
336540
|
+
static abi = _abi48;
|
|
335579
336541
|
static createInterface() {
|
|
335580
|
-
return new Interface(
|
|
336542
|
+
return new Interface(_abi48);
|
|
335581
336543
|
}
|
|
335582
336544
|
static connect(address, runner) {
|
|
335583
|
-
return new Contract(address,
|
|
336545
|
+
return new Contract(address, _abi48, runner);
|
|
335584
336546
|
}
|
|
335585
336547
|
};
|
|
335586
336548
|
|
|
335587
336549
|
// ../../packages/types/dist/generated/factories/v3/IZapper__factory.js
|
|
335588
|
-
var
|
|
336550
|
+
var _abi49 = [
|
|
335589
336551
|
{
|
|
335590
336552
|
type: "function",
|
|
335591
336553
|
name: "pool",
|
|
@@ -335746,17 +336708,17 @@ var _abi48 = [
|
|
|
335746
336708
|
}
|
|
335747
336709
|
];
|
|
335748
336710
|
var IZapper__factory = class {
|
|
335749
|
-
static abi =
|
|
336711
|
+
static abi = _abi49;
|
|
335750
336712
|
static createInterface() {
|
|
335751
|
-
return new Interface(
|
|
336713
|
+
return new Interface(_abi49);
|
|
335752
336714
|
}
|
|
335753
336715
|
static connect(address, runner) {
|
|
335754
|
-
return new Contract(address,
|
|
336716
|
+
return new Contract(address, _abi49, runner);
|
|
335755
336717
|
}
|
|
335756
336718
|
};
|
|
335757
336719
|
|
|
335758
336720
|
// ../../packages/types/dist/generated/factories/v3/IZapperRegister__factory.js
|
|
335759
|
-
var
|
|
336721
|
+
var _abi50 = [
|
|
335760
336722
|
{
|
|
335761
336723
|
type: "function",
|
|
335762
336724
|
name: "zappers",
|
|
@@ -335804,12 +336766,12 @@ var _abi49 = [
|
|
|
335804
336766
|
}
|
|
335805
336767
|
];
|
|
335806
336768
|
var IZapperRegister__factory = class {
|
|
335807
|
-
static abi =
|
|
336769
|
+
static abi = _abi50;
|
|
335808
336770
|
static createInterface() {
|
|
335809
|
-
return new Interface(
|
|
336771
|
+
return new Interface(_abi50);
|
|
335810
336772
|
}
|
|
335811
336773
|
static connect(address, runner) {
|
|
335812
|
-
return new Contract(address,
|
|
336774
|
+
return new Contract(address, _abi50, runner);
|
|
335813
336775
|
}
|
|
335814
336776
|
};
|
|
335815
336777
|
|
|
@@ -355572,6 +356534,11 @@ var ProviderBase = class {
|
|
|
355572
356534
|
this.#options = opts;
|
|
355573
356535
|
}
|
|
355574
356536
|
async init() {
|
|
356537
|
+
let url = this.#options.rpcUrl;
|
|
356538
|
+
if (!(url.includes("localhost") || url.includes("127.0.0.1") || url.includes("host.docker.internal"))) {
|
|
356539
|
+
url = new URL(url).host;
|
|
356540
|
+
}
|
|
356541
|
+
this.logger.debug(`initializing with rpc url ${url}`);
|
|
355575
356542
|
this.#network = await (0, import_sdk_gov2.detectNetwork)(this.#provider);
|
|
355576
356543
|
this.#chainId = import_sdk_gov2.CHAINS[this.#network];
|
|
355577
356544
|
this.#service = new import_api_kit.default.default({
|
|
@@ -359551,6 +360518,23 @@ var OneInchFarmingPoolParser = class extends AbstractParser {
|
|
|
359551
360518
|
}
|
|
359552
360519
|
};
|
|
359553
360520
|
|
|
360521
|
+
// ../../packages/node/dist/parsers/PartialLiquidationBotV3Parser.js
|
|
360522
|
+
var PartialLiquidationBotV3Parser = class extends AbstractParser {
|
|
360523
|
+
constructor(contractType) {
|
|
360524
|
+
super(contractType, "constructor(address addressProvider, uint16 minHealthFactor, uint16 maxHealthFactor, uint16 premiumScaleFactor, uint16 feeScaleFactor)");
|
|
360525
|
+
this._iFace = IPartialLiquidationBotV3__factory.createInterface();
|
|
360526
|
+
this.parameterParsers = {
|
|
360527
|
+
constructor: [
|
|
360528
|
+
parseAddress(),
|
|
360529
|
+
parsePercent(),
|
|
360530
|
+
parsePercent(),
|
|
360531
|
+
parsePercent(),
|
|
360532
|
+
parsePercent()
|
|
360533
|
+
]
|
|
360534
|
+
};
|
|
360535
|
+
}
|
|
360536
|
+
};
|
|
360537
|
+
|
|
359554
360538
|
// ../../packages/node/dist/parsers/PoolQuotaKeeperV3Parser.js
|
|
359555
360539
|
var PoolQuotaKeeperV3Parser = class extends AbstractParser {
|
|
359556
360540
|
constructor(contractType) {
|
|
@@ -359785,6 +360769,7 @@ var CONTRACT_NAME_TO_TYPE = new Map([
|
|
|
359785
360769
|
["GearStakingV3", "GEAR_STAKING"],
|
|
359786
360770
|
["InflationAttackBlocker", "INFLATION_ATTACK_BLOCKER"],
|
|
359787
360771
|
["LinearInterestRateModelV3", "INTEREST_RATE_MODEL_V3"],
|
|
360772
|
+
["PartialLiquidationBotV3", "MULTIPAUSE"],
|
|
359788
360773
|
["PoolQuotaKeeperV3", "POOL_QUOTA_KEEPER_V3"],
|
|
359789
360774
|
["PoolV3", "POOL_V3"],
|
|
359790
360775
|
["PriceOracleV3", "PRICE_ORACLE_V3"],
|
|
@@ -359866,6 +360851,8 @@ function parserForContractType(contract, version4, contractName) {
|
|
|
359866
360851
|
return new MultiPauseParser(contract);
|
|
359867
360852
|
case "ONE_INCH_FARMING_POOL":
|
|
359868
360853
|
return new OneInchFarmingPoolParser(contract);
|
|
360854
|
+
case "PARTIAL_LIQUIDATION_BOT":
|
|
360855
|
+
return new PartialLiquidationBotV3Parser(contract);
|
|
359869
360856
|
case "POOL_QUOTA_KEEPER_V3":
|
|
359870
360857
|
return new PoolQuotaKeeperV3Parser(contract);
|
|
359871
360858
|
case "POOL_V1":
|
|
@@ -365153,7 +366140,7 @@ function getRenderer(opts) {
|
|
|
365153
366140
|
}
|
|
365154
366141
|
|
|
365155
366142
|
// package.json
|
|
365156
|
-
var version3 = "4.
|
|
366143
|
+
var version3 = "4.22.1";
|
|
365157
366144
|
|
|
365158
366145
|
// src/version.ts
|
|
365159
366146
|
var version_default = version3;
|