@gearbox-protocol/deploy-tools 5.30.2 → 5.30.4
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 +4 -4
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -437924,7 +437924,7 @@ function parseBigInt(value, _prev) {
|
|
|
437924
437924
|
function parseAddressList(value, _prev) {
|
|
437925
437925
|
return value ? value.split(",").map((v) => {
|
|
437926
437926
|
return getAddress(v);
|
|
437927
|
-
}) :
|
|
437927
|
+
}) : [];
|
|
437928
437928
|
}
|
|
437929
437929
|
function parseAddress2(value, _prev) {
|
|
437930
437930
|
return value ? getAddress(value) : void 0;
|
|
@@ -439687,7 +439687,7 @@ function openAccounts() {
|
|
|
439687
439687
|
...transportOptions,
|
|
439688
439688
|
timeout: 48e4,
|
|
439689
439689
|
addressProvider: addressProvider ?? ADDRESS_PROVIDER_V310,
|
|
439690
|
-
marketConfigurators: marketConfigurators
|
|
439690
|
+
marketConfigurators: marketConfigurators?.length ? marketConfigurators : void 0,
|
|
439691
439691
|
logger: log_default,
|
|
439692
439692
|
ignoreUpdateablePrices: false,
|
|
439693
439693
|
strictContractTypes: true,
|
|
@@ -439867,7 +439867,7 @@ function getRenderer(opts) {
|
|
|
439867
439867
|
var package_default = {
|
|
439868
439868
|
name: "@gearbox-protocol/deploy-tools",
|
|
439869
439869
|
description: "Gearbox deploy tools",
|
|
439870
|
-
version: "5.30.
|
|
439870
|
+
version: "5.30.4",
|
|
439871
439871
|
homepage: "https://gearbox.fi",
|
|
439872
439872
|
keywords: [
|
|
439873
439873
|
"gearbox"
|
|
@@ -440741,7 +440741,7 @@ function sdkExample() {
|
|
|
440741
440741
|
],
|
|
440742
440742
|
timeout: 48e4,
|
|
440743
440743
|
addressProvider: addressProvider ?? ADDRESS_PROVIDER_V310,
|
|
440744
|
-
marketConfigurators: marketConfigurators
|
|
440744
|
+
marketConfigurators: marketConfigurators?.length ? marketConfigurators : void 0,
|
|
440745
440745
|
logger: log_default,
|
|
440746
440746
|
ignoreUpdateablePrices: false,
|
|
440747
440747
|
strictContractTypes: true,
|