@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.
- package/dist/cjs/sdk/index.cjs +4 -1
- package/dist/esm/sdk/index.mjs +4 -1
- package/package.json +1 -1
package/dist/cjs/sdk/index.cjs
CHANGED
|
@@ -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(
|
|
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),
|
package/dist/esm/sdk/index.mjs
CHANGED
|
@@ -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(
|
|
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),
|