@gearbox-protocol/sdk 3.0.0-vfour.194 → 3.0.0-vfour.195
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 +1 -1
- package/dist/esm/sdk/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/sdk/index.cjs
CHANGED
|
@@ -72376,7 +72376,7 @@ var GearboxSDK = class _GearboxSDK {
|
|
|
72376
72376
|
if (redstoneHistoricTimestamp) {
|
|
72377
72377
|
this.priceFeeds.redstoneUpdater.historicalTimestamp = redstoneHistoricTimestamp === true ? Number(block.timestamp) * 1e3 : redstoneHistoricTimestamp;
|
|
72378
72378
|
}
|
|
72379
|
-
if (redstoneGateways) {
|
|
72379
|
+
if (redstoneGateways?.length) {
|
|
72380
72380
|
this.priceFeeds.redstoneUpdater.gateways = redstoneGateways;
|
|
72381
72381
|
}
|
|
72382
72382
|
this.logger?.info(
|
package/dist/esm/sdk/index.mjs
CHANGED
|
@@ -72369,7 +72369,7 @@ var GearboxSDK = class _GearboxSDK {
|
|
|
72369
72369
|
if (redstoneHistoricTimestamp) {
|
|
72370
72370
|
this.priceFeeds.redstoneUpdater.historicalTimestamp = redstoneHistoricTimestamp === true ? Number(block.timestamp) * 1e3 : redstoneHistoricTimestamp;
|
|
72371
72371
|
}
|
|
72372
|
-
if (redstoneGateways) {
|
|
72372
|
+
if (redstoneGateways?.length) {
|
|
72373
72373
|
this.priceFeeds.redstoneUpdater.gateways = redstoneGateways;
|
|
72374
72374
|
}
|
|
72375
72375
|
this.logger?.info(
|