@defisaver/tokens 1.6.26 → 1.6.28
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/cjs/assets.js +111 -109
- package/esm/assets.js +111 -109
- package/package.json +1 -1
- package/src/assets.ts +120 -1
package/cjs/assets.js
CHANGED
|
@@ -259,13 +259,13 @@ exports.assetProto = {
|
|
|
259
259
|
is4626: false,
|
|
260
260
|
};
|
|
261
261
|
exports.assets = [
|
|
262
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ETH', name: 'Ether', decimals: 18, exchange: true, compoundCollateral: false, addresses: {
|
|
262
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ETH', feedAvailability: { 1: true, 10: true, 8453: true, 42161: true }, name: 'Ether', decimals: 18, exchange: true, compoundCollateral: false, addresses: {
|
|
263
263
|
1: ETHAddress,
|
|
264
264
|
10: ETHAddress,
|
|
265
265
|
8453: ETHAddress,
|
|
266
266
|
42161: ETHAddress,
|
|
267
267
|
} }),
|
|
268
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'WETH', name: 'Wrapped Ether', decimals: 18, addresses: {
|
|
268
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'WETH', feedAvailability: { 1: true, 10: true, 8453: true, 42161: true }, name: 'Wrapped Ether', decimals: 18, addresses: {
|
|
269
269
|
1: WETHAddress,
|
|
270
270
|
10: '0x4200000000000000000000000000000000000006',
|
|
271
271
|
8453: '0x4200000000000000000000000000000000000006',
|
|
@@ -274,7 +274,7 @@ exports.assets = [
|
|
|
274
274
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cETH', underlyingAsset: 'ETH', name: 'Ether', decimals: 8, exchange: false, compoundCollateral: true, addresses: {
|
|
275
275
|
1: cETHAddress,
|
|
276
276
|
} }),
|
|
277
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'DAI', name: 'Dai Stablecoin', decimals: 18, exchange: true, compoundCollateral: false, yearnCollateral: true, addresses: {
|
|
277
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'DAI', feedAvailability: { 1: true, 10: true, 8453: true, 42161: true }, name: 'Dai Stablecoin', decimals: 18, exchange: true, compoundCollateral: false, yearnCollateral: true, addresses: {
|
|
278
278
|
1: DAIAddress,
|
|
279
279
|
10: '0xda10009cbd5d07dd0cecc66161fc93d7c9000da1',
|
|
280
280
|
8453: '0x50c5725949A6F0c72E6C4a641F24049A917DB0Cb',
|
|
@@ -286,23 +286,23 @@ exports.assets = [
|
|
|
286
286
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'iDAI', underlyingAsset: 'DAI', name: 'Dai', decimals: 18, addresses: {
|
|
287
287
|
1: iDAIAddress,
|
|
288
288
|
} }),
|
|
289
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'MKR', name: 'Maker Protocol', decimals: 18, exchange: true, compoundCollateral: false, addresses: {
|
|
289
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'MKR', feedAvailability: { 1: true }, name: 'Maker Protocol', decimals: 18, exchange: true, compoundCollateral: false, addresses: {
|
|
290
290
|
1: MKRAddress,
|
|
291
291
|
10: '0xab7badef82e9fe11f6f33f87bc9bc2aa27f2fcb5',
|
|
292
292
|
} }),
|
|
293
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'BAT', name: 'Basic Attention Token', decimals: 18, exchange: true, compoundCollateral: false, addresses: {
|
|
293
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'BAT', feedAvailability: { 1: true }, name: 'Basic Attention Token', decimals: 18, exchange: true, compoundCollateral: false, addresses: {
|
|
294
294
|
1: BATAddress,
|
|
295
295
|
} }),
|
|
296
296
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cBAT', underlyingAsset: 'BAT', name: 'Basic Attention Token', decimals: 8, exchange: false, compoundCollateral: true, addresses: {
|
|
297
297
|
1: cBATAddress,
|
|
298
298
|
} }),
|
|
299
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ZRX', name: '0x', decimals: 18, exchange: true, compoundCollateral: false, addresses: {
|
|
299
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ZRX', feedAvailability: { 1: true }, name: '0x', decimals: 18, exchange: true, compoundCollateral: false, addresses: {
|
|
300
300
|
1: ZRXAddress,
|
|
301
301
|
} }),
|
|
302
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'KNCL', name: 'Kyber Network Crystal Legacy', decimals: 18, exchange: true, compoundCollateral: false, addresses: {
|
|
302
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'KNCL', feedAvailability: { 1: true }, name: 'Kyber Network Crystal Legacy', decimals: 18, exchange: true, compoundCollateral: false, addresses: {
|
|
303
303
|
1: KNCLAddress,
|
|
304
304
|
} }),
|
|
305
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'KNC', name: 'Kyber Network Crystal', decimals: 18, exchange: true, compoundCollateral: false, addresses: {
|
|
305
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'KNC', feedAvailability: { 1: true }, name: 'Kyber Network Crystal', decimals: 18, exchange: true, compoundCollateral: false, addresses: {
|
|
306
306
|
1: KNCAddress,
|
|
307
307
|
} }),
|
|
308
308
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cZRX', underlyingAsset: 'ZRX', name: '0x', decimals: 8, exchange: false, compoundCollateral: true, addresses: {
|
|
@@ -317,7 +317,7 @@ exports.assets = [
|
|
|
317
317
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cREP', underlyingAsset: 'REP', name: 'Augur', decimals: 8, exchange: false, compoundCollateral: true, addresses: {
|
|
318
318
|
1: cREPAddress,
|
|
319
319
|
} }),
|
|
320
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDC', name: 'USD Coin', decimals: 6, exchange: true, compoundCollateral: false, yearnCollateral: true, addresses: {
|
|
320
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDC', feedAvailability: { 1: true, 10: true, 8453: true, 42161: true }, name: 'USD Coin', decimals: 6, exchange: true, compoundCollateral: false, yearnCollateral: true, addresses: {
|
|
321
321
|
1: USDCAddress,
|
|
322
322
|
10: '0x0b2C639c533813f4Aa9D7837CAf62653d097Ff85',
|
|
323
323
|
8453: '0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913',
|
|
@@ -327,13 +327,13 @@ exports.assets = [
|
|
|
327
327
|
10: '0x7f5c764cbc14f9669b88837ca1490cca17c31607',
|
|
328
328
|
42161: '0xff970a61a04b1ca14834a43f5de4533ebddb5cc8',
|
|
329
329
|
}, isStable: true }),
|
|
330
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDbC', name: 'USD Base Coin', decimals: 6, nativeChainId: 8453, exchange: true, addresses: {
|
|
330
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDbC', feedAvailability: { 8453: true }, name: 'USD Base Coin', decimals: 6, nativeChainId: 8453, exchange: true, addresses: {
|
|
331
331
|
8453: '0xd9aAEc86B65D86f6A7B5B1b0c42FFA531710b6CA',
|
|
332
332
|
}, isStable: true }),
|
|
333
333
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cUSDC', underlyingAsset: 'USDC', name: 'USD Coin', decimals: 8, exchange: false, compoundCollateral: true, addresses: {
|
|
334
334
|
1: cUSDCAddress,
|
|
335
335
|
} }),
|
|
336
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'WBTC', name: 'Wrapped Bitcoin', decimals: 8, exchange: true, compoundCollateral: false, yearnCollateral: true, addresses: {
|
|
336
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'WBTC', feedAvailability: { 1: true, 10: true, 42161: true }, name: 'Wrapped Bitcoin', decimals: 8, exchange: true, compoundCollateral: false, yearnCollateral: true, addresses: {
|
|
337
337
|
1: WBTCAddress,
|
|
338
338
|
10: '0x68f180fcce6836688e9084f035309e29bf0a2095',
|
|
339
339
|
42161: '0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f',
|
|
@@ -344,7 +344,7 @@ exports.assets = [
|
|
|
344
344
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cWBTC', underlyingAsset: 'WBTC', name: 'Wrapped Bitcoin', decimals: 8, exchange: false, compoundCollateral: true, addresses: {
|
|
345
345
|
1: cWBTCAddress,
|
|
346
346
|
} }),
|
|
347
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDT', name: 'Tether', decimals: 6, exchange: true, yearnCollateral: true, addresses: {
|
|
347
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDT', feedAvailability: { 1: true, 10: true, 42161: true }, name: 'Tether', decimals: 6, exchange: true, yearnCollateral: true, addresses: {
|
|
348
348
|
1: USDTAddress,
|
|
349
349
|
10: '0x94b008aa00579c1307b0ef2c499ad98a8ce58e58',
|
|
350
350
|
42161: '0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9',
|
|
@@ -355,7 +355,7 @@ exports.assets = [
|
|
|
355
355
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SAI', name: 'Sai', decimals: 18, addresses: {
|
|
356
356
|
1: SAIAddress,
|
|
357
357
|
} }),
|
|
358
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'COMP', name: 'Compound Token', decimals: 18, addresses: {
|
|
358
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'COMP', feedAvailability: { 1: true, 8453: true }, name: 'Compound Token', decimals: 18, addresses: {
|
|
359
359
|
1: COMPAddress,
|
|
360
360
|
10: '0x7e7d4467112689329f7E06571eD0E8CbAd4910eE',
|
|
361
361
|
8453: '0x9e1028F5F1D5eDE59748FFceE5532509976840E0',
|
|
@@ -373,14 +373,14 @@ exports.assets = [
|
|
|
373
373
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aSUSD', underlyingAsset: 'SUSD', name: 'Synth sUSD', decimals: 18, aaveCollateral: true, addresses: {
|
|
374
374
|
1: aSUSDAddress,
|
|
375
375
|
} }),
|
|
376
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SUSD', name: 'Synth sUSD', decimals: 18, exchange: true, yearnCollateral: true, addresses: {
|
|
376
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SUSD', feedAvailability: { 1: true, 10: true }, name: 'Synth sUSD', decimals: 18, exchange: true, yearnCollateral: true, addresses: {
|
|
377
377
|
1: SUSDAddress,
|
|
378
378
|
10: '0x8c6f28f2F1A3C87F0f938b96d27520d9751ec8d9',
|
|
379
379
|
}, isStable: true }),
|
|
380
380
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aTUSD', underlyingAsset: 'TUSD', name: 'True USD', decimals: 18, aaveCollateral: true, addresses: {
|
|
381
381
|
1: aTUSDAddress,
|
|
382
382
|
} }),
|
|
383
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'TUSD', name: 'True USD', decimals: 18, exchange: true, addresses: {
|
|
383
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'TUSD', feedAvailability: { 1: true }, name: 'True USD', decimals: 18, exchange: true, addresses: {
|
|
384
384
|
1: TUSDAddress,
|
|
385
385
|
}, isStable: true }),
|
|
386
386
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cTUSD', underlyingAsset: 'TUSD', name: 'True USD', decimals: 8, exchange: false, compoundCollateral: true, addresses: {
|
|
@@ -392,7 +392,7 @@ exports.assets = [
|
|
|
392
392
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aBUSD', underlyingAsset: 'BUSD', name: 'Binance USD', decimals: 18, aaveCollateral: true, addresses: {
|
|
393
393
|
1: aBUSDAddress,
|
|
394
394
|
} }),
|
|
395
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'BUSD', name: 'Binance USD', decimals: 18, exchange: true, addresses: {
|
|
395
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'BUSD', feedAvailability: { 1: true }, name: 'Binance USD', decimals: 18, exchange: true, addresses: {
|
|
396
396
|
1: BUSDAddress,
|
|
397
397
|
}, isStable: true }),
|
|
398
398
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aBAT', underlyingAsset: 'BAT', name: 'Basic Attention Token', decimals: 18, aaveCollateral: true, addresses: {
|
|
@@ -410,7 +410,7 @@ exports.assets = [
|
|
|
410
410
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aLINK', underlyingAsset: 'LINK', name: 'ChainLink', decimals: 18, aaveCollateral: true, addresses: {
|
|
411
411
|
1: aLINKAddress,
|
|
412
412
|
} }),
|
|
413
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'LINK', name: 'ChainLink', decimals: 18, exchange: true, yearnCollateral: true, addresses: {
|
|
413
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'LINK', feedAvailability: { 1: true, 10: true, 42161: true }, name: 'ChainLink', decimals: 18, exchange: true, yearnCollateral: true, addresses: {
|
|
414
414
|
1: LINKAddress,
|
|
415
415
|
10: '0x350a791Bfc2C21F9Ed5d10980Dad2e2638ffa7f6',
|
|
416
416
|
42161: '0xf97f4df75117a78c1A5a0DBb814Af92458539FB4',
|
|
@@ -421,7 +421,7 @@ exports.assets = [
|
|
|
421
421
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aMANA', underlyingAsset: 'MANA', name: 'Decentraland', decimals: 18, aaveCollateral: true, addresses: {
|
|
422
422
|
1: aMANAAddress,
|
|
423
423
|
} }),
|
|
424
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'MANA', name: 'Decentraland', decimals: 18, exchange: true, addresses: {
|
|
424
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'MANA', feedAvailability: { 1: true }, name: 'Decentraland', decimals: 18, exchange: true, addresses: {
|
|
425
425
|
1: MANAAddress,
|
|
426
426
|
} }),
|
|
427
427
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aMKR', underlyingAsset: 'MKR', name: 'Maker', decimals: 18, aaveCollateral: true, addresses: {
|
|
@@ -433,7 +433,7 @@ exports.assets = [
|
|
|
433
433
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aSNX', underlyingAsset: 'SNX', name: 'Synthetix Network', decimals: 18, aaveCollateral: true, addresses: {
|
|
434
434
|
1: aSNXAddress,
|
|
435
435
|
} }),
|
|
436
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SNX', name: 'Synthetix Network', decimals: 18, exchange: true, yearnCollateral: true, addresses: {
|
|
436
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SNX', feedAvailability: { 1: true, 10: true }, name: 'Synthetix Network', decimals: 18, exchange: true, yearnCollateral: true, addresses: {
|
|
437
437
|
1: SNXAddress,
|
|
438
438
|
10: '0x8700daec35af8ff88c16bdf0418774cb3d7599b4',
|
|
439
439
|
} }),
|
|
@@ -446,44 +446,44 @@ exports.assets = [
|
|
|
446
446
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aENJ', underlyingAsset: 'ENJ', name: 'Enjin', decimals: 18, aaveCollateral: true, addresses: {
|
|
447
447
|
1: aENJAddress,
|
|
448
448
|
} }),
|
|
449
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ENJ', name: 'Enjin', decimals: 18, exchange: true, addresses: {
|
|
449
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ENJ', feedAvailability: { 1: true }, name: 'Enjin', decimals: 18, exchange: true, addresses: {
|
|
450
450
|
1: ENJAddress,
|
|
451
451
|
} }),
|
|
452
452
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aREN', underlyingAsset: 'REN', name: 'Ren', decimals: 18, aaveCollateral: true, addresses: {
|
|
453
453
|
1: aRENAddress,
|
|
454
454
|
} }),
|
|
455
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'REN', name: 'Ren', decimals: 18, exchange: true, addresses: {
|
|
455
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'REN', feedAvailability: { 1: true }, name: 'Ren', decimals: 18, exchange: true, addresses: {
|
|
456
456
|
1: RENAddress,
|
|
457
457
|
} }),
|
|
458
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'CRV', name: 'Curve DAO', decimals: 18, exchange: true, addresses: {
|
|
458
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'CRV', feedAvailability: { 1: true, 10: true, 42161: true }, name: 'Curve DAO', decimals: 18, exchange: true, addresses: {
|
|
459
459
|
1: CRVAddress,
|
|
460
460
|
10: '0x0994206dfe8de6ec6920ff4d779b0d950605fb53',
|
|
461
461
|
8453: '0x8Ee73c484A26e0A5df2Ee2a4960B789967dd0415',
|
|
462
462
|
42161: CRVAddressArb,
|
|
463
463
|
} }),
|
|
464
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'YFI', name: 'Yearn Finance', decimals: 18, exchange: true, yearnCollateral: true, addresses: {
|
|
464
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'YFI', feedAvailability: { 1: true }, name: 'Yearn Finance', decimals: 18, exchange: true, yearnCollateral: true, addresses: {
|
|
465
465
|
1: YFIAddress,
|
|
466
466
|
} }),
|
|
467
467
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aYFI', decimals: 18, addresses: {
|
|
468
468
|
1: aYFIAddress,
|
|
469
469
|
}, aaveCollateral: true, underlyingAsset: 'YFI' }),
|
|
470
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDP', name: 'Pax Dollar', decimals: 18, exchange: true, addresses: {
|
|
470
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDP', feedAvailability: { 1: true }, name: 'Pax Dollar', decimals: 18, exchange: true, addresses: {
|
|
471
471
|
1: USDPAddress,
|
|
472
472
|
}, isStable: true }),
|
|
473
473
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cUSDP', underlyingAsset: 'USDP', name: 'Pax Dollar', decimals: 8, exchange: false, compoundCollateral: true, addresses: {
|
|
474
474
|
1: cUSDPAddress,
|
|
475
475
|
} }),
|
|
476
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'DPI', name: 'DefiPulse Index', decimals: 18, exchange: true, addresses: {
|
|
476
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'DPI', feedAvailability: { 1: true }, name: 'DefiPulse Index', decimals: 18, exchange: true, addresses: {
|
|
477
477
|
1: DPIAddress,
|
|
478
478
|
} }),
|
|
479
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNI', name: 'Uniswap', decimals: 18, exchange: true, yearnCollateral: true, addresses: {
|
|
479
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNI', feedAvailability: { 1: true, 10: true }, name: 'Uniswap', decimals: 18, exchange: true, yearnCollateral: true, addresses: {
|
|
480
480
|
1: UNIAddress,
|
|
481
481
|
10: '0x6fd9d7ad17242c41f7131d257212c54a0e816691',
|
|
482
482
|
} }),
|
|
483
483
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cUNI', decimals: 8, compoundCollateral: true, addresses: {
|
|
484
484
|
1: cUNIAddress,
|
|
485
485
|
}, underlyingAsset: 'UNI' }),
|
|
486
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'LRC', name: 'Loopring Coin V2', decimals: 18, exchange: true, addresses: {
|
|
486
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'LRC', feedAvailability: { 1: true }, name: 'Loopring Coin V2', decimals: 18, exchange: true, addresses: {
|
|
487
487
|
1: LRCAddress,
|
|
488
488
|
10: '0xFEaA9194F9F8c1B65429E31341a103071464907E',
|
|
489
489
|
} }),
|
|
@@ -493,7 +493,7 @@ exports.assets = [
|
|
|
493
493
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aUNI', name: 'Uniswap', addresses: {
|
|
494
494
|
1: aUNIAddress,
|
|
495
495
|
}, underlyingAsset: 'UNI', decimals: 18, aaveCollateral: true }),
|
|
496
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'AAVE', name: 'Aave', addresses: {
|
|
496
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'AAVE', feedAvailability: { 1: true, 10: true, 8453: true, 42161: true }, name: 'Aave', addresses: {
|
|
497
497
|
1: AAVEAddress,
|
|
498
498
|
10: '0x76FB31fb4af56892A25e32cFC43De717950c9278',
|
|
499
499
|
8453: '0x63706e401c06ac8513145b7687A14804d17f814b',
|
|
@@ -507,52 +507,52 @@ exports.assets = [
|
|
|
507
507
|
name: 'AAVE', decimals: 18, addresses: {
|
|
508
508
|
1: stkAAVEAddress,
|
|
509
509
|
} }),
|
|
510
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'BAL', name: 'Balancer', addresses: {
|
|
510
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'BAL', feedAvailability: { 1: true }, name: 'Balancer', addresses: {
|
|
511
511
|
1: BALAddress,
|
|
512
512
|
8453: '0x4158734D47Fc9692176B5085E0F52ee0Da5d47F1',
|
|
513
513
|
}, exchange: true, decimals: 18 }),
|
|
514
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GUSD', name: 'Gemini Dollar', addresses: {
|
|
514
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GUSD', feedAvailability: { 1: true }, name: 'Gemini Dollar', addresses: {
|
|
515
515
|
1: GUSDAddress,
|
|
516
516
|
}, decimals: 2, isStable: true, exchange: true }),
|
|
517
517
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'RENBTC', name: 'renBTC', addresses: {
|
|
518
518
|
1: RENBTCAddress,
|
|
519
519
|
}, exchange: true, decimals: 8 }),
|
|
520
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2DAIETH', name: 'Uniswap V2: DAI/ETH ', addresses: {
|
|
520
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2DAIETH', feedAvailability: { 1: true }, name: 'Uniswap V2: DAI/ETH ', addresses: {
|
|
521
521
|
1: UNIV2DAIETHAddress,
|
|
522
522
|
}, decimals: 18 }),
|
|
523
523
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aWETH', underlyingAsset: 'WETH', name: 'WETH', decimals: 18, addresses: {
|
|
524
524
|
1: aWETHAddress,
|
|
525
525
|
} }),
|
|
526
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2WBTCETH', name: 'Uniswap V2: WBTC/ETH ', addresses: {
|
|
526
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2WBTCETH', feedAvailability: { 1: true }, name: 'Uniswap V2: WBTC/ETH ', addresses: {
|
|
527
527
|
1: UNIV2WBTCETHAddress,
|
|
528
528
|
}, decimals: 18 }),
|
|
529
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2USDCETH', name: 'Uniswap V2: USDC/ETH ', addresses: {
|
|
529
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2USDCETH', feedAvailability: { 1: true }, name: 'Uniswap V2: USDC/ETH ', addresses: {
|
|
530
530
|
1: UNIV2USDCETHAddress,
|
|
531
531
|
}, decimals: 18 }),
|
|
532
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'xSUSHI', name: 'Sushi Bar', addresses: {
|
|
532
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'xSUSHI', feedAvailability: { 1: true }, name: 'Sushi Bar', addresses: {
|
|
533
533
|
1: xSUSHIAddress,
|
|
534
534
|
}, decimals: 18 }),
|
|
535
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2DAIUSDC', name: 'Uniswap V2: DAI/USDC', addresses: {
|
|
535
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2DAIUSDC', feedAvailability: { 1: true }, name: 'Uniswap V2: DAI/USDC', addresses: {
|
|
536
536
|
1: UNIV2DAIUSDCAddress,
|
|
537
537
|
}, decimals: 18 }),
|
|
538
538
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2ETHUSDT', name: 'Uniswap V2: ETH/USDT', addresses: {
|
|
539
539
|
1: UNIV2ETHUSDTAddress,
|
|
540
540
|
}, decimals: 18 }),
|
|
541
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2LINKETH', name: 'Uniswap V2: LINK/ETH', addresses: {
|
|
541
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2LINKETH', feedAvailability: { 1: true }, name: 'Uniswap V2: LINK/ETH', addresses: {
|
|
542
542
|
1: UNIV2LINKETHAddress,
|
|
543
543
|
}, decimals: 18 }),
|
|
544
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2UNIETH', name: 'Uniswap V2: UNI/ETH', addresses: {
|
|
544
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2UNIETH', feedAvailability: { 1: true }, name: 'Uniswap V2: UNI/ETH', addresses: {
|
|
545
545
|
1: UNIV2UNIETHAddress,
|
|
546
546
|
}, decimals: 18 }),
|
|
547
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'RAI', name: 'Rai Reflex Index', addresses: {
|
|
547
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'RAI', feedAvailability: { 1: true }, name: 'Rai Reflex Index', addresses: {
|
|
548
548
|
1: RAIAddress,
|
|
549
549
|
10: '0x7FB688CCf682d58f86D7e38e03f9D22e7705448B',
|
|
550
550
|
}, decimals: 18, yearnCollateral: true, exchange: true }),
|
|
551
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: '1INCH', name: '1INCH Token', addresses: {
|
|
551
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: '1INCH', feedAvailability: { 1: true }, name: '1INCH Token', addresses: {
|
|
552
552
|
1: ONEINCHAddress,
|
|
553
553
|
8453: '0xc5fecC3a29Fb57B5024eEc8a2239d4621e111CBE',
|
|
554
554
|
}, yearnCollateral: true, exchange: true, decimals: 18 }),
|
|
555
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'BADGER', name: 'BadgerDAO', addresses: {
|
|
555
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'BADGER', feedAvailability: { 1: true }, name: 'BadgerDAO', addresses: {
|
|
556
556
|
1: BadgerAddress,
|
|
557
557
|
}, exchange: true, decimals: 18 }),
|
|
558
558
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'DIGG', name: 'DIGG', addresses: {
|
|
@@ -561,7 +561,7 @@ exports.assets = [
|
|
|
561
561
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'MIR', name: 'Mirror Protocol', addresses: {
|
|
562
562
|
1: MirAddress,
|
|
563
563
|
}, exchange: true, decimals: 18 }),
|
|
564
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SUSHI', name: 'Sushi Token', addresses: {
|
|
564
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SUSHI', feedAvailability: { 1: true }, name: 'Sushi Token', addresses: {
|
|
565
565
|
1: SushiAddress,
|
|
566
566
|
}, exchange: true, decimals: 18 }),
|
|
567
567
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'CREAM', name: 'C.R.E.A.M.', addresses: {
|
|
@@ -580,7 +580,7 @@ exports.assets = [
|
|
|
580
580
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'RPL Legacy', name: 'Rocket Pool Legacy', addresses: {
|
|
581
581
|
1: RplOldAddress,
|
|
582
582
|
}, exchange: true, decimals: 18 }),
|
|
583
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'RPL', name: 'Rocket Pool', addresses: {
|
|
583
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'RPL', feedAvailability: { 1: true }, name: 'Rocket Pool', addresses: {
|
|
584
584
|
1: RplAddress,
|
|
585
585
|
}, exchange: true, decimals: 18 }),
|
|
586
586
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'TORN', name: 'Tornado Cash', addresses: {
|
|
@@ -589,7 +589,7 @@ exports.assets = [
|
|
|
589
589
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'BNT', name: 'Bancor Network Token', addresses: {
|
|
590
590
|
1: BntAddress,
|
|
591
591
|
}, exchange: true, decimals: 18 }),
|
|
592
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2AAVEETH', name: 'Uniswap V2: AAVE/ETH', addresses: {
|
|
592
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2AAVEETH', feedAvailability: { 1: true }, name: 'Uniswap V2: AAVE/ETH', addresses: {
|
|
593
593
|
1: UNIV2AAVEETHAddress,
|
|
594
594
|
}, decimals: 18 }),
|
|
595
595
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UNIV2WBTCDAI', name: 'Uniswap V2: WBTC/DAI', addresses: {
|
|
@@ -605,7 +605,7 @@ exports.assets = [
|
|
|
605
605
|
1: LqtyAddress,
|
|
606
606
|
42161: '0xfb9E5D956D889D91a82737B9bFCDaC1DCE3e1449'
|
|
607
607
|
}, exchange: true, decimals: 18 }),
|
|
608
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'LUSD', name: 'Liquity USD', addresses: {
|
|
608
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'LUSD', feedAvailability: { 1: true, 10: true, 42161: true }, name: 'Liquity USD', addresses: {
|
|
609
609
|
1: LusdAddress,
|
|
610
610
|
10: '0xc40f949f8a4e094d1b49a23ea9241d289b7b2819',
|
|
611
611
|
42161: '0x93b346b6bc2548da6a1e7d98e9a421b42541425b',
|
|
@@ -613,23 +613,23 @@ exports.assets = [
|
|
|
613
613
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FLX', name: 'Reflexer Ungovernance Token', addresses: {
|
|
614
614
|
1: FlxAddress,
|
|
615
615
|
}, exchange: true, decimals: 18 }),
|
|
616
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ALCX', name: 'Alchemix', addresses: {
|
|
616
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ALCX', feedAvailability: { 1: true }, name: 'Alchemix', addresses: {
|
|
617
617
|
1: AlcxAddress,
|
|
618
618
|
}, exchange: true, decimals: 18 }),
|
|
619
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'EURS', name: 'Stasis Euro', addresses: {
|
|
619
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'EURS', feedAvailability: { 42161: true }, name: 'Stasis Euro', addresses: {
|
|
620
620
|
1: EursAddress,
|
|
621
621
|
42161: '0xd22a58f79e9481d1a88e00c343885a588b34b68b',
|
|
622
622
|
}, exchange: true, decimals: 2 }),
|
|
623
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GRT', name: 'The Graph', addresses: {
|
|
623
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GRT', feedAvailability: { 1: true }, name: 'The Graph', addresses: {
|
|
624
624
|
1: GrtAddress,
|
|
625
625
|
}, exchange: true, decimals: 18 }),
|
|
626
626
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'POOL', name: 'PoolTogether', addresses: {
|
|
627
627
|
1: PoolAddress,
|
|
628
628
|
}, exchange: true, decimals: 18 }),
|
|
629
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'LDO', name: 'Lido DAO', addresses: {
|
|
629
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'LDO', feedAvailability: { 1: true }, name: 'Lido DAO', addresses: {
|
|
630
630
|
1: LdoAddress,
|
|
631
631
|
}, exchange: true, decimals: 18 }),
|
|
632
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'stETH', name: 'Lido Staked Ether', addresses: {
|
|
632
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'stETH', feedAvailability: { 1: true }, name: 'Lido Staked Ether', addresses: {
|
|
633
633
|
1: StethAddress,
|
|
634
634
|
}, exchange: true, decimals: 18 }),
|
|
635
635
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'AXS', name: 'Axie Infinity', addresses: {
|
|
@@ -641,7 +641,7 @@ exports.assets = [
|
|
|
641
641
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FARM', name: 'Harvest Finance', addresses: {
|
|
642
642
|
1: FarmAddress,
|
|
643
643
|
}, exchange: true, decimals: 18 }),
|
|
644
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FEI', name: 'Fei Protocol', addresses: {
|
|
644
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FEI', feedAvailability: { 1: true }, name: 'Fei Protocol', addresses: {
|
|
645
645
|
1: FeiAddress,
|
|
646
646
|
}, exchange: true, decimals: 18 }),
|
|
647
647
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GTC', name: 'Gitcoin', addresses: {
|
|
@@ -659,7 +659,7 @@ exports.assets = [
|
|
|
659
659
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'TRIBE', name: 'Tribe', addresses: {
|
|
660
660
|
1: TribeAddress,
|
|
661
661
|
}, exchange: true, decimals: 18 }),
|
|
662
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'AMPL', name: 'Ampleforth', decimals: 9, addresses: {
|
|
662
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'AMPL', feedAvailability: { 1: true }, name: 'Ampleforth', decimals: 9, addresses: {
|
|
663
663
|
1: AmplAddress,
|
|
664
664
|
} }),
|
|
665
665
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'steCRV', name: 'Curve.fi ETH/stETH', decimals: 18, yearnCollateral: true, addresses: {
|
|
@@ -797,10 +797,10 @@ exports.assets = [
|
|
|
797
797
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cYFI', decimals: 8, compoundCollateral: true, addresses: {
|
|
798
798
|
1: cYFIAddress,
|
|
799
799
|
}, underlyingAsset: 'YFI' }),
|
|
800
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'RENFIL', name: 'renFIL', decimals: 18, exchange: true, addresses: {
|
|
800
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'RENFIL', feedAvailability: { 1: true }, name: 'renFIL', decimals: 18, exchange: true, addresses: {
|
|
801
801
|
1: RENFILAddress,
|
|
802
802
|
} }),
|
|
803
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'MATIC', name: 'Polygon (Matic)', decimals: 18, exchange: true, addresses: {
|
|
803
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'MATIC', feedAvailability: { 1: true }, name: 'Polygon (Matic)', decimals: 18, exchange: true, addresses: {
|
|
804
804
|
1: MATICAddress,
|
|
805
805
|
} }),
|
|
806
806
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'crvEURT', name: 'Curve.fi Factory Plain Pool: Euro Tether', decimals: 18, yearnCollateral: true, addresses: {
|
|
@@ -812,7 +812,7 @@ exports.assets = [
|
|
|
812
812
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'DYDX', name: 'dYdX', decimals: 18, exchange: true, addresses: {
|
|
813
813
|
1: DydxAddress,
|
|
814
814
|
} }),
|
|
815
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PERP', name: 'Perpetual Protocol', decimals: 18, exchange: true, addresses: {
|
|
815
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PERP', feedAvailability: { 1: true }, name: 'Perpetual Protocol', decimals: 18, exchange: true, addresses: {
|
|
816
816
|
1: PerpAddress,
|
|
817
817
|
10: '0x9e1028F5F1D5eDE59748FFceE5532509976840E0',
|
|
818
818
|
} }),
|
|
@@ -832,11 +832,11 @@ exports.assets = [
|
|
|
832
832
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'AMP', name: 'Amp Token', decimals: 18, exchange: true, addresses: {
|
|
833
833
|
1: AmpAddress,
|
|
834
834
|
} }),
|
|
835
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FRAX', name: 'Frax', decimals: 18, exchange: true, addresses: {
|
|
835
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FRAX', feedAvailability: { 1: true, 42161: true }, name: 'Frax', decimals: 18, exchange: true, addresses: {
|
|
836
836
|
1: FraxAddress,
|
|
837
837
|
42161: '0x17FC002b466eEc40DaE837Fc4bE5c67993ddBd6F',
|
|
838
838
|
} }),
|
|
839
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'wstETH', name: 'Wrapped stETH', decimals: 18, exchange: true, addresses: {
|
|
839
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'wstETH', feedAvailability: { 1: true, 10: true, 8453: true, 42161: true }, name: 'Wrapped stETH', decimals: 18, exchange: true, addresses: {
|
|
840
840
|
1: wstETHAddress,
|
|
841
841
|
10: '0x1F32b1c2345538c0c6f582fCB022739c4A194Ebb',
|
|
842
842
|
42161: '0x5979D7b546E38E414F7E9822514be443A4800529',
|
|
@@ -848,7 +848,7 @@ exports.assets = [
|
|
|
848
848
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'TEND', name: 'Tendies', decimals: 18, exchange: true, addresses: {
|
|
849
849
|
1: TendAddress,
|
|
850
850
|
} }),
|
|
851
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'OMG', name: 'OMG Network', decimals: 18, exchange: true, addresses: {
|
|
851
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'OMG', feedAvailability: { 1: true }, name: 'OMG Network', decimals: 18, exchange: true, addresses: {
|
|
852
852
|
1: OmgAddress,
|
|
853
853
|
} }),
|
|
854
854
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PICKLE', name: 'Pickle Finance', decimals: 18, exchange: true, addresses: {
|
|
@@ -870,16 +870,16 @@ exports.assets = [
|
|
|
870
870
|
1: SpankAddress,
|
|
871
871
|
10: '0xcfD1D50ce23C46D3Cf6407487B2F8934e96DC8f9',
|
|
872
872
|
} }),
|
|
873
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'CVX', name: 'Convex Finance', decimals: 18, exchange: true, addresses: {
|
|
873
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'CVX', feedAvailability: { 1: true }, name: 'Convex Finance', decimals: 18, exchange: true, addresses: {
|
|
874
874
|
1: CvxAddress,
|
|
875
875
|
} }),
|
|
876
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SHIB', name: 'Shiba Inu', decimals: 18, exchange: true, addresses: {
|
|
876
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SHIB', feedAvailability: { 1: true }, name: 'Shiba Inu', decimals: 18, exchange: true, addresses: {
|
|
877
877
|
1: ShibAddress,
|
|
878
878
|
} }),
|
|
879
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'MIM', name: 'Magic Internet Money', decimals: 18, exchange: true, addresses: {
|
|
879
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'MIM', feedAvailability: { 1: true }, name: 'Magic Internet Money', decimals: 18, exchange: true, addresses: {
|
|
880
880
|
1: MimAddress,
|
|
881
881
|
} }),
|
|
882
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SPELL', name: 'Spell Token', decimals: 18, exchange: true, addresses: {
|
|
882
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SPELL', feedAvailability: { 1: true }, name: 'Spell Token', decimals: 18, exchange: true, addresses: {
|
|
883
883
|
1: SpellAddress,
|
|
884
884
|
} }),
|
|
885
885
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ROBOT', name: 'Robot', decimals: 18, exchange: true, addresses: {
|
|
@@ -888,16 +888,16 @@ exports.assets = [
|
|
|
888
888
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GEL', name: 'Gelato', decimals: 18, exchange: true, addresses: {
|
|
889
889
|
1: GelAddress,
|
|
890
890
|
} }),
|
|
891
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GNO', name: 'Gnosis', decimals: 18, exchange: true, addresses: {
|
|
891
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GNO', feedAvailability: { 1: true }, name: 'Gnosis', decimals: 18, exchange: true, addresses: {
|
|
892
892
|
1: GnoAddress,
|
|
893
893
|
} }),
|
|
894
894
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'TRAC', name: 'OriginTrail', decimals: 18, exchange: true, addresses: {
|
|
895
895
|
1: TracAddress,
|
|
896
896
|
} }),
|
|
897
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FTM', name: 'Fantom', decimals: 18, exchange: true, addresses: {
|
|
897
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FTM', feedAvailability: { 1: true }, name: 'Fantom', decimals: 18, exchange: true, addresses: {
|
|
898
898
|
1: FtmAddress,
|
|
899
899
|
} }),
|
|
900
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'AUDIO', name: 'Audius', decimals: 18, exchange: true, addresses: {
|
|
900
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'AUDIO', feedAvailability: { 1: true }, name: 'Audius', decimals: 18, exchange: true, addresses: {
|
|
901
901
|
1: AudioAddress,
|
|
902
902
|
} }),
|
|
903
903
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'THALES', name: 'Thales', decimals: 18, exchange: true, addresses: {
|
|
@@ -907,13 +907,13 @@ exports.assets = [
|
|
|
907
907
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'RARI', name: 'Rarible', decimals: 18, exchange: true, addresses: {
|
|
908
908
|
1: RariAddress,
|
|
909
909
|
} }),
|
|
910
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FXS', name: 'Frax Share', decimals: 18, exchange: true, addresses: {
|
|
910
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FXS', feedAvailability: { 1: true }, name: 'Frax Share', decimals: 18, exchange: true, addresses: {
|
|
911
911
|
1: FxsAddress,
|
|
912
912
|
} }),
|
|
913
913
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'BED', name: 'Bankless BED Index', decimals: 18, exchange: true, addresses: {
|
|
914
914
|
1: BedAddress,
|
|
915
915
|
} }),
|
|
916
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FOX', name: 'ShapeShift', decimals: 18, exchange: true, addresses: {
|
|
916
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FOX', feedAvailability: { 1: true }, name: 'ShapeShift', decimals: 18, exchange: true, addresses: {
|
|
917
917
|
1: FoxAddress,
|
|
918
918
|
} }),
|
|
919
919
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'OHM', name: 'Olympus', decimals: 9, exchange: true, addresses: {
|
|
@@ -928,7 +928,7 @@ exports.assets = [
|
|
|
928
928
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ALETH', name: 'Alchemix ETH', decimals: 18, addresses: {
|
|
929
929
|
1: AlethAddress,
|
|
930
930
|
} }),
|
|
931
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ENS', name: 'Ethereum Name Service', exchange: true, decimals: 18, addresses: {
|
|
931
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ENS', feedAvailability: { 1: true }, name: 'Ethereum Name Service', exchange: true, decimals: 18, addresses: {
|
|
932
932
|
1: EnsAddress,
|
|
933
933
|
10: '0x65559aA14915a70190438eF90104769e5E890A00',
|
|
934
934
|
} }),
|
|
@@ -941,29 +941,29 @@ exports.assets = [
|
|
|
941
941
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GUNIV3DAIUSDC1', name: 'Gelato Uniswap DAI/USDC LP 0.05%', decimals: 18, addresses: {
|
|
942
942
|
1: GuniDaiUsdc1Address,
|
|
943
943
|
} }),
|
|
944
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GUNIV3DAIUSDC2', name: 'Gelato Uniswap DAI/USDC LP 0.01%', decimals: 18, addresses: {
|
|
944
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GUNIV3DAIUSDC2', feedAvailability: { 1: true }, name: 'Gelato Uniswap DAI/USDC LP 0.01%', decimals: 18, addresses: {
|
|
945
945
|
1: GuniDaiUsdc2Address,
|
|
946
946
|
} }),
|
|
947
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UST', name: 'UST (Wormhole)', decimals: 6, addresses: {
|
|
947
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'UST', feedAvailability: { 1: true }, name: 'UST (Wormhole)', decimals: 6, addresses: {
|
|
948
948
|
1: USTAddress,
|
|
949
949
|
10: '0xBA28feb4b6A6b81e3F26F08b83a19E715C4294fd',
|
|
950
950
|
} }),
|
|
951
951
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cFEI', underlyingAsset: 'FEI', name: 'Fei Protocol', addresses: {
|
|
952
952
|
1: cFeiAddress,
|
|
953
953
|
}, exchange: false, compoundCollateral: true, decimals: 8 }),
|
|
954
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'rETH', name: 'Rocket Pool ETH', addresses: {
|
|
954
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'rETH', feedAvailability: { 1: true, 10: true, 8453: true, 42161: true }, name: 'Rocket Pool ETH', addresses: {
|
|
955
955
|
1: '0xae78736cd615f374d3085123a210448e74fc6393',
|
|
956
956
|
10: '0x9bcef72be871e61ed4fbbc7630889bee758eb81d',
|
|
957
957
|
42161: '0xEC70Dcb4A1EFa46b8F2D97C310C9c4790ba5ffA8',
|
|
958
958
|
8453: '0xB6fe221Fe9EeF5aBa221c348bA20A1Bf5e73624c',
|
|
959
959
|
}, exchange: true, decimals: 18 }),
|
|
960
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'OP', name: 'Optimism', nativeChainId: 10, addresses: {
|
|
960
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'OP', feedAvailability: { 10: true }, name: 'Optimism', nativeChainId: 10, addresses: {
|
|
961
961
|
10: '0x4200000000000000000000000000000000000042',
|
|
962
962
|
}, exchange: true, decimals: 18 }),
|
|
963
963
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'bLUSD', name: 'Boosted LUSD', addresses: {
|
|
964
964
|
1: bLUSDAddress,
|
|
965
965
|
}, exchange: true, decimals: 18 }),
|
|
966
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cbETH', name: 'Coinbase Wrapped Staked ETH', addresses: {
|
|
966
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cbETH', feedAvailability: { 1: true, 8453: true }, name: 'Coinbase Wrapped Staked ETH', addresses: {
|
|
967
967
|
1: cbETHAddress,
|
|
968
968
|
8453: '0x2Ae3F1Ec7F1F5012CFEab0185bfc7aa3cf0DEc22',
|
|
969
969
|
}, exchange: true, decimals: 18 }),
|
|
@@ -974,16 +974,16 @@ exports.assets = [
|
|
|
974
974
|
1: '0x58D97B57BB95320F9a05dC918Aef65434969c2B2',
|
|
975
975
|
8453: '0xBAa5CC21fd487B8Fcc2F632f3F4E8D37262a0842',
|
|
976
976
|
}, exchange: true, decimals: 18 }),
|
|
977
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ARB', name: 'Arbitrum', nativeChainId: 42161, addresses: {
|
|
977
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ARB', feedAvailability: { 42161: true }, name: 'Arbitrum', nativeChainId: 42161, addresses: {
|
|
978
978
|
42161: '0x912CE59144191C1204E64559FE8253a0e49E6548',
|
|
979
979
|
}, exchange: true, decimals: 18 }),
|
|
980
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GMX', name: 'GMX', nativeChainId: 42161, addresses: {
|
|
980
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GMX', feedAvailability: { 42161: true }, name: 'GMX', nativeChainId: 42161, addresses: {
|
|
981
981
|
42161: '0xfc5A1A6EB076a2C7aD06eD22C90d7E710E35ad0a',
|
|
982
982
|
}, exchange: true, decimals: 18 }),
|
|
983
983
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'wOUSD', name: 'Wrapped Origin Dollar', nativeChainId: 1, addresses: {
|
|
984
984
|
1: '0xD2af830E8CBdFed6CC11Bab697bB25496ed6FA62',
|
|
985
985
|
}, exchange: true, decimals: 18 }),
|
|
986
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'OETH', name: 'Origin Ether', nativeChainId: 1, addresses: {
|
|
986
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'OETH', feedAvailability: { 1: true }, name: 'Origin Ether', nativeChainId: 1, addresses: {
|
|
987
987
|
1: '0x856c4Efb76C1D1AE02e20CEB03A2A6a08b0b8dC3',
|
|
988
988
|
}, exchange: true, decimals: 18 }),
|
|
989
989
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'wOETH', name: 'Wrapped Origin Ether', nativeChainId: 1, addresses: {
|
|
@@ -995,7 +995,7 @@ exports.assets = [
|
|
|
995
995
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'OGV', name: 'Origin Dollar Governance', nativeChainId: 1, addresses: {
|
|
996
996
|
1: '0x9c354503C38481a7A7a51629142963F98eCC12D0',
|
|
997
997
|
}, exchange: true, decimals: 18 }),
|
|
998
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'MAI', name: 'Mai Finance', nativeChainId: 10, addresses: {
|
|
998
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'MAI', feedAvailability: { 10: true, 42161: true }, name: 'Mai Finance', nativeChainId: 10, addresses: {
|
|
999
999
|
1: '0x8d6cebd76f18e1558d4db88138e2defb3909fad6',
|
|
1000
1000
|
10: '0xdfa46478f9e5ea86d57387849598dbfb2e964b02',
|
|
1001
1001
|
42161: '0x3f56e0c36d275367b8c502090edf38289b3dea0d',
|
|
@@ -1011,25 +1011,24 @@ exports.assets = [
|
|
|
1011
1011
|
10: '0x484c2D6e3cDd945a8B2DF735e079178C1036578c',
|
|
1012
1012
|
42161: '0x95aB45875cFFdba1E5f451B950bC2E42c0053f39'
|
|
1013
1013
|
}, decimals: 18 }),
|
|
1014
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'crvUSD', name: 'Curve.Fi USD Stablecoin', addresses: {
|
|
1014
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'crvUSD', feedAvailability: { 1: true }, name: 'Curve.Fi USD Stablecoin', addresses: {
|
|
1015
1015
|
1: crvUSD,
|
|
1016
1016
|
42161: crvUSDArb
|
|
1017
1017
|
}, decimals: 18, isStable: true }),
|
|
1018
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'sDAI', name: 'Savings DAI', nativeChainId: 1, addresses: {
|
|
1018
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'sDAI', feedAvailability: { 1: true }, name: 'Savings DAI', nativeChainId: 1, addresses: {
|
|
1019
1019
|
1: sDAIAddress,
|
|
1020
1020
|
}, decimals: 18, isStable: true, is4626: true }),
|
|
1021
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GHO', name: 'GHO', addresses: {
|
|
1021
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'GHO', feedAvailability: { 1: true, 8453: true, 42161: true }, name: 'GHO', addresses: {
|
|
1022
1022
|
1: '0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f',
|
|
1023
1023
|
8453: '0x6Bb7a212910682DCFdbd5BCBb3e28FB4E8da10Ee',
|
|
1024
1024
|
42161: '0x7dff72693f6a4149b17e7c6314655f6a9f7c8b33',
|
|
1025
1025
|
}, nativeChainId: 1, decimals: 18, isStable: true }),
|
|
1026
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'tBTC', name: 'tBTC', addresses: {
|
|
1026
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'tBTC', feedAvailability: { 1: true, 8453: true, 42161: true }, name: 'tBTC', addresses: {
|
|
1027
1027
|
1: tBTCAddress,
|
|
1028
|
-
10: '0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b',
|
|
1029
1028
|
8453: '0x236aa50979D5f3De3Bd1Eeb40E81137F22ab794b',
|
|
1030
1029
|
42161: '0x6c84a8f1c29108F47a79964b5Fe888D4f4D0dE40',
|
|
1031
1030
|
}, decimals: 18 }),
|
|
1032
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'STG', name: 'STG', addresses: {
|
|
1031
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'STG', feedAvailability: { 1: true }, name: 'STG', addresses: {
|
|
1033
1032
|
1: '0xAf5191B0De278C7286d6C7CC6ab6BB8A73bA2Cd6',
|
|
1034
1033
|
10: '0x296f55f8fb28e498b858d0bcda06d955b2cb3f97',
|
|
1035
1034
|
42161: '0x6694340fc020c5e6b96567843da2df01b2ce1eb6'
|
|
@@ -1042,13 +1041,13 @@ exports.assets = [
|
|
|
1042
1041
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'sETH', name: 'Synth sETH', addresses: {
|
|
1043
1042
|
1: "0x5e74c9036fb86bd7ecdcb084a0673efc32ea31cb",
|
|
1044
1043
|
}, decimals: 18, exchange: true }),
|
|
1045
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PYUSD', name: 'PayPal USD', isStable: true, addresses: {
|
|
1044
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PYUSD', feedAvailability: { 1: true }, name: 'PayPal USD', isStable: true, addresses: {
|
|
1046
1045
|
1: "0x6c3ea9036406852006290770BEdFcAbA0e23A0e8",
|
|
1047
1046
|
}, decimals: 6, exchange: true }),
|
|
1048
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'sUSDe', name: 'Staked USDe', addresses: {
|
|
1047
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'sUSDe', feedAvailability: { 1: true }, name: 'Staked USDe', addresses: {
|
|
1049
1048
|
1: "0x9D39A5DE30e57443BfF2A8307A4256c8797A3497",
|
|
1050
1049
|
}, decimals: 18, exchange: true, isStable: true, is4626: true }),
|
|
1051
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDe', name: 'USDe', addresses: {
|
|
1050
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDe', feedAvailability: { 1: true }, name: 'USDe', addresses: {
|
|
1052
1051
|
1: "0x4c9EDD5852cd905f086C759E8383e09bff1E68B3",
|
|
1053
1052
|
}, decimals: 18, exchange: true, isStable: true }),
|
|
1054
1053
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ENA', name: 'Ethena', addresses: {
|
|
@@ -1058,7 +1057,7 @@ exports.assets = [
|
|
|
1058
1057
|
1: fxnAddress,
|
|
1059
1058
|
42161: fxnAddressArb,
|
|
1060
1059
|
}, decimals: 18, exchange: true }),
|
|
1061
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'weETH', name: 'Wrapped eETH', addresses: {
|
|
1060
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'weETH', feedAvailability: { 1: true, 8453: true, 42161: true }, name: 'Wrapped eETH', addresses: {
|
|
1062
1061
|
1: "0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee",
|
|
1063
1062
|
10: "0x346e03f8cce9fe01dcb3d0da3e9d00dc2c0e08f0",
|
|
1064
1063
|
42161: "0x35751007a407ca6feffe80b3cb397736d2cf4dbe",
|
|
@@ -1067,48 +1066,48 @@ exports.assets = [
|
|
|
1067
1066
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDA', name: 'USDA', addresses: {
|
|
1068
1067
|
1: '0x0000206329b97DB379d5E1Bf586BbDB969C63274',
|
|
1069
1068
|
}, decimals: 18, exchange: true, isStable: true }),
|
|
1070
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ezETH', name: 'Renzo Restaked ETH', addresses: {
|
|
1069
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ezETH', feedAvailability: { 1: true, 8453: true, 42161: true }, name: 'Renzo Restaked ETH', addresses: {
|
|
1071
1070
|
1: "0xbf5495Efe5DB9ce00f80364C8B423567e58d2110",
|
|
1072
1071
|
10: "0x2416092f143378750bb29b79eD961ab195CcEea5",
|
|
1073
1072
|
8453: "0x2416092f143378750bb29b79eD961ab195CcEea5",
|
|
1074
1073
|
42161: "0x2416092f143378750bb29b79ed961ab195cceea5",
|
|
1075
1074
|
}, decimals: 18, exchange: true }),
|
|
1076
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'osETH', name: 'StakeWise Staked ETH', addresses: {
|
|
1075
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'osETH', feedAvailability: { 1: true }, name: 'StakeWise Staked ETH', addresses: {
|
|
1077
1076
|
1: "0xf1C9acDc66974dFB6dEcB12aA385b9cD01190E38",
|
|
1078
1077
|
}, decimals: 18, exchange: true }),
|
|
1079
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ETHx', name: 'Stader ETHx', addresses: {
|
|
1078
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ETHx', feedAvailability: { 1: true }, name: 'Stader ETHx', addresses: {
|
|
1080
1079
|
1: "0xA35b1B31Ce002FBF2058D22F30f95D405200A15b",
|
|
1081
1080
|
}, decimals: 18, exchange: true }),
|
|
1082
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'rsETH', name: 'Kelp DAO Restaked ETH', addresses: {
|
|
1081
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'rsETH', feedAvailability: { 1: true, 42161: true }, name: 'Kelp DAO Restaked ETH', addresses: {
|
|
1083
1082
|
1: "0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7",
|
|
1084
1083
|
10: "0x4186BFC76E2E237523CBC30FD220FE055156b41F",
|
|
1085
1084
|
42161: "0x4186BFC76E2E237523CBC30FD220FE055156b41F",
|
|
1086
1085
|
8453: "0x1Bc71130A0e39942a7658878169764Bbd8A45993"
|
|
1087
1086
|
}, decimals: 18, exchange: true }),
|
|
1088
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'wrsETH', nativeChainId: 8453, name: 'Wrapped Kelp DAO Restaked ETH', addresses: {
|
|
1087
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'wrsETH', feedAvailability: { 8453: true }, nativeChainId: 8453, name: 'Wrapped Kelp DAO Restaked ETH', addresses: {
|
|
1089
1088
|
10: "0x87eEE96D50Fb761AD85B1c982d28A042169d61b1",
|
|
1090
1089
|
8453: "0xEDfa23602D0EC14714057867A78d01e94176BEA0"
|
|
1091
1090
|
}, decimals: 18, exchange: true }),
|
|
1092
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'pufETH', name: 'Puffer Finance ETH', addresses: {
|
|
1091
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'pufETH', feedAvailability: { 1: true }, name: 'Puffer Finance ETH', addresses: {
|
|
1093
1092
|
1: "0xD9A442856C234a39a81a089C06451EBAa4306a72",
|
|
1094
1093
|
}, decimals: 18, exchange: true }),
|
|
1095
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cbBTC', name: 'Coinbase Wrapped BTC', addresses: {
|
|
1094
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'cbBTC', feedAvailability: { 1: true, 8453: true }, name: 'Coinbase Wrapped BTC', addresses: {
|
|
1096
1095
|
1: "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf",
|
|
1097
1096
|
8453: "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf",
|
|
1098
1097
|
}, decimals: 8, exchange: true }),
|
|
1099
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDS', name: 'USDS Stablecoin', decimals: 18, exchange: true, addresses: {
|
|
1098
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDS', feedAvailability: { 1: true }, name: 'USDS Stablecoin', decimals: 18, exchange: true, addresses: {
|
|
1100
1099
|
1: USDSAddress,
|
|
1101
1100
|
8453: "0x820C137fa70C8691f0e44Dc420a5e53c168921Dc",
|
|
1102
1101
|
}, isStable: true }),
|
|
1103
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SKY', name: 'SKY Protocol', decimals: 18, exchange: true, addresses: {
|
|
1102
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'SKY', feedAvailability: { 1: true }, name: 'SKY Protocol', decimals: 18, exchange: true, addresses: {
|
|
1104
1103
|
1: SKYAddress,
|
|
1105
1104
|
} }),
|
|
1106
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'sUSDS', name: 'Savings USDS', addresses: {
|
|
1105
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'sUSDS', feedAvailability: { 1: true }, name: 'Savings USDS', addresses: {
|
|
1107
1106
|
1: sUSDSAddress,
|
|
1108
1107
|
42161: "0xddb46999f8891663a8f2828d25298f70416d7610",
|
|
1109
1108
|
8453: "0x5875eee11cf8398102fdad704c9e96607675467a"
|
|
1110
1109
|
}, decimals: 18, isStable: true, is4626: true }),
|
|
1111
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'rswETH', name: 'Swell Liquid Restaking Token (ETH)', decimals: 18, addresses: {
|
|
1110
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'rswETH', feedAvailability: { 1: true }, name: 'Swell Liquid Restaking Token (ETH)', decimals: 18, addresses: {
|
|
1112
1111
|
1: rswETHAddress,
|
|
1113
1112
|
} }),
|
|
1114
1113
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'wsuperOETHb', name: "Super OETH", decimals: 18, nativeChainId: 8453, addresses: {
|
|
@@ -1126,7 +1125,7 @@ exports.assets = [
|
|
|
1126
1125
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'mTBILL', name: "Midas US Treasury Bill Token", decimals: 18, nativeChainId: 1, addresses: {
|
|
1127
1126
|
1: '0xDD629E5241CbC5919847783e6C96B2De4754e438',
|
|
1128
1127
|
} }),
|
|
1129
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'LBTC', name: "Lombard Staked Bitcoin", decimals: 8, nativeChainId: 1, addresses: {
|
|
1128
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'LBTC', feedAvailability: { 1: true, 8453: true }, name: "Lombard Staked Bitcoin", decimals: 8, nativeChainId: 1, addresses: {
|
|
1130
1129
|
1: '0x8236a87084f8B84306f72007F36F2618A5634494',
|
|
1131
1130
|
8453: '0xecAc9C5F704e954931349Da37F60E39f515c11c1',
|
|
1132
1131
|
} }),
|
|
@@ -1140,17 +1139,17 @@ exports.assets = [
|
|
|
1140
1139
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'sFRAX', name: 'Staked FRAX', decimals: 18, nativeChainId: 1, addresses: {
|
|
1141
1140
|
1: '0xA663B02CF0a4b149d2aD41910CB81e23e1c41c32',
|
|
1142
1141
|
} }),
|
|
1143
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'mETH', name: 'Mantle Staked Ether', decimals: 18, nativeChainId: 1, addresses: {
|
|
1142
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'mETH', feedAvailability: { 1: true }, name: 'Mantle Staked Ether', decimals: 18, nativeChainId: 1, addresses: {
|
|
1144
1143
|
1: '0xd5F7838F5C461fefF7FE49ea5ebaF7728bB0ADfa',
|
|
1145
1144
|
} }),
|
|
1146
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'EURC', name: 'Euro Coin', decimals: 6, nativeChainId: 1, isStable: true, addresses: {
|
|
1145
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'EURC', feedAvailability: { 1: true, 8453: true }, name: 'Euro Coin', decimals: 6, nativeChainId: 1, isStable: true, addresses: {
|
|
1147
1146
|
1: '0x1aBaEA1f7C830bD89Acc67eC4af516284b1bC33c',
|
|
1148
1147
|
8453: '0x60a3E35Cc302bFA44Cb288Bc5a4F316Fdb1adb42',
|
|
1149
1148
|
} }),
|
|
1150
1149
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'RLP', name: 'Resolv Liquidity Provider Token', decimals: 18, nativeChainId: 1, addresses: {
|
|
1151
1150
|
1: '0x4956b52aE2fF65D74CA2d61207523288e4528f96',
|
|
1152
1151
|
} }),
|
|
1153
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USR', name: 'Resolv USD', decimals: 18, nativeChainId: 1, isStable: true, addresses: {
|
|
1152
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USR', feedAvailability: { 1: true }, name: 'Resolv USD', decimals: 18, nativeChainId: 1, isStable: true, addresses: {
|
|
1154
1153
|
1: '0x66a1E37c9b0eAddca17d3662D6c05F4DECf3e110',
|
|
1155
1154
|
} }),
|
|
1156
1155
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'weETHs', name: 'Super Symbiotic LRT', decimals: 18, nativeChainId: 1, isStable: true, addresses: {
|
|
@@ -1159,13 +1158,13 @@ exports.assets = [
|
|
|
1159
1158
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'KING', name: 'King', decimals: 18, nativeChainId: 1, isStable: false, addresses: {
|
|
1160
1159
|
1: kingAddress,
|
|
1161
1160
|
} }),
|
|
1162
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'eBTC', name: 'ether.fi Staked BTC', decimals: 8, nativeChainId: 1, addresses: {
|
|
1161
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'eBTC', feedAvailability: { 1: true }, name: 'ether.fi Staked BTC', decimals: 8, nativeChainId: 1, addresses: {
|
|
1163
1162
|
1: '0x657e8C867D8B37dCC18fA4Caead9C45EB088C642',
|
|
1164
1163
|
} }),
|
|
1165
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'tETH', name: 'Treehouse ETH', decimals: 18, nativeChainId: 1, addresses: {
|
|
1164
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'tETH', feedAvailability: { 1: true }, name: 'Treehouse ETH', decimals: 18, nativeChainId: 1, addresses: {
|
|
1166
1165
|
1: '0xD11c452fc99cF405034ee446803b6F6c1F6d5ED8',
|
|
1167
1166
|
} }),
|
|
1168
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'RLUSD', name: 'Ripple USD', decimals: 18, nativeChainId: 1, isStable: true, addresses: {
|
|
1167
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'RLUSD', feedAvailability: { 1: true }, name: 'Ripple USD', decimals: 18, nativeChainId: 1, isStable: true, addresses: {
|
|
1169
1168
|
1: '0x8292Bb45bf1Ee4d140127049757C2E0fF06317eD',
|
|
1170
1169
|
} }),
|
|
1171
1170
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT eUSDe May', name: 'PT Ethereal eUSDe May', underlyingAsset: 'eUSDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1748476800, addresses: {
|
|
@@ -1174,12 +1173,12 @@ exports.assets = [
|
|
|
1174
1173
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT sUSDe July', name: 'PT Ethena sUSDe July', underlyingAsset: 'sUSDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1753920000, addresses: {
|
|
1175
1174
|
1: '0x3b3fB9C57858EF816833dC91565EFcd85D96f634',
|
|
1176
1175
|
} }),
|
|
1177
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDtb', name: 'USDtb', decimals: 18, nativeChainId: 1, isStable: true, exchange: true, addresses: {
|
|
1176
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'USDtb', feedAvailability: { 1: true }, name: 'USDtb', decimals: 18, nativeChainId: 1, isStable: true, exchange: true, addresses: {
|
|
1178
1177
|
1: '0xC139190F447e929f090Edeb554D95AbB8b18aC1C',
|
|
1179
1178
|
8453: '0xc708B6887DB46005dA033501f8aeBee72d191a5d',
|
|
1180
1179
|
42161: '0xc708B6887DB46005dA033501f8aeBee72d191a5d',
|
|
1181
1180
|
} }),
|
|
1182
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'eUSDe', name: 'Ethereal eUSDe', decimals: 18, nativeChainId: 1, isStable: true, exchange: true, is4626: true, addresses: {
|
|
1181
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'eUSDe', feedAvailability: { 1: true }, name: 'Ethereal eUSDe', decimals: 18, nativeChainId: 1, isStable: true, exchange: true, is4626: true, addresses: {
|
|
1183
1182
|
1: '0x90D2af7d622ca3141efA4d8f1F24d86E5974Cc8F',
|
|
1184
1183
|
} }),
|
|
1185
1184
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT USDe July', name: 'PT Ethena USDe July', underlyingAsset: 'USDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1753920000, addresses: {
|
|
@@ -1206,7 +1205,7 @@ exports.assets = [
|
|
|
1206
1205
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'aEthUSDT', name: 'Aave Ethereum USDT', underlyingAsset: 'USDT', decimals: 6, nativeChainId: 1, exchange: false, addresses: {
|
|
1207
1206
|
1: '0x23878914EFE38d27C4D67Ab83ed1b93A74D4086a'
|
|
1208
1207
|
} }),
|
|
1209
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FBTC', name: 'Fire Bitcoin', decimals: 8, nativeChainId: 1, exchange: true, addresses: {
|
|
1208
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'FBTC', feedAvailability: { 1: true }, name: 'Fire Bitcoin', decimals: 8, nativeChainId: 1, exchange: true, addresses: {
|
|
1210
1209
|
1: '0xC96dE26018A54D51c097160568752c4E3BD6C364'
|
|
1211
1210
|
} }),
|
|
1212
1211
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT sUSDe Sep', name: 'PT Ethena sUSDe September', underlyingAsset: 'sUSDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1758758400, addresses: {
|
|
@@ -1221,7 +1220,7 @@ exports.assets = [
|
|
|
1221
1220
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'ysyBOLD', name: 'Staked yBOLD', underlyingAsset: 'yBOLD', decimals: 18, nativeChainId: 1, exchange: false, is4626: true, addresses: {
|
|
1222
1221
|
1: ysyYBOLD
|
|
1223
1222
|
} }),
|
|
1224
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'deUSD', name: 'Elixir deUSD', decimals: 18, nativeChainId: 1, exchange: false, addresses: {
|
|
1223
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'deUSD', feedAvailability: { 1: true }, name: 'Elixir deUSD', decimals: 18, nativeChainId: 1, exchange: false, addresses: {
|
|
1225
1224
|
1: '0x15700B564Ca08D9439C58cA5053166E8317aa138'
|
|
1226
1225
|
} }),
|
|
1227
1226
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'sdeUSD', name: 'Elixir Staked deUSD', underlyingAsset: 'deUSD', decimals: 18, nativeChainId: 1, exchange: false, is4626: true, addresses: {
|
|
@@ -1230,7 +1229,10 @@ exports.assets = [
|
|
|
1230
1229
|
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PT USDe Sep', name: 'PT Ethena USDe September', underlyingAsset: 'USDe', feedAvailability: { 1: true }, decimals: 18, nativeChainId: 1, isStable: true, isPendle: true, exchange: true, expiryTimestamp: 1758758400, addresses: {
|
|
1231
1230
|
1: '0xBC6736d346a5eBC0dEbc997397912CD9b8FAe10a',
|
|
1232
1231
|
} }),
|
|
1233
|
-
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'XAUt', name: 'Tether Gold', decimals: 6, nativeChainId: 1, exchange: true, addresses: {
|
|
1232
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'XAUt', feedAvailability: { 1: true }, name: 'Tether Gold', decimals: 6, nativeChainId: 1, exchange: true, addresses: {
|
|
1234
1233
|
1: '0x68749665FF8D2d112Fa859AA293F07A622782F38',
|
|
1234
|
+
} }),
|
|
1235
|
+
Object.assign(Object.assign({}, exports.assetProto), { symbol: 'PENDLE', name: 'Pendle', decimals: 18, nativeChainId: 1, isPendle: true, exchange: true, addresses: {
|
|
1236
|
+
1: '0x808507121B80c02388fAd14726482e061B8da827',
|
|
1235
1237
|
} })
|
|
1236
1238
|
];
|