@gearbox-protocol/deploy-tools 4.6.3-next.1 → 4.6.3-next.3
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 +12 -6
- package/package.json +3 -2
package/dist/index.mjs
CHANGED
|
@@ -322793,7 +322793,11 @@ var utilityContracts = {
|
|
|
322793
322793
|
BLACKLIST_HELPER: import_sdk_gov2.BLACKLIST_HELPER,
|
|
322794
322794
|
DEGEN_NFT: import_sdk_gov2.DEGEN_NFT,
|
|
322795
322795
|
CREATE2FACTORY: import_sdk_gov2.CREATE2FACTORY,
|
|
322796
|
-
ROUTER_CREATE2FACTORY:
|
|
322796
|
+
ROUTER_CREATE2FACTORY: {
|
|
322797
|
+
Mainnet: "0xA287577Fb7Cf49246e569EA268FE919F1cD6d9E2",
|
|
322798
|
+
Arbitrum: import_sdk_gov2.NOT_DEPLOYED,
|
|
322799
|
+
Optimism: import_sdk_gov2.NOT_DEPLOYED
|
|
322800
|
+
},
|
|
322797
322801
|
// TODO: this is not in sdk-gov yet
|
|
322798
322802
|
MULTISIG: import_sdk_gov2.MULTISIG,
|
|
322799
322803
|
VETO_ADMIN: import_sdk_gov2.VETO_ADMIN,
|
|
@@ -322839,10 +322843,10 @@ var ProviderBase = class {
|
|
|
322839
322843
|
}
|
|
322840
322844
|
this.#overrides = {
|
|
322841
322845
|
...this.#overrides,
|
|
322842
|
-
GOVERNOR: gov.governorAddress,
|
|
322843
|
-
CREATE2FACTORY: gov.create2FactoryAddress,
|
|
322844
|
-
ROUTER_CREATE2FACTORY: gov.routerC2factoryAddress,
|
|
322845
|
-
TIMELOCK: gov.timelockAddress
|
|
322846
|
+
GOVERNOR: gov.governorAddress ?? this.#overrides?.GOVERNOR,
|
|
322847
|
+
CREATE2FACTORY: gov.create2FactoryAddress ?? this.#overrides?.CREATE2FACTORY,
|
|
322848
|
+
ROUTER_CREATE2FACTORY: gov.routerC2factoryAddress ?? this.#overrides?.ROUTER_CREATE2FACTORY,
|
|
322849
|
+
TIMELOCK: gov.timelockAddress ?? this.#overrides?.TIMELOCK
|
|
322846
322850
|
};
|
|
322847
322851
|
}
|
|
322848
322852
|
this.#initialized = true;
|
|
@@ -328166,8 +328170,10 @@ function getRenderer(opts) {
|
|
|
328166
328170
|
return void 0;
|
|
328167
328171
|
}
|
|
328168
328172
|
|
|
328173
|
+
// package.json
|
|
328174
|
+
var version3 = "4.6.3-next.3";
|
|
328175
|
+
|
|
328169
328176
|
// src/version.ts
|
|
328170
|
-
var version3 = process.env.npm_package_version ?? "dev";
|
|
328171
328177
|
var version_default = version3;
|
|
328172
328178
|
|
|
328173
328179
|
// src/commands/parse.ts
|
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.6.3-next.
|
|
4
|
+
"version": "4.6.3-next.3",
|
|
5
5
|
"homepage": "https://gearbox.fi",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"gearbox"
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
"prettier:ci": "npx prettier --check .",
|
|
31
31
|
"lint": "eslint \"**/*.ts\" --fix",
|
|
32
32
|
"lint:ci": "eslint \"**/*.ts\"",
|
|
33
|
-
"typecheck:ci": "tsc --noEmit"
|
|
33
|
+
"typecheck:ci": "tsc --noEmit",
|
|
34
|
+
"prepublishOnly": "yarn build"
|
|
34
35
|
},
|
|
35
36
|
"dependencies": {},
|
|
36
37
|
"devDependencies": {
|