@gearbox-protocol/sdk 0.0.14 → 0.0.15
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/lib/core/priceFeeds.js +6 -1
- package/package.json +1 -1
- package/src/core/priceFeeds.ts +7 -1
package/lib/core/priceFeeds.js
CHANGED
|
@@ -186,6 +186,10 @@ exports.priceFeedsByNetwork = {
|
|
|
186
186
|
priceFeedETH: {
|
|
187
187
|
type: oracles_1.OracleType.CHAINLINK_ORACLE,
|
|
188
188
|
address: "0xcfe54b5cd566ab89272946f602d76ea879cab4a8"
|
|
189
|
+
},
|
|
190
|
+
priceFeedUSD: {
|
|
191
|
+
type: oracles_1.OracleType.CHAINLINK_ORACLE,
|
|
192
|
+
address: "0xCfE54B5cD566aB89272946F602D76Ea879CAb4a8"
|
|
189
193
|
}
|
|
190
194
|
},
|
|
191
195
|
FTM: {
|
|
@@ -228,7 +232,8 @@ exports.priceFeedsByNetwork = {
|
|
|
228
232
|
priceFeedETH: {
|
|
229
233
|
type: oracles_1.OracleType.CHAINLINK_ORACLE,
|
|
230
234
|
address: "0x4e844125952d32acdf339be976c98e22f6f318db"
|
|
231
|
-
}
|
|
235
|
+
},
|
|
236
|
+
// ADD ETH-> DAI Oracle!
|
|
232
237
|
},
|
|
233
238
|
LQTY: {
|
|
234
239
|
priceFeedUSD: {
|
package/package.json
CHANGED
package/src/core/priceFeeds.ts
CHANGED
|
@@ -203,6 +203,10 @@ export const priceFeedsByNetwork: Record<SupportedTokens, TokenPriceFeedData> =
|
|
|
203
203
|
priceFeedETH: {
|
|
204
204
|
type: OracleType.CHAINLINK_ORACLE,
|
|
205
205
|
address: "0xcfe54b5cd566ab89272946f602d76ea879cab4a8"
|
|
206
|
+
},
|
|
207
|
+
priceFeedUSD: {
|
|
208
|
+
type: OracleType.CHAINLINK_ORACLE,
|
|
209
|
+
address: "0xCfE54B5cD566aB89272946F602D76Ea879CAb4a8"
|
|
206
210
|
}
|
|
207
211
|
},
|
|
208
212
|
|
|
@@ -249,7 +253,9 @@ export const priceFeedsByNetwork: Record<SupportedTokens, TokenPriceFeedData> =
|
|
|
249
253
|
priceFeedETH: {
|
|
250
254
|
type: OracleType.CHAINLINK_ORACLE,
|
|
251
255
|
address: "0x4e844125952d32acdf339be976c98e22f6f318db"
|
|
252
|
-
}
|
|
256
|
+
},
|
|
257
|
+
|
|
258
|
+
// ADD ETH-> DAI Oracle!
|
|
253
259
|
},
|
|
254
260
|
LQTY: {
|
|
255
261
|
priceFeedUSD: {
|