@gearbox-protocol/sdk 3.0.0-vfour.210 → 3.0.0-vfour.211

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.
@@ -65679,7 +65679,10 @@ var MarketRegister = class extends SDKConstruct {
65679
65679
  const updates = await this.sdk.priceFeeds.generatePriceFeedsUpdateTxs();
65680
65680
  txs = updates.txs;
65681
65681
  }
65682
- this.#logger?.debug({ configurators, pools }, "calling getMarkets");
65682
+ this.#logger?.debug(
65683
+ { configurators, pools },
65684
+ `calling getMarkets with ${txs.length} price updates`
65685
+ );
65683
65686
  const resp = await simulateMulticall(this.provider.publicClient, {
65684
65687
  contracts: [
65685
65688
  ...txs.map(rawTxToMulticallPriceUpdate),
@@ -65672,7 +65672,10 @@ var MarketRegister = class extends SDKConstruct {
65672
65672
  const updates = await this.sdk.priceFeeds.generatePriceFeedsUpdateTxs();
65673
65673
  txs = updates.txs;
65674
65674
  }
65675
- this.#logger?.debug({ configurators, pools }, "calling getMarkets");
65675
+ this.#logger?.debug(
65676
+ { configurators, pools },
65677
+ `calling getMarkets with ${txs.length} price updates`
65678
+ );
65676
65679
  const resp = await simulateMulticall(this.provider.publicClient, {
65677
65680
  contracts: [
65678
65681
  ...txs.map(rawTxToMulticallPriceUpdate),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gearbox-protocol/sdk",
3
- "version": "3.0.0-vfour.210",
3
+ "version": "3.0.0-vfour.211",
4
4
  "description": "Gearbox SDK",
5
5
  "license": "MIT",
6
6
  "main": "./dist/cjs/sdk/index.cjs",