@gearbox-protocol/sdk 8.4.0 → 8.4.1
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.
|
@@ -120,7 +120,7 @@ class PriceFeedRegister extends import_base.SDKConstruct {
|
|
|
120
120
|
// @ts-expect-error
|
|
121
121
|
gas: this.sdk.gasLimit
|
|
122
122
|
});
|
|
123
|
-
const feedContracts = result.map((data) => this
|
|
123
|
+
const feedContracts = result.map((data) => this.#createUpdatableProxy(data));
|
|
124
124
|
return this.generatePriceFeedsUpdateTxs(feedContracts);
|
|
125
125
|
}
|
|
126
126
|
has(address) {
|
|
@@ -103,7 +103,7 @@ class PriceFeedRegister extends SDKConstruct {
|
|
|
103
103
|
// @ts-expect-error
|
|
104
104
|
gas: this.sdk.gasLimit
|
|
105
105
|
});
|
|
106
|
-
const feedContracts = result.map((data) => this
|
|
106
|
+
const feedContracts = result.map((data) => this.#createUpdatableProxy(data));
|
|
107
107
|
return this.generatePriceFeedsUpdateTxs(feedContracts);
|
|
108
108
|
}
|
|
109
109
|
has(address) {
|