@gearbox-protocol/deploy-tools 5.10.1 → 5.10.2
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 -2
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -415358,13 +415358,21 @@ async function executeJSON({
|
|
|
415358
415358
|
return;
|
|
415359
415359
|
}
|
|
415360
415360
|
log_default.debug(`found ${txs.length} transactions`);
|
|
415361
|
-
console.log(txs);
|
|
415362
415361
|
const client = createPublicClient({
|
|
415363
415362
|
transport: http(rpcURL),
|
|
415364
415363
|
pollingInterval: 50,
|
|
415365
415364
|
cacheTime: 0
|
|
415366
415365
|
}).extend(testActions({ mode: "anvil" }));
|
|
415367
415366
|
const marketConfigurator = txs[0].to;
|
|
415367
|
+
const tx0K = typeof txs[0] === "object" ? Object.keys(txs[0]) : [];
|
|
415368
|
+
console.log({
|
|
415369
|
+
marketConfigurator,
|
|
415370
|
+
marketConfiguratorT: typeof marketConfigurator,
|
|
415371
|
+
tx0: txs[0],
|
|
415372
|
+
tx0T: typeof txs[0],
|
|
415373
|
+
tx0K,
|
|
415374
|
+
t: typeof txs
|
|
415375
|
+
});
|
|
415368
415376
|
log_default.debug("Market configurator: ", marketConfigurator);
|
|
415369
415377
|
const owner = await client.readContract({
|
|
415370
415378
|
address: marketConfigurator,
|
|
@@ -415650,7 +415658,7 @@ function getRenderer(opts) {
|
|
|
415650
415658
|
var package_default = {
|
|
415651
415659
|
name: "@gearbox-protocol/deploy-tools",
|
|
415652
415660
|
description: "Gearbox deploy tools",
|
|
415653
|
-
version: "5.10.
|
|
415661
|
+
version: "5.10.2",
|
|
415654
415662
|
homepage: "https://gearbox.fi",
|
|
415655
415663
|
keywords: [
|
|
415656
415664
|
"gearbox"
|