@gearbox-protocol/deploy-tools 5.36.3 → 5.36.5
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 +140 -89
- package/package.json +7 -7
package/dist/index.mjs
CHANGED
|
@@ -4409,7 +4409,7 @@ var init_size = __esm({
|
|
|
4409
4409
|
var version2;
|
|
4410
4410
|
var init_version2 = __esm({
|
|
4411
4411
|
"../../node_modules/viem/_esm/errors/version.js"() {
|
|
4412
|
-
version2 = "2.31.
|
|
4412
|
+
version2 = "2.31.1";
|
|
4413
4413
|
}
|
|
4414
4414
|
});
|
|
4415
4415
|
|
|
@@ -162378,7 +162378,7 @@ var require_version28 = __commonJS({
|
|
|
162378
162378
|
"use strict";
|
|
162379
162379
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
162380
162380
|
exports2.version = void 0;
|
|
162381
|
-
exports2.version = "2.31.
|
|
162381
|
+
exports2.version = "2.31.1";
|
|
162382
162382
|
}
|
|
162383
162383
|
});
|
|
162384
162384
|
|
|
@@ -174348,7 +174348,7 @@ var require_abis = __commonJS({
|
|
|
174348
174348
|
type: "address"
|
|
174349
174349
|
},
|
|
174350
174350
|
{
|
|
174351
|
-
name: "
|
|
174351
|
+
name: "tokenId",
|
|
174352
174352
|
type: "uint256"
|
|
174353
174353
|
}
|
|
174354
174354
|
],
|
|
@@ -176729,7 +176729,7 @@ var require_sendCalls = __commonJS({
|
|
|
176729
176729
|
return response;
|
|
176730
176730
|
} catch (err) {
|
|
176731
176731
|
const error = err;
|
|
176732
|
-
if (experimental_fallback && (error.name === "MethodNotFoundRpcError" || error.name === "MethodNotSupportedRpcError" || error.details.toLowerCase().includes("does not exist / is not available") || error.details.toLowerCase().includes("missing or invalid. request()") || error.details.toLowerCase().includes("did not match any variant of untagged enum"))) {
|
|
176732
|
+
if (experimental_fallback && (error.name === "MethodNotFoundRpcError" || error.name === "MethodNotSupportedRpcError" || error.name === "UnknownRpcError" || error.details.toLowerCase().includes("does not exist / is not available") || error.details.toLowerCase().includes("missing or invalid. request()") || error.details.toLowerCase().includes("did not match any variant of untagged enum") || error.details.toLowerCase().includes("account upgraded to unsupported contract") || error.details.toLowerCase().includes("eip-7702 not supported") || error.details.toLowerCase().includes("unsupported wc_ method"))) {
|
|
176733
176733
|
if (capabilities) {
|
|
176734
176734
|
const hasNonOptionalCapability = Object.values(capabilities).some((capability) => !capability.optional);
|
|
176735
176735
|
if (hasNonOptionalCapability) {
|
|
@@ -183146,13 +183146,13 @@ var require_serializeTransaction = __commonJS({
|
|
|
183146
183146
|
return (0, concat_js_1.concatHex)([
|
|
183147
183147
|
"0x04",
|
|
183148
183148
|
(0, toRlp_js_1.toRlp)([
|
|
183149
|
-
(0, toHex_js_1.
|
|
183150
|
-
nonce ? (0, toHex_js_1.
|
|
183151
|
-
maxPriorityFeePerGas ? (0, toHex_js_1.
|
|
183152
|
-
maxFeePerGas ? (0, toHex_js_1.
|
|
183153
|
-
gas ? (0, toHex_js_1.
|
|
183149
|
+
(0, toHex_js_1.numberToHex)(chainId),
|
|
183150
|
+
nonce ? (0, toHex_js_1.numberToHex)(nonce) : "0x",
|
|
183151
|
+
maxPriorityFeePerGas ? (0, toHex_js_1.numberToHex)(maxPriorityFeePerGas) : "0x",
|
|
183152
|
+
maxFeePerGas ? (0, toHex_js_1.numberToHex)(maxFeePerGas) : "0x",
|
|
183153
|
+
gas ? (0, toHex_js_1.numberToHex)(gas) : "0x",
|
|
183154
183154
|
to ?? "0x",
|
|
183155
|
-
value ? (0, toHex_js_1.
|
|
183155
|
+
value ? (0, toHex_js_1.numberToHex)(value) : "0x",
|
|
183156
183156
|
data ?? "0x",
|
|
183157
183157
|
serializedAccessList,
|
|
183158
183158
|
serializedAuthorizationList,
|
|
@@ -183183,16 +183183,16 @@ var require_serializeTransaction = __commonJS({
|
|
|
183183
183183
|
}
|
|
183184
183184
|
const serializedAccessList = (0, serializeAccessList_js_1.serializeAccessList)(accessList);
|
|
183185
183185
|
const serializedTransaction = [
|
|
183186
|
-
(0, toHex_js_1.
|
|
183187
|
-
nonce ? (0, toHex_js_1.
|
|
183188
|
-
maxPriorityFeePerGas ? (0, toHex_js_1.
|
|
183189
|
-
maxFeePerGas ? (0, toHex_js_1.
|
|
183190
|
-
gas ? (0, toHex_js_1.
|
|
183186
|
+
(0, toHex_js_1.numberToHex)(chainId),
|
|
183187
|
+
nonce ? (0, toHex_js_1.numberToHex)(nonce) : "0x",
|
|
183188
|
+
maxPriorityFeePerGas ? (0, toHex_js_1.numberToHex)(maxPriorityFeePerGas) : "0x",
|
|
183189
|
+
maxFeePerGas ? (0, toHex_js_1.numberToHex)(maxFeePerGas) : "0x",
|
|
183190
|
+
gas ? (0, toHex_js_1.numberToHex)(gas) : "0x",
|
|
183191
183191
|
to ?? "0x",
|
|
183192
|
-
value ? (0, toHex_js_1.
|
|
183192
|
+
value ? (0, toHex_js_1.numberToHex)(value) : "0x",
|
|
183193
183193
|
data ?? "0x",
|
|
183194
183194
|
serializedAccessList,
|
|
183195
|
-
maxFeePerBlobGas ? (0, toHex_js_1.
|
|
183195
|
+
maxFeePerBlobGas ? (0, toHex_js_1.numberToHex)(maxFeePerBlobGas) : "0x",
|
|
183196
183196
|
blobVersionedHashes ?? [],
|
|
183197
183197
|
...toYParitySignatureArray2(transaction, signature)
|
|
183198
183198
|
];
|
|
@@ -183216,13 +183216,13 @@ var require_serializeTransaction = __commonJS({
|
|
|
183216
183216
|
(0, assertTransaction_js_1.assertTransactionEIP1559)(transaction);
|
|
183217
183217
|
const serializedAccessList = (0, serializeAccessList_js_1.serializeAccessList)(accessList);
|
|
183218
183218
|
const serializedTransaction = [
|
|
183219
|
-
(0, toHex_js_1.
|
|
183220
|
-
nonce ? (0, toHex_js_1.
|
|
183221
|
-
maxPriorityFeePerGas ? (0, toHex_js_1.
|
|
183222
|
-
maxFeePerGas ? (0, toHex_js_1.
|
|
183223
|
-
gas ? (0, toHex_js_1.
|
|
183219
|
+
(0, toHex_js_1.numberToHex)(chainId),
|
|
183220
|
+
nonce ? (0, toHex_js_1.numberToHex)(nonce) : "0x",
|
|
183221
|
+
maxPriorityFeePerGas ? (0, toHex_js_1.numberToHex)(maxPriorityFeePerGas) : "0x",
|
|
183222
|
+
maxFeePerGas ? (0, toHex_js_1.numberToHex)(maxFeePerGas) : "0x",
|
|
183223
|
+
gas ? (0, toHex_js_1.numberToHex)(gas) : "0x",
|
|
183224
183224
|
to ?? "0x",
|
|
183225
|
-
value ? (0, toHex_js_1.
|
|
183225
|
+
value ? (0, toHex_js_1.numberToHex)(value) : "0x",
|
|
183226
183226
|
data ?? "0x",
|
|
183227
183227
|
serializedAccessList,
|
|
183228
183228
|
...toYParitySignatureArray2(transaction, signature)
|
|
@@ -183237,12 +183237,12 @@ var require_serializeTransaction = __commonJS({
|
|
|
183237
183237
|
(0, assertTransaction_js_1.assertTransactionEIP2930)(transaction);
|
|
183238
183238
|
const serializedAccessList = (0, serializeAccessList_js_1.serializeAccessList)(accessList);
|
|
183239
183239
|
const serializedTransaction = [
|
|
183240
|
-
(0, toHex_js_1.
|
|
183241
|
-
nonce ? (0, toHex_js_1.
|
|
183242
|
-
gasPrice ? (0, toHex_js_1.
|
|
183243
|
-
gas ? (0, toHex_js_1.
|
|
183240
|
+
(0, toHex_js_1.numberToHex)(chainId),
|
|
183241
|
+
nonce ? (0, toHex_js_1.numberToHex)(nonce) : "0x",
|
|
183242
|
+
gasPrice ? (0, toHex_js_1.numberToHex)(gasPrice) : "0x",
|
|
183243
|
+
gas ? (0, toHex_js_1.numberToHex)(gas) : "0x",
|
|
183244
183244
|
to ?? "0x",
|
|
183245
|
-
value ? (0, toHex_js_1.
|
|
183245
|
+
value ? (0, toHex_js_1.numberToHex)(value) : "0x",
|
|
183246
183246
|
data ?? "0x",
|
|
183247
183247
|
serializedAccessList,
|
|
183248
183248
|
...toYParitySignatureArray2(transaction, signature)
|
|
@@ -183256,11 +183256,11 @@ var require_serializeTransaction = __commonJS({
|
|
|
183256
183256
|
const { chainId = 0, gas, data, nonce, to, value, gasPrice } = transaction;
|
|
183257
183257
|
(0, assertTransaction_js_1.assertTransactionLegacy)(transaction);
|
|
183258
183258
|
let serializedTransaction = [
|
|
183259
|
-
nonce ? (0, toHex_js_1.
|
|
183260
|
-
gasPrice ? (0, toHex_js_1.
|
|
183261
|
-
gas ? (0, toHex_js_1.
|
|
183259
|
+
nonce ? (0, toHex_js_1.numberToHex)(nonce) : "0x",
|
|
183260
|
+
gasPrice ? (0, toHex_js_1.numberToHex)(gasPrice) : "0x",
|
|
183261
|
+
gas ? (0, toHex_js_1.numberToHex)(gas) : "0x",
|
|
183262
183262
|
to ?? "0x",
|
|
183263
|
-
value ? (0, toHex_js_1.
|
|
183263
|
+
value ? (0, toHex_js_1.numberToHex)(value) : "0x",
|
|
183264
183264
|
data ?? "0x"
|
|
183265
183265
|
];
|
|
183266
183266
|
if (signature) {
|
|
@@ -183282,14 +183282,14 @@ var require_serializeTransaction = __commonJS({
|
|
|
183282
183282
|
const s = (0, trim_js_1.trim)(signature.s);
|
|
183283
183283
|
serializedTransaction = [
|
|
183284
183284
|
...serializedTransaction,
|
|
183285
|
-
(0, toHex_js_1.
|
|
183285
|
+
(0, toHex_js_1.numberToHex)(v),
|
|
183286
183286
|
r === "0x00" ? "0x" : r,
|
|
183287
183287
|
s === "0x00" ? "0x" : s
|
|
183288
183288
|
];
|
|
183289
183289
|
} else if (chainId > 0) {
|
|
183290
183290
|
serializedTransaction = [
|
|
183291
183291
|
...serializedTransaction,
|
|
183292
|
-
(0, toHex_js_1.
|
|
183292
|
+
(0, toHex_js_1.numberToHex)(chainId),
|
|
183293
183293
|
"0x",
|
|
183294
183294
|
"0x"
|
|
183295
183295
|
];
|
|
@@ -183309,12 +183309,12 @@ var require_serializeTransaction = __commonJS({
|
|
|
183309
183309
|
const s = (0, trim_js_1.trim)(signature.s);
|
|
183310
183310
|
const yParity_ = (() => {
|
|
183311
183311
|
if (typeof yParity === "number")
|
|
183312
|
-
return yParity ? (0, toHex_js_1.
|
|
183312
|
+
return yParity ? (0, toHex_js_1.numberToHex)(1) : "0x";
|
|
183313
183313
|
if (v === 0n)
|
|
183314
183314
|
return "0x";
|
|
183315
183315
|
if (v === 1n)
|
|
183316
|
-
return (0, toHex_js_1.
|
|
183317
|
-
return v === 27n ? "0x" : (0, toHex_js_1.
|
|
183316
|
+
return (0, toHex_js_1.numberToHex)(1);
|
|
183317
|
+
return v === 27n ? "0x" : (0, toHex_js_1.numberToHex)(1);
|
|
183318
183318
|
})();
|
|
183319
183319
|
return [yParity_, r === "0x00" ? "0x" : r, s === "0x00" ? "0x" : s];
|
|
183320
183320
|
}
|
|
@@ -216264,6 +216264,24 @@ var require_blast = __commonJS({
|
|
|
216264
216264
|
multicall3: {
|
|
216265
216265
|
address: "0xcA11bde05977b3631167028862bE2a173976CA11",
|
|
216266
216266
|
blockCreated: 212929
|
|
216267
|
+
},
|
|
216268
|
+
l2OutputOracle: {
|
|
216269
|
+
[sourceId4]: {
|
|
216270
|
+
address: "0x826D1B0D4111Ad9146Eb8941D7Ca2B6a44215c76",
|
|
216271
|
+
blockCreated: 19300358
|
|
216272
|
+
}
|
|
216273
|
+
},
|
|
216274
|
+
portal: {
|
|
216275
|
+
[sourceId4]: {
|
|
216276
|
+
address: "0x0Ec68c5B10F21EFFb74f2A5C61DFe6b08C0Db6Cb",
|
|
216277
|
+
blockCreated: 19300357
|
|
216278
|
+
}
|
|
216279
|
+
},
|
|
216280
|
+
l1StandardBridge: {
|
|
216281
|
+
[sourceId4]: {
|
|
216282
|
+
address: "0x697402166Fbf2F22E970df8a6486Ef171dbfc524",
|
|
216283
|
+
blockCreated: 19300360
|
|
216284
|
+
}
|
|
216267
216285
|
}
|
|
216268
216286
|
},
|
|
216269
216287
|
sourceId: sourceId4
|
|
@@ -216719,7 +216737,7 @@ var require_bscTestnet = __commonJS({
|
|
|
216719
216737
|
var defineChain_js_1 = require_defineChain();
|
|
216720
216738
|
exports2.bscTestnet = (0, defineChain_js_1.defineChain)({
|
|
216721
216739
|
id: 97,
|
|
216722
|
-
name: "
|
|
216740
|
+
name: "BNB Smart Chain Testnet",
|
|
216723
216741
|
nativeCurrency: {
|
|
216724
216742
|
decimals: 18,
|
|
216725
216743
|
name: "BNB",
|
|
@@ -356313,7 +356331,7 @@ async function sendCalls(client, parameters) {
|
|
|
356313
356331
|
return response;
|
|
356314
356332
|
} catch (err) {
|
|
356315
356333
|
const error = err;
|
|
356316
|
-
if (experimental_fallback && (error.name === "MethodNotFoundRpcError" || error.name === "MethodNotSupportedRpcError" || error.details.toLowerCase().includes("does not exist / is not available") || error.details.toLowerCase().includes("missing or invalid. request()") || error.details.toLowerCase().includes("did not match any variant of untagged enum"))) {
|
|
356334
|
+
if (experimental_fallback && (error.name === "MethodNotFoundRpcError" || error.name === "MethodNotSupportedRpcError" || error.name === "UnknownRpcError" || error.details.toLowerCase().includes("does not exist / is not available") || error.details.toLowerCase().includes("missing or invalid. request()") || error.details.toLowerCase().includes("did not match any variant of untagged enum") || error.details.toLowerCase().includes("account upgraded to unsupported contract") || error.details.toLowerCase().includes("eip-7702 not supported") || error.details.toLowerCase().includes("unsupported wc_ method"))) {
|
|
356317
356335
|
if (capabilities) {
|
|
356318
356336
|
const hasNonOptionalCapability = Object.values(capabilities).some((capability) => !capability.optional);
|
|
356319
356337
|
if (hasNonOptionalCapability) {
|
|
@@ -358312,13 +358330,13 @@ function serializeTransactionEIP7702(transaction, signature) {
|
|
|
358312
358330
|
return concatHex([
|
|
358313
358331
|
"0x04",
|
|
358314
358332
|
toRlp([
|
|
358315
|
-
|
|
358316
|
-
nonce ?
|
|
358317
|
-
maxPriorityFeePerGas ?
|
|
358318
|
-
maxFeePerGas ?
|
|
358319
|
-
gas ?
|
|
358333
|
+
numberToHex(chainId),
|
|
358334
|
+
nonce ? numberToHex(nonce) : "0x",
|
|
358335
|
+
maxPriorityFeePerGas ? numberToHex(maxPriorityFeePerGas) : "0x",
|
|
358336
|
+
maxFeePerGas ? numberToHex(maxFeePerGas) : "0x",
|
|
358337
|
+
gas ? numberToHex(gas) : "0x",
|
|
358320
358338
|
to ?? "0x",
|
|
358321
|
-
value ?
|
|
358339
|
+
value ? numberToHex(value) : "0x",
|
|
358322
358340
|
data ?? "0x",
|
|
358323
358341
|
serializedAccessList,
|
|
358324
358342
|
serializedAuthorizationList,
|
|
@@ -358349,16 +358367,16 @@ function serializeTransactionEIP4844(transaction, signature) {
|
|
|
358349
358367
|
}
|
|
358350
358368
|
const serializedAccessList = serializeAccessList(accessList);
|
|
358351
358369
|
const serializedTransaction = [
|
|
358352
|
-
|
|
358353
|
-
nonce ?
|
|
358354
|
-
maxPriorityFeePerGas ?
|
|
358355
|
-
maxFeePerGas ?
|
|
358356
|
-
gas ?
|
|
358370
|
+
numberToHex(chainId),
|
|
358371
|
+
nonce ? numberToHex(nonce) : "0x",
|
|
358372
|
+
maxPriorityFeePerGas ? numberToHex(maxPriorityFeePerGas) : "0x",
|
|
358373
|
+
maxFeePerGas ? numberToHex(maxFeePerGas) : "0x",
|
|
358374
|
+
gas ? numberToHex(gas) : "0x",
|
|
358357
358375
|
to ?? "0x",
|
|
358358
|
-
value ?
|
|
358376
|
+
value ? numberToHex(value) : "0x",
|
|
358359
358377
|
data ?? "0x",
|
|
358360
358378
|
serializedAccessList,
|
|
358361
|
-
maxFeePerBlobGas ?
|
|
358379
|
+
maxFeePerBlobGas ? numberToHex(maxFeePerBlobGas) : "0x",
|
|
358362
358380
|
blobVersionedHashes ?? [],
|
|
358363
358381
|
...toYParitySignatureArray(transaction, signature)
|
|
358364
358382
|
];
|
|
@@ -358388,13 +358406,13 @@ function serializeTransactionEIP1559(transaction, signature) {
|
|
|
358388
358406
|
assertTransactionEIP1559(transaction);
|
|
358389
358407
|
const serializedAccessList = serializeAccessList(accessList);
|
|
358390
358408
|
const serializedTransaction = [
|
|
358391
|
-
|
|
358392
|
-
nonce ?
|
|
358393
|
-
maxPriorityFeePerGas ?
|
|
358394
|
-
maxFeePerGas ?
|
|
358395
|
-
gas ?
|
|
358409
|
+
numberToHex(chainId),
|
|
358410
|
+
nonce ? numberToHex(nonce) : "0x",
|
|
358411
|
+
maxPriorityFeePerGas ? numberToHex(maxPriorityFeePerGas) : "0x",
|
|
358412
|
+
maxFeePerGas ? numberToHex(maxFeePerGas) : "0x",
|
|
358413
|
+
gas ? numberToHex(gas) : "0x",
|
|
358396
358414
|
to ?? "0x",
|
|
358397
|
-
value ?
|
|
358415
|
+
value ? numberToHex(value) : "0x",
|
|
358398
358416
|
data ?? "0x",
|
|
358399
358417
|
serializedAccessList,
|
|
358400
358418
|
...toYParitySignatureArray(transaction, signature)
|
|
@@ -358409,12 +358427,12 @@ function serializeTransactionEIP2930(transaction, signature) {
|
|
|
358409
358427
|
assertTransactionEIP2930(transaction);
|
|
358410
358428
|
const serializedAccessList = serializeAccessList(accessList);
|
|
358411
358429
|
const serializedTransaction = [
|
|
358412
|
-
|
|
358413
|
-
nonce ?
|
|
358414
|
-
gasPrice ?
|
|
358415
|
-
gas ?
|
|
358430
|
+
numberToHex(chainId),
|
|
358431
|
+
nonce ? numberToHex(nonce) : "0x",
|
|
358432
|
+
gasPrice ? numberToHex(gasPrice) : "0x",
|
|
358433
|
+
gas ? numberToHex(gas) : "0x",
|
|
358416
358434
|
to ?? "0x",
|
|
358417
|
-
value ?
|
|
358435
|
+
value ? numberToHex(value) : "0x",
|
|
358418
358436
|
data ?? "0x",
|
|
358419
358437
|
serializedAccessList,
|
|
358420
358438
|
...toYParitySignatureArray(transaction, signature)
|
|
@@ -358428,11 +358446,11 @@ function serializeTransactionLegacy(transaction, signature) {
|
|
|
358428
358446
|
const { chainId = 0, gas, data, nonce, to, value, gasPrice } = transaction;
|
|
358429
358447
|
assertTransactionLegacy(transaction);
|
|
358430
358448
|
let serializedTransaction = [
|
|
358431
|
-
nonce ?
|
|
358432
|
-
gasPrice ?
|
|
358433
|
-
gas ?
|
|
358449
|
+
nonce ? numberToHex(nonce) : "0x",
|
|
358450
|
+
gasPrice ? numberToHex(gasPrice) : "0x",
|
|
358451
|
+
gas ? numberToHex(gas) : "0x",
|
|
358434
358452
|
to ?? "0x",
|
|
358435
|
-
value ?
|
|
358453
|
+
value ? numberToHex(value) : "0x",
|
|
358436
358454
|
data ?? "0x"
|
|
358437
358455
|
];
|
|
358438
358456
|
if (signature) {
|
|
@@ -358454,14 +358472,14 @@ function serializeTransactionLegacy(transaction, signature) {
|
|
|
358454
358472
|
const s = trim(signature.s);
|
|
358455
358473
|
serializedTransaction = [
|
|
358456
358474
|
...serializedTransaction,
|
|
358457
|
-
|
|
358475
|
+
numberToHex(v),
|
|
358458
358476
|
r === "0x00" ? "0x" : r,
|
|
358459
358477
|
s === "0x00" ? "0x" : s
|
|
358460
358478
|
];
|
|
358461
358479
|
} else if (chainId > 0) {
|
|
358462
358480
|
serializedTransaction = [
|
|
358463
358481
|
...serializedTransaction,
|
|
358464
|
-
|
|
358482
|
+
numberToHex(chainId),
|
|
358465
358483
|
"0x",
|
|
358466
358484
|
"0x"
|
|
358467
358485
|
];
|
|
@@ -358481,12 +358499,12 @@ function toYParitySignatureArray(transaction, signature_) {
|
|
|
358481
358499
|
const s = trim(signature.s);
|
|
358482
358500
|
const yParity_ = (() => {
|
|
358483
358501
|
if (typeof yParity === "number")
|
|
358484
|
-
return yParity ?
|
|
358502
|
+
return yParity ? numberToHex(1) : "0x";
|
|
358485
358503
|
if (v === 0n)
|
|
358486
358504
|
return "0x";
|
|
358487
358505
|
if (v === 1n)
|
|
358488
|
-
return
|
|
358489
|
-
return v === 27n ? "0x" :
|
|
358506
|
+
return numberToHex(1);
|
|
358507
|
+
return v === 27n ? "0x" : numberToHex(1);
|
|
358490
358508
|
})();
|
|
358491
358509
|
return [yParity_, r === "0x00" ? "0x" : r, s === "0x00" ? "0x" : s];
|
|
358492
358510
|
}
|
|
@@ -384307,11 +384325,18 @@ var erc4626Tokens = {
|
|
|
384307
384325
|
vault: "SAVINGS_CRVUSD_VAULT"
|
|
384308
384326
|
},
|
|
384309
384327
|
ynBNBx: {
|
|
384310
|
-
name: "
|
|
384311
|
-
symbol: "
|
|
384328
|
+
name: "Staked WBNB",
|
|
384329
|
+
symbol: "ynBNBx",
|
|
384312
384330
|
type: { AllNetworks: TokenType.ERC4626_VAULT_TOKEN },
|
|
384313
384331
|
underlying: "WBNB",
|
|
384314
384332
|
vault: void 0
|
|
384333
|
+
},
|
|
384334
|
+
sUSDX: {
|
|
384335
|
+
name: "Staked USDX",
|
|
384336
|
+
symbol: "sUSDX",
|
|
384337
|
+
type: { AllNetworks: TokenType.ERC4626_VAULT_TOKEN },
|
|
384338
|
+
underlying: "USDX",
|
|
384339
|
+
vault: void 0
|
|
384315
384340
|
}
|
|
384316
384341
|
};
|
|
384317
384342
|
|
|
@@ -384741,7 +384766,11 @@ var tokenDataByNetwork = {
|
|
|
384741
384766
|
WBNB: NOT_DEPLOYED,
|
|
384742
384767
|
dUSDTv310: NOT_DEPLOYED,
|
|
384743
384768
|
dWBNBv3: NOT_DEPLOYED,
|
|
384744
|
-
ynBNBx: NOT_DEPLOYED
|
|
384769
|
+
ynBNBx: NOT_DEPLOYED,
|
|
384770
|
+
USD1: NOT_DEPLOYED,
|
|
384771
|
+
USDX: NOT_DEPLOYED,
|
|
384772
|
+
dUSD1V3: NOT_DEPLOYED,
|
|
384773
|
+
sUSDX: NOT_DEPLOYED
|
|
384745
384774
|
},
|
|
384746
384775
|
///
|
|
384747
384776
|
///
|
|
@@ -385054,7 +385083,11 @@ var tokenDataByNetwork = {
|
|
|
385054
385083
|
WBNB: NOT_DEPLOYED,
|
|
385055
385084
|
dUSDTv310: NOT_DEPLOYED,
|
|
385056
385085
|
dWBNBv3: NOT_DEPLOYED,
|
|
385057
|
-
ynBNBx: NOT_DEPLOYED
|
|
385086
|
+
ynBNBx: NOT_DEPLOYED,
|
|
385087
|
+
USD1: NOT_DEPLOYED,
|
|
385088
|
+
USDX: NOT_DEPLOYED,
|
|
385089
|
+
dUSD1V3: NOT_DEPLOYED,
|
|
385090
|
+
sUSDX: NOT_DEPLOYED
|
|
385058
385091
|
},
|
|
385059
385092
|
///
|
|
385060
385093
|
///
|
|
@@ -385367,7 +385400,11 @@ var tokenDataByNetwork = {
|
|
|
385367
385400
|
WBNB: NOT_DEPLOYED,
|
|
385368
385401
|
dUSDTv310: NOT_DEPLOYED,
|
|
385369
385402
|
dWBNBv3: NOT_DEPLOYED,
|
|
385370
|
-
ynBNBx: NOT_DEPLOYED
|
|
385403
|
+
ynBNBx: NOT_DEPLOYED,
|
|
385404
|
+
USD1: NOT_DEPLOYED,
|
|
385405
|
+
USDX: NOT_DEPLOYED,
|
|
385406
|
+
dUSD1V3: NOT_DEPLOYED,
|
|
385407
|
+
sUSDX: NOT_DEPLOYED
|
|
385371
385408
|
},
|
|
385372
385409
|
//
|
|
385373
385410
|
//
|
|
@@ -385679,7 +385716,11 @@ var tokenDataByNetwork = {
|
|
|
385679
385716
|
WBNB: NOT_DEPLOYED,
|
|
385680
385717
|
dUSDTv310: NOT_DEPLOYED,
|
|
385681
385718
|
dWBNBv3: NOT_DEPLOYED,
|
|
385682
|
-
ynBNBx: NOT_DEPLOYED
|
|
385719
|
+
ynBNBx: NOT_DEPLOYED,
|
|
385720
|
+
USD1: NOT_DEPLOYED,
|
|
385721
|
+
USDX: NOT_DEPLOYED,
|
|
385722
|
+
dUSD1V3: NOT_DEPLOYED,
|
|
385723
|
+
sUSDX: NOT_DEPLOYED
|
|
385683
385724
|
},
|
|
385684
385725
|
//
|
|
385685
385726
|
//
|
|
@@ -385991,7 +386032,11 @@ var tokenDataByNetwork = {
|
|
|
385991
386032
|
WBNB: NOT_DEPLOYED,
|
|
385992
386033
|
dUSDTv310: NOT_DEPLOYED,
|
|
385993
386034
|
dWBNBv3: NOT_DEPLOYED,
|
|
385994
|
-
ynBNBx: NOT_DEPLOYED
|
|
386035
|
+
ynBNBx: NOT_DEPLOYED,
|
|
386036
|
+
USD1: NOT_DEPLOYED,
|
|
386037
|
+
USDX: NOT_DEPLOYED,
|
|
386038
|
+
dUSD1V3: NOT_DEPLOYED,
|
|
386039
|
+
sUSDX: NOT_DEPLOYED
|
|
385995
386040
|
},
|
|
385996
386041
|
// New networks
|
|
385997
386042
|
MegaETH: {},
|
|
@@ -386005,7 +386050,11 @@ var tokenDataByNetwork = {
|
|
|
386005
386050
|
WBNB: "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c",
|
|
386006
386051
|
dUSDTv310: "0xe773eb1c9c26e79deb8e20be24629953ce20597d",
|
|
386007
386052
|
dWBNBv3: "0xef7d781825350d2bacb64ef7be927fd400dcdf4f",
|
|
386008
|
-
ynBNBx: "0x32c830f5c34122c6afb8ae87aba541b7900a2c5f"
|
|
386053
|
+
ynBNBx: "0x32c830f5c34122c6afb8ae87aba541b7900a2c5f",
|
|
386054
|
+
USD1: "0x8d0D000Ee44948FC98c9B98A4FA4921476f08B0d",
|
|
386055
|
+
USDX: "0xf3527ef8dE265eAa3716FB312c12847bFBA66Cef",
|
|
386056
|
+
dUSD1V3: "0x1318B920704295E8c53F950cD429C3E40335b81D",
|
|
386057
|
+
sUSDX: "0x7788A3538C5fc7F9c7C8A74EAC4c898fC8d87d92"
|
|
386009
386058
|
},
|
|
386010
386059
|
WorldChain: {},
|
|
386011
386060
|
Etherlink: {}
|
|
@@ -386443,7 +386492,8 @@ var connectors = {
|
|
|
386443
386492
|
"solvBTC",
|
|
386444
386493
|
"pumpBTC",
|
|
386445
386494
|
"waEthLidowstETH",
|
|
386446
|
-
"beraSTONE"
|
|
386495
|
+
"beraSTONE",
|
|
386496
|
+
"crvUSD"
|
|
386447
386497
|
],
|
|
386448
386498
|
Arbitrum: ["WETH", "DAI", "USDC", "USDT", "rETH", "USDC_e", "wstETH"],
|
|
386449
386499
|
Optimism: ["WETH", "USDC", "USDT", "USDC_e", "wstETH"],
|
|
@@ -399707,7 +399757,8 @@ var GearboxSDK = class _GearboxSDK {
|
|
|
399707
399757
|
networkType: this.provider.networkType,
|
|
399708
399758
|
chainId: this.provider.chainId,
|
|
399709
399759
|
addressProvider,
|
|
399710
|
-
marketConfigurators
|
|
399760
|
+
marketConfigurators,
|
|
399761
|
+
blockNumber
|
|
399711
399762
|
},
|
|
399712
399763
|
`${re}attaching gearbox sdk`
|
|
399713
399764
|
);
|
|
@@ -432428,7 +432479,7 @@ function getRenderer(opts) {
|
|
|
432428
432479
|
var package_default = {
|
|
432429
432480
|
name: "@gearbox-protocol/deploy-tools",
|
|
432430
432481
|
description: "Gearbox deploy tools",
|
|
432431
|
-
version: "5.36.
|
|
432482
|
+
version: "5.36.5",
|
|
432432
432483
|
homepage: "https://gearbox.fi",
|
|
432433
432484
|
keywords: [
|
|
432434
432485
|
"gearbox"
|
|
@@ -432472,11 +432523,11 @@ var package_default = {
|
|
|
432472
432523
|
"@gearbox-protocol/deploy-tools-node": "0.0.0",
|
|
432473
432524
|
"@gearbox-protocol/deploy-tools-shared": "0.0.0",
|
|
432474
432525
|
"@gearbox-protocol/deploy-tools-types": "0.0.0",
|
|
432475
|
-
"@gearbox-protocol/sdk": "8.0.
|
|
432526
|
+
"@gearbox-protocol/sdk": "8.0.3",
|
|
432476
432527
|
"@gearbox-protocol/sdk-gov": "2.34.0-next.111",
|
|
432477
432528
|
"@types/lodash-es": "^4.17.12",
|
|
432478
|
-
"@types/node": "^
|
|
432479
|
-
"@types/react": "^19.1.
|
|
432529
|
+
"@types/node": "^24.0.1",
|
|
432530
|
+
"@types/react": "^19.1.8",
|
|
432480
432531
|
"@types/react-dom": "^19.1.6",
|
|
432481
432532
|
abitype: "^1.0.8",
|
|
432482
432533
|
chalk: "^5.4.1",
|
|
@@ -432493,10 +432544,10 @@ var package_default = {
|
|
|
432493
432544
|
react: "^19.1.0",
|
|
432494
432545
|
"react-dom": "^19.1.0",
|
|
432495
432546
|
table: "^6.9.0",
|
|
432496
|
-
tsx: "^4.
|
|
432497
|
-
viem: "^2.31.
|
|
432547
|
+
tsx: "^4.20.2",
|
|
432548
|
+
viem: "^2.31.1",
|
|
432498
432549
|
yaml: "^2.8.0",
|
|
432499
|
-
zod: "^3.25.
|
|
432550
|
+
zod: "^3.25.63"
|
|
432500
432551
|
},
|
|
432501
432552
|
prettier: "@gearbox-protocol/prettier-config",
|
|
432502
432553
|
"lint-staged": {
|
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": "5.36.
|
|
4
|
+
"version": "5.36.5",
|
|
5
5
|
"homepage": "https://gearbox.fi",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"gearbox"
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"@gearbox-protocol/deploy-tools-node": "0.0.0",
|
|
46
46
|
"@gearbox-protocol/deploy-tools-shared": "0.0.0",
|
|
47
47
|
"@gearbox-protocol/deploy-tools-types": "0.0.0",
|
|
48
|
-
"@gearbox-protocol/sdk": "8.0.
|
|
48
|
+
"@gearbox-protocol/sdk": "8.0.3",
|
|
49
49
|
"@gearbox-protocol/sdk-gov": "2.34.0-next.111",
|
|
50
50
|
"@types/lodash-es": "^4.17.12",
|
|
51
|
-
"@types/node": "^
|
|
52
|
-
"@types/react": "^19.1.
|
|
51
|
+
"@types/node": "^24.0.1",
|
|
52
|
+
"@types/react": "^19.1.8",
|
|
53
53
|
"@types/react-dom": "^19.1.6",
|
|
54
54
|
"abitype": "^1.0.8",
|
|
55
55
|
"chalk": "^5.4.1",
|
|
@@ -66,10 +66,10 @@
|
|
|
66
66
|
"react": "^19.1.0",
|
|
67
67
|
"react-dom": "^19.1.0",
|
|
68
68
|
"table": "^6.9.0",
|
|
69
|
-
"tsx": "^4.
|
|
70
|
-
"viem": "^2.31.
|
|
69
|
+
"tsx": "^4.20.2",
|
|
70
|
+
"viem": "^2.31.1",
|
|
71
71
|
"yaml": "^2.8.0",
|
|
72
|
-
"zod": "^3.25.
|
|
72
|
+
"zod": "^3.25.63"
|
|
73
73
|
},
|
|
74
74
|
"prettier": "@gearbox-protocol/prettier-config",
|
|
75
75
|
"lint-staged": {
|