@gearbox-protocol/deploy-tools 4.61.15 → 4.61.16
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 +288 -17
- package/package.json +5 -5
package/dist/index.mjs
CHANGED
|
@@ -3477,6 +3477,95 @@ var require_ghoConfigMainnet = __commonJS({
|
|
|
3477
3477
|
}
|
|
3478
3478
|
});
|
|
3479
3479
|
|
|
3480
|
+
// ../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/test_daiConfigMainnet.js
|
|
3481
|
+
var require_test_daiConfigMainnet = __commonJS({
|
|
3482
|
+
"../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/test_daiConfigMainnet.js"(exports2) {
|
|
3483
|
+
"use strict";
|
|
3484
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
3485
|
+
exports2.testDaiConfigMainnet = void 0;
|
|
3486
|
+
var POOL_DECIMALS = BigInt(1e18);
|
|
3487
|
+
var POOL_DIVIDER = BigInt(1);
|
|
3488
|
+
var levUniV2Config = {
|
|
3489
|
+
contract: "UNISWAP_V2_ROUTER",
|
|
3490
|
+
allowed: [{ token0: "SKY", token1: "USDS" }]
|
|
3491
|
+
};
|
|
3492
|
+
var levCreditManager = {
|
|
3493
|
+
name: "Test Credit Manager",
|
|
3494
|
+
degenNft: false,
|
|
3495
|
+
expirationDate: void 0,
|
|
3496
|
+
minDebt: BigInt(5e4) * POOL_DECIMALS / POOL_DIVIDER,
|
|
3497
|
+
maxDebt: BigInt(1e6) * POOL_DECIMALS / POOL_DIVIDER,
|
|
3498
|
+
feeInterest: 2500,
|
|
3499
|
+
feeLiquidation: 150,
|
|
3500
|
+
liquidationPremium: 400,
|
|
3501
|
+
feeLiquidationExpired: 100,
|
|
3502
|
+
liquidationPremiumExpired: 200,
|
|
3503
|
+
poolLimit: BigInt(5e6) * POOL_DECIMALS / POOL_DIVIDER,
|
|
3504
|
+
maxEnabledTokens: 4,
|
|
3505
|
+
collateralTokens: [
|
|
3506
|
+
{
|
|
3507
|
+
token: "USDS",
|
|
3508
|
+
lt: 9e3
|
|
3509
|
+
},
|
|
3510
|
+
{
|
|
3511
|
+
token: "stkUSDS",
|
|
3512
|
+
lt: 9e3
|
|
3513
|
+
},
|
|
3514
|
+
{
|
|
3515
|
+
token: "SKY",
|
|
3516
|
+
lt: 0
|
|
3517
|
+
}
|
|
3518
|
+
],
|
|
3519
|
+
adapters: [
|
|
3520
|
+
{ contract: "DAI_USDS" },
|
|
3521
|
+
{ contract: "SKY_STAKING_REWARDS" },
|
|
3522
|
+
levUniV2Config
|
|
3523
|
+
]
|
|
3524
|
+
};
|
|
3525
|
+
exports2.testDaiConfigMainnet = {
|
|
3526
|
+
id: "mainnet-dai-test-v3",
|
|
3527
|
+
symbol: "dDAI-test-V3",
|
|
3528
|
+
name: "Test DAI v3",
|
|
3529
|
+
network: "Mainnet",
|
|
3530
|
+
underlying: "DAI",
|
|
3531
|
+
accountAmount: BigInt(1e5) * POOL_DECIMALS,
|
|
3532
|
+
withdrawalFee: 0,
|
|
3533
|
+
totalDebtLimit: BigInt(1e8) * POOL_DECIMALS,
|
|
3534
|
+
irm: {
|
|
3535
|
+
U1: 7e3,
|
|
3536
|
+
U2: 9e3,
|
|
3537
|
+
Rbase: 0,
|
|
3538
|
+
Rslope1: 100,
|
|
3539
|
+
Rslope2: 125,
|
|
3540
|
+
Rslope3: 1e4,
|
|
3541
|
+
isBorrowingMoreU2Forbidden: true
|
|
3542
|
+
},
|
|
3543
|
+
ratesAndLimits: {
|
|
3544
|
+
USDS: {
|
|
3545
|
+
minRate: 4,
|
|
3546
|
+
maxRate: 1500,
|
|
3547
|
+
quotaIncreaseFee: 1,
|
|
3548
|
+
limit: BigInt(1e7) * POOL_DECIMALS / POOL_DIVIDER
|
|
3549
|
+
},
|
|
3550
|
+
stkUSDS: {
|
|
3551
|
+
minRate: 4,
|
|
3552
|
+
maxRate: 1500,
|
|
3553
|
+
quotaIncreaseFee: 1,
|
|
3554
|
+
limit: BigInt(1e7) * POOL_DECIMALS / POOL_DIVIDER
|
|
3555
|
+
},
|
|
3556
|
+
SKY: {
|
|
3557
|
+
minRate: 4,
|
|
3558
|
+
maxRate: 1500,
|
|
3559
|
+
quotaIncreaseFee: 1,
|
|
3560
|
+
limit: BigInt(0)
|
|
3561
|
+
}
|
|
3562
|
+
},
|
|
3563
|
+
creditManagers: [levCreditManager],
|
|
3564
|
+
supportsQuotas: true
|
|
3565
|
+
};
|
|
3566
|
+
}
|
|
3567
|
+
});
|
|
3568
|
+
|
|
3480
3569
|
// ../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/test_usdcConfigArbitrum.js
|
|
3481
3570
|
var require_test_usdcConfigArbitrum = __commonJS({
|
|
3482
3571
|
"../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/test_usdcConfigArbitrum.js"(exports2) {
|
|
@@ -4010,6 +4099,14 @@ var require_test_wethConfigMainnet = __commonJS({
|
|
|
4010
4099
|
token: "stkcvxsteCRV",
|
|
4011
4100
|
lt: 9e3
|
|
4012
4101
|
},
|
|
4102
|
+
{
|
|
4103
|
+
token: "pufETH",
|
|
4104
|
+
lt: 9e3
|
|
4105
|
+
},
|
|
4106
|
+
{
|
|
4107
|
+
token: "zpufETH",
|
|
4108
|
+
lt: 9e3
|
|
4109
|
+
},
|
|
4013
4110
|
// Compatibility
|
|
4014
4111
|
{
|
|
4015
4112
|
token: "steCRV",
|
|
@@ -4050,6 +4147,10 @@ var require_test_wethConfigMainnet = __commonJS({
|
|
|
4050
4147
|
{
|
|
4051
4148
|
token: "CVX",
|
|
4052
4149
|
lt: 0
|
|
4150
|
+
},
|
|
4151
|
+
{
|
|
4152
|
+
token: "pufETHwstE",
|
|
4153
|
+
lt: 0
|
|
4053
4154
|
}
|
|
4054
4155
|
],
|
|
4055
4156
|
adapters: [
|
|
@@ -4059,8 +4160,10 @@ var require_test_wethConfigMainnet = __commonJS({
|
|
|
4059
4160
|
levSteakLRTVaultConfig,
|
|
4060
4161
|
{ contract: "LIDO_WSTETH" },
|
|
4061
4162
|
{ contract: "CURVE_STETH_GATEWAY" },
|
|
4163
|
+
{ contract: "CURVE_PUFETH_WSTETH_POOL" },
|
|
4062
4164
|
{ contract: "CONVEX_BOOSTER" },
|
|
4063
|
-
{ contract: "CONVEX_STECRV_POOL" }
|
|
4165
|
+
{ contract: "CONVEX_STECRV_POOL" },
|
|
4166
|
+
{ contract: "ZIRCUIT_POOL" }
|
|
4064
4167
|
]
|
|
4065
4168
|
};
|
|
4066
4169
|
exports2.testWethConfigMainnet = {
|
|
@@ -4189,6 +4292,24 @@ var require_test_wethConfigMainnet = __commonJS({
|
|
|
4189
4292
|
maxRate: 1500,
|
|
4190
4293
|
quotaIncreaseFee: 0,
|
|
4191
4294
|
limit: BigInt(4e3) * POOL_DECIMALS
|
|
4295
|
+
},
|
|
4296
|
+
pufETHwstE: {
|
|
4297
|
+
minRate: 4,
|
|
4298
|
+
maxRate: 1500,
|
|
4299
|
+
quotaIncreaseFee: 0,
|
|
4300
|
+
limit: BigInt(0) * POOL_DECIMALS
|
|
4301
|
+
},
|
|
4302
|
+
pufETH: {
|
|
4303
|
+
minRate: 4,
|
|
4304
|
+
maxRate: 1500,
|
|
4305
|
+
quotaIncreaseFee: 0,
|
|
4306
|
+
limit: BigInt(4e3) * POOL_DECIMALS
|
|
4307
|
+
},
|
|
4308
|
+
zpufETH: {
|
|
4309
|
+
minRate: 4,
|
|
4310
|
+
maxRate: 1500,
|
|
4311
|
+
quotaIncreaseFee: 0,
|
|
4312
|
+
limit: BigInt(4e3) * POOL_DECIMALS
|
|
4192
4313
|
}
|
|
4193
4314
|
},
|
|
4194
4315
|
creditManagers: [levCreditManager],
|
|
@@ -6764,6 +6885,7 @@ var require_decimals = __commonJS({
|
|
|
6764
6885
|
APE: 18,
|
|
6765
6886
|
AURA: 18,
|
|
6766
6887
|
SWISE: 18,
|
|
6888
|
+
SKY: 18,
|
|
6767
6889
|
WLD: 18,
|
|
6768
6890
|
OP: 18,
|
|
6769
6891
|
GHO: 18,
|
|
@@ -6779,6 +6901,7 @@ var require_decimals = __commonJS({
|
|
|
6779
6901
|
USDe: 18,
|
|
6780
6902
|
PENDLE: 18,
|
|
6781
6903
|
pufETH: 18,
|
|
6904
|
+
USDS: 18,
|
|
6782
6905
|
PT_rsETH_26SEP2024: 18,
|
|
6783
6906
|
"3Crv": 18,
|
|
6784
6907
|
crvFRAX: 18,
|
|
@@ -6956,9 +7079,11 @@ var require_decimals = __commonJS({
|
|
|
6956
7079
|
fUSDC: 8,
|
|
6957
7080
|
sDAI: 18,
|
|
6958
7081
|
sUSDe: 18,
|
|
7082
|
+
sUSDS: 18,
|
|
6959
7083
|
YieldETH: 18,
|
|
6960
7084
|
rETH: 18,
|
|
6961
7085
|
rETH_f: 18,
|
|
7086
|
+
stkUSDS: 18,
|
|
6962
7087
|
PT_sUSDe_26DEC2024: 18,
|
|
6963
7088
|
PT_eETH_26DEC2024: 18,
|
|
6964
7089
|
PT_ezETH_26DEC2024: 18
|
|
@@ -6995,6 +7120,13 @@ var require_erc4626 = __commonJS({
|
|
|
6995
7120
|
type: { AllNetworks: tokenType_1.TokenType.ERC4626_VAULT_TOKEN },
|
|
6996
7121
|
underlying: "USDe",
|
|
6997
7122
|
vault: "STAKED_USDE_VAULT"
|
|
7123
|
+
},
|
|
7124
|
+
sUSDS: {
|
|
7125
|
+
name: "Staked USDS",
|
|
7126
|
+
symbol: "sUSDS",
|
|
7127
|
+
type: { AllNetworks: tokenType_1.TokenType.ERC4626_VAULT_TOKEN },
|
|
7128
|
+
underlying: "USDS",
|
|
7129
|
+
vault: "STAKED_USDS_VAULT"
|
|
6998
7130
|
}
|
|
6999
7131
|
};
|
|
7000
7132
|
var isERC4626LPToken = (t) => typeof t === "string" && !!exports2.erc4626Tokens[t];
|
|
@@ -7483,6 +7615,16 @@ var require_normal = __commonJS({
|
|
|
7483
7615
|
symbol: "PT_rsETH_26SEP2024",
|
|
7484
7616
|
type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
|
|
7485
7617
|
},
|
|
7618
|
+
USDS: {
|
|
7619
|
+
name: "USDS",
|
|
7620
|
+
symbol: "USDS",
|
|
7621
|
+
type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
|
|
7622
|
+
},
|
|
7623
|
+
SKY: {
|
|
7624
|
+
name: "SKY Governance token",
|
|
7625
|
+
symbol: "SKY",
|
|
7626
|
+
type: { AllNetworks: tokenType_1.TokenType.NORMAL_TOKEN }
|
|
7627
|
+
},
|
|
7486
7628
|
PT_sUSDe_26DEC2024: {
|
|
7487
7629
|
name: "Pendle PT sUSDe 26 Dec 2024 expiry",
|
|
7488
7630
|
symbol: "PT_sUSDe_26DEC2024",
|
|
@@ -7504,6 +7646,35 @@ var require_normal = __commonJS({
|
|
|
7504
7646
|
}
|
|
7505
7647
|
});
|
|
7506
7648
|
|
|
7649
|
+
// ../../node_modules/@gearbox-protocol/sdk-gov/lib/tokens/stakingRewards.js
|
|
7650
|
+
var require_stakingRewards = __commonJS({
|
|
7651
|
+
"../../node_modules/@gearbox-protocol/sdk-gov/lib/tokens/stakingRewards.js"(exports2) {
|
|
7652
|
+
"use strict";
|
|
7653
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
7654
|
+
exports2.zircuitStakedTokenByToken = exports2.isStakingRewardsPhantomToken = exports2.stakingRewardsTokens = exports2.stakingRewardsPhantomTokens = void 0;
|
|
7655
|
+
var tokenType_1 = require_tokenType();
|
|
7656
|
+
exports2.stakingRewardsPhantomTokens = {
|
|
7657
|
+
stkUSDS: {
|
|
7658
|
+
name: "Sky staked USDS",
|
|
7659
|
+
symbol: "stkUSDS",
|
|
7660
|
+
type: {
|
|
7661
|
+
AllNetworks: tokenType_1.TokenType.STAKING_REWARDS_PHANTOM_TOKEN
|
|
7662
|
+
},
|
|
7663
|
+
underlying: "USDS"
|
|
7664
|
+
}
|
|
7665
|
+
};
|
|
7666
|
+
exports2.stakingRewardsTokens = {
|
|
7667
|
+
...exports2.stakingRewardsPhantomTokens
|
|
7668
|
+
};
|
|
7669
|
+
var isStakingRewardsPhantomToken = (t) => typeof t === "string" && !!exports2.stakingRewardsTokens[t];
|
|
7670
|
+
exports2.isStakingRewardsPhantomToken = isStakingRewardsPhantomToken;
|
|
7671
|
+
exports2.zircuitStakedTokenByToken = Object.values(exports2.stakingRewardsPhantomTokens).reduce((acc, value) => {
|
|
7672
|
+
acc[value.underlying] = value.symbol;
|
|
7673
|
+
return acc;
|
|
7674
|
+
}, {});
|
|
7675
|
+
}
|
|
7676
|
+
});
|
|
7677
|
+
|
|
7507
7678
|
// ../../node_modules/@gearbox-protocol/sdk-gov/lib/tokens/wrapped.js
|
|
7508
7679
|
var require_wrapped = __commonJS({
|
|
7509
7680
|
"../../node_modules/@gearbox-protocol/sdk-gov/lib/tokens/wrapped.js"(exports2) {
|
|
@@ -7653,6 +7824,7 @@ var require_token = __commonJS({
|
|
|
7653
7824
|
var erc4626_1 = require_erc4626();
|
|
7654
7825
|
var gear_1 = require_gear();
|
|
7655
7826
|
var normal_1 = require_normal();
|
|
7827
|
+
var stakingRewards_1 = require_stakingRewards();
|
|
7656
7828
|
var wrapped_1 = require_wrapped();
|
|
7657
7829
|
var yearn_1 = require_yearn();
|
|
7658
7830
|
var zircuit_1 = require_zircuit();
|
|
@@ -7667,7 +7839,8 @@ var require_token = __commonJS({
|
|
|
7667
7839
|
...erc4626_1.erc4626Tokens,
|
|
7668
7840
|
...aura_1.auraLpTokens,
|
|
7669
7841
|
...aura_1.auraStakedTokens,
|
|
7670
|
-
...zircuit_1.zircuitStakedPhantomTokens
|
|
7842
|
+
...zircuit_1.zircuitStakedPhantomTokens,
|
|
7843
|
+
...stakingRewards_1.stakingRewardsPhantomTokens
|
|
7671
7844
|
};
|
|
7672
7845
|
exports2.supportedTokens = {
|
|
7673
7846
|
...normal_1.normalTokens,
|
|
@@ -7736,6 +7909,8 @@ var require_token = __commonJS({
|
|
|
7736
7909
|
USDe: "0x4c9EDD5852cd905f086C759E8383e09bff1E68B3",
|
|
7737
7910
|
GHO: "0x40D16FC0246aD3160Ccc09B8D0D3A2cD28aE6C2f",
|
|
7738
7911
|
pufETH: "0xD9A442856C234a39a81a089C06451EBAa4306a72",
|
|
7912
|
+
USDS: "0xdC035D45d973E3EC169d2276DDab16f1e407384F",
|
|
7913
|
+
SKY: "0x56072C95FAA701256059aa122697B133aDEd9279",
|
|
7739
7914
|
// CURVE LP TOKENS
|
|
7740
7915
|
"3Crv": "0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490",
|
|
7741
7916
|
crvFRAX: "0x3175Df0976dFA876431C2E9eE6Bc45b65d3473CC",
|
|
@@ -7906,6 +8081,7 @@ var require_token = __commonJS({
|
|
|
7906
8081
|
sDAI: "0x83F20F44975D03b1b09e64809B757c47f942BEeA",
|
|
7907
8082
|
YieldETH: "0xb5b29320d2Dde5BA5BAFA1EbcD270052070483ec",
|
|
7908
8083
|
sUSDe: "0x9D39A5DE30e57443BfF2A8307A4256c8797A3497",
|
|
8084
|
+
sUSDS: "0xa3931d71877C0E7a3148CB7Eb4463524FEc27fbD",
|
|
7909
8085
|
// AAVE
|
|
7910
8086
|
aUSDC: "0xBcca60bB61934080951369a648Fb03DF4F96263C",
|
|
7911
8087
|
aDAI: "0x028171bCA77440897B824Ca71D1c56caC55b68A3",
|
|
@@ -7923,7 +8099,9 @@ var require_token = __commonJS({
|
|
|
7923
8099
|
cETH: "0x4Ddc2D193948926D02f9B1fE9e1daa0718270ED5",
|
|
7924
8100
|
cLINK: "0xFAce851a4921ce59e912d19329929CE6da6EB0c7",
|
|
7925
8101
|
// ZIRCUIT
|
|
7926
|
-
zpufETH: "
|
|
8102
|
+
zpufETH: "0xF5740711F088DF1D2fBDb8F62D4852960c139cbA",
|
|
8103
|
+
// SKY
|
|
8104
|
+
stkUSDS: "0xcB5D10A57Aeb622b92784D53F730eE2210ab370E",
|
|
7927
8105
|
// MELLOW LRT
|
|
7928
8106
|
steakLRT: "0xBEEF69Ac7870777598A04B2bd4771c71212E6aBc",
|
|
7929
8107
|
Re7LRT: "0x84631c0d0081FDe56DeB72F6DE77abBbF6A9f93a",
|
|
@@ -7962,6 +8140,7 @@ var require_token = __commonJS({
|
|
|
7962
8140
|
BAL: "0x040d1EdC9569d4Bab2D15287Dc5A4F10F56a56B8",
|
|
7963
8141
|
AURA: "0x1509706a6c66CA549ff0cB464de88231DDBe213B",
|
|
7964
8142
|
SWISE: constants_1.NOT_DEPLOYED,
|
|
8143
|
+
SKY: constants_1.NOT_DEPLOYED,
|
|
7965
8144
|
/// UPDATE
|
|
7966
8145
|
STETH: constants_1.NOT_DEPLOYED,
|
|
7967
8146
|
wstETH: "0x5979D7b546E38E414F7E9822514be443A4800529",
|
|
@@ -7992,6 +8171,7 @@ var require_token = __commonJS({
|
|
|
7992
8171
|
USDe: "0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34",
|
|
7993
8172
|
GHO: constants_1.NOT_DEPLOYED,
|
|
7994
8173
|
pufETH: constants_1.NOT_DEPLOYED,
|
|
8174
|
+
USDS: constants_1.NOT_DEPLOYED,
|
|
7995
8175
|
// REDSTONE
|
|
7996
8176
|
SHIB: constants_1.NOT_DEPLOYED,
|
|
7997
8177
|
// YEARN TOKENS
|
|
@@ -8178,8 +8358,11 @@ var require_token = __commonJS({
|
|
|
8178
8358
|
sDAI: constants_1.NOT_DEPLOYED,
|
|
8179
8359
|
YieldETH: constants_1.NOT_DEPLOYED,
|
|
8180
8360
|
sUSDe: constants_1.NOT_DEPLOYED,
|
|
8361
|
+
sUSDS: constants_1.NOT_DEPLOYED,
|
|
8181
8362
|
// ZIRCUIT
|
|
8182
8363
|
zpufETH: constants_1.NOT_DEPLOYED,
|
|
8364
|
+
// SKY
|
|
8365
|
+
stkUSDS: constants_1.NOT_DEPLOYED,
|
|
8183
8366
|
// MELLOW LRT
|
|
8184
8367
|
steakLRT: constants_1.NOT_DEPLOYED,
|
|
8185
8368
|
Re7LRT: constants_1.NOT_DEPLOYED,
|
|
@@ -8248,6 +8431,8 @@ var require_token = __commonJS({
|
|
|
8248
8431
|
USDe: constants_1.NOT_DEPLOYED,
|
|
8249
8432
|
GHO: constants_1.NOT_DEPLOYED,
|
|
8250
8433
|
pufETH: constants_1.NOT_DEPLOYED,
|
|
8434
|
+
USDS: constants_1.NOT_DEPLOYED,
|
|
8435
|
+
SKY: constants_1.NOT_DEPLOYED,
|
|
8251
8436
|
// REDSTONE
|
|
8252
8437
|
SHIB: constants_1.NOT_DEPLOYED,
|
|
8253
8438
|
// YEARN TOKENS
|
|
@@ -8434,8 +8619,11 @@ var require_token = __commonJS({
|
|
|
8434
8619
|
sDAI: constants_1.NOT_DEPLOYED,
|
|
8435
8620
|
YieldETH: constants_1.NOT_DEPLOYED,
|
|
8436
8621
|
sUSDe: constants_1.NOT_DEPLOYED,
|
|
8622
|
+
sUSDS: constants_1.NOT_DEPLOYED,
|
|
8437
8623
|
// ZIRCUIT
|
|
8438
8624
|
zpufETH: constants_1.NOT_DEPLOYED,
|
|
8625
|
+
// SKY
|
|
8626
|
+
stkUSDS: constants_1.NOT_DEPLOYED,
|
|
8439
8627
|
// MELLOW LRT
|
|
8440
8628
|
steakLRT: constants_1.NOT_DEPLOYED,
|
|
8441
8629
|
Re7LRT: constants_1.NOT_DEPLOYED,
|
|
@@ -8481,6 +8669,7 @@ var require_token = __commonJS({
|
|
|
8481
8669
|
SWISE: constants_1.NOT_DEPLOYED,
|
|
8482
8670
|
WLD: constants_1.NOT_DEPLOYED,
|
|
8483
8671
|
OP: constants_1.NOT_DEPLOYED,
|
|
8672
|
+
SKY: constants_1.NOT_DEPLOYED,
|
|
8484
8673
|
/// UPDATE
|
|
8485
8674
|
STETH: constants_1.NOT_DEPLOYED,
|
|
8486
8675
|
wstETH: constants_1.NOT_DEPLOYED,
|
|
@@ -8508,6 +8697,7 @@ var require_token = __commonJS({
|
|
|
8508
8697
|
rswETH: constants_1.NOT_DEPLOYED,
|
|
8509
8698
|
USDe: constants_1.NOT_DEPLOYED,
|
|
8510
8699
|
pufETH: constants_1.NOT_DEPLOYED,
|
|
8700
|
+
USDS: constants_1.NOT_DEPLOYED,
|
|
8511
8701
|
// REDSTONE
|
|
8512
8702
|
SHIB: constants_1.NOT_DEPLOYED,
|
|
8513
8703
|
// YEARN TOKENS
|
|
@@ -8692,10 +8882,13 @@ var require_token = __commonJS({
|
|
|
8692
8882
|
sDAI: constants_1.NOT_DEPLOYED,
|
|
8693
8883
|
YieldETH: constants_1.NOT_DEPLOYED,
|
|
8694
8884
|
sUSDe: constants_1.NOT_DEPLOYED,
|
|
8885
|
+
sUSDS: constants_1.NOT_DEPLOYED,
|
|
8695
8886
|
GHO: constants_1.NOT_DEPLOYED,
|
|
8696
8887
|
GHOUSDe: constants_1.NOT_DEPLOYED,
|
|
8697
8888
|
GHO_USDT_USDC: constants_1.NOT_DEPLOYED,
|
|
8698
8889
|
zpufETH: constants_1.NOT_DEPLOYED,
|
|
8890
|
+
// SKY
|
|
8891
|
+
stkUSDS: constants_1.NOT_DEPLOYED,
|
|
8699
8892
|
// MELLOW LRT
|
|
8700
8893
|
steakLRT: constants_1.NOT_DEPLOYED,
|
|
8701
8894
|
Re7LRT: constants_1.NOT_DEPLOYED,
|
|
@@ -8897,6 +9090,7 @@ var require_protocols = __commonJS({
|
|
|
8897
9090
|
Protocols2[Protocols2["Zircuit"] = 20] = "Zircuit";
|
|
8898
9091
|
Protocols2[Protocols2["Mellow"] = 21] = "Mellow";
|
|
8899
9092
|
Protocols2[Protocols2["Pendle"] = 22] = "Pendle";
|
|
9093
|
+
Protocols2[Protocols2["Sky"] = 23] = "Sky";
|
|
8900
9094
|
})(Protocols || (exports2.Protocols = Protocols = {}));
|
|
8901
9095
|
}
|
|
8902
9096
|
});
|
|
@@ -8981,6 +9175,7 @@ var require_contracts = __commonJS({
|
|
|
8981
9175
|
MAKER_DSR_VAULT: token_1.tokenDataByNetwork.Mainnet.sDAI,
|
|
8982
9176
|
YIELD_ETH_VAULT: token_1.tokenDataByNetwork.Mainnet.YieldETH,
|
|
8983
9177
|
STAKED_USDE_VAULT: token_1.tokenDataByNetwork.Mainnet.sUSDe,
|
|
9178
|
+
STAKED_USDS_VAULT: token_1.tokenDataByNetwork.Mainnet.sUSDS,
|
|
8984
9179
|
// CONVEX
|
|
8985
9180
|
CONVEX_BOOSTER: "0xF403C135812408BFbE8713b5A23a04b3D48AAE31",
|
|
8986
9181
|
CONVEX_3CRV_POOL: "0x689440f2Ff927E1f24c72F1087E1FAF471eCe1c8",
|
|
@@ -9040,7 +9235,10 @@ var require_contracts = __commonJS({
|
|
|
9040
9235
|
MELLOW_RE7_LABS_VAULT: token_1.tokenDataByNetwork.Mainnet.Re7LRT,
|
|
9041
9236
|
MELLOW_AMPHOR_VAULT: token_1.tokenDataByNetwork.Mainnet.amphrETH,
|
|
9042
9237
|
MELLOW_RESTAKING_VAULT: token_1.tokenDataByNetwork.Mainnet.rstETH,
|
|
9043
|
-
MELLOW_RENZO_VAULT: token_1.tokenDataByNetwork.Mainnet.pzETH
|
|
9238
|
+
MELLOW_RENZO_VAULT: token_1.tokenDataByNetwork.Mainnet.pzETH,
|
|
9239
|
+
// SKY
|
|
9240
|
+
SKY_STAKING_REWARDS: "0x0650CAF159C5A49f711e8169D4336ECB9b950275",
|
|
9241
|
+
DAI_USDS: "0x3225737a9Bbb6473CB4a45b7244ACa2BeFdB276A"
|
|
9044
9242
|
},
|
|
9045
9243
|
//
|
|
9046
9244
|
//
|
|
@@ -9115,6 +9313,7 @@ var require_contracts = __commonJS({
|
|
|
9115
9313
|
MAKER_DSR_VAULT: token_1.tokenDataByNetwork.Arbitrum.sDAI,
|
|
9116
9314
|
YIELD_ETH_VAULT: token_1.tokenDataByNetwork.Arbitrum.YieldETH,
|
|
9117
9315
|
STAKED_USDE_VAULT: token_1.tokenDataByNetwork.Arbitrum.sUSDe,
|
|
9316
|
+
STAKED_USDS_VAULT: token_1.tokenDataByNetwork.Mainnet.sUSDS,
|
|
9118
9317
|
// CONVEX
|
|
9119
9318
|
CONVEX_BOOSTER: constants_1.NOT_DEPLOYED,
|
|
9120
9319
|
CONVEX_3CRV_POOL: constants_1.NOT_DEPLOYED,
|
|
@@ -9173,7 +9372,9 @@ var require_contracts = __commonJS({
|
|
|
9173
9372
|
MELLOW_RE7_LABS_VAULT: token_1.tokenDataByNetwork.Arbitrum.Re7LRT,
|
|
9174
9373
|
MELLOW_AMPHOR_VAULT: token_1.tokenDataByNetwork.Arbitrum.amphrETH,
|
|
9175
9374
|
MELLOW_RESTAKING_VAULT: token_1.tokenDataByNetwork.Arbitrum.rstETH,
|
|
9176
|
-
MELLOW_RENZO_VAULT: token_1.tokenDataByNetwork.Arbitrum.pzETH
|
|
9375
|
+
MELLOW_RENZO_VAULT: token_1.tokenDataByNetwork.Arbitrum.pzETH,
|
|
9376
|
+
SKY_STAKING_REWARDS: constants_1.NOT_DEPLOYED,
|
|
9377
|
+
DAI_USDS: constants_1.NOT_DEPLOYED
|
|
9177
9378
|
},
|
|
9178
9379
|
//
|
|
9179
9380
|
//
|
|
@@ -9250,6 +9451,7 @@ var require_contracts = __commonJS({
|
|
|
9250
9451
|
MAKER_DSR_VAULT: token_1.tokenDataByNetwork.Optimism.sDAI,
|
|
9251
9452
|
YIELD_ETH_VAULT: token_1.tokenDataByNetwork.Optimism.YieldETH,
|
|
9252
9453
|
STAKED_USDE_VAULT: token_1.tokenDataByNetwork.Optimism.sUSDe,
|
|
9454
|
+
STAKED_USDS_VAULT: token_1.tokenDataByNetwork.Mainnet.sUSDS,
|
|
9253
9455
|
// CONVEX
|
|
9254
9456
|
CONVEX_BOOSTER: constants_1.NOT_DEPLOYED,
|
|
9255
9457
|
CONVEX_3CRV_POOL: constants_1.NOT_DEPLOYED,
|
|
@@ -9309,7 +9511,9 @@ var require_contracts = __commonJS({
|
|
|
9309
9511
|
MELLOW_RE7_LABS_VAULT: token_1.tokenDataByNetwork.Optimism.Re7LRT,
|
|
9310
9512
|
MELLOW_AMPHOR_VAULT: token_1.tokenDataByNetwork.Optimism.amphrETH,
|
|
9311
9513
|
MELLOW_RESTAKING_VAULT: token_1.tokenDataByNetwork.Optimism.rstETH,
|
|
9312
|
-
MELLOW_RENZO_VAULT: token_1.tokenDataByNetwork.Optimism.pzETH
|
|
9514
|
+
MELLOW_RENZO_VAULT: token_1.tokenDataByNetwork.Optimism.pzETH,
|
|
9515
|
+
SKY_STAKING_REWARDS: constants_1.NOT_DEPLOYED,
|
|
9516
|
+
DAI_USDS: constants_1.NOT_DEPLOYED
|
|
9313
9517
|
},
|
|
9314
9518
|
//
|
|
9315
9519
|
//
|
|
@@ -9383,6 +9587,7 @@ var require_contracts = __commonJS({
|
|
|
9383
9587
|
MAKER_DSR_VAULT: token_1.tokenDataByNetwork.Base.sDAI,
|
|
9384
9588
|
YIELD_ETH_VAULT: token_1.tokenDataByNetwork.Base.YieldETH,
|
|
9385
9589
|
STAKED_USDE_VAULT: token_1.tokenDataByNetwork.Base.sUSDe,
|
|
9590
|
+
STAKED_USDS_VAULT: token_1.tokenDataByNetwork.Mainnet.sUSDS,
|
|
9386
9591
|
// CONVEX
|
|
9387
9592
|
CONVEX_BOOSTER: constants_1.NOT_DEPLOYED,
|
|
9388
9593
|
CONVEX_3CRV_POOL: constants_1.NOT_DEPLOYED,
|
|
@@ -9443,7 +9648,9 @@ var require_contracts = __commonJS({
|
|
|
9443
9648
|
MELLOW_RE7_LABS_VAULT: token_1.tokenDataByNetwork.Base.Re7LRT,
|
|
9444
9649
|
MELLOW_AMPHOR_VAULT: token_1.tokenDataByNetwork.Base.amphrETH,
|
|
9445
9650
|
MELLOW_RESTAKING_VAULT: token_1.tokenDataByNetwork.Base.rstETH,
|
|
9446
|
-
MELLOW_RENZO_VAULT: token_1.tokenDataByNetwork.Base.pzETH
|
|
9651
|
+
MELLOW_RENZO_VAULT: token_1.tokenDataByNetwork.Base.pzETH,
|
|
9652
|
+
SKY_STAKING_REWARDS: constants_1.NOT_DEPLOYED,
|
|
9653
|
+
DAI_USDS: constants_1.NOT_DEPLOYED
|
|
9447
9654
|
}
|
|
9448
9655
|
};
|
|
9449
9656
|
exports2.UNISWAP_V3_QUOTER = "0xb27308f9F90D607463bb33eA1BeBb41C27CE5AB6";
|
|
@@ -9921,6 +10128,12 @@ var require_contracts = __commonJS({
|
|
|
9921
10128
|
type: adapters_1.AdapterInterface.ERC4626_VAULT,
|
|
9922
10129
|
underlying: "USDe"
|
|
9923
10130
|
},
|
|
10131
|
+
STAKED_USDS_VAULT: {
|
|
10132
|
+
name: "Sky Staked USDS Vault",
|
|
10133
|
+
protocol: protocols_1.Protocols.Sky,
|
|
10134
|
+
type: adapters_1.AdapterInterface.ERC4626_VAULT,
|
|
10135
|
+
underlying: "USDS"
|
|
10136
|
+
},
|
|
9924
10137
|
CONVEX_BOOSTER: {
|
|
9925
10138
|
name: "Convex BOOSTER",
|
|
9926
10139
|
protocol: protocols_1.Protocols.Convex,
|
|
@@ -10552,6 +10765,17 @@ var require_contracts = __commonJS({
|
|
|
10552
10765
|
name: "Mellow Renzo pzETH vault",
|
|
10553
10766
|
protocol: protocols_1.Protocols.Mellow,
|
|
10554
10767
|
type: adapters_1.AdapterInterface.MELLOW_LRT_VAULT
|
|
10768
|
+
},
|
|
10769
|
+
SKY_STAKING_REWARDS: {
|
|
10770
|
+
name: "Sky StakingRewards contract",
|
|
10771
|
+
protocol: protocols_1.Protocols.Sky,
|
|
10772
|
+
type: adapters_1.AdapterInterface.STAKING_REWARDS,
|
|
10773
|
+
stakedToken: "stkUSDS"
|
|
10774
|
+
},
|
|
10775
|
+
DAI_USDS: {
|
|
10776
|
+
name: "DAI/USDS Exchange",
|
|
10777
|
+
protocol: protocols_1.Protocols.Sky,
|
|
10778
|
+
type: adapters_1.AdapterInterface.DAI_USDS_EXCHANGE
|
|
10555
10779
|
}
|
|
10556
10780
|
};
|
|
10557
10781
|
exports2.contractsByAddress = mappers_1.TypedObjectUtils.entries(exports2.contractsByNetwork).reduce((acc, [, contracts]) => ({
|
|
@@ -13376,7 +13600,7 @@ var require_configs = __commonJS({
|
|
|
13376
13600
|
"../../node_modules/@gearbox-protocol/sdk-gov/lib/config/configs/index.js"(exports2) {
|
|
13377
13601
|
"use strict";
|
|
13378
13602
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
13379
|
-
exports2.wethConfigOptimism = exports2.wethConfigMainnet = exports2.wethConfigArbitrum = exports2.wbtcConfigMainnet = exports2.usdtConfigMainnet = exports2.usdceConfigOptimism = exports2.usdceConfigArbitrum = exports2.usdcConfigOptimism = exports2.usdcConfigMainnet = exports2.usdcConfigArbitrum = exports2.testWethConfigMainnet = exports2.testWethConfigArbitrum = exports2.testUsdcConfigMainnet = exports2.testUsdcConfigArbitrum = exports2.ghoConfigMainnet = exports2.daiConfigMainnet = exports2.crvusdConfigMainnet = void 0;
|
|
13603
|
+
exports2.wethConfigOptimism = exports2.wethConfigMainnet = exports2.wethConfigArbitrum = exports2.wbtcConfigMainnet = exports2.usdtConfigMainnet = exports2.usdceConfigOptimism = exports2.usdceConfigArbitrum = exports2.usdcConfigOptimism = exports2.usdcConfigMainnet = exports2.usdcConfigArbitrum = exports2.testWethConfigMainnet = exports2.testWethConfigArbitrum = exports2.testUsdcConfigMainnet = exports2.testUsdcConfigArbitrum = exports2.testDaiConfigMainnet = exports2.ghoConfigMainnet = exports2.daiConfigMainnet = exports2.crvusdConfigMainnet = void 0;
|
|
13380
13604
|
var crvusdConfigMainnet_1 = require_crvusdConfigMainnet();
|
|
13381
13605
|
Object.defineProperty(exports2, "crvusdConfigMainnet", { enumerable: true, get: function() {
|
|
13382
13606
|
return crvusdConfigMainnet_1.crvusdConfigMainnet;
|
|
@@ -13389,6 +13613,10 @@ var require_configs = __commonJS({
|
|
|
13389
13613
|
Object.defineProperty(exports2, "ghoConfigMainnet", { enumerable: true, get: function() {
|
|
13390
13614
|
return ghoConfigMainnet_1.ghoConfigMainnet;
|
|
13391
13615
|
} });
|
|
13616
|
+
var test_daiConfigMainnet_1 = require_test_daiConfigMainnet();
|
|
13617
|
+
Object.defineProperty(exports2, "testDaiConfigMainnet", { enumerable: true, get: function() {
|
|
13618
|
+
return test_daiConfigMainnet_1.testDaiConfigMainnet;
|
|
13619
|
+
} });
|
|
13392
13620
|
var test_usdcConfigArbitrum_1 = require_test_usdcConfigArbitrum();
|
|
13393
13621
|
Object.defineProperty(exports2, "testUsdcConfigArbitrum", { enumerable: true, get: function() {
|
|
13394
13622
|
return test_usdcConfigArbitrum_1.testUsdcConfigArbitrum;
|
|
@@ -46149,6 +46377,19 @@ var require_priceFeeds = __commonJS({
|
|
|
46149
46377
|
}
|
|
46150
46378
|
}
|
|
46151
46379
|
},
|
|
46380
|
+
USDS: {
|
|
46381
|
+
AllNetworks: {
|
|
46382
|
+
Main: {
|
|
46383
|
+
type: pricefeedType_1.PriceFeedType.THE_SAME_AS,
|
|
46384
|
+
token: "DAI",
|
|
46385
|
+
trusted: true
|
|
46386
|
+
},
|
|
46387
|
+
Reserve: {
|
|
46388
|
+
type: pricefeedType_1.PriceFeedType.THE_SAME_AS,
|
|
46389
|
+
token: "DAI"
|
|
46390
|
+
}
|
|
46391
|
+
}
|
|
46392
|
+
},
|
|
46152
46393
|
DPI: {
|
|
46153
46394
|
Mainnet: {
|
|
46154
46395
|
Main: {
|
|
@@ -47652,6 +47893,14 @@ var require_priceFeeds = __commonJS({
|
|
|
47652
47893
|
}
|
|
47653
47894
|
}
|
|
47654
47895
|
},
|
|
47896
|
+
SKY: {
|
|
47897
|
+
AllNetworks: {
|
|
47898
|
+
Main: {
|
|
47899
|
+
type: pricefeedType_1.PriceFeedType.ZERO_ORACLE,
|
|
47900
|
+
trusted: false
|
|
47901
|
+
}
|
|
47902
|
+
}
|
|
47903
|
+
},
|
|
47655
47904
|
GHO: {
|
|
47656
47905
|
Mainnet: {
|
|
47657
47906
|
Main: {
|
|
@@ -49303,6 +49552,19 @@ var require_priceFeeds = __commonJS({
|
|
|
49303
49552
|
}
|
|
49304
49553
|
}
|
|
49305
49554
|
},
|
|
49555
|
+
sUSDS: {
|
|
49556
|
+
AllNetworks: {
|
|
49557
|
+
Main: {
|
|
49558
|
+
type: pricefeedType_1.PriceFeedType.ERC4626_VAULT_ORACLE,
|
|
49559
|
+
underlying: "USDS",
|
|
49560
|
+
trusted: false
|
|
49561
|
+
},
|
|
49562
|
+
Reserve: {
|
|
49563
|
+
type: pricefeedType_1.PriceFeedType.ERC4626_VAULT_ORACLE,
|
|
49564
|
+
underlying: "USDS"
|
|
49565
|
+
}
|
|
49566
|
+
}
|
|
49567
|
+
},
|
|
49306
49568
|
// AURA
|
|
49307
49569
|
auraB_rETH_STABLE: {
|
|
49308
49570
|
AllNetworks: {
|
|
@@ -49475,6 +49737,15 @@ var require_priceFeeds = __commonJS({
|
|
|
49475
49737
|
}
|
|
49476
49738
|
}
|
|
49477
49739
|
},
|
|
49740
|
+
stkUSDS: {
|
|
49741
|
+
AllNetworks: {
|
|
49742
|
+
Main: {
|
|
49743
|
+
type: pricefeedType_1.PriceFeedType.THE_SAME_AS,
|
|
49744
|
+
token: "USDS",
|
|
49745
|
+
trusted: false
|
|
49746
|
+
}
|
|
49747
|
+
}
|
|
49748
|
+
},
|
|
49478
49749
|
// MELLOW
|
|
49479
49750
|
steakLRT: {
|
|
49480
49751
|
AllNetworks: {
|
|
@@ -49556,14 +49827,14 @@ var require_priceFeeds = __commonJS({
|
|
|
49556
49827
|
Mainnet: {
|
|
49557
49828
|
Main: {
|
|
49558
49829
|
type: pricefeedType_1.PriceFeedType.PENDLE_PT_TWAP_ORACLE,
|
|
49559
|
-
underlying: "
|
|
49830
|
+
underlying: "USDe",
|
|
49560
49831
|
market: "0xa0ab94DeBB3cC9A7eA77f3205ba4AB23276feD08",
|
|
49561
49832
|
twapWindow: pricefeedType_1.HOUR_1 / 2,
|
|
49562
49833
|
trusted: false
|
|
49563
49834
|
},
|
|
49564
49835
|
Reserve: {
|
|
49565
49836
|
type: pricefeedType_1.PriceFeedType.PENDLE_PT_TWAP_ORACLE,
|
|
49566
|
-
underlying: "
|
|
49837
|
+
underlying: "USDe",
|
|
49567
49838
|
market: "0xa0ab94DeBB3cC9A7eA77f3205ba4AB23276feD08",
|
|
49568
49839
|
twapWindow: pricefeedType_1.HOUR_1 / 2
|
|
49569
49840
|
}
|
|
@@ -49573,14 +49844,14 @@ var require_priceFeeds = __commonJS({
|
|
|
49573
49844
|
Mainnet: {
|
|
49574
49845
|
Main: {
|
|
49575
49846
|
type: pricefeedType_1.PriceFeedType.PENDLE_PT_TWAP_ORACLE,
|
|
49576
|
-
underlying: "
|
|
49847
|
+
underlying: "WETH",
|
|
49577
49848
|
market: "0x7d372819240D14fB477f17b964f95F33BeB4c704",
|
|
49578
49849
|
twapWindow: pricefeedType_1.HOUR_1 / 2,
|
|
49579
49850
|
trusted: false
|
|
49580
49851
|
},
|
|
49581
49852
|
Reserve: {
|
|
49582
49853
|
type: pricefeedType_1.PriceFeedType.PENDLE_PT_TWAP_ORACLE,
|
|
49583
|
-
underlying: "
|
|
49854
|
+
underlying: "WETH",
|
|
49584
49855
|
market: "0x7d372819240D14fB477f17b964f95F33BeB4c704",
|
|
49585
49856
|
twapWindow: pricefeedType_1.HOUR_1 / 2
|
|
49586
49857
|
}
|
|
@@ -49590,15 +49861,15 @@ var require_priceFeeds = __commonJS({
|
|
|
49590
49861
|
Mainnet: {
|
|
49591
49862
|
Main: {
|
|
49592
49863
|
type: pricefeedType_1.PriceFeedType.PENDLE_PT_TWAP_ORACLE,
|
|
49593
|
-
underlying: "
|
|
49594
|
-
market: "
|
|
49864
|
+
underlying: "WETH",
|
|
49865
|
+
market: "0xD8F12bCDE578c653014F27379a6114F67F0e445f",
|
|
49595
49866
|
twapWindow: pricefeedType_1.HOUR_1 / 2,
|
|
49596
49867
|
trusted: false
|
|
49597
49868
|
},
|
|
49598
49869
|
Reserve: {
|
|
49599
49870
|
type: pricefeedType_1.PriceFeedType.PENDLE_PT_TWAP_ORACLE,
|
|
49600
|
-
underlying: "
|
|
49601
|
-
market: "
|
|
49871
|
+
underlying: "WETH",
|
|
49872
|
+
market: "0xD8F12bCDE578c653014F27379a6114F67F0e445f",
|
|
49602
49873
|
twapWindow: pricefeedType_1.HOUR_1 / 2
|
|
49603
49874
|
}
|
|
49604
49875
|
}
|
|
@@ -331270,7 +331541,7 @@ function getRenderer(opts) {
|
|
|
331270
331541
|
}
|
|
331271
331542
|
|
|
331272
331543
|
// package.json
|
|
331273
|
-
var version2 = "4.61.
|
|
331544
|
+
var version2 = "4.61.16";
|
|
331274
331545
|
|
|
331275
331546
|
// src/version.ts
|
|
331276
331547
|
var version_default = version2;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gearbox-protocol/deploy-tools",
|
|
3
3
|
"description": "Gearbox deploy tools",
|
|
4
|
-
"version": "4.61.
|
|
4
|
+
"version": "4.61.16",
|
|
5
5
|
"homepage": "https://gearbox.fi",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"gearbox"
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"@gearbox-protocol/deploy-tools-node": "0.0.0",
|
|
45
45
|
"@gearbox-protocol/deploy-tools-shared": "0.0.0",
|
|
46
46
|
"@gearbox-protocol/deploy-tools-types": "0.0.0",
|
|
47
|
-
"@gearbox-protocol/sdk-gov": "^2.
|
|
47
|
+
"@gearbox-protocol/sdk-gov": "^2.25.0",
|
|
48
48
|
"@types/lodash-es": "^4.17.12",
|
|
49
|
-
"@types/node": "^22.
|
|
50
|
-
"@types/react": "^18.3.
|
|
49
|
+
"@types/node": "^22.8.4",
|
|
50
|
+
"@types/react": "^18.3.12",
|
|
51
51
|
"@types/react-dom": "^18.3.1",
|
|
52
52
|
"abitype": "^1.0.6",
|
|
53
53
|
"chalk": "^5.3.0",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"react-dom": "^18.3.1",
|
|
66
66
|
"table": "^6.8.2",
|
|
67
67
|
"tslog": "^4.9.3",
|
|
68
|
-
"tsx": "^4.19.
|
|
68
|
+
"tsx": "^4.19.2",
|
|
69
69
|
"yaml": "^2.6.0",
|
|
70
70
|
"zod": "^3.23.8"
|
|
71
71
|
},
|