@gearbox-protocol/deploy-tools 5.10.0 → 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.
Files changed (2) hide show
  1. package/dist/index.mjs +11 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -415357,12 +415357,22 @@ async function executeJSON({
415357
415357
  log_default.error("No transactions found");
415358
415358
  return;
415359
415359
  }
415360
+ log_default.debug(`found ${txs.length} transactions`);
415360
415361
  const client = createPublicClient({
415361
415362
  transport: http(rpcURL),
415362
415363
  pollingInterval: 50,
415363
415364
  cacheTime: 0
415364
415365
  }).extend(testActions({ mode: "anvil" }));
415365
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
+ });
415366
415376
  log_default.debug("Market configurator: ", marketConfigurator);
415367
415377
  const owner = await client.readContract({
415368
415378
  address: marketConfigurator,
@@ -415648,7 +415658,7 @@ function getRenderer(opts) {
415648
415658
  var package_default = {
415649
415659
  name: "@gearbox-protocol/deploy-tools",
415650
415660
  description: "Gearbox deploy tools",
415651
- version: "5.10.0",
415661
+ version: "5.10.2",
415652
415662
  homepage: "https://gearbox.fi",
415653
415663
  keywords: [
415654
415664
  "gearbox"
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": "5.10.0",
4
+ "version": "5.10.2",
5
5
  "homepage": "https://gearbox.fi",
6
6
  "keywords": [
7
7
  "gearbox"