@gearbox-protocol/deploy-tools 4.6.3-next.2 → 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 +10 -6
- package/package.json +1 -1
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;
|
|
@@ -328167,7 +328171,7 @@ function getRenderer(opts) {
|
|
|
328167
328171
|
}
|
|
328168
328172
|
|
|
328169
328173
|
// package.json
|
|
328170
|
-
var version3 = "4.6.3-next.
|
|
328174
|
+
var version3 = "4.6.3-next.3";
|
|
328171
328175
|
|
|
328172
328176
|
// src/version.ts
|
|
328173
328177
|
var version_default = version3;
|