@gearbox-protocol/deploy-tools 5.20.0 → 5.20.1
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 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -418016,7 +418016,7 @@ function getRenderer(opts) {
|
|
|
418016
418016
|
var package_default = {
|
|
418017
418017
|
name: "@gearbox-protocol/deploy-tools",
|
|
418018
418018
|
description: "Gearbox deploy tools",
|
|
418019
|
-
version: "5.20.
|
|
418019
|
+
version: "5.20.1",
|
|
418020
418020
|
homepage: "https://gearbox.fi",
|
|
418021
418021
|
keywords: [
|
|
418022
418022
|
"gearbox"
|
|
@@ -418163,9 +418163,10 @@ function parse() {
|
|
|
418163
418163
|
var import_table2 = __toESM(require_src10(), 1);
|
|
418164
418164
|
function prices() {
|
|
418165
418165
|
return newCommand().name("prices").description("Get current prices using Gearbox SDK").action(async (opts) => {
|
|
418166
|
-
let { addressProvider, marketConfigurators
|
|
418166
|
+
let { addressProvider, marketConfigurators } = opts;
|
|
418167
|
+
const transportOptions = getSDKTransportOptions(opts);
|
|
418167
418168
|
const sdk = await GearboxSDK.attach({
|
|
418168
|
-
|
|
418169
|
+
...transportOptions,
|
|
418169
418170
|
timeout: 48e4,
|
|
418170
418171
|
addressProvider: addressProvider ?? ADDRESS_PROVIDER_V310,
|
|
418171
418172
|
marketConfigurators: marketConfigurators ?? [],
|