@gearbox-protocol/deploy-tools 5.9.18 → 5.9.19
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 +83 -7
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -4276,7 +4276,7 @@ var init_size = __esm({
|
|
|
4276
4276
|
var version2;
|
|
4277
4277
|
var init_version2 = __esm({
|
|
4278
4278
|
"../../node_modules/viem/_esm/errors/version.js"() {
|
|
4279
|
-
version2 = "2.23.
|
|
4279
|
+
version2 = "2.23.1";
|
|
4280
4280
|
}
|
|
4281
4281
|
});
|
|
4282
4282
|
|
|
@@ -133695,6 +133695,11 @@ var require_audits = __commonJS({
|
|
|
133695
133695
|
auditor: Auditor2.Watchpug,
|
|
133696
133696
|
revision: "2024 Oct",
|
|
133697
133697
|
reportLink: "https://github.com/Gearbox-protocol/security/blob/main/audits/2024%20Dec%20-%20Watchpug_Pendle_Oracle.pdf"
|
|
133698
|
+
},
|
|
133699
|
+
"2025_Feb_Decurity_BalancerV3": {
|
|
133700
|
+
auditor: Auditor2.Decurity,
|
|
133701
|
+
revision: "2025 Feb",
|
|
133702
|
+
reportLink: "https://github.com/Gearbox-protocol/security/blob/main/audits/2025%20Feb%20-%20Decurity_Gearbox_BalancerV3.pdf"
|
|
133698
133703
|
}
|
|
133699
133704
|
};
|
|
133700
133705
|
exports2.audits = {
|
|
@@ -133801,6 +133806,16 @@ var require_audits = __commonJS({
|
|
|
133801
133806
|
type: "commit",
|
|
133802
133807
|
commit: "e3e558df565f3541ca90a2afd40d9e76eded2fa9",
|
|
133803
133808
|
report: exports2.auditReports["2024_Oct_Decurity_SKY"]
|
|
133809
|
+
},
|
|
133810
|
+
{
|
|
133811
|
+
type: "commit",
|
|
133812
|
+
commit: "0af99438c80a246c4e04118d498ca3508483d8a0",
|
|
133813
|
+
report: exports2.auditReports["2025_Feb_Decurity_BalancerV3"]
|
|
133814
|
+
},
|
|
133815
|
+
{
|
|
133816
|
+
type: "commit",
|
|
133817
|
+
commit: "f79aa663f3f40903429243af75ef57c9e6fcf0b8",
|
|
133818
|
+
report: exports2.auditReports["2025_Feb_Decurity_BalancerV3"]
|
|
133804
133819
|
}
|
|
133805
133820
|
],
|
|
133806
133821
|
governance: [
|
|
@@ -160725,7 +160740,7 @@ var require_version28 = __commonJS({
|
|
|
160725
160740
|
"use strict";
|
|
160726
160741
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
160727
160742
|
exports2.version = void 0;
|
|
160728
|
-
exports2.version = "2.23.
|
|
160743
|
+
exports2.version = "2.23.1";
|
|
160729
160744
|
}
|
|
160730
160745
|
});
|
|
160731
160746
|
|
|
@@ -172823,6 +172838,7 @@ var require_createTransport = __commonJS({
|
|
|
172823
172838
|
return {
|
|
172824
172839
|
config: {
|
|
172825
172840
|
key,
|
|
172841
|
+
methods,
|
|
172826
172842
|
name,
|
|
172827
172843
|
request,
|
|
172828
172844
|
retryCount,
|
|
@@ -172880,6 +172896,7 @@ var require_fallback = __commonJS({
|
|
|
172880
172896
|
key,
|
|
172881
172897
|
name,
|
|
172882
172898
|
async request({ method, params }) {
|
|
172899
|
+
let includes;
|
|
172883
172900
|
const fetch2 = async (i = 0) => {
|
|
172884
172901
|
const transport2 = transports[i]({
|
|
172885
172902
|
...rest2,
|
|
@@ -172912,6 +172929,16 @@ var require_fallback = __commonJS({
|
|
|
172912
172929
|
throw err;
|
|
172913
172930
|
if (i === transports.length - 1)
|
|
172914
172931
|
throw err;
|
|
172932
|
+
includes ??= transports.slice(i + 1).some((transport3) => {
|
|
172933
|
+
const { include, exclude } = transport3({ chain }).config.methods || {};
|
|
172934
|
+
if (include)
|
|
172935
|
+
return include.includes(method);
|
|
172936
|
+
if (exclude)
|
|
172937
|
+
return !exclude.includes(method);
|
|
172938
|
+
return true;
|
|
172939
|
+
});
|
|
172940
|
+
if (!includes)
|
|
172941
|
+
throw err;
|
|
172915
172942
|
return fetch2(i + 1);
|
|
172916
172943
|
}
|
|
172917
172944
|
};
|
|
@@ -225013,6 +225040,39 @@ var require_ultronTestnet = __commonJS({
|
|
|
225013
225040
|
}
|
|
225014
225041
|
});
|
|
225015
225042
|
|
|
225043
|
+
// ../../node_modules/viem/_cjs/chains/definitions/unichain.js
|
|
225044
|
+
var require_unichain = __commonJS({
|
|
225045
|
+
"../../node_modules/viem/_cjs/chains/definitions/unichain.js"(exports2) {
|
|
225046
|
+
"use strict";
|
|
225047
|
+
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
225048
|
+
exports2.unichain = void 0;
|
|
225049
|
+
var defineChain_js_1 = require_defineChain();
|
|
225050
|
+
exports2.unichain = (0, defineChain_js_1.defineChain)({
|
|
225051
|
+
id: 130,
|
|
225052
|
+
name: "Unichain",
|
|
225053
|
+
nativeCurrency: { name: "Unichain", symbol: "ETH", decimals: 18 },
|
|
225054
|
+
rpcUrls: {
|
|
225055
|
+
default: {
|
|
225056
|
+
http: ["https://mainnet.unichain.org/"]
|
|
225057
|
+
}
|
|
225058
|
+
},
|
|
225059
|
+
blockExplorers: {
|
|
225060
|
+
default: {
|
|
225061
|
+
name: "Uniscan",
|
|
225062
|
+
url: "https://uniscan.xyz",
|
|
225063
|
+
apiUrl: "https://api.uniscan.xyz/api"
|
|
225064
|
+
}
|
|
225065
|
+
},
|
|
225066
|
+
contracts: {
|
|
225067
|
+
multicall3: {
|
|
225068
|
+
address: "0xca11bde05977b3631167028862be2a173976ca11",
|
|
225069
|
+
blockCreated: 0
|
|
225070
|
+
}
|
|
225071
|
+
}
|
|
225072
|
+
});
|
|
225073
|
+
}
|
|
225074
|
+
});
|
|
225075
|
+
|
|
225016
225076
|
// ../../node_modules/viem/_cjs/chains/definitions/unichainSepolia.js
|
|
225017
225077
|
var require_unichainSepolia = __commonJS({
|
|
225018
225078
|
"../../node_modules/viem/_cjs/chains/definitions/unichainSepolia.js"(exports2) {
|
|
@@ -226940,8 +227000,8 @@ var require_chains2 = __commonJS({
|
|
|
226940
227000
|
exports2.polygonZkEvm = exports2.polygonMumbai = exports2.polygonAmoy = exports2.polygon = exports2.polterTestnet = exports2.plumeTestnet = exports2.plumeDevnet = exports2.plume = exports2.plinga = exports2.playfiAlbireo = exports2.planq = exports2.phoenix = exports2.pgnTestnet = exports2.pgn = exports2.palmTestnet = exports2.palm = exports2.otimDevnet = exports2.orderlySepolia = exports2.orderly = exports2.optopiaTestnet = exports2.optopia = exports2.optimismSepolia = exports2.optimismGoerli = exports2.optimism = exports2.opBNBTestnet = exports2.opBNB = exports2.oortMainnetDev = exports2.oneWorld = exports2.omax = exports2.okc = exports2.odysseyTestnet = exports2.oasys = exports2.oasisTestnet = exports2.nexilix = exports2.nexi = exports2.neoxT4 = exports2.neoxMainnet = exports2.neonMainnet = exports2.neonDevnet = exports2.nearTestnet = exports2.near = exports2.nautilus = exports2.nahmii = exports2.morphSepolia = exports2.morphHolesky = exports2.morph = exports2.moonriver = exports2.moonbeamDev = exports2.moonbeam = exports2.moonbaseAlpha = void 0;
|
|
226941
227001
|
exports2.sixProtocol = exports2.siliconSepolia = exports2.silicon = exports2.sidraChain = exports2.shimmerTestnet = exports2.shimmer = exports2.shiden = exports2.shibariumTestnet = exports2.shibarium = exports2.shardeumSphinx = exports2.shapeSepolia = exports2.shape = exports2.sepolia = exports2.seiTestnet = exports2.seiDevnet = exports2.sei = exports2.scrollSepolia = exports2.satoshiVMTestnet = exports2.satoshiVM = exports2.sapphireTestnet = exports2.sapphire = exports2.sanko = exports2.saigon = exports2.saga = exports2.saakuru = exports2.rss3Sepolia = exports2.rss3 = exports2.rootstockTestnet = exports2.rootstock = exports2.rootPorcini = exports2.root = exports2.ronin = exports2.rolluxTestnet = exports2.rollux = exports2.rivalz = exports2.reddioSepolia = exports2.reyaNetwork = exports2.rei = exports2.redstone = exports2.redbellyTestnet = exports2.redbellyMainnet = exports2.real = exports2.qTestnet = exports2.qMainnet = exports2.ql1 = exports2.pulsechainV4 = exports2.pulsechain = exports2.premiumBlockTestnet = exports2.polygonZkEvmTestnet = exports2.polygonZkEvmCardona = void 0;
|
|
226942
227002
|
exports2.telcoinTestnet = exports2.taraxaTestnet = exports2.taraxa = exports2.taikoTestnetSepolia = exports2.taikoKatla = exports2.taikoJolnir = exports2.taikoHekla = exports2.taiko = exports2.syscoinTestnet = exports2.syscoin = exports2.swissdlt = exports2.swellchain = exports2.swanSaturnTestnet = exports2.swanProximaTestnet = exports2.swan = exports2.superseedSepolia = exports2.superseed = exports2.superposition = exports2.superlumio = exports2.stratis = exports2.storyTestnet = exports2.storyOdyssey = exports2.story = exports2.step = exports2.spicy = exports2.sophonTestnet = exports2.sophon = exports2.songbirdTestnet = exports2.songbird = exports2.sonicTestnet = exports2.sonic = exports2.soneiumMinato = exports2.soneium = exports2.snaxTestnet = exports2.snax = exports2.sketchpad = exports2.skaleTitanTestnet = exports2.skaleTitan = exports2.skaleRazor = exports2.skaleNebulaTestnet = exports2.skaleNebula = exports2.skaleHumanProtocol = exports2.skaleExorde = exports2.skaleEuropaTestnet = exports2.skaleEuropa = exports2.skaleCryptoColosseum = exports2.skaleCryptoBlades = exports2.skaleCalypsoTestnet = exports2.skaleCalypso = exports2.skaleBlockBrawlers = void 0;
|
|
226943
|
-
exports2.
|
|
226944
|
-
exports2.zoraTestnet = exports2.zoraSepolia = exports2.zora = exports2.zksyncSepoliaTestnet = exports2.zkSyncSepoliaTestnet = exports2.zksyncLocalNode = exports2.zkSyncLocalNode = exports2.zksyncLocalHyperchainL1 = exports2.zksyncLocalHyperchain = exports2.zksyncLocalCustomHyperchain = exports2.zksyncInMemoryNode = exports2.zkSyncInMemoryNode = exports2.zksync = exports2.zkSync = exports2.zkLinkNovaSepoliaTestnet = exports2.zkLinkNova = exports2.zkFairTestnet = exports2.zkFair = exports2.zircuitTestnet = exports2.zircuit = exports2.zilliqaTestnet = exports2.zilliqa = exports2.zhejiang = exports2.zetachainAthensTestnet = exports2.zetachain = exports2.zeroG = exports2.zeniq = exports2.zenchainTestnet = exports2.yooldoVerseTestnet = exports2.yooldoVerse = void 0;
|
|
227003
|
+
exports2.xrOne = exports2.xLayerTestnet = exports2.x1Testnet = exports2.xLayer = exports2.xdcTestnet = exports2.xdc = exports2.xaiTestnet = exports2.xai = exports2.worldLand = exports2.worldchainSepolia = exports2.worldchain = exports2.wmcTestnet = exports2.wemixTestnet = exports2.wemix = exports2.weaveVMAlphanet = exports2.wanchainTestnet = exports2.wanchain = exports2.visionTestnet = exports2.vision = exports2.victionTestnet = exports2.viction = exports2.velas = exports2.vechain = exports2.vanar = exports2.unreal = exports2.uniqueQuartz = exports2.uniqueOpal = exports2.unique = exports2.unichainSepolia = exports2.unichain = exports2.ultronTestnet = exports2.ultron = exports2.ultraTestnet = exports2.ultra = exports2.ubiq = exports2.tron = exports2.treasureTopaz = exports2.treasure = exports2.tomb = exports2.tiktrixTestnet = exports2.thunderTestnet = exports2.thunderCore = exports2.thetaTestnet = exports2.theta = exports2.that = exports2.thaiChain = exports2.ternoa = exports2.tenet = exports2.telosTestnet = exports2.telos = void 0;
|
|
227004
|
+
exports2.zoraTestnet = exports2.zoraSepolia = exports2.zora = exports2.zksyncSepoliaTestnet = exports2.zkSyncSepoliaTestnet = exports2.zksyncLocalNode = exports2.zkSyncLocalNode = exports2.zksyncLocalHyperchainL1 = exports2.zksyncLocalHyperchain = exports2.zksyncLocalCustomHyperchain = exports2.zksyncInMemoryNode = exports2.zkSyncInMemoryNode = exports2.zksync = exports2.zkSync = exports2.zkLinkNovaSepoliaTestnet = exports2.zkLinkNova = exports2.zkFairTestnet = exports2.zkFair = exports2.zircuitTestnet = exports2.zircuit = exports2.zilliqaTestnet = exports2.zilliqa = exports2.zhejiang = exports2.zetachainAthensTestnet = exports2.zetachain = exports2.zeroG = exports2.zeniq = exports2.zenchainTestnet = exports2.yooldoVerseTestnet = exports2.yooldoVerse = exports2.xrSepolia = void 0;
|
|
226945
227005
|
var abey_js_1 = require_abey();
|
|
226946
227006
|
Object.defineProperty(exports2, "abey", { enumerable: true, get: function() {
|
|
226947
227007
|
return abey_js_1.abey;
|
|
@@ -228826,6 +228886,10 @@ var require_chains2 = __commonJS({
|
|
|
228826
228886
|
Object.defineProperty(exports2, "ultronTestnet", { enumerable: true, get: function() {
|
|
228827
228887
|
return ultronTestnet_js_1.ultronTestnet;
|
|
228828
228888
|
} });
|
|
228889
|
+
var unichain_js_1 = require_unichain();
|
|
228890
|
+
Object.defineProperty(exports2, "unichain", { enumerable: true, get: function() {
|
|
228891
|
+
return unichain_js_1.unichain;
|
|
228892
|
+
} });
|
|
228829
228893
|
var unichainSepolia_js_1 = require_unichainSepolia();
|
|
228830
228894
|
Object.defineProperty(exports2, "unichainSepolia", { enumerable: true, get: function() {
|
|
228831
228895
|
return unichainSepolia_js_1.unichainSepolia;
|
|
@@ -338424,6 +338488,7 @@ function createTransport({ key, methods, name, request, retryCount = 3, retryDel
|
|
|
338424
338488
|
return {
|
|
338425
338489
|
config: {
|
|
338426
338490
|
key,
|
|
338491
|
+
methods,
|
|
338427
338492
|
name,
|
|
338428
338493
|
request,
|
|
338429
338494
|
retryCount,
|
|
@@ -338449,6 +338514,7 @@ function fallback(transports_, config = {}) {
|
|
|
338449
338514
|
key,
|
|
338450
338515
|
name,
|
|
338451
338516
|
async request({ method, params }) {
|
|
338517
|
+
let includes;
|
|
338452
338518
|
const fetch2 = async (i = 0) => {
|
|
338453
338519
|
const transport2 = transports[i]({
|
|
338454
338520
|
...rest2,
|
|
@@ -338481,6 +338547,16 @@ function fallback(transports_, config = {}) {
|
|
|
338481
338547
|
throw err;
|
|
338482
338548
|
if (i === transports.length - 1)
|
|
338483
338549
|
throw err;
|
|
338550
|
+
includes ??= transports.slice(i + 1).some((transport3) => {
|
|
338551
|
+
const { include, exclude } = transport3({ chain }).config.methods || {};
|
|
338552
|
+
if (include)
|
|
338553
|
+
return include.includes(method);
|
|
338554
|
+
if (exclude)
|
|
338555
|
+
return !exclude.includes(method);
|
|
338556
|
+
return true;
|
|
338557
|
+
});
|
|
338558
|
+
if (!includes)
|
|
338559
|
+
throw err;
|
|
338484
338560
|
return fetch2(i + 1);
|
|
338485
338561
|
}
|
|
338486
338562
|
};
|
|
@@ -416202,7 +416278,7 @@ function getRenderer(opts) {
|
|
|
416202
416278
|
var package_default = {
|
|
416203
416279
|
name: "@gearbox-protocol/deploy-tools",
|
|
416204
416280
|
description: "Gearbox deploy tools",
|
|
416205
|
-
version: "5.9.
|
|
416281
|
+
version: "5.9.19",
|
|
416206
416282
|
homepage: "https://gearbox.fi",
|
|
416207
416283
|
keywords: [
|
|
416208
416284
|
"gearbox"
|
|
@@ -416246,7 +416322,7 @@ var package_default = {
|
|
|
416246
416322
|
"@gearbox-protocol/deploy-tools-shared": "0.0.0",
|
|
416247
416323
|
"@gearbox-protocol/deploy-tools-types": "0.0.0",
|
|
416248
416324
|
"@gearbox-protocol/sdk": "3.0.0-vfour.226",
|
|
416249
|
-
"@gearbox-protocol/sdk-gov": "^2.34.
|
|
416325
|
+
"@gearbox-protocol/sdk-gov": "^2.34.1",
|
|
416250
416326
|
"@types/lodash-es": "^4.17.12",
|
|
416251
416327
|
"@types/node": "^22.13.1",
|
|
416252
416328
|
"@types/react": "^19.0.8",
|
|
@@ -416267,7 +416343,7 @@ var package_default = {
|
|
|
416267
416343
|
"react-dom": "^19.0.0",
|
|
416268
416344
|
table: "^6.9.0",
|
|
416269
416345
|
tsx: "^4.19.2",
|
|
416270
|
-
viem: "^2.23.
|
|
416346
|
+
viem: "^2.23.1",
|
|
416271
416347
|
yaml: "^2.7.0",
|
|
416272
416348
|
zod: "^3.24.1"
|
|
416273
416349
|
},
|
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.9.
|
|
4
|
+
"version": "5.9.19",
|
|
5
5
|
"homepage": "https://gearbox.fi",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"gearbox"
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"@gearbox-protocol/deploy-tools-shared": "0.0.0",
|
|
46
46
|
"@gearbox-protocol/deploy-tools-types": "0.0.0",
|
|
47
47
|
"@gearbox-protocol/sdk": "3.0.0-vfour.226",
|
|
48
|
-
"@gearbox-protocol/sdk-gov": "^2.34.
|
|
48
|
+
"@gearbox-protocol/sdk-gov": "^2.34.1",
|
|
49
49
|
"@types/lodash-es": "^4.17.12",
|
|
50
50
|
"@types/node": "^22.13.1",
|
|
51
51
|
"@types/react": "^19.0.8",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"react-dom": "^19.0.0",
|
|
67
67
|
"table": "^6.9.0",
|
|
68
68
|
"tsx": "^4.19.2",
|
|
69
|
-
"viem": "^2.23.
|
|
69
|
+
"viem": "^2.23.1",
|
|
70
70
|
"yaml": "^2.7.0",
|
|
71
71
|
"zod": "^3.24.1"
|
|
72
72
|
},
|