@bgd-labs/toolbox 0.2.19 → 0.2.21
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/browser.d.mts +849 -730
- package/dist/browser.d.mts.map +1 -1
- package/dist/browser.mjs +348 -910
- package/dist/browser.mjs.map +1 -1
- package/dist/index.d.mts +939 -820
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +374 -936
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -18323,6 +18323,133 @@ function calculateAccruedRewards({ accrued, userIndex, reserveIndex, userBalance
|
|
|
18323
18323
|
return accrued + userBalance * (currentIndex - userIndex) / SCALING_FACTOR;
|
|
18324
18324
|
}
|
|
18325
18325
|
|
|
18326
|
+
//#endregion
|
|
18327
|
+
//#region src/ecosystem/chainIds.ts
|
|
18328
|
+
const ChainId = {
|
|
18329
|
+
celo: celo.id,
|
|
18330
|
+
mainnet: mainnet.id,
|
|
18331
|
+
polygon: polygon.id,
|
|
18332
|
+
polygon_amoy: polygonAmoy.id,
|
|
18333
|
+
avalanche: avalanche.id,
|
|
18334
|
+
avalanche_fuji: avalancheFuji.id,
|
|
18335
|
+
arbitrum: arbitrum.id,
|
|
18336
|
+
arbitrum_sepolia: arbitrumSepolia.id,
|
|
18337
|
+
fantom: fantom.id,
|
|
18338
|
+
fantom_testnet: fantomTestnet.id,
|
|
18339
|
+
optimism: optimism.id,
|
|
18340
|
+
optimism_sepolia: optimismSepolia.id,
|
|
18341
|
+
harmony: harmonyOne.id,
|
|
18342
|
+
sepolia: sepolia.id,
|
|
18343
|
+
scroll: scroll.id,
|
|
18344
|
+
scroll_sepolia: scrollSepolia.id,
|
|
18345
|
+
sonic: sonic.id,
|
|
18346
|
+
mantle: mantle.id,
|
|
18347
|
+
metis: metis.id,
|
|
18348
|
+
base: base.id,
|
|
18349
|
+
base_sepolia: baseSepolia.id,
|
|
18350
|
+
bnb: bsc.id,
|
|
18351
|
+
gnosis: gnosis.id,
|
|
18352
|
+
zkEVM: polygonZkEvm.id,
|
|
18353
|
+
zksync: zksync.id,
|
|
18354
|
+
linea: linea.id,
|
|
18355
|
+
ink: ink.id,
|
|
18356
|
+
soneium: soneium.id,
|
|
18357
|
+
bob: bob.id,
|
|
18358
|
+
plasma: plasma.id,
|
|
18359
|
+
xLayer: xLayer.id,
|
|
18360
|
+
megaeth: megaeth.id
|
|
18361
|
+
};
|
|
18362
|
+
const ChainList = {
|
|
18363
|
+
[ChainId.mainnet]: mainnet,
|
|
18364
|
+
[ChainId.polygon]: polygon,
|
|
18365
|
+
[ChainId.polygon_amoy]: polygonAmoy,
|
|
18366
|
+
[ChainId.avalanche]: {
|
|
18367
|
+
...avalanche,
|
|
18368
|
+
blockExplorers: { default: {
|
|
18369
|
+
url: "https://snowscan.xyz",
|
|
18370
|
+
name: "Snowscan"
|
|
18371
|
+
} }
|
|
18372
|
+
},
|
|
18373
|
+
[ChainId.avalanche_fuji]: {
|
|
18374
|
+
...avalancheFuji,
|
|
18375
|
+
blockExplorers: { default: {
|
|
18376
|
+
url: "https://testnet.snowscan.xyz",
|
|
18377
|
+
name: "Snowscan Fuji"
|
|
18378
|
+
} }
|
|
18379
|
+
},
|
|
18380
|
+
[ChainId.arbitrum]: arbitrum,
|
|
18381
|
+
[ChainId.arbitrum_sepolia]: arbitrumSepolia,
|
|
18382
|
+
[ChainId.fantom]: fantom,
|
|
18383
|
+
[ChainId.fantom_testnet]: fantomTestnet,
|
|
18384
|
+
[ChainId.optimism]: optimism,
|
|
18385
|
+
[ChainId.optimism_sepolia]: optimismSepolia,
|
|
18386
|
+
[ChainId.harmony]: harmonyOne,
|
|
18387
|
+
[ChainId.sepolia]: sepolia,
|
|
18388
|
+
[ChainId.scroll]: scroll,
|
|
18389
|
+
[ChainId.scroll_sepolia]: scrollSepolia,
|
|
18390
|
+
[ChainId.sonic]: sonic,
|
|
18391
|
+
[ChainId.mantle]: mantle,
|
|
18392
|
+
[ChainId.metis]: metis,
|
|
18393
|
+
[ChainId.base]: base,
|
|
18394
|
+
[ChainId.base_sepolia]: baseSepolia,
|
|
18395
|
+
[ChainId.bnb]: bsc,
|
|
18396
|
+
[ChainId.gnosis]: gnosis,
|
|
18397
|
+
[ChainId.zkEVM]: polygonZkEvm,
|
|
18398
|
+
[ChainId.celo]: celo,
|
|
18399
|
+
[ChainId.zksync]: zksync,
|
|
18400
|
+
[ChainId.linea]: linea,
|
|
18401
|
+
[ChainId.ink]: ink,
|
|
18402
|
+
[ChainId.soneium]: soneium,
|
|
18403
|
+
[ChainId.bob]: bob,
|
|
18404
|
+
[ChainId.plasma]: plasma,
|
|
18405
|
+
[ChainId.xLayer]: xLayer,
|
|
18406
|
+
[ChainId.megaeth]: megaeth
|
|
18407
|
+
};
|
|
18408
|
+
|
|
18409
|
+
//#endregion
|
|
18410
|
+
//#region src/ecosystem/addresses.ts
|
|
18411
|
+
const VELORA_PORTIKUS = {
|
|
18412
|
+
[ChainId.mainnet]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18413
|
+
[ChainId.base]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18414
|
+
[ChainId.optimism]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18415
|
+
[ChainId.arbitrum]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18416
|
+
[ChainId.polygon]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18417
|
+
[ChainId.bnb]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D"
|
|
18418
|
+
};
|
|
18419
|
+
/**
|
|
18420
|
+
* The following is a list of venues that offer free flashloans
|
|
18421
|
+
*/
|
|
18422
|
+
const BALANCER_VAULT_V2 = "0xBA12222222228d8Ba445958a75a0704d566BF2C8";
|
|
18423
|
+
const BALANCER_VAULT_V3 = "0xbA1333333333a1BA1108E8412f11850A5C319bA9";
|
|
18424
|
+
const UNISWAP_V4_MANAGER = {
|
|
18425
|
+
[ChainId.mainnet]: "0x000000000004444c5dc75cB358380D2e3dE08A90",
|
|
18426
|
+
[ChainId.base]: "0x498581ff718922c3f8e6a244956af099b2652b2b",
|
|
18427
|
+
[ChainId.optimism]: "0x9a13f98cb987694c9f086b1f5eb990eea8264ec3",
|
|
18428
|
+
[ChainId.arbitrum]: "0x360e68faccca8ca495c1b759fd9eee466db9fb32",
|
|
18429
|
+
[ChainId.polygon]: "0x67366782805870060151383f4bbff9dab53e5cd6",
|
|
18430
|
+
[ChainId.ink]: "0x360e68faccca8ca495c1b759fd9eee466db9fb32",
|
|
18431
|
+
[ChainId.soneium]: "0x360e68faccca8ca495c1b759fd9eee466db9fb32",
|
|
18432
|
+
[ChainId.avalanche]: "0x06380c0e0912312b5150364b9dc4542ba0dbbc85",
|
|
18433
|
+
[ChainId.bnb]: "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df",
|
|
18434
|
+
[ChainId.celo]: "0x288dc841A52FCA2707c6947B3A777c5E56cd87BC",
|
|
18435
|
+
[ChainId.megaeth]: "0xacb7e78fa05d562e0a5d3089ec896d57d057d38e"
|
|
18436
|
+
};
|
|
18437
|
+
const MORPHO = {
|
|
18438
|
+
[ChainId.mainnet]: "0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb",
|
|
18439
|
+
[ChainId.arbitrum]: "0x6c247b1F6182318877311737BaC0844bAa518F5e",
|
|
18440
|
+
[ChainId.avalanche]: "0x895383274303AA19fe978AFB4Ac55C7f094f982C",
|
|
18441
|
+
[ChainId.base]: "0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb",
|
|
18442
|
+
[ChainId.bnb]: "0x01b0Bd309AA75547f7a37Ad7B1219A898E67a83a",
|
|
18443
|
+
[ChainId.celo]: "0xd24ECdD8C1e0E57a4E26B1a7bbeAa3e95466A569",
|
|
18444
|
+
[ChainId.gnosis]: "0xB74D4dd451E250bC325AFF0556D717e4E2351c66",
|
|
18445
|
+
[ChainId.ink]: "0x857f3EefE8cbda3Bc49367C996cd664A880d3042",
|
|
18446
|
+
[ChainId.linea]: "0x6B0D716aC0A45536172308e08fC2C40387262c9F",
|
|
18447
|
+
[ChainId.plasma]: "0x2fF74A46536f5c67ef5A42FD5B4e2Ed8A2cee249",
|
|
18448
|
+
[ChainId.scroll]: "0x2d012EdbAdc37eDc2BC62791B666f9193FDF5a55",
|
|
18449
|
+
[ChainId.soneium]: "0xE75Fc5eA6e74B824954349Ca351eb4e671ADA53a",
|
|
18450
|
+
[ChainId.sonic]: "0xd6c916eB7542D0Ad3f18AEd0FCBD50C582cfa95f"
|
|
18451
|
+
};
|
|
18452
|
+
|
|
18326
18453
|
//#endregion
|
|
18327
18454
|
//#region src/ecosystem/generated/etherscanExplorers.ts
|
|
18328
18455
|
const etherscanExplorers = {
|
|
@@ -18466,7 +18593,7 @@ const etherscanExplorers = {
|
|
|
18466
18593
|
api: "https://api.etherscan.io/v2/api",
|
|
18467
18594
|
explorer: "https://opbnb-testnet.bscscan.com/"
|
|
18468
18595
|
},
|
|
18469
|
-
|
|
18596
|
+
6343: {
|
|
18470
18597
|
api: "https://api.etherscan.io/v2/api",
|
|
18471
18598
|
explorer: "https://testnet-mega.etherscan.io/"
|
|
18472
18599
|
},
|
|
@@ -18506,10 +18633,6 @@ const etherscanExplorers = {
|
|
|
18506
18633
|
api: "https://api.etherscan.io/v2/api",
|
|
18507
18634
|
explorer: "https://arbiscan.io/"
|
|
18508
18635
|
},
|
|
18509
|
-
42170: {
|
|
18510
|
-
api: "https://api.etherscan.io/v2/api",
|
|
18511
|
-
explorer: "https://nova.arbiscan.io/"
|
|
18512
|
-
},
|
|
18513
18636
|
42220: {
|
|
18514
18637
|
api: "https://api.etherscan.io/v2/api",
|
|
18515
18638
|
explorer: "https://celoscan.io/"
|
|
@@ -18655,10 +18778,6 @@ const routescanExplorers = {
|
|
|
18655
18778
|
api: "https://api.routescan.io/v2/network/mainnet/evm/252/etherscan",
|
|
18656
18779
|
explorer: "252.routescan.io"
|
|
18657
18780
|
},
|
|
18658
|
-
254: {
|
|
18659
|
-
api: "https://api.routescan.io/v2/network/mainnet/evm/254/etherscan",
|
|
18660
|
-
explorer: "254.routescan.io"
|
|
18661
|
-
},
|
|
18662
18781
|
288: {
|
|
18663
18782
|
api: "https://api.routescan.io/v2/network/mainnet/evm/288/etherscan",
|
|
18664
18783
|
explorer: "288.routescan.io"
|
|
@@ -19161,89 +19280,6 @@ async function getXLayerSourceCode(params) {
|
|
|
19161
19280
|
};
|
|
19162
19281
|
}
|
|
19163
19282
|
|
|
19164
|
-
//#endregion
|
|
19165
|
-
//#region src/ecosystem/chainIds.ts
|
|
19166
|
-
const ChainId = {
|
|
19167
|
-
celo: celo.id,
|
|
19168
|
-
mainnet: mainnet.id,
|
|
19169
|
-
polygon: polygon.id,
|
|
19170
|
-
polygon_amoy: polygonAmoy.id,
|
|
19171
|
-
avalanche: avalanche.id,
|
|
19172
|
-
avalanche_fuji: avalancheFuji.id,
|
|
19173
|
-
arbitrum: arbitrum.id,
|
|
19174
|
-
arbitrum_sepolia: arbitrumSepolia.id,
|
|
19175
|
-
fantom: fantom.id,
|
|
19176
|
-
fantom_testnet: fantomTestnet.id,
|
|
19177
|
-
optimism: optimism.id,
|
|
19178
|
-
optimism_sepolia: optimismSepolia.id,
|
|
19179
|
-
harmony: harmonyOne.id,
|
|
19180
|
-
sepolia: sepolia.id,
|
|
19181
|
-
scroll: scroll.id,
|
|
19182
|
-
scroll_sepolia: scrollSepolia.id,
|
|
19183
|
-
sonic: sonic.id,
|
|
19184
|
-
mantle: mantle.id,
|
|
19185
|
-
metis: metis.id,
|
|
19186
|
-
base: base.id,
|
|
19187
|
-
base_sepolia: baseSepolia.id,
|
|
19188
|
-
bnb: bsc.id,
|
|
19189
|
-
gnosis: gnosis.id,
|
|
19190
|
-
zkEVM: polygonZkEvm.id,
|
|
19191
|
-
zksync: zksync.id,
|
|
19192
|
-
linea: linea.id,
|
|
19193
|
-
ink: ink.id,
|
|
19194
|
-
soneium: soneium.id,
|
|
19195
|
-
bob: bob.id,
|
|
19196
|
-
plasma: plasma.id,
|
|
19197
|
-
xLayer: xLayer.id,
|
|
19198
|
-
megaeth: megaeth.id
|
|
19199
|
-
};
|
|
19200
|
-
const ChainList = {
|
|
19201
|
-
[ChainId.mainnet]: mainnet,
|
|
19202
|
-
[ChainId.polygon]: polygon,
|
|
19203
|
-
[ChainId.polygon_amoy]: polygonAmoy,
|
|
19204
|
-
[ChainId.avalanche]: {
|
|
19205
|
-
...avalanche,
|
|
19206
|
-
blockExplorers: { default: {
|
|
19207
|
-
url: "https://snowscan.xyz",
|
|
19208
|
-
name: "Snowscan"
|
|
19209
|
-
} }
|
|
19210
|
-
},
|
|
19211
|
-
[ChainId.avalanche_fuji]: {
|
|
19212
|
-
...avalancheFuji,
|
|
19213
|
-
blockExplorers: { default: {
|
|
19214
|
-
url: "https://testnet.snowscan.xyz",
|
|
19215
|
-
name: "Snowscan Fuji"
|
|
19216
|
-
} }
|
|
19217
|
-
},
|
|
19218
|
-
[ChainId.arbitrum]: arbitrum,
|
|
19219
|
-
[ChainId.arbitrum_sepolia]: arbitrumSepolia,
|
|
19220
|
-
[ChainId.fantom]: fantom,
|
|
19221
|
-
[ChainId.fantom_testnet]: fantomTestnet,
|
|
19222
|
-
[ChainId.optimism]: optimism,
|
|
19223
|
-
[ChainId.optimism_sepolia]: optimismSepolia,
|
|
19224
|
-
[ChainId.harmony]: harmonyOne,
|
|
19225
|
-
[ChainId.sepolia]: sepolia,
|
|
19226
|
-
[ChainId.scroll]: scroll,
|
|
19227
|
-
[ChainId.scroll_sepolia]: scrollSepolia,
|
|
19228
|
-
[ChainId.sonic]: sonic,
|
|
19229
|
-
[ChainId.mantle]: mantle,
|
|
19230
|
-
[ChainId.metis]: metis,
|
|
19231
|
-
[ChainId.base]: base,
|
|
19232
|
-
[ChainId.base_sepolia]: baseSepolia,
|
|
19233
|
-
[ChainId.bnb]: bsc,
|
|
19234
|
-
[ChainId.gnosis]: gnosis,
|
|
19235
|
-
[ChainId.zkEVM]: polygonZkEvm,
|
|
19236
|
-
[ChainId.celo]: celo,
|
|
19237
|
-
[ChainId.zksync]: zksync,
|
|
19238
|
-
[ChainId.linea]: linea,
|
|
19239
|
-
[ChainId.ink]: ink,
|
|
19240
|
-
[ChainId.soneium]: soneium,
|
|
19241
|
-
[ChainId.bob]: bob,
|
|
19242
|
-
[ChainId.plasma]: plasma,
|
|
19243
|
-
[ChainId.xLayer]: xLayer,
|
|
19244
|
-
[ChainId.megaeth]: megaeth
|
|
19245
|
-
};
|
|
19246
|
-
|
|
19247
19283
|
//#endregion
|
|
19248
19284
|
//#region src/ecosystem/tenderly.ts
|
|
19249
19285
|
/**
|
|
@@ -19498,6 +19534,7 @@ const alchemyNetworkMap = {
|
|
|
19498
19534
|
1328: "sei-testnet",
|
|
19499
19535
|
1329: "sei-mainnet",
|
|
19500
19536
|
1514: "story-mainnet",
|
|
19537
|
+
1672: "pharos-mainnet",
|
|
19501
19538
|
1868: "soneium-mainnet",
|
|
19502
19539
|
1946: "soneium-minato",
|
|
19503
19540
|
2020: "ronin-mainnet",
|
|
@@ -19529,7 +19566,6 @@ const alchemyNetworkMap = {
|
|
|
19529
19566
|
9746: "plasma-testnet",
|
|
19530
19567
|
10143: "monad-testnet",
|
|
19531
19568
|
10200: "gnosis-chiado",
|
|
19532
|
-
10218: "tea-sepolia",
|
|
19533
19569
|
11011: "shape-sepolia",
|
|
19534
19570
|
11124: "abstract-testnet",
|
|
19535
19571
|
14601: "sonic-testnet",
|
|
@@ -19546,6 +19582,7 @@ const alchemyNetworkMap = {
|
|
|
19546
19582
|
42431: "tempo-moderato",
|
|
19547
19583
|
43113: "avax-fuji",
|
|
19548
19584
|
43114: "avax-mainnet",
|
|
19585
|
+
46630: "robinhood-testnet",
|
|
19549
19586
|
53302: "superseed-sepolia",
|
|
19550
19587
|
57054: "sonic-blaze",
|
|
19551
19588
|
57073: "ink-mainnet",
|
|
@@ -19567,6 +19604,7 @@ const alchemyNetworkMap = {
|
|
|
19567
19604
|
534352: "scroll-mainnet",
|
|
19568
19605
|
560048: "eth-hoodi",
|
|
19569
19606
|
685685: "gensyn-testnet",
|
|
19607
|
+
688689: "pharos-atlantic",
|
|
19570
19608
|
763373: "ink-sepolia",
|
|
19571
19609
|
808813: "bob-sepolia",
|
|
19572
19610
|
5042002: "arc-testnet",
|
|
@@ -19599,8 +19637,6 @@ const quicknodeNetworkMap = {
|
|
|
19599
19637
|
130: "unichain-mainnet",
|
|
19600
19638
|
137: "matic",
|
|
19601
19639
|
146: "sonic-mainnet",
|
|
19602
|
-
164: "omni-omega",
|
|
19603
|
-
166: "omni-mainnet",
|
|
19604
19640
|
196: "xlayer-mainnet",
|
|
19605
19641
|
250: "fantom",
|
|
19606
19642
|
252: "fraxtal-mainnet",
|
|
@@ -19620,12 +19656,8 @@ const quicknodeNetworkMap = {
|
|
|
19620
19656
|
1328: "sei-atlantic",
|
|
19621
19657
|
1329: "sei-pacific",
|
|
19622
19658
|
1480: "vana-mainnet",
|
|
19623
|
-
1513: "story-testnet",
|
|
19624
|
-
1516: "story-odyssey",
|
|
19625
19659
|
1993: "b3-sepolia",
|
|
19626
|
-
2442: "zkevm-cardona",
|
|
19627
19660
|
2741: "abstract-mainnet",
|
|
19628
|
-
2810: "morph-holesky",
|
|
19629
19661
|
2818: "morph-mainnet",
|
|
19630
19662
|
3338: "peaq-mainnet",
|
|
19631
19663
|
4801: "worldchain-sepolia",
|
|
@@ -19641,8 +19673,6 @@ const quicknodeNetworkMap = {
|
|
|
19641
19673
|
13371: "imx-mainnet",
|
|
19642
19674
|
13473: "imx-testnet",
|
|
19643
19675
|
14800: "vana-moksha",
|
|
19644
|
-
16600: "0g-newton",
|
|
19645
|
-
17e3: "ethereum-holesky",
|
|
19646
19676
|
34443: "mode-mainnet",
|
|
19647
19677
|
42161: "arbitrum-mainnet",
|
|
19648
19678
|
42170: "nova-mainnet",
|
|
@@ -19653,12 +19683,9 @@ const quicknodeNetworkMap = {
|
|
|
19653
19683
|
59144: "linea-mainnet",
|
|
19654
19684
|
80002: "matic-amoy",
|
|
19655
19685
|
80069: "bera-bepolia",
|
|
19656
|
-
80084: "bera-bartio",
|
|
19657
|
-
80085: "bera-artio",
|
|
19658
19686
|
80094: "bera-mainnet",
|
|
19659
19687
|
81457: "blast-mainnet",
|
|
19660
19688
|
84532: "base-sepolia",
|
|
19661
|
-
421613: "arbitrum-goerli",
|
|
19662
19689
|
421614: "arbitrum-sepolia",
|
|
19663
19690
|
534351: "scroll-testnet",
|
|
19664
19691
|
534352: "scroll-mainnet",
|
|
@@ -19706,14 +19733,13 @@ const tenderlyNetworkMap = {
|
|
|
19706
19733
|
1924: "swellchain-sepolia",
|
|
19707
19734
|
1946: "soneium-minato",
|
|
19708
19735
|
2020: "ronin",
|
|
19709
|
-
2021: "ronin-testnet",
|
|
19710
19736
|
2201: "stable-testnet",
|
|
19711
19737
|
2523: "fraxtal-hoodi",
|
|
19712
19738
|
4202: "lisk-sepolia",
|
|
19739
|
+
4326: "megaeth",
|
|
19713
19740
|
4801: "worldchain-sepolia",
|
|
19714
19741
|
5e3: "mantle",
|
|
19715
19742
|
5003: "mantle-sepolia",
|
|
19716
|
-
8008: "polynomial",
|
|
19717
19743
|
8453: "base",
|
|
19718
19744
|
9069: "af-nexus-mainnet",
|
|
19719
19745
|
9070: "af-nexus-testnet",
|
|
@@ -19745,7 +19771,6 @@ const tenderlyNetworkMap = {
|
|
|
19745
19771
|
59902: "metis-sepolia",
|
|
19746
19772
|
60808: "bob",
|
|
19747
19773
|
80002: "polygon-amoy",
|
|
19748
|
-
80008: "polynomial-sepolia",
|
|
19749
19774
|
80069: "bepolia",
|
|
19750
19775
|
80094: "berachain",
|
|
19751
19776
|
81457: "blast",
|
|
@@ -19762,8 +19787,7 @@ const tenderlyNetworkMap = {
|
|
|
19762
19787
|
808813: "bob-testnet",
|
|
19763
19788
|
11142220: "celo-sepolia",
|
|
19764
19789
|
11155111: "sepolia",
|
|
19765
|
-
11155420: "optimism-sepolia"
|
|
19766
|
-
531050104: "sophon-testnet"
|
|
19790
|
+
11155420: "optimism-sepolia"
|
|
19767
19791
|
};
|
|
19768
19792
|
const tenderlyExplorerMap = {
|
|
19769
19793
|
1: "mainnet",
|
|
@@ -19813,12 +19837,12 @@ const tenderlyExplorerMap = {
|
|
|
19813
19837
|
2523: "fraxtal-hoodi",
|
|
19814
19838
|
3338: "peaq",
|
|
19815
19839
|
4202: "lisk-sepolia",
|
|
19840
|
+
4326: "megaeth",
|
|
19816
19841
|
4801: "worldchain-sepolia",
|
|
19817
19842
|
5e3: "mantle",
|
|
19818
19843
|
5003: "mantle-sepolia",
|
|
19819
19844
|
7e3: "zetachain",
|
|
19820
19845
|
7001: "zetachain-testnet",
|
|
19821
|
-
8008: "polynomial-mainnet",
|
|
19822
19846
|
8453: "base",
|
|
19823
19847
|
9069: "af-nexus-mainnet",
|
|
19824
19848
|
9070: "af-nexus-testnet",
|
|
@@ -19852,7 +19876,6 @@ const tenderlyExplorerMap = {
|
|
|
19852
19876
|
59902: "metis-sepolia",
|
|
19853
19877
|
60808: "bob",
|
|
19854
19878
|
80002: "polygon-amoy",
|
|
19855
|
-
80008: "polynomial-sepolia",
|
|
19856
19879
|
80069: "bepolia",
|
|
19857
19880
|
80094: "berachain",
|
|
19858
19881
|
81457: "blast",
|
|
@@ -19861,6 +19884,7 @@ const tenderlyExplorerMap = {
|
|
|
19861
19884
|
98867: "plume-testnet",
|
|
19862
19885
|
167e3: "taiko-mainnet",
|
|
19863
19886
|
167013: "taiko-hoodi",
|
|
19887
|
+
202601: "ronin-testnet",
|
|
19864
19888
|
421614: "arbitrum-sepolia",
|
|
19865
19889
|
534351: "scroll-sepolia",
|
|
19866
19890
|
534352: "scroll-mainnet",
|
|
@@ -19873,8 +19897,7 @@ const tenderlyExplorerMap = {
|
|
|
19873
19897
|
11142220: "celo-sepolia",
|
|
19874
19898
|
11155111: "sepolia",
|
|
19875
19899
|
11155420: "optimistic-sepolia",
|
|
19876
|
-
13374202: "ethereal-testnet"
|
|
19877
|
-
531050104: "sophon-testnet"
|
|
19900
|
+
13374202: "ethereal-testnet"
|
|
19878
19901
|
};
|
|
19879
19902
|
|
|
19880
19903
|
//#endregion
|
|
@@ -19943,6 +19966,7 @@ function getQuicknodeRpc(chainId, options) {
|
|
|
19943
19966
|
if (!options.quicknodeEndpointName) throw new Error(`ChainId '${chainId}' is supported by Quicknode, but no 'quicknodeEndpointName' was provided.`);
|
|
19944
19967
|
if (!options.quicknodeToken) throw new Error(`ChainId '${chainId}' is supported by Quicknode, but no 'quicknodeToken' was provided.`);
|
|
19945
19968
|
if (chainId === ChainId.mainnet) return `https://${options.quicknodeEndpointName}.quiknode.pro/${options.quicknodeToken}`;
|
|
19969
|
+
if (chainId === ChainId.avalanche) return `https://${options.quicknodeEndpointName}.${quickNodeSlug}.quiknode.pro/${options.quicknodeToken}/ext/bc/C/rpc/`;
|
|
19946
19970
|
return `https://${options.quicknodeEndpointName}.${quickNodeSlug}.quiknode.pro/${options.quicknodeToken}`;
|
|
19947
19971
|
}
|
|
19948
19972
|
/**
|
|
@@ -20105,6 +20129,32 @@ async function getContractDeploymentBlock({ client, contractAddress, fromBlock,
|
|
|
20105
20129
|
}
|
|
20106
20130
|
throw new Error("Could not find contract deployment block");
|
|
20107
20131
|
}
|
|
20132
|
+
/**
|
|
20133
|
+
* Finds the closest block for a given timestamp using binary search.
|
|
20134
|
+
* Returns the last block whose timestamp is <= the target timestamp.
|
|
20135
|
+
* @param client a viem Client
|
|
20136
|
+
* @param timestamp the target unix timestamp
|
|
20137
|
+
* @returns the block closest to (but not after) the given timestamp
|
|
20138
|
+
*/
|
|
20139
|
+
async function getClosestBlock({ client, timestamp }) {
|
|
20140
|
+
const latestBlock = await getBlock(client, { blockTag: "latest" });
|
|
20141
|
+
if (timestamp >= latestBlock.timestamp) return latestBlock;
|
|
20142
|
+
let low = 0n;
|
|
20143
|
+
let high = latestBlock.number;
|
|
20144
|
+
const blockTime = client.chain?.blockTime;
|
|
20145
|
+
if (blockTime) {
|
|
20146
|
+
const estimatedBlocksBack = (latestBlock.timestamp - timestamp) / (BigInt(blockTime) / 1000n);
|
|
20147
|
+
const estimatedBlock = latestBlock.number > estimatedBlocksBack ? latestBlock.number - estimatedBlocksBack : 0n;
|
|
20148
|
+
if ((await getBlock(client, { blockNumber: estimatedBlock })).timestamp <= timestamp) low = estimatedBlock;
|
|
20149
|
+
else high = estimatedBlock;
|
|
20150
|
+
}
|
|
20151
|
+
while (low < high) {
|
|
20152
|
+
const mid = low + high + 1n >> 1n;
|
|
20153
|
+
if ((await getBlock(client, { blockNumber: mid })).timestamp <= timestamp) low = mid;
|
|
20154
|
+
else high = mid - 1n;
|
|
20155
|
+
}
|
|
20156
|
+
return getBlock(client, { blockNumber: low });
|
|
20157
|
+
}
|
|
20108
20158
|
|
|
20109
20159
|
//#endregion
|
|
20110
20160
|
//#region src/ecosystem/flashbots.ts
|
|
@@ -20408,10 +20458,6 @@ const blockscoutExplorers = {
|
|
|
20408
20458
|
api: "https://bob-sepolia.explorer.gobob.xyz/api",
|
|
20409
20459
|
explorer: "https://bob-sepolia.explorer.gobob.xyz/"
|
|
20410
20460
|
},
|
|
20411
|
-
113: {
|
|
20412
|
-
api: "https://coston2-explorer.flare.network/api",
|
|
20413
|
-
explorer: "https://coston2-explorer.flare.network/"
|
|
20414
|
-
},
|
|
20415
20461
|
114: {
|
|
20416
20462
|
api: "https://coston2-explorer.flare.network/api",
|
|
20417
20463
|
explorer: "https://coston2-explorer.flare.network/"
|
|
@@ -21045,8 +21091,8 @@ const blockscoutExplorers = {
|
|
|
21045
21091
|
explorer: "https://testnet.bitciexplorer.com"
|
|
21046
21092
|
},
|
|
21047
21093
|
1919: {
|
|
21048
|
-
api: "https://
|
|
21049
|
-
explorer: "https://
|
|
21094
|
+
api: "https://turkscan.com/api",
|
|
21095
|
+
explorer: "https://turkscan.com"
|
|
21050
21096
|
},
|
|
21051
21097
|
1923: {
|
|
21052
21098
|
api: "https://explorer.swellnetwork.io/api",
|
|
@@ -21440,10 +21486,6 @@ const blockscoutExplorers = {
|
|
|
21440
21486
|
api: "https://explore.steamexchange.io/api",
|
|
21441
21487
|
explorer: "https://explore.steamexchange.io/"
|
|
21442
21488
|
},
|
|
21443
|
-
6342: {
|
|
21444
|
-
api: "https://megaeth-testnet.blockscout.com/api",
|
|
21445
|
-
explorer: "https://megaeth-testnet.blockscout.com/"
|
|
21446
|
-
},
|
|
21447
21489
|
6343: {
|
|
21448
21490
|
api: "https://megaeth-testnet-v2.blockscout.com/api",
|
|
21449
21491
|
explorer: "https://megaeth-testnet-v2.blockscout.com/"
|
|
@@ -22552,10 +22594,6 @@ const blockscoutExplorers = {
|
|
|
22552
22594
|
api: "https://explorer.saakuru.network/api",
|
|
22553
22595
|
explorer: "https://explorer.saakuru.network/"
|
|
22554
22596
|
},
|
|
22555
|
-
7777777: {
|
|
22556
|
-
api: "https://explorer.zora.energy/api",
|
|
22557
|
-
explorer: "https://explorer.zora.energy/"
|
|
22558
|
-
},
|
|
22559
22597
|
7890785: {
|
|
22560
22598
|
api: "https://blockscout.xga.com/api",
|
|
22561
22599
|
explorer: "https://blockscout.xga.com/"
|
|
@@ -22806,6 +22844,12 @@ const blockscoutExplorers = {
|
|
|
22806
22844
|
//#region src/ecosystem/generated/chainlinkFeeds.ts
|
|
22807
22845
|
const chainlinkFeeds = {
|
|
22808
22846
|
"1": [
|
|
22847
|
+
{
|
|
22848
|
+
"contractAddress": "0x009b8b4D648cFCC813ecB70db0f31ce305DD4B32",
|
|
22849
|
+
"proxyAddress": "0x0C2e4Df738e99e8db80012f5bb2a303f3f48Ca74",
|
|
22850
|
+
"decimals": 6,
|
|
22851
|
+
"name": "JTRSY NAV"
|
|
22852
|
+
},
|
|
22809
22853
|
{
|
|
22810
22854
|
"contractAddress": "0x00f0eFB3d9dBe7fE91fee44aE09DAe5DFA65c382",
|
|
22811
22855
|
"proxyAddress": "0x75A0d3264a949C2C920d7F25Df174af1FaF73399",
|
|
@@ -22968,12 +23012,6 @@ const chainlinkFeeds = {
|
|
|
22968
23012
|
"decimals": 8,
|
|
22969
23013
|
"name": "C3M / EUR"
|
|
22970
23014
|
},
|
|
22971
|
-
{
|
|
22972
|
-
"contractAddress": "0x1E37adeFCfF644B69E717ce536D2dE407879D809",
|
|
22973
|
-
"proxyAddress": "0x3b41D5571468904D4e53b6a8d93A6BaC43f02dC9",
|
|
22974
|
-
"decimals": 18,
|
|
22975
|
-
"name": "PERP / ETH"
|
|
22976
|
-
},
|
|
22977
23015
|
{
|
|
22978
23016
|
"contractAddress": "0x1E726556244D772d1d50cacb19B87E7205fA509E",
|
|
22979
23017
|
"proxyAddress": "0xF017fcB346A1885194689bA23Eff2fE6fA5C483b",
|
|
@@ -23017,6 +23055,12 @@ const chainlinkFeeds = {
|
|
|
23017
23055
|
"decimals": 8,
|
|
23018
23056
|
"name": "Optimism Healthcheck"
|
|
23019
23057
|
},
|
|
23058
|
+
{
|
|
23059
|
+
"contractAddress": "0x224ac1d400BE6b1F50b040c3fF8c2A19300384F7",
|
|
23060
|
+
"proxyAddress": "0x5a489EACad4BEc30B5bC3BcE8a0b9301CCDC0f60",
|
|
23061
|
+
"decimals": 18,
|
|
23062
|
+
"name": "stGLD / tGLD Exchange Rate"
|
|
23063
|
+
},
|
|
23020
23064
|
{
|
|
23021
23065
|
"contractAddress": "0x24e3c657c27DfC7ea6f9f58e86387D846b3BaA59",
|
|
23022
23066
|
"proxyAddress": "0xdbd020CAeF83eFd542f4De03e3cF0C28A4428bd5",
|
|
@@ -23047,6 +23091,12 @@ const chainlinkFeeds = {
|
|
|
23047
23091
|
"decimals": 8,
|
|
23048
23092
|
"name": "STETH / USD"
|
|
23049
23093
|
},
|
|
23094
|
+
{
|
|
23095
|
+
"contractAddress": "0x2A539061d701471c3835256f8FF982e81E9B4374",
|
|
23096
|
+
"proxyAddress": "0x4720bcC6f940d709D7e2F510936e611Db07C240E",
|
|
23097
|
+
"decimals": 8,
|
|
23098
|
+
"name": "GOOGL-USD (24/5)"
|
|
23099
|
+
},
|
|
23050
23100
|
{
|
|
23051
23101
|
"contractAddress": "0x2a29c3696dD424d3e703F5F3f2D6Af86598e9303",
|
|
23052
23102
|
"proxyAddress": "0xdF2917806E30300537aEB49A7663062F4d1F2b5F",
|
|
@@ -23138,6 +23188,12 @@ const chainlinkFeeds = {
|
|
|
23138
23188
|
"decimals": 8,
|
|
23139
23189
|
"name": "PYUSD / USD"
|
|
23140
23190
|
},
|
|
23191
|
+
{
|
|
23192
|
+
"contractAddress": "0x3B4f49f4aa5491B5a60C0724467A67b4910aEAAc",
|
|
23193
|
+
"proxyAddress": "0x3F0543aA057BcAeA152Fe9462Cb3ffaB305a6F8D",
|
|
23194
|
+
"decimals": 18,
|
|
23195
|
+
"name": "KAG Reserves"
|
|
23196
|
+
},
|
|
23141
23197
|
{
|
|
23142
23198
|
"contractAddress": "0x3C405e1FE8a6BE5d9b714B8C88Ad913F236B1639",
|
|
23143
23199
|
"proxyAddress": "0xE8E65Fb9116875012F5990Ecaab290B3531DbeB9",
|
|
@@ -23205,6 +23261,18 @@ const chainlinkFeeds = {
|
|
|
23205
23261
|
"name": "SVR COMP / USD",
|
|
23206
23262
|
"secondaryProxyAddress": "0x69B50fF403E995d9c4441a303438D9049dAC8cCD"
|
|
23207
23263
|
},
|
|
23264
|
+
{
|
|
23265
|
+
"contractAddress": "0x45D48aa93275c2274E1006BfdCb6406eF96a509B",
|
|
23266
|
+
"proxyAddress": "0xD13cB763C43B5C058E7Ec40176962c5030F4EB49",
|
|
23267
|
+
"decimals": 8,
|
|
23268
|
+
"name": "WTGXX NAV"
|
|
23269
|
+
},
|
|
23270
|
+
{
|
|
23271
|
+
"contractAddress": "0x47f0840aCB50DF9C3B9584017eF1A9560E777b88",
|
|
23272
|
+
"proxyAddress": "0xB204328559E17F84eE7A285036AA0d47124F85D5",
|
|
23273
|
+
"decimals": 8,
|
|
23274
|
+
"name": "TSLA-USD (24/5)"
|
|
23275
|
+
},
|
|
23208
23276
|
{
|
|
23209
23277
|
"contractAddress": "0x48afBeDF849449b7B9eea101EdAbdc81417b04c8",
|
|
23210
23278
|
"proxyAddress": "0x194a9AaF2e0b67c35915cD01101585A33Fe25CAa",
|
|
@@ -23236,12 +23304,6 @@ const chainlinkFeeds = {
|
|
|
23236
23304
|
"decimals": 18,
|
|
23237
23305
|
"name": "GRT / ETH"
|
|
23238
23306
|
},
|
|
23239
|
-
{
|
|
23240
|
-
"contractAddress": "0x506F678C8E426BA87427674f814AD2166c17981D",
|
|
23241
|
-
"proxyAddress": "0x160AC928A16C93eD4895C2De6f81ECcE9a7eB7b4",
|
|
23242
|
-
"decimals": 18,
|
|
23243
|
-
"name": "LRC / ETH"
|
|
23244
|
-
},
|
|
23245
23307
|
{
|
|
23246
23308
|
"contractAddress": "0x50e1007404025e412F13eD1e1C1e6F57957F6A6F",
|
|
23247
23309
|
"proxyAddress": "0xe80baC615c38D01c101B0B1b943b05E20C8c2f76",
|
|
@@ -23411,6 +23473,12 @@ const chainlinkFeeds = {
|
|
|
23411
23473
|
"decimals": 8,
|
|
23412
23474
|
"name": "SUSHI / USD"
|
|
23413
23475
|
},
|
|
23476
|
+
{
|
|
23477
|
+
"contractAddress": "0x6594324b6bB0Bdf0C83b0B7ECd4a5c32889B442e",
|
|
23478
|
+
"proxyAddress": "0x25efbA0d9b115D233cfA849F16BA743E8FFba2a1",
|
|
23479
|
+
"decimals": 8,
|
|
23480
|
+
"name": "SPY-USD (24/5)"
|
|
23481
|
+
},
|
|
23414
23482
|
{
|
|
23415
23483
|
"contractAddress": "0x6795D4A47c9c8F4117b409D966259CdCf6A9Eb6E",
|
|
23416
23484
|
"proxyAddress": "0x9944D86CEB9160aF5C5feB251FD671923323f8C3",
|
|
@@ -23435,6 +23503,12 @@ const chainlinkFeeds = {
|
|
|
23435
23503
|
"decimals": 2,
|
|
23436
23504
|
"name": "BUIDL NAV"
|
|
23437
23505
|
},
|
|
23506
|
+
{
|
|
23507
|
+
"contractAddress": "0x6C659766386874a46dacd7a9aEf04818FD3b13F0",
|
|
23508
|
+
"proxyAddress": "0x3f929667bdf783b99274F10465a89d6aF772736E",
|
|
23509
|
+
"decimals": 18,
|
|
23510
|
+
"name": "ZEC / USD"
|
|
23511
|
+
},
|
|
23438
23512
|
{
|
|
23439
23513
|
"contractAddress": "0x6Cc5173Ffd8d674C64f2DC7237730Ff021829865",
|
|
23440
23514
|
"proxyAddress": "0x5C00128d4d1c2F4f652C267d7bcdD7aC99C16E16",
|
|
@@ -23453,6 +23527,12 @@ const chainlinkFeeds = {
|
|
|
23453
23527
|
"decimals": 18,
|
|
23454
23528
|
"name": "sUSDD / USDD Exchange Rate"
|
|
23455
23529
|
},
|
|
23530
|
+
{
|
|
23531
|
+
"contractAddress": "0x6F751d443c2b2E7d45d42b52AC87CDbBB4B0f7DE",
|
|
23532
|
+
"proxyAddress": "0xA1D955b4E582C784583df7071B8a3Fb6d4bcaC42",
|
|
23533
|
+
"decimals": 8,
|
|
23534
|
+
"name": "QQQ-USD (24/5)"
|
|
23535
|
+
},
|
|
23456
23536
|
{
|
|
23457
23537
|
"contractAddress": "0x6dFF3fE0bF312f54551788f843F06177fE89C4bd",
|
|
23458
23538
|
"proxyAddress": "0x03c68933f7a3F76875C0bc670a58e69294cDFD01",
|
|
@@ -23478,6 +23558,12 @@ const chainlinkFeeds = {
|
|
|
23478
23558
|
"decimals": 18,
|
|
23479
23559
|
"name": "KNC / ETH"
|
|
23480
23560
|
},
|
|
23561
|
+
{
|
|
23562
|
+
"contractAddress": "0x74acdD8Ca84fF6a9Eb0814e7F000b4F33195152d",
|
|
23563
|
+
"proxyAddress": "0x2c47b8CD75C818969b398911b70C633e280552d4",
|
|
23564
|
+
"decimals": 8,
|
|
23565
|
+
"name": "NVDA-USD (24/5)"
|
|
23566
|
+
},
|
|
23481
23567
|
{
|
|
23482
23568
|
"contractAddress": "0x757EB2AF32c76621FEAE483c6458C04ba19906Ba",
|
|
23483
23569
|
"proxyAddress": "0xe108E75d6bA28F14EA51F24F886c0B6BBeca575a",
|
|
@@ -23625,6 +23711,12 @@ const chainlinkFeeds = {
|
|
|
23625
23711
|
"decimals": 8,
|
|
23626
23712
|
"name": "APE / USD"
|
|
23627
23713
|
},
|
|
23714
|
+
{
|
|
23715
|
+
"contractAddress": "0x89fB24e1c41c74c712500B86399751b1DA463697",
|
|
23716
|
+
"proxyAddress": "0x0b9bD3eAac381A1a6731ff6598a50638E5CFFD25",
|
|
23717
|
+
"decimals": 8,
|
|
23718
|
+
"name": "CRDYX NAV"
|
|
23719
|
+
},
|
|
23628
23720
|
{
|
|
23629
23721
|
"contractAddress": "0x8F73090a7c58B8BDcC9A93cBB6816e5cC4f01E8c",
|
|
23630
23722
|
"proxyAddress": "0xB9E1E3A9feFf48998E45Fa90847ed4D467E8BcfD",
|
|
@@ -23759,18 +23851,6 @@ const chainlinkFeeds = {
|
|
|
23759
23851
|
"decimals": 1,
|
|
23760
23852
|
"name": "Real Final Sales to Private Domestic Purchasers — Percent Change (Annual Rate)"
|
|
23761
23853
|
},
|
|
23762
|
-
{
|
|
23763
|
-
"contractAddress": "0x9Bc91f0E55b0d6509F65fd8C4b34b89F23AEfA35",
|
|
23764
|
-
"proxyAddress": "0xF0985f7E2CaBFf22CecC5a71282a89582c382EFE",
|
|
23765
|
-
"decimals": 18,
|
|
23766
|
-
"name": "FTT / ETH"
|
|
23767
|
-
},
|
|
23768
|
-
{
|
|
23769
|
-
"contractAddress": "0x9E3AABA3B04264DD009437F48eBFD70713dd0667",
|
|
23770
|
-
"proxyAddress": "0xAcFCF155a0de611414C510D43446c27a4EE6a758",
|
|
23771
|
-
"decimals": 8,
|
|
23772
|
-
"name": "WAMPL / USD"
|
|
23773
|
-
},
|
|
23774
23854
|
{
|
|
23775
23855
|
"contractAddress": "0x9F6B06e826d3DF391285c695749F8f921F6972D9",
|
|
23776
23856
|
"proxyAddress": "0x89904B6fcF8dAD1e5DA47dFdF69fC38Ad6be0bd5",
|
|
@@ -23778,6 +23858,12 @@ const chainlinkFeeds = {
|
|
|
23778
23858
|
"name": "SVR TSLAon-USD (Calculated)",
|
|
23779
23859
|
"secondaryProxyAddress": "0xC557dcbc32A01a4FBf7b9E3107BAF283f059EDc7"
|
|
23780
23860
|
},
|
|
23861
|
+
{
|
|
23862
|
+
"contractAddress": "0x9b3a984d1abbe03845CBa7A895f1ff7f4209d59c",
|
|
23863
|
+
"proxyAddress": "0xaB5Dd7DD7669072a1Ef27c0ba241120A27A1aeC3",
|
|
23864
|
+
"decimals": 18,
|
|
23865
|
+
"name": "KAU Reserves"
|
|
23866
|
+
},
|
|
23781
23867
|
{
|
|
23782
23868
|
"contractAddress": "0x9c7CF045f964B45FFC6AA0Ffbffd7bb6d1b470A3",
|
|
23783
23869
|
"proxyAddress": "0x3C7dB4D25deAb7c89660512C5494Dc9A3FC40f78",
|
|
@@ -23798,12 +23884,6 @@ const chainlinkFeeds = {
|
|
|
23798
23884
|
"name": "AAVE SVR USDT / USD",
|
|
23799
23885
|
"secondaryProxyAddress": "0x62c2ab773B7324ad9e030D777989B3b5d5c54c0A"
|
|
23800
23886
|
},
|
|
23801
|
-
{
|
|
23802
|
-
"contractAddress": "0x9e6e40dC0A35D6eD96BB09D928261EB598523645",
|
|
23803
|
-
"proxyAddress": "0x58921Ac140522867bf50b9E009599Da0CA4A2379",
|
|
23804
|
-
"decimals": 18,
|
|
23805
|
-
"name": "BADGER / ETH"
|
|
23806
|
-
},
|
|
23807
23887
|
{
|
|
23808
23888
|
"contractAddress": "0xA0B5260BDfD1011C4bcdc7A099C75BFf6340B38C",
|
|
23809
23889
|
"proxyAddress": "0xBcE206caE7f0ec07b545EddE332A47C2F75bbeb3",
|
|
@@ -23972,12 +24052,6 @@ const chainlinkFeeds = {
|
|
|
23972
24052
|
"decimals": 0,
|
|
23973
24053
|
"name": "Arbitrum Healthcheck"
|
|
23974
24054
|
},
|
|
23975
|
-
{
|
|
23976
|
-
"contractAddress": "0xAfDA097A70d1AF8D93874Dd8cD55b7E082b5ee57",
|
|
23977
|
-
"proxyAddress": "0x46cE854814ea38A4857AeA23aE7759b3A7970e4a",
|
|
23978
|
-
"decimals": 18,
|
|
23979
|
-
"name": "xSolvBTC NAV"
|
|
23980
|
-
},
|
|
23981
24055
|
{
|
|
23982
24056
|
"contractAddress": "0xB30Aae40B630500D5c8140B7d1E5Bb1d61C86B64",
|
|
23983
24057
|
"proxyAddress": "0xD93571A6201978976e37c4A0F7bE17806f2Feab2",
|
|
@@ -24008,6 +24082,12 @@ const chainlinkFeeds = {
|
|
|
24008
24082
|
"decimals": 18,
|
|
24009
24083
|
"name": "savBTC / avBTC Exchange Rate"
|
|
24010
24084
|
},
|
|
24085
|
+
{
|
|
24086
|
+
"contractAddress": "0xBa0477C34019E53c7C1C94b127D8892D7DFAFf2A",
|
|
24087
|
+
"proxyAddress": "0x35DDfB90011E686CCf837a6819562705076207EB",
|
|
24088
|
+
"decimals": 8,
|
|
24089
|
+
"name": "ACRED NAV"
|
|
24090
|
+
},
|
|
24011
24091
|
{
|
|
24012
24092
|
"contractAddress": "0xBae95c3247AA52738C52d2Df94ac6932b6b1907F",
|
|
24013
24093
|
"proxyAddress": "0x91b99C9b75aF469a71eE1AB528e8da994A5D7030",
|
|
@@ -24057,7 +24137,13 @@ const chainlinkFeeds = {
|
|
|
24057
24137
|
"name": "STETH / ETH"
|
|
24058
24138
|
},
|
|
24059
24139
|
{
|
|
24060
|
-
"contractAddress": "
|
|
24140
|
+
"contractAddress": "0xCB44fa91012781Ff12D4c258508b470B97F82D41",
|
|
24141
|
+
"proxyAddress": "0xB00341502DfEA6Ced8A5786b4059d29dA5E4D1FD",
|
|
24142
|
+
"decimals": 18,
|
|
24143
|
+
"name": "AUSD / USD"
|
|
24144
|
+
},
|
|
24145
|
+
{
|
|
24146
|
+
"contractAddress": "0xCe14fF0ACf4a1e7Eab6802C64D317e3fD989f3C6",
|
|
24061
24147
|
"proxyAddress": "0x60AEd7d20AC6328f7BA771aD58931c996aff30E8",
|
|
24062
24148
|
"decimals": 8,
|
|
24063
24149
|
"name": "ACRED NAV - Aave LlamaGuard"
|
|
@@ -24068,6 +24154,12 @@ const chainlinkFeeds = {
|
|
|
24068
24154
|
"decimals": 8,
|
|
24069
24155
|
"name": "CAD / USD"
|
|
24070
24156
|
},
|
|
24157
|
+
{
|
|
24158
|
+
"contractAddress": "0xD0e3f81D467A1383F582D36a26E03E48D54cE391",
|
|
24159
|
+
"proxyAddress": "0xd92095BAf79a6ca6533019e952aDe0d3C5834f4b",
|
|
24160
|
+
"decimals": 8,
|
|
24161
|
+
"name": "VBILL NAV"
|
|
24162
|
+
},
|
|
24071
24163
|
{
|
|
24072
24164
|
"contractAddress": "0xD0f0efAfB63ce1e46ae1aF84BCFE2A2A175E6797",
|
|
24073
24165
|
"proxyAddress": "0xda9258AFc797Cd64d1b6FC651051224cdAB1B25E",
|
|
@@ -24152,12 +24244,6 @@ const chainlinkFeeds = {
|
|
|
24152
24244
|
"decimals": 0,
|
|
24153
24245
|
"name": "Celo Healthcheck"
|
|
24154
24246
|
},
|
|
24155
|
-
{
|
|
24156
|
-
"contractAddress": "0xF4cF94EB58b2a6eFd05A39dbdc5B02Cf33A509D8",
|
|
24157
|
-
"proxyAddress": "0xd95044Eb392CdE502b1F903Fc978317462049E52",
|
|
24158
|
-
"decimals": 8,
|
|
24159
|
-
"name": "ATH / USD"
|
|
24160
|
-
},
|
|
24161
24247
|
{
|
|
24162
24248
|
"contractAddress": "0xF69C2CdFa50C970235d059DfeEE767b27E02F260",
|
|
24163
24249
|
"proxyAddress": "0x64c4c1BF5ec145CB6095A289249592B5bb007098",
|
|
@@ -24188,6 +24274,12 @@ const chainlinkFeeds = {
|
|
|
24188
24274
|
"decimals": 8,
|
|
24189
24275
|
"name": "IBTA / USD"
|
|
24190
24276
|
},
|
|
24277
|
+
{
|
|
24278
|
+
"contractAddress": "0xa4dD65e17944d735CE35DfE12b92EAB8f679A510",
|
|
24279
|
+
"proxyAddress": "0x3BbccB2301759D2e4A5692bA72DAb4b75dC43B1a",
|
|
24280
|
+
"decimals": 6,
|
|
24281
|
+
"name": "JAAA NAV"
|
|
24282
|
+
},
|
|
24191
24283
|
{
|
|
24192
24284
|
"contractAddress": "0xa685F0Bb86044e9c6A182A3689bBF8A98eB5764C",
|
|
24193
24285
|
"proxyAddress": "0x0c89c488e763AC2d69cB058CCAC7A8B283EE3DbA",
|
|
@@ -24206,6 +24298,12 @@ const chainlinkFeeds = {
|
|
|
24206
24298
|
"decimals": 8,
|
|
24207
24299
|
"name": "SOL / USD"
|
|
24208
24300
|
},
|
|
24301
|
+
{
|
|
24302
|
+
"contractAddress": "0xaF452c2EA72b6E08AB64a67133a13C4ED35343eb",
|
|
24303
|
+
"proxyAddress": "0xAFa801e508613be7CA88D2d0fDB3F84f4c1B0384",
|
|
24304
|
+
"decimals": 18,
|
|
24305
|
+
"name": "C1USD Reserves"
|
|
24306
|
+
},
|
|
24209
24307
|
{
|
|
24210
24308
|
"contractAddress": "0xad88fc1A810379Ef4EFbF2D97EdE57e306178e5a",
|
|
24211
24309
|
"proxyAddress": "0xd82562bb17557231Cd871e1B2525F3AB8d63D409",
|
|
@@ -24267,12 +24365,6 @@ const chainlinkFeeds = {
|
|
|
24267
24365
|
"decimals": 8,
|
|
24268
24366
|
"name": "IMX / USD"
|
|
24269
24367
|
},
|
|
24270
|
-
{
|
|
24271
|
-
"contractAddress": "0xc4f25Fed1c2C5973947d5C90f7C9a32353ceEb22",
|
|
24272
|
-
"proxyAddress": "0x14d04Fff8D21bd62987a5cE9ce543d2F1edF5D3E",
|
|
24273
|
-
"decimals": 18,
|
|
24274
|
-
"name": "FRAX / ETH"
|
|
24275
|
-
},
|
|
24276
24368
|
{
|
|
24277
24369
|
"contractAddress": "0xc778E9686F0fde6Fe4D7d8fE4B481463Fce898fD",
|
|
24278
24370
|
"proxyAddress": "0xDC3EA94CD0AC27d9A86C180091e7f78C683d3699",
|
|
@@ -24315,12 +24407,6 @@ const chainlinkFeeds = {
|
|
|
24315
24407
|
"decimals": 18,
|
|
24316
24408
|
"name": "SHIB / ETH"
|
|
24317
24409
|
},
|
|
24318
|
-
{
|
|
24319
|
-
"contractAddress": "0xcD2d64424aBE57AB8c70d9f9253d0C6DffeBB2E7",
|
|
24320
|
-
"proxyAddress": "0xE3fd61Cd8935EAE81e1c31AF36D7134e411490Cd",
|
|
24321
|
-
"decimals": 8,
|
|
24322
|
-
"name": "OUSDT / USD"
|
|
24323
|
-
},
|
|
24324
24410
|
{
|
|
24325
24411
|
"contractAddress": "0xcd07B31D85756098334eDdC92DE755dEae8FE62f",
|
|
24326
24412
|
"proxyAddress": "0xbd7F896e60B650C01caf2d7279a1148189A68884",
|
|
@@ -24433,6 +24519,12 @@ const chainlinkFeeds = {
|
|
|
24433
24519
|
"decimals": 8,
|
|
24434
24520
|
"name": "WLFI / USD"
|
|
24435
24521
|
},
|
|
24522
|
+
{
|
|
24523
|
+
"contractAddress": "0xecA1d16A120fC96Fe33CfEB64Adca70B678dFb8b",
|
|
24524
|
+
"proxyAddress": "0x42fC9d7c315Cf64Edc39ec984Bf89Bc34BbE9FD5",
|
|
24525
|
+
"decimals": 18,
|
|
24526
|
+
"name": "ezETH Proof of Reserves"
|
|
24527
|
+
},
|
|
24436
24528
|
{
|
|
24437
24529
|
"contractAddress": "0xf17CB308606999DF25F5d4B9f74bD9fe47A5b3b3",
|
|
24438
24530
|
"proxyAddress": "0xAbE7a3643615Ed32d3431e11E0Ee5A486Cb27d48",
|
|
@@ -24507,12 +24599,6 @@ const chainlinkFeeds = {
|
|
|
24507
24599
|
"decimals": 8,
|
|
24508
24600
|
"name": "ONE / USD"
|
|
24509
24601
|
},
|
|
24510
|
-
{
|
|
24511
|
-
"contractAddress": "0x0542BbBfbc26A86EA92d2b7f6Da07DAf0CA091eD",
|
|
24512
|
-
"proxyAddress": "0x2fF1EB7D0ceC35959F0248E9354c3248c6683D9b",
|
|
24513
|
-
"decimals": 8,
|
|
24514
|
-
"name": "FLOW / USD"
|
|
24515
|
-
},
|
|
24516
24602
|
{
|
|
24517
24603
|
"contractAddress": "0x057B4ffE41aFb2104C3355a8396bab7c64E4017F",
|
|
24518
24604
|
"proxyAddress": "0x5a61374950D4BFa5a3D4f2CA36FC1d23A92b6f21",
|
|
@@ -24633,12 +24719,6 @@ const chainlinkFeeds = {
|
|
|
24633
24719
|
"decimals": 8,
|
|
24634
24720
|
"name": "MIMATIC / USD"
|
|
24635
24721
|
},
|
|
24636
|
-
{
|
|
24637
|
-
"contractAddress": "0x1C1df24f0d06415fc3F58b1c1fDadd5fC85d2950",
|
|
24638
|
-
"proxyAddress": "0x0ded608AFc23724f614B76955bbd9dFe7dDdc828",
|
|
24639
|
-
"decimals": 8,
|
|
24640
|
-
"name": "MATIC / USD"
|
|
24641
|
-
},
|
|
24642
24722
|
{
|
|
24643
24723
|
"contractAddress": "0x1C4f2b051fdBE353d17c58Eca8FFb2fe15b5Da71",
|
|
24644
24724
|
"proxyAddress": "0x14d2d3a82AeD4019FddDfe07E8bdc485fb0d2249",
|
|
@@ -24723,6 +24803,12 @@ const chainlinkFeeds = {
|
|
|
24723
24803
|
"decimals": 8,
|
|
24724
24804
|
"name": "APT / USD"
|
|
24725
24805
|
},
|
|
24806
|
+
{
|
|
24807
|
+
"contractAddress": "0x36D86c4D65B534375380a31749c3E8c0E8756bD8",
|
|
24808
|
+
"proxyAddress": "0xAE33e077a02071E62d342E449Afd9895b016d541",
|
|
24809
|
+
"decimals": 8,
|
|
24810
|
+
"name": "SAND / USD"
|
|
24811
|
+
},
|
|
24726
24812
|
{
|
|
24727
24813
|
"contractAddress": "0x384547665C7BF2bb7927E67A8a321E9a0c91Fe59",
|
|
24728
24814
|
"proxyAddress": "0x89178957E9bD07934d7792fFc0CF39f11c8C2B1F",
|
|
@@ -24747,12 +24833,6 @@ const chainlinkFeeds = {
|
|
|
24747
24833
|
"decimals": 8,
|
|
24748
24834
|
"name": "GRT / USD"
|
|
24749
24835
|
},
|
|
24750
|
-
{
|
|
24751
|
-
"contractAddress": "0x44f690526B76D91072fb0427B0A24b882E612455",
|
|
24752
|
-
"proxyAddress": "0x30D9d31C1ac29Bc2c2c312c1bCa9F8b3D60e2376",
|
|
24753
|
-
"decimals": 8,
|
|
24754
|
-
"name": "BAL / USD"
|
|
24755
|
-
},
|
|
24756
24836
|
{
|
|
24757
24837
|
"contractAddress": "0x4713B96931c490F1B66D25cc2ac96Eb0AAFa2ac3",
|
|
24758
24838
|
"proxyAddress": "0x0f2Ed59657e391746C1a097BDa98F2aBb94b1120",
|
|
@@ -24855,12 +24935,6 @@ const chainlinkFeeds = {
|
|
|
24855
24935
|
"decimals": 8,
|
|
24856
24936
|
"name": "LINK / USD"
|
|
24857
24937
|
},
|
|
24858
|
-
{
|
|
24859
|
-
"contractAddress": "0x5d1345669278128B77AF9662C5D6B5e0b2FFD54A",
|
|
24860
|
-
"proxyAddress": "0xAE33e077a02071E62d342E449Afd9895b016d541",
|
|
24861
|
-
"decimals": 8,
|
|
24862
|
-
"name": "SAND / USD"
|
|
24863
|
-
},
|
|
24864
24938
|
{
|
|
24865
24939
|
"contractAddress": "0x5d782463840e3a2Ed55e425916d498319f289DEd",
|
|
24866
24940
|
"proxyAddress": "0xD7bC56BBF8D555936cb5121f38d1d362c586776A",
|
|
@@ -25077,12 +25151,6 @@ const chainlinkFeeds = {
|
|
|
25077
25151
|
"decimals": 8,
|
|
25078
25152
|
"name": "SOL / USD"
|
|
25079
25153
|
},
|
|
25080
|
-
{
|
|
25081
|
-
"contractAddress": "0x95836878f632c8797434a359ab3863892BF7eEcc",
|
|
25082
|
-
"proxyAddress": "0x60025324DAB37DB3A623ea59Cc567937821EeA12",
|
|
25083
|
-
"decimals": 8,
|
|
25084
|
-
"name": "OUSDT / USD"
|
|
25085
|
-
},
|
|
25086
25154
|
{
|
|
25087
25155
|
"contractAddress": "0x962e192e23fcc5Ec59141b58B112e5Fe0e0B70C0",
|
|
25088
25156
|
"proxyAddress": "0x4e8e8F5b3d0f49e00F3DFb9CF827d1A0FBe33B21",
|
|
@@ -25293,12 +25361,6 @@ const chainlinkFeeds = {
|
|
|
25293
25361
|
"decimals": 8,
|
|
25294
25362
|
"name": "SEI / USD"
|
|
25295
25363
|
},
|
|
25296
|
-
{
|
|
25297
|
-
"contractAddress": "0xa2eb6Ece70Cf255624ed2B2158A7dbC4dc4b02Ad",
|
|
25298
|
-
"proxyAddress": "0x4244c9aE5B97269B7301B622E22932FA49fBb763",
|
|
25299
|
-
"decimals": 8,
|
|
25300
|
-
"name": "mooBIFI / USD"
|
|
25301
|
-
},
|
|
25302
25364
|
{
|
|
25303
25365
|
"contractAddress": "0xa44681BdaE78DB54cAc3d7f862d6A5BaE8c79CbC",
|
|
25304
25366
|
"proxyAddress": "0xFC3b7bd4368b2919f67E437f8c6Ca42C7FD55dd5",
|
|
@@ -25335,12 +25397,6 @@ const chainlinkFeeds = {
|
|
|
25335
25397
|
"decimals": 8,
|
|
25336
25398
|
"name": "ZEC / USD"
|
|
25337
25399
|
},
|
|
25338
|
-
{
|
|
25339
|
-
"contractAddress": "0xb413D63Ac2e38a5A1C18834F20b958745dBeb998",
|
|
25340
|
-
"proxyAddress": "0x7F102e5b4C32e0861293E97DE85e6E0dB3530605",
|
|
25341
|
-
"decimals": 8,
|
|
25342
|
-
"name": "WELL / USD"
|
|
25343
|
-
},
|
|
25344
25400
|
{
|
|
25345
25401
|
"contractAddress": "0xb785e9aa87cDB29cC11a3f2b8bd17E6279275A35",
|
|
25346
25402
|
"proxyAddress": "0x517C2557c29F7c53Aa5F97a1DAE465E0d5C174AA",
|
|
@@ -25524,12 +25580,6 @@ const chainlinkFeeds = {
|
|
|
25524
25580
|
"decimals": 18,
|
|
25525
25581
|
"name": "savBTC / avBTC Exchange Rate"
|
|
25526
25582
|
},
|
|
25527
|
-
{
|
|
25528
|
-
"contractAddress": "0x1640C1a6984f744E069b65d5657c075935474d63",
|
|
25529
|
-
"proxyAddress": "0xf7E7c0ffCB11dAC6eCA1434C67faB9aE000e10a7",
|
|
25530
|
-
"decimals": 8,
|
|
25531
|
-
"name": "WING / USD"
|
|
25532
|
-
},
|
|
25533
25583
|
{
|
|
25534
25584
|
"contractAddress": "0x17d041D20a0b8693aA95c99FCdc5A2bd0126FDB3",
|
|
25535
25585
|
"proxyAddress": "0x1a269eA1b209DA2c12bDCDab22635C9e6C5028B2",
|
|
@@ -25736,12 +25786,6 @@ const chainlinkFeeds = {
|
|
|
25736
25786
|
"decimals": 18,
|
|
25737
25787
|
"name": "sUSDX / USDX Exchange Rate"
|
|
25738
25788
|
},
|
|
25739
|
-
{
|
|
25740
|
-
"contractAddress": "0x43CB601A5869Fc67f5D3389fE91C6c6fBC6F880b",
|
|
25741
|
-
"proxyAddress": "0x9e7377E194E41d63795907c92c3EB351a2eb0233",
|
|
25742
|
-
"decimals": 8,
|
|
25743
|
-
"name": "WIN / USD"
|
|
25744
|
-
},
|
|
25745
25789
|
{
|
|
25746
25790
|
"contractAddress": "0x44b24057e1cF7a58c86d06dFb12C83806DB7cA95",
|
|
25747
25791
|
"proxyAddress": "0xd97aB9e5bD461eBcD55009791C410294f7B42Cdb",
|
|
@@ -25863,12 +25907,6 @@ const chainlinkFeeds = {
|
|
|
25863
25907
|
"decimals": 8,
|
|
25864
25908
|
"name": "ATOM / USD"
|
|
25865
25909
|
},
|
|
25866
|
-
{
|
|
25867
|
-
"contractAddress": "0x5A3b0851519Bfd72b681609137efF5b2E47C381b",
|
|
25868
|
-
"proxyAddress": "0x47e01580C537Cd47dA339eA3a4aFb5998CCf037C",
|
|
25869
|
-
"decimals": 8,
|
|
25870
|
-
"name": "SPELL / USD"
|
|
25871
|
-
},
|
|
25872
25910
|
{
|
|
25873
25911
|
"contractAddress": "0x5A69d0948b0607401cC821704b7E99916bc9452E",
|
|
25874
25912
|
"proxyAddress": "0xbD4Bcf7DCFF34fd67525FceB3992cec53C23892A",
|
|
@@ -25951,6 +25989,12 @@ const chainlinkFeeds = {
|
|
|
25951
25989
|
"name": "SVR TWT / BNB",
|
|
25952
25990
|
"secondaryProxyAddress": "0x1A083354421Da4e26D78D55DAfaeBf4CFc541dAf"
|
|
25953
25991
|
},
|
|
25992
|
+
{
|
|
25993
|
+
"contractAddress": "0x66815140e049C986Ca00fae75591958c4c322a5e",
|
|
25994
|
+
"proxyAddress": "0xfa54C1c5F62ea3a5653a0b1b7148E26008eA1501",
|
|
25995
|
+
"decimals": 18,
|
|
25996
|
+
"name": "XAUM Reference Rate"
|
|
25997
|
+
},
|
|
25954
25998
|
{
|
|
25955
25999
|
"contractAddress": "0x67AF9BF189380E91bF59a4EA0c7cCd9B710d6786",
|
|
25956
26000
|
"proxyAddress": "0x337B4889fed5557595c37a45c1BB9b057cC670AE",
|
|
@@ -26204,12 +26248,6 @@ const chainlinkFeeds = {
|
|
|
26204
26248
|
"decimals": 8,
|
|
26205
26249
|
"name": "LISUSD / USD"
|
|
26206
26250
|
},
|
|
26207
|
-
{
|
|
26208
|
-
"contractAddress": "0xA90204b8Cffa45EDbca42CB577CDF6fafAbF0d33",
|
|
26209
|
-
"proxyAddress": "0x9f1fD2cEf7b226D555A747DA0411F93c5fe74e13",
|
|
26210
|
-
"decimals": 8,
|
|
26211
|
-
"name": "VET / USD"
|
|
26212
|
-
},
|
|
26213
26251
|
{
|
|
26214
26252
|
"contractAddress": "0xAA6778bD1313ff4BF4F07b671B3B89A12aDD0277",
|
|
26215
26253
|
"proxyAddress": "0x964261740356cB4aaD0C3D2003Ce808A4176a46d",
|
|
@@ -26272,12 +26310,6 @@ const chainlinkFeeds = {
|
|
|
26272
26310
|
"decimals": 8,
|
|
26273
26311
|
"name": "TUSD / USD"
|
|
26274
26312
|
},
|
|
26275
|
-
{
|
|
26276
|
-
"contractAddress": "0xBD25C33FFA560129E6346454faF0e8deBD0c0288",
|
|
26277
|
-
"proxyAddress": "0x0E9D55932893Fb1308882C7857285B2B0bcc4f4a",
|
|
26278
|
-
"decimals": 8,
|
|
26279
|
-
"name": "FXS / USD"
|
|
26280
|
-
},
|
|
26281
26313
|
{
|
|
26282
26314
|
"contractAddress": "0xC5E353BEd3a74cE79210aC6819355e8531616876",
|
|
26283
26315
|
"proxyAddress": "0x4c75d01cfa4D998770b399246400a6dc40FB9645",
|
|
@@ -26326,12 +26358,6 @@ const chainlinkFeeds = {
|
|
|
26326
26358
|
"decimals": 8,
|
|
26327
26359
|
"name": "XVS / USD"
|
|
26328
26360
|
},
|
|
26329
|
-
{
|
|
26330
|
-
"contractAddress": "0xD377b4D1ef943d0414Cc072ddAC1299940222A24",
|
|
26331
|
-
"proxyAddress": "0xcF95796f3016801A1dA5C518Fc7A59C51dcEf793",
|
|
26332
|
-
"decimals": 8,
|
|
26333
|
-
"name": "ONG / USD"
|
|
26334
|
-
},
|
|
26335
26361
|
{
|
|
26336
26362
|
"contractAddress": "0xDD746F1C05207D1478dC217F4e832786ABEd5C80",
|
|
26337
26363
|
"proxyAddress": "0x84210d9013A30C6ab169e28840A6CC54B60fa042",
|
|
@@ -26401,6 +26427,12 @@ const chainlinkFeeds = {
|
|
|
26401
26427
|
"decimals": 8,
|
|
26402
26428
|
"name": "RDNT / USD"
|
|
26403
26429
|
},
|
|
26430
|
+
{
|
|
26431
|
+
"contractAddress": "0xF0030fA22Aeee34Aacc9a7F6B9190951b96D7FF2",
|
|
26432
|
+
"proxyAddress": "0x86b3897a1c755ac8f0e12263242141cdecF71CC2",
|
|
26433
|
+
"decimals": 18,
|
|
26434
|
+
"name": "RLP / USD Exchange Rate"
|
|
26435
|
+
},
|
|
26404
26436
|
{
|
|
26405
26437
|
"contractAddress": "0xF2cb4eaa89Efc51aa79bA31F815361EB47Be34c5",
|
|
26406
26438
|
"proxyAddress": "0xeDA73F8acb669274B15A977Cb0cdA57a84F18c2a",
|
|
@@ -26431,12 +26463,6 @@ const chainlinkFeeds = {
|
|
|
26431
26463
|
"decimals": 18,
|
|
26432
26464
|
"name": "BCH / BNB"
|
|
26433
26465
|
},
|
|
26434
|
-
{
|
|
26435
|
-
"contractAddress": "0xFaA69Fc5efd347b9D6FD4709F7618d4E1449cA74",
|
|
26436
|
-
"proxyAddress": "0x7CA57b0cA6367191c94C8914d7Df09A57655905f",
|
|
26437
|
-
"decimals": 8,
|
|
26438
|
-
"name": "MATIC / USD"
|
|
26439
|
-
},
|
|
26440
26466
|
{
|
|
26441
26467
|
"contractAddress": "0xFbBc7E59dd02ADa97FfB0f85C36cE14B1A3Fdfc2",
|
|
26442
26468
|
"proxyAddress": "0x08E70777b982a58D23D05E3D7714f44837c06A21",
|
|
@@ -26479,12 +26505,6 @@ const chainlinkFeeds = {
|
|
|
26479
26505
|
"decimals": 8,
|
|
26480
26506
|
"name": "AAPL / USD"
|
|
26481
26507
|
},
|
|
26482
|
-
{
|
|
26483
|
-
"contractAddress": "0xb208D9Ee1703674b7Ced85b615Db69d65430aF67",
|
|
26484
|
-
"proxyAddress": "0x13A9c98b07F098c5319f4FF786eB16E22DC738e1",
|
|
26485
|
-
"decimals": 8,
|
|
26486
|
-
"name": "FRAX / USD"
|
|
26487
|
-
},
|
|
26488
26508
|
{
|
|
26489
26509
|
"contractAddress": "0xb3Ea5aFbd958dB1d36b007e8B5DcD7cD33C5Db02",
|
|
26490
26510
|
"proxyAddress": "0x0Db8945f9aEf5651fa5bd52314C5aAe78DfDe540",
|
|
@@ -26817,12 +26837,6 @@ const chainlinkFeeds = {
|
|
|
26817
26837
|
"decimals": 8,
|
|
26818
26838
|
"name": "BNB / USD"
|
|
26819
26839
|
},
|
|
26820
|
-
{
|
|
26821
|
-
"contractAddress": "0x9C1Dc429a8d8F10C8ebA522b608bC27F58d6ABE2",
|
|
26822
|
-
"proxyAddress": "0x27d4D36968a2BD1Cc3406D99cB1DF50561dBf2a4",
|
|
26823
|
-
"decimals": 8,
|
|
26824
|
-
"name": "REN / USD"
|
|
26825
|
-
},
|
|
26826
26840
|
{
|
|
26827
26841
|
"contractAddress": "0xB660dC68D4cf26F5ac1c1fDcD9e57d648FCf13d9",
|
|
26828
26842
|
"proxyAddress": "0x2997eBa3d9c2447c36107bB0F082b8c33566b49c",
|
|
@@ -27647,12 +27661,6 @@ const chainlinkFeeds = {
|
|
|
27647
27661
|
"decimals": 8,
|
|
27648
27662
|
"name": "USDe / USD"
|
|
27649
27663
|
},
|
|
27650
|
-
{
|
|
27651
|
-
"contractAddress": "0xbC71031a5588b6bDfEA3C2974bD6fa0F5b81d49b",
|
|
27652
|
-
"proxyAddress": "0xF626964Ba5e81405f47e8004F0b276Bb974742B5",
|
|
27653
|
-
"decimals": 8,
|
|
27654
|
-
"name": "BADGER / USD"
|
|
27655
|
-
},
|
|
27656
27664
|
{
|
|
27657
27665
|
"contractAddress": "0xbc128024295Ed113926C4Dd49fb71964cfc9D516",
|
|
27658
27666
|
"proxyAddress": "0x692AE5510cA9070095A496dbcFBCDA99D4024Cd9",
|
|
@@ -27913,12 +27921,6 @@ const chainlinkFeeds = {
|
|
|
27913
27921
|
"decimals": 1,
|
|
27914
27922
|
"name": "PCE Price Index — Percent Change (Annual Rate)"
|
|
27915
27923
|
},
|
|
27916
|
-
{
|
|
27917
|
-
"contractAddress": "0xB70b802953462312A47c857b940991108F8d43De",
|
|
27918
|
-
"proxyAddress": "0x790181e93e9F4Eedb5b864860C12e4d2CffFe73B",
|
|
27919
|
-
"decimals": 8,
|
|
27920
|
-
"name": "OUSDT / USD"
|
|
27921
|
-
},
|
|
27922
27924
|
{
|
|
27923
27925
|
"contractAddress": "0xBb223278eCE74329276099E71d0F0be70Ba74faC",
|
|
27924
27926
|
"proxyAddress": "0xCdF021EbD115b1B225801F4056c40F4Ff14A574d",
|
|
@@ -28003,12 +28005,6 @@ const chainlinkFeeds = {
|
|
|
28003
28005
|
"decimals": 18,
|
|
28004
28006
|
"name": "PumpBTC / BTC Exchange Rate"
|
|
28005
28007
|
},
|
|
28006
|
-
{
|
|
28007
|
-
"contractAddress": "0xb35dC10BF66F82D3efD8f08BE49c3BEC31c6efe4",
|
|
28008
|
-
"proxyAddress": "0x30caC44b395eB969C9CA0d44dF39e6E0aE8f8D94",
|
|
28009
|
-
"decimals": 18,
|
|
28010
|
-
"name": "OS / S"
|
|
28011
|
-
},
|
|
28012
28008
|
{
|
|
28013
28009
|
"contractAddress": "0xc40650248C96027e8A7a86Cf96aA492004873E5d",
|
|
28014
28010
|
"proxyAddress": "0x8f0240dc9C7644D121D370d8ee61FF9F2356521E",
|
|
@@ -28027,12 +28023,6 @@ const chainlinkFeeds = {
|
|
|
28027
28023
|
"decimals": 18,
|
|
28028
28024
|
"name": "uniBTC / BTC Exchange Rate"
|
|
28029
28025
|
},
|
|
28030
|
-
{
|
|
28031
|
-
"contractAddress": "0xd1B3e5248aF8781c1338D1Ea278618fB58955017",
|
|
28032
|
-
"proxyAddress": "0x3cf9E4860bafe8e29eC8e1bC073436C5519684f4",
|
|
28033
|
-
"decimals": 8,
|
|
28034
|
-
"name": "scBTC / BTC"
|
|
28035
|
-
},
|
|
28036
28026
|
{
|
|
28037
28027
|
"contractAddress": "0xd7221b10FBBC1e1ba95Fd0B4D031C15f7F365296",
|
|
28038
28028
|
"proxyAddress": "0xfdee80dec97AF9AddcDccD208eC09d7Ea5eEbB9a",
|
|
@@ -28345,12 +28335,6 @@ const chainlinkFeeds = {
|
|
|
28345
28335
|
}
|
|
28346
28336
|
],
|
|
28347
28337
|
"1868": [
|
|
28348
|
-
{
|
|
28349
|
-
"contractAddress": "0x0101EF4292188d0082121ED61854F25e4b79C600",
|
|
28350
|
-
"proxyAddress": "0xEEDE303b8602Db7556eD57BDf7133A6bAADa294D",
|
|
28351
|
-
"decimals": 18,
|
|
28352
|
-
"name": "pufETH / ETH"
|
|
28353
|
-
},
|
|
28354
28338
|
{
|
|
28355
28339
|
"contractAddress": "0x0c617263C40231731f1264b8Ee5aA96A29eeA99F",
|
|
28356
28340
|
"proxyAddress": "0x884E2819193d8c8993036290D5a8778Dbe3942f2",
|
|
@@ -28411,12 +28395,6 @@ const chainlinkFeeds = {
|
|
|
28411
28395
|
"decimals": 18,
|
|
28412
28396
|
"name": "USR-USD Exchange Rate"
|
|
28413
28397
|
},
|
|
28414
|
-
{
|
|
28415
|
-
"contractAddress": "0x7DCcF223c077e8D1e2297d7788Bb6E62af89dFc9",
|
|
28416
|
-
"proxyAddress": "0xF049354158e13F6794A3cCD236694E0e1BD9AF79",
|
|
28417
|
-
"decimals": 8,
|
|
28418
|
-
"name": "OUSDT / USD"
|
|
28419
|
-
},
|
|
28420
28398
|
{
|
|
28421
28399
|
"contractAddress": "0x842291cfbEf554fF48197316136dF9beA63Eaac6",
|
|
28422
28400
|
"proxyAddress": "0x4516fDa3259110EefAfC6fBcE266417B3F3b985a",
|
|
@@ -28497,12 +28475,6 @@ const chainlinkFeeds = {
|
|
|
28497
28475
|
"decimals": 8,
|
|
28498
28476
|
"name": "USDe / USD"
|
|
28499
28477
|
},
|
|
28500
|
-
{
|
|
28501
|
-
"contractAddress": "0x1019a076F73432AAb97A73CD04e4B6Ad968C09C2",
|
|
28502
|
-
"proxyAddress": "0xC5fD97adABf827e9FCC4ed936360f47080F35868",
|
|
28503
|
-
"decimals": 8,
|
|
28504
|
-
"name": "OUSDT / USD"
|
|
28505
|
-
},
|
|
28506
28478
|
{
|
|
28507
28479
|
"contractAddress": "0x154650BD0B40E449214f9c544cE693889ae65f27",
|
|
28508
28480
|
"proxyAddress": "0xaDE1b9AbB98c6A542E4B49db2588a3Ec4bF7Cdf0",
|
|
@@ -28814,6 +28786,12 @@ const chainlinkFeeds = {
|
|
|
28814
28786
|
"decimals": 18,
|
|
28815
28787
|
"name": "ynETH / ETH Exchange Rate"
|
|
28816
28788
|
},
|
|
28789
|
+
{
|
|
28790
|
+
"contractAddress": "0x21F577D890e5c74e3f56E2C6C0ba4321B5D5bFc6",
|
|
28791
|
+
"proxyAddress": "0x7dBC779B2A6F9B9AaB83a2dED78A2F7E9e203f0c",
|
|
28792
|
+
"decimals": 8,
|
|
28793
|
+
"name": "XAG / USD"
|
|
28794
|
+
},
|
|
28817
28795
|
{
|
|
28818
28796
|
"contractAddress": "0x21b1E4eA0E9AE2e79932662300eB12A0f90AbE59",
|
|
28819
28797
|
"proxyAddress": "0x591e79239a7d679378eC8c847e5038150364C78F",
|
|
@@ -28928,12 +28906,6 @@ const chainlinkFeeds = {
|
|
|
28928
28906
|
"decimals": 18,
|
|
28929
28907
|
"name": "yUSD / USD Exchange Rate"
|
|
28930
28908
|
},
|
|
28931
|
-
{
|
|
28932
|
-
"contractAddress": "0x41F3a42270f161Ad1b25Cdb06bAd6cFC123E5C99",
|
|
28933
|
-
"proxyAddress": "0x2B1de6AD89847C11aF2ede14edB013AA79E94aC9",
|
|
28934
|
-
"decimals": 8,
|
|
28935
|
-
"name": "MAG7.SSI / USD"
|
|
28936
|
-
},
|
|
28937
28909
|
{
|
|
28938
28910
|
"contractAddress": "0x43F92e6805196FA6cd7a19F3d769957f95Baa261",
|
|
28939
28911
|
"proxyAddress": "0xB366E8Efb9661323ff477CedF70f55F897D6cFeA",
|
|
@@ -29013,12 +28985,6 @@ const chainlinkFeeds = {
|
|
|
29013
28985
|
"decimals": 8,
|
|
29014
28986
|
"name": "XRP / USD"
|
|
29015
28987
|
},
|
|
29016
|
-
{
|
|
29017
|
-
"contractAddress": "0x55012EF027ae9b4E2bb5a5f529E5a1184Bcc998D",
|
|
29018
|
-
"proxyAddress": "0x91D7AEd72bF772A0DA30199B925aCB866ACD3D9e",
|
|
29019
|
-
"decimals": 8,
|
|
29020
|
-
"name": "OGN / USD"
|
|
29021
|
-
},
|
|
29022
28988
|
{
|
|
29023
28989
|
"contractAddress": "0x5526525178A842eB07e54cAE0d30c967d74bd0b7",
|
|
29024
28990
|
"proxyAddress": "0x1E6A29666288a310326B37d823Fe4Ea3937424D2",
|
|
@@ -29153,12 +29119,6 @@ const chainlinkFeeds = {
|
|
|
29153
29119
|
"decimals": 8,
|
|
29154
29120
|
"name": "SNX / USD"
|
|
29155
29121
|
},
|
|
29156
|
-
{
|
|
29157
|
-
"contractAddress": "0x74E60B98A3FCaBcDDC66C5727Ab4bCccbad10ce7",
|
|
29158
|
-
"proxyAddress": "0x8eC6a128a430f7A850165bcF18facc9520a9873F",
|
|
29159
|
-
"decimals": 8,
|
|
29160
|
-
"name": "VVV / USD"
|
|
29161
|
-
},
|
|
29162
29122
|
{
|
|
29163
29123
|
"contractAddress": "0x74f70D08c92f1cd4Ed70B9aa3F8edC0bA5496a01",
|
|
29164
29124
|
"proxyAddress": "0x5E988c11a4f92155C30D9fb69Ed75597f712B113",
|
|
@@ -29196,6 +29156,12 @@ const chainlinkFeeds = {
|
|
|
29196
29156
|
"decimals": 0,
|
|
29197
29157
|
"name": "AAVE Network Emergency Count (Base)"
|
|
29198
29158
|
},
|
|
29159
|
+
{
|
|
29160
|
+
"contractAddress": "0x7f567Bf6EB08740F18Cd4de0A5716118954F731f",
|
|
29161
|
+
"proxyAddress": "0x900E653c6b25eCf1eF43525fcCC5263E654085cc",
|
|
29162
|
+
"decimals": 18,
|
|
29163
|
+
"name": "RLUSD / USD"
|
|
29164
|
+
},
|
|
29199
29165
|
{
|
|
29200
29166
|
"contractAddress": "0x801B6E7d186370EeE854F76481643c22c7d1da99",
|
|
29201
29167
|
"proxyAddress": "0xdEd37FC1400B8022968441356f771639ad1B23aA",
|
|
@@ -29258,12 +29224,6 @@ const chainlinkFeeds = {
|
|
|
29258
29224
|
"name": "AAVE SVR LBTC / BTC Exchange Rate",
|
|
29259
29225
|
"secondaryProxyAddress": "0xA6E3b91196afC536E4944B78aBb7DA41E7e18d6b"
|
|
29260
29226
|
},
|
|
29261
|
-
{
|
|
29262
|
-
"contractAddress": "0x8E6ec3E7d1E50db38D5690dF501530D5B2d0b58A",
|
|
29263
|
-
"proxyAddress": "0x90F3676B40F6dc2C1E074985D0544Bb8e1815B00",
|
|
29264
|
-
"decimals": 8,
|
|
29265
|
-
"name": "CTX / USD"
|
|
29266
|
-
},
|
|
29267
29227
|
{
|
|
29268
29228
|
"contractAddress": "0x8b535cC811c4E4c9CFf85b823479B1616CB5C7B5",
|
|
29269
29229
|
"proxyAddress": "0x1E6c22AAA11F507af12034A5Dc4126A6A25DC8d2",
|
|
@@ -29295,12 +29255,6 @@ const chainlinkFeeds = {
|
|
|
29295
29255
|
"name": "AAVE SVR WSTETH / STETH Exchange Rate",
|
|
29296
29256
|
"secondaryProxyAddress": "0x2d4b8B1083a7C278B4C45c598De155e5f9b7A8D5"
|
|
29297
29257
|
},
|
|
29298
|
-
{
|
|
29299
|
-
"contractAddress": "0x9465CF4b4032080434E397F42fB99A8446c35376",
|
|
29300
|
-
"proxyAddress": "0xd5Ec94430eF4170D819E0996BC53ed40d31638d8",
|
|
29301
|
-
"decimals": 8,
|
|
29302
|
-
"name": "USD+ / USD"
|
|
29303
|
-
},
|
|
29304
29258
|
{
|
|
29305
29259
|
"contractAddress": "0x97100bac08Ef1532401041b5F864B4De999ab6D4",
|
|
29306
29260
|
"proxyAddress": "0xC8D5D660bb585b68fa0263EeD7B4224a5FC99669",
|
|
@@ -29429,24 +29383,12 @@ const chainlinkFeeds = {
|
|
|
29429
29383
|
"decimals": 1,
|
|
29430
29384
|
"name": "PCE Price Index — Percent Change (Annual Rate)"
|
|
29431
29385
|
},
|
|
29432
|
-
{
|
|
29433
|
-
"contractAddress": "0xCe14fF0ACf4a1e7Eab6802C64D317e3fD989f3C6",
|
|
29434
|
-
"proxyAddress": "0x1fC950BbC12E93c15A3eEb62db978eb3cC567943",
|
|
29435
|
-
"decimals": 8,
|
|
29436
|
-
"name": "SYND / USD"
|
|
29437
|
-
},
|
|
29438
29386
|
{
|
|
29439
29387
|
"contractAddress": "0xD0407a6524C7d9075E0b040dCEf4696129B2C3B4",
|
|
29440
29388
|
"proxyAddress": "0xeDC243c7E3c1A9dAf067C90641D2346d2694d2e5",
|
|
29441
29389
|
"decimals": 18,
|
|
29442
29390
|
"name": "LSETH / ETH"
|
|
29443
29391
|
},
|
|
29444
|
-
{
|
|
29445
|
-
"contractAddress": "0xD27766C20dF630a7D7e1e5885ae581FB0e61828A",
|
|
29446
|
-
"proxyAddress": "0xe25969e2Fa633a0C027fAB8F30Fc9C6A90D60B48",
|
|
29447
|
-
"decimals": 8,
|
|
29448
|
-
"name": "USDz / USD"
|
|
29449
|
-
},
|
|
29450
29392
|
{
|
|
29451
29393
|
"contractAddress": "0xD41A2B9575eD27D38EC9B75B4d0DD9632a72e45b",
|
|
29452
29394
|
"proxyAddress": "0x5218Ebeb96bD2bAFe21F9b143f5672552629ba79",
|
|
@@ -29508,12 +29450,6 @@ const chainlinkFeeds = {
|
|
|
29508
29450
|
"decimals": 8,
|
|
29509
29451
|
"name": "USDAI / USD"
|
|
29510
29452
|
},
|
|
29511
|
-
{
|
|
29512
|
-
"contractAddress": "0xF4f6843A8003417b04EAbDd7a1bAe2cAFCBF0aCC",
|
|
29513
|
-
"proxyAddress": "0x721F1B4dc604AEA0661Aa9982AB624e5756B31f2",
|
|
29514
|
-
"decimals": 8,
|
|
29515
|
-
"name": "mooBIFI / USD"
|
|
29516
|
-
},
|
|
29517
29453
|
{
|
|
29518
29454
|
"contractAddress": "0xF929EC74AB71033792308dB7fbE82Eb87b42ac3E",
|
|
29519
29455
|
"proxyAddress": "0x95Eba7bE2f755a298984bd714822994f1d4B6313",
|
|
@@ -29624,6 +29560,12 @@ const chainlinkFeeds = {
|
|
|
29624
29560
|
"decimals": 1,
|
|
29625
29561
|
"name": "Real Final Sales to Private Domestic Purchasers — Percent Change (Annual Rate)"
|
|
29626
29562
|
},
|
|
29563
|
+
{
|
|
29564
|
+
"contractAddress": "0xdc22706Ac082C85fE56A5ac4cc85A7b012490c35",
|
|
29565
|
+
"proxyAddress": "0xaABc55Ca55D70B034e4daA2551A224239890282F",
|
|
29566
|
+
"decimals": 18,
|
|
29567
|
+
"name": "VVV / USD"
|
|
29568
|
+
},
|
|
29627
29569
|
{
|
|
29628
29570
|
"contractAddress": "0xe09bE26CF556F7211c16B75BE9fB4DB433A0d37E",
|
|
29629
29571
|
"proxyAddress": "0x06bdFe07E71C476157FC025d3cCD4BBe08e83EF9",
|
|
@@ -29793,6 +29735,12 @@ const chainlinkFeeds = {
|
|
|
29793
29735
|
"decimals": 18,
|
|
29794
29736
|
"name": "instETH / ETH Exchange Rate"
|
|
29795
29737
|
},
|
|
29738
|
+
{
|
|
29739
|
+
"contractAddress": "0x11F15B46dFDcAE97FFCC08d4Fe2520CC09B8c959",
|
|
29740
|
+
"proxyAddress": "0xAa3024cF3f77bA88f8Fe9ff0D24903c50022f874",
|
|
29741
|
+
"decimals": 18,
|
|
29742
|
+
"name": "SAVUSD / AVUSD Exchange Rate"
|
|
29743
|
+
},
|
|
29796
29744
|
{
|
|
29797
29745
|
"contractAddress": "0x126b9a529Dd6f14C62c494F6b6b5AA73d9f6F849",
|
|
29798
29746
|
"proxyAddress": "0x3609baAa0a9b1f0FE4d6CC01884585d0e191C3E3",
|
|
@@ -29988,12 +29936,6 @@ const chainlinkFeeds = {
|
|
|
29988
29936
|
"name": "AAVE SVR EURC / USD",
|
|
29989
29937
|
"secondaryProxyAddress": "0x86e5D529Cb7cAeF5C475Aab0727a84739E12EA3F"
|
|
29990
29938
|
},
|
|
29991
|
-
{
|
|
29992
|
-
"contractAddress": "0x338D614Af8c05eF9d77a33E9D33A92b770809ED4",
|
|
29993
|
-
"proxyAddress": "0x6548a81E640C000150e06AB413fB3F772682e9c5",
|
|
29994
|
-
"decimals": 8,
|
|
29995
|
-
"name": "USD+ / USD"
|
|
29996
|
-
},
|
|
29997
29939
|
{
|
|
29998
29940
|
"contractAddress": "0x34EA4fc62510bd81a72399309f717B96F740A4AE",
|
|
29999
29941
|
"proxyAddress": "0x7A58648CAeA88e042767823723aF266DC6c4c4D9",
|
|
@@ -30013,6 +29955,12 @@ const chainlinkFeeds = {
|
|
|
30013
29955
|
"decimals": 8,
|
|
30014
29956
|
"name": "ETH / USD"
|
|
30015
29957
|
},
|
|
29958
|
+
{
|
|
29959
|
+
"contractAddress": "0x377dB25BbD41Bf70746cC2936875AA6bDF58fD43",
|
|
29960
|
+
"proxyAddress": "0x4Fd4455b88D38945ca1B2ef2D499f805091EB5a6",
|
|
29961
|
+
"decimals": 18,
|
|
29962
|
+
"name": "SOLVBTC / BTC Exchange Rate"
|
|
29963
|
+
},
|
|
30016
29964
|
{
|
|
30017
29965
|
"contractAddress": "0x37b300020b77d043F2A8cf7700f1b05d6d889090",
|
|
30018
29966
|
"proxyAddress": "0xf2215b9c35b1697B5f47e407c917a40D055E68d7",
|
|
@@ -30025,12 +29973,6 @@ const chainlinkFeeds = {
|
|
|
30025
29973
|
"decimals": 8,
|
|
30026
29974
|
"name": "SNX / USD"
|
|
30027
29975
|
},
|
|
30028
|
-
{
|
|
30029
|
-
"contractAddress": "0x39fdD7815faDA275d666437D9571967Ef6417880",
|
|
30030
|
-
"proxyAddress": "0x05Bc6e5Fb110589bb366A3Cd7CdBe143EeBA2168",
|
|
30031
|
-
"decimals": 18,
|
|
30032
|
-
"name": "SWETH / ETH"
|
|
30033
|
-
},
|
|
30034
29976
|
{
|
|
30035
29977
|
"contractAddress": "0x3A00c8Ffe6d87C00c55543f3a265E153bC50e754",
|
|
30036
29978
|
"proxyAddress": "0x9fa74925F21ad6C86d8f402EF490cFbA2Fa5e9bE",
|
|
@@ -30073,42 +30015,18 @@ const chainlinkFeeds = {
|
|
|
30073
30015
|
"decimals": 18,
|
|
30074
30016
|
"name": "ASTR/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30075
30017
|
},
|
|
30076
|
-
{
|
|
30077
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30078
|
-
"proxyAddress": null,
|
|
30079
|
-
"decimals": 18,
|
|
30080
|
-
"name": "REZ/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30081
|
-
},
|
|
30082
|
-
{
|
|
30083
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30084
|
-
"proxyAddress": null,
|
|
30085
|
-
"decimals": 18,
|
|
30086
|
-
"name": "WOO/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30087
|
-
},
|
|
30088
30018
|
{
|
|
30089
30019
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30090
30020
|
"proxyAddress": null,
|
|
30091
30021
|
"decimals": 18,
|
|
30092
30022
|
"name": "BONK/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30093
30023
|
},
|
|
30094
|
-
{
|
|
30095
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30096
|
-
"proxyAddress": null,
|
|
30097
|
-
"decimals": 18,
|
|
30098
|
-
"name": "PEOPLE/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30099
|
-
},
|
|
30100
30024
|
{
|
|
30101
30025
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30102
30026
|
"proxyAddress": null,
|
|
30103
30027
|
"decimals": 18,
|
|
30104
30028
|
"name": "ATOM/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30105
30029
|
},
|
|
30106
|
-
{
|
|
30107
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30108
|
-
"proxyAddress": null,
|
|
30109
|
-
"decimals": 18,
|
|
30110
|
-
"name": "XAI/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30111
|
-
},
|
|
30112
30030
|
{
|
|
30113
30031
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30114
30032
|
"proxyAddress": null,
|
|
@@ -30133,12 +30051,6 @@ const chainlinkFeeds = {
|
|
|
30133
30051
|
"decimals": 18,
|
|
30134
30052
|
"name": "ORDER/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30135
30053
|
},
|
|
30136
|
-
{
|
|
30137
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30138
|
-
"proxyAddress": null,
|
|
30139
|
-
"decimals": 18,
|
|
30140
|
-
"name": "BIGTIME/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30141
|
-
},
|
|
30142
30054
|
{
|
|
30143
30055
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30144
30056
|
"proxyAddress": null,
|
|
@@ -30151,12 +30063,6 @@ const chainlinkFeeds = {
|
|
|
30151
30063
|
"decimals": 18,
|
|
30152
30064
|
"name": "ADA/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30153
30065
|
},
|
|
30154
|
-
{
|
|
30155
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30156
|
-
"proxyAddress": null,
|
|
30157
|
-
"decimals": 18,
|
|
30158
|
-
"name": "NOT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30159
|
-
},
|
|
30160
30066
|
{
|
|
30161
30067
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30162
30068
|
"proxyAddress": null,
|
|
@@ -30169,12 +30075,6 @@ const chainlinkFeeds = {
|
|
|
30169
30075
|
"decimals": 18,
|
|
30170
30076
|
"name": "PENDLE/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30171
30077
|
},
|
|
30172
|
-
{
|
|
30173
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30174
|
-
"proxyAddress": null,
|
|
30175
|
-
"decimals": 18,
|
|
30176
|
-
"name": "PIXEL/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30177
|
-
},
|
|
30178
30078
|
{
|
|
30179
30079
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30180
30080
|
"proxyAddress": null,
|
|
@@ -30221,253 +30121,157 @@ const chainlinkFeeds = {
|
|
|
30221
30121
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30222
30122
|
"proxyAddress": null,
|
|
30223
30123
|
"decimals": 18,
|
|
30224
|
-
"name": "
|
|
30124
|
+
"name": "ATH/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30225
30125
|
},
|
|
30226
30126
|
{
|
|
30227
30127
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30228
30128
|
"proxyAddress": null,
|
|
30229
30129
|
"decimals": 18,
|
|
30230
|
-
"name": "
|
|
30130
|
+
"name": "MEME/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30231
30131
|
},
|
|
30232
30132
|
{
|
|
30233
30133
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30234
30134
|
"proxyAddress": null,
|
|
30235
30135
|
"decimals": 18,
|
|
30236
|
-
"name": "
|
|
30136
|
+
"name": "WIF/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30237
30137
|
},
|
|
30238
30138
|
{
|
|
30239
30139
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30240
30140
|
"proxyAddress": null,
|
|
30241
30141
|
"decimals": 18,
|
|
30242
|
-
"name": "
|
|
30142
|
+
"name": "POL/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30243
30143
|
},
|
|
30244
30144
|
{
|
|
30245
30145
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30246
30146
|
"proxyAddress": null,
|
|
30247
30147
|
"decimals": 18,
|
|
30248
|
-
"name": "
|
|
30148
|
+
"name": "CRV/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30249
30149
|
},
|
|
30250
30150
|
{
|
|
30251
30151
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30252
30152
|
"proxyAddress": null,
|
|
30253
30153
|
"decimals": 18,
|
|
30254
|
-
"name": "
|
|
30154
|
+
"name": "USDT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30255
30155
|
},
|
|
30256
30156
|
{
|
|
30257
30157
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30258
30158
|
"proxyAddress": null,
|
|
30259
30159
|
"decimals": 18,
|
|
30260
|
-
"name": "
|
|
30160
|
+
"name": "SOL/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30261
30161
|
},
|
|
30262
30162
|
{
|
|
30263
30163
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30264
30164
|
"proxyAddress": null,
|
|
30265
30165
|
"decimals": 18,
|
|
30266
|
-
"name": "
|
|
30166
|
+
"name": "BRETT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30267
30167
|
},
|
|
30268
30168
|
{
|
|
30269
30169
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30270
30170
|
"proxyAddress": null,
|
|
30271
30171
|
"decimals": 18,
|
|
30272
|
-
"name": "
|
|
30172
|
+
"name": "DOT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30273
30173
|
},
|
|
30274
30174
|
{
|
|
30275
30175
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30276
30176
|
"proxyAddress": null,
|
|
30277
30177
|
"decimals": 18,
|
|
30278
|
-
"name": "
|
|
30178
|
+
"name": "GMX/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30279
30179
|
},
|
|
30280
30180
|
{
|
|
30281
30181
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30282
30182
|
"proxyAddress": null,
|
|
30283
30183
|
"decimals": 18,
|
|
30284
|
-
"name": "
|
|
30184
|
+
"name": "QNT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30285
30185
|
},
|
|
30286
30186
|
{
|
|
30287
30187
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30288
30188
|
"proxyAddress": null,
|
|
30289
30189
|
"decimals": 18,
|
|
30290
|
-
"name": "
|
|
30190
|
+
"name": "TRX/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30291
30191
|
},
|
|
30292
30192
|
{
|
|
30293
30193
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30294
30194
|
"proxyAddress": null,
|
|
30295
30195
|
"decimals": 18,
|
|
30296
|
-
"name": "
|
|
30196
|
+
"name": "PAXG/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30297
30197
|
},
|
|
30298
30198
|
{
|
|
30299
30199
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30300
30200
|
"proxyAddress": null,
|
|
30301
30201
|
"decimals": 18,
|
|
30302
|
-
"name": "
|
|
30202
|
+
"name": "GALA/USD-RefPrice-DSstaging-Premium-Global-003-dead-dead"
|
|
30303
30203
|
},
|
|
30304
30204
|
{
|
|
30305
30205
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30306
30206
|
"proxyAddress": null,
|
|
30307
30207
|
"decimals": 18,
|
|
30308
|
-
"name": "
|
|
30208
|
+
"name": "INJ/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30309
30209
|
},
|
|
30310
30210
|
{
|
|
30311
30211
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30312
30212
|
"proxyAddress": null,
|
|
30313
30213
|
"decimals": 18,
|
|
30314
|
-
"name": "
|
|
30214
|
+
"name": "ICP/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30315
30215
|
},
|
|
30316
30216
|
{
|
|
30317
30217
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30318
30218
|
"proxyAddress": null,
|
|
30319
30219
|
"decimals": 18,
|
|
30320
|
-
"name": "
|
|
30220
|
+
"name": "XRP/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30321
30221
|
},
|
|
30322
30222
|
{
|
|
30323
30223
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30324
30224
|
"proxyAddress": null,
|
|
30325
30225
|
"decimals": 18,
|
|
30326
|
-
"name": "
|
|
30226
|
+
"name": "MEW/USD-RefPrice-DStaging-Premium-Global-003"
|
|
30327
30227
|
},
|
|
30328
30228
|
{
|
|
30329
30229
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30330
30230
|
"proxyAddress": null,
|
|
30331
30231
|
"decimals": 18,
|
|
30332
|
-
"name": "
|
|
30232
|
+
"name": "DOGS/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30333
30233
|
},
|
|
30334
30234
|
{
|
|
30335
30235
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30336
30236
|
"proxyAddress": null,
|
|
30337
30237
|
"decimals": 18,
|
|
30338
|
-
"name": "
|
|
30238
|
+
"name": "VET/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30339
30239
|
},
|
|
30340
30240
|
{
|
|
30341
30241
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30342
30242
|
"proxyAddress": null,
|
|
30343
30243
|
"decimals": 18,
|
|
30344
|
-
"name": "
|
|
30244
|
+
"name": "BNB/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30345
30245
|
},
|
|
30346
30246
|
{
|
|
30347
30247
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30348
30248
|
"proxyAddress": null,
|
|
30349
30249
|
"decimals": 18,
|
|
30350
|
-
"name": "
|
|
30250
|
+
"name": "WAVES/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30351
30251
|
},
|
|
30352
30252
|
{
|
|
30353
30253
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30354
30254
|
"proxyAddress": null,
|
|
30355
30255
|
"decimals": 18,
|
|
30356
|
-
"name": "
|
|
30256
|
+
"name": "WLD/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30357
30257
|
},
|
|
30358
30258
|
{
|
|
30359
30259
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30360
30260
|
"proxyAddress": null,
|
|
30361
30261
|
"decimals": 18,
|
|
30362
|
-
"name": "
|
|
30262
|
+
"name": "VIRTUAL/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30363
30263
|
},
|
|
30364
30264
|
{
|
|
30365
30265
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30366
30266
|
"proxyAddress": null,
|
|
30367
30267
|
"decimals": 18,
|
|
30368
|
-
"name": "
|
|
30268
|
+
"name": "ALGO/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30369
30269
|
},
|
|
30370
30270
|
{
|
|
30371
30271
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30372
30272
|
"proxyAddress": null,
|
|
30373
30273
|
"decimals": 18,
|
|
30374
|
-
"name": "
|
|
30375
|
-
},
|
|
30376
|
-
{
|
|
30377
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30378
|
-
"proxyAddress": null,
|
|
30379
|
-
"decimals": 18,
|
|
30380
|
-
"name": "BLAST/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30381
|
-
},
|
|
30382
|
-
{
|
|
30383
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30384
|
-
"proxyAddress": null,
|
|
30385
|
-
"decimals": 18,
|
|
30386
|
-
"name": "XRP/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30387
|
-
},
|
|
30388
|
-
{
|
|
30389
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30390
|
-
"proxyAddress": null,
|
|
30391
|
-
"decimals": 18,
|
|
30392
|
-
"name": "MEW/USD-RefPrice-DStaging-Premium-Global-003"
|
|
30393
|
-
},
|
|
30394
|
-
{
|
|
30395
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30396
|
-
"proxyAddress": null,
|
|
30397
|
-
"decimals": 18,
|
|
30398
|
-
"name": "DOGS/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30399
|
-
},
|
|
30400
|
-
{
|
|
30401
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30402
|
-
"proxyAddress": null,
|
|
30403
|
-
"decimals": 18,
|
|
30404
|
-
"name": "VET/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30405
|
-
},
|
|
30406
|
-
{
|
|
30407
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30408
|
-
"proxyAddress": null,
|
|
30409
|
-
"decimals": 18,
|
|
30410
|
-
"name": "BNB/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30411
|
-
},
|
|
30412
|
-
{
|
|
30413
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30414
|
-
"proxyAddress": null,
|
|
30415
|
-
"decimals": 18,
|
|
30416
|
-
"name": "LPT/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30417
|
-
},
|
|
30418
|
-
{
|
|
30419
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30420
|
-
"proxyAddress": null,
|
|
30421
|
-
"decimals": 18,
|
|
30422
|
-
"name": "WAVES/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30423
|
-
},
|
|
30424
|
-
{
|
|
30425
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30426
|
-
"proxyAddress": null,
|
|
30427
|
-
"decimals": 18,
|
|
30428
|
-
"name": "WLD/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30429
|
-
},
|
|
30430
|
-
{
|
|
30431
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30432
|
-
"proxyAddress": null,
|
|
30433
|
-
"decimals": 18,
|
|
30434
|
-
"name": "VIRTUAL/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30435
|
-
},
|
|
30436
|
-
{
|
|
30437
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30438
|
-
"proxyAddress": null,
|
|
30439
|
-
"decimals": 18,
|
|
30440
|
-
"name": "IO/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30441
|
-
},
|
|
30442
|
-
{
|
|
30443
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30444
|
-
"proxyAddress": null,
|
|
30445
|
-
"decimals": 18,
|
|
30446
|
-
"name": "ALGO/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30447
|
-
},
|
|
30448
|
-
{
|
|
30449
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30450
|
-
"proxyAddress": null,
|
|
30451
|
-
"decimals": 18,
|
|
30452
|
-
"name": "GOAT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30453
|
-
},
|
|
30454
|
-
{
|
|
30455
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30456
|
-
"proxyAddress": null,
|
|
30457
|
-
"decimals": 18,
|
|
30458
|
-
"name": "RDNT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30459
|
-
},
|
|
30460
|
-
{
|
|
30461
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30462
|
-
"proxyAddress": null,
|
|
30463
|
-
"decimals": 18,
|
|
30464
|
-
"name": "TOKEN/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30465
|
-
},
|
|
30466
|
-
{
|
|
30467
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30468
|
-
"proxyAddress": null,
|
|
30469
|
-
"decimals": 18,
|
|
30470
|
-
"name": "ZEREBRO/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30274
|
+
"name": "GOAT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30471
30275
|
},
|
|
30472
30276
|
{
|
|
30473
30277
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
@@ -30481,18 +30285,6 @@ const chainlinkFeeds = {
|
|
|
30481
30285
|
"decimals": 18,
|
|
30482
30286
|
"name": "LINK/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30483
30287
|
},
|
|
30484
|
-
{
|
|
30485
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30486
|
-
"proxyAddress": null,
|
|
30487
|
-
"decimals": 18,
|
|
30488
|
-
"name": "POLYX/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30489
|
-
},
|
|
30490
|
-
{
|
|
30491
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30492
|
-
"proxyAddress": null,
|
|
30493
|
-
"decimals": 18,
|
|
30494
|
-
"name": "ARKM/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30495
|
-
},
|
|
30496
30288
|
{
|
|
30497
30289
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30498
30290
|
"proxyAddress": null,
|
|
@@ -30529,12 +30321,6 @@ const chainlinkFeeds = {
|
|
|
30529
30321
|
"decimals": 18,
|
|
30530
30322
|
"name": "PENGU/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30531
30323
|
},
|
|
30532
|
-
{
|
|
30533
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30534
|
-
"proxyAddress": null,
|
|
30535
|
-
"decimals": 18,
|
|
30536
|
-
"name": "BB/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30537
|
-
},
|
|
30538
30324
|
{
|
|
30539
30325
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30540
30326
|
"proxyAddress": null,
|
|
@@ -30583,30 +30369,12 @@ const chainlinkFeeds = {
|
|
|
30583
30369
|
"decimals": 18,
|
|
30584
30370
|
"name": "TURBO/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30585
30371
|
},
|
|
30586
|
-
{
|
|
30587
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30588
|
-
"proxyAddress": null,
|
|
30589
|
-
"decimals": 18,
|
|
30590
|
-
"name": "ETHFI/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30591
|
-
},
|
|
30592
30372
|
{
|
|
30593
30373
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30594
30374
|
"proxyAddress": null,
|
|
30595
30375
|
"decimals": 18,
|
|
30596
30376
|
"name": "PEPE/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30597
30377
|
},
|
|
30598
|
-
{
|
|
30599
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30600
|
-
"proxyAddress": null,
|
|
30601
|
-
"decimals": 18,
|
|
30602
|
-
"name": "HMSTR/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30603
|
-
},
|
|
30604
|
-
{
|
|
30605
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30606
|
-
"proxyAddress": null,
|
|
30607
|
-
"decimals": 18,
|
|
30608
|
-
"name": "MANTA/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30609
|
-
},
|
|
30610
30378
|
{
|
|
30611
30379
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30612
30380
|
"proxyAddress": null,
|
|
@@ -30643,36 +30411,18 @@ const chainlinkFeeds = {
|
|
|
30643
30411
|
"decimals": 18,
|
|
30644
30412
|
"name": "SUI/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30645
30413
|
},
|
|
30646
|
-
{
|
|
30647
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30648
|
-
"proxyAddress": null,
|
|
30649
|
-
"decimals": 18,
|
|
30650
|
-
"name": "MANA/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30651
|
-
},
|
|
30652
30414
|
{
|
|
30653
30415
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30654
30416
|
"proxyAddress": null,
|
|
30655
30417
|
"decimals": 18,
|
|
30656
30418
|
"name": "TRUMP/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30657
30419
|
},
|
|
30658
|
-
{
|
|
30659
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30660
|
-
"proxyAddress": null,
|
|
30661
|
-
"decimals": 18,
|
|
30662
|
-
"name": "CAT/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30663
|
-
},
|
|
30664
30420
|
{
|
|
30665
30421
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30666
30422
|
"proxyAddress": null,
|
|
30667
30423
|
"decimals": 18,
|
|
30668
30424
|
"name": "KNC/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30669
30425
|
},
|
|
30670
|
-
{
|
|
30671
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30672
|
-
"proxyAddress": null,
|
|
30673
|
-
"decimals": 18,
|
|
30674
|
-
"name": "ID/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30675
|
-
},
|
|
30676
30426
|
{
|
|
30677
30427
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30678
30428
|
"proxyAddress": null,
|
|
@@ -30691,18 +30441,6 @@ const chainlinkFeeds = {
|
|
|
30691
30441
|
"decimals": 18,
|
|
30692
30442
|
"name": "DAI/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30693
30443
|
},
|
|
30694
|
-
{
|
|
30695
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30696
|
-
"proxyAddress": null,
|
|
30697
|
-
"decimals": 18,
|
|
30698
|
-
"name": "CYBER/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30699
|
-
},
|
|
30700
|
-
{
|
|
30701
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30702
|
-
"proxyAddress": null,
|
|
30703
|
-
"decimals": 18,
|
|
30704
|
-
"name": "CHR/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30705
|
-
},
|
|
30706
30444
|
{
|
|
30707
30445
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30708
30446
|
"proxyAddress": null,
|
|
@@ -30721,12 +30459,6 @@ const chainlinkFeeds = {
|
|
|
30721
30459
|
"decimals": 18,
|
|
30722
30460
|
"name": "W/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30723
30461
|
},
|
|
30724
|
-
{
|
|
30725
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30726
|
-
"proxyAddress": null,
|
|
30727
|
-
"decimals": 18,
|
|
30728
|
-
"name": "POPCAT/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30729
|
-
},
|
|
30730
30462
|
{
|
|
30731
30463
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30732
30464
|
"proxyAddress": null,
|
|
@@ -30769,24 +30501,6 @@ const chainlinkFeeds = {
|
|
|
30769
30501
|
"decimals": 18,
|
|
30770
30502
|
"name": "RENDER/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30771
30503
|
},
|
|
30772
|
-
{
|
|
30773
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30774
|
-
"proxyAddress": null,
|
|
30775
|
-
"decimals": 18,
|
|
30776
|
-
"name": "MAV/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30777
|
-
},
|
|
30778
|
-
{
|
|
30779
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30780
|
-
"proxyAddress": null,
|
|
30781
|
-
"decimals": 18,
|
|
30782
|
-
"name": "ENS/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30783
|
-
},
|
|
30784
|
-
{
|
|
30785
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30786
|
-
"proxyAddress": null,
|
|
30787
|
-
"decimals": 18,
|
|
30788
|
-
"name": "HOOK/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30789
|
-
},
|
|
30790
30504
|
{
|
|
30791
30505
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30792
30506
|
"proxyAddress": null,
|
|
@@ -30811,18 +30525,6 @@ const chainlinkFeeds = {
|
|
|
30811
30525
|
"decimals": 18,
|
|
30812
30526
|
"name": "DYDX/USD-RefPrice-DStaging-Premium-Global-003"
|
|
30813
30527
|
},
|
|
30814
|
-
{
|
|
30815
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30816
|
-
"proxyAddress": null,
|
|
30817
|
-
"decimals": 18,
|
|
30818
|
-
"name": "ALT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30819
|
-
},
|
|
30820
|
-
{
|
|
30821
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30822
|
-
"proxyAddress": null,
|
|
30823
|
-
"decimals": 18,
|
|
30824
|
-
"name": "COMP/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30825
|
-
},
|
|
30826
30528
|
{
|
|
30827
30529
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30828
30530
|
"proxyAddress": null,
|
|
@@ -30853,12 +30555,6 @@ const chainlinkFeeds = {
|
|
|
30853
30555
|
"decimals": 18,
|
|
30854
30556
|
"name": "JUP/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30855
30557
|
},
|
|
30856
|
-
{
|
|
30857
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30858
|
-
"proxyAddress": null,
|
|
30859
|
-
"decimals": 18,
|
|
30860
|
-
"name": "ACE/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30861
|
-
},
|
|
30862
30558
|
{
|
|
30863
30559
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30864
30560
|
"proxyAddress": null,
|
|
@@ -31113,42 +30809,12 @@ const chainlinkFeeds = {
|
|
|
31113
30809
|
"decimals": 8,
|
|
31114
30810
|
"name": "COMP / USD"
|
|
31115
30811
|
},
|
|
31116
|
-
{
|
|
31117
|
-
"contractAddress": "0x53368bC6a7eB4f4AF3d6974520FEba0295A5daAb",
|
|
31118
|
-
"proxyAddress": "0xBE5eA816870D11239c543F84b71439511D70B94f",
|
|
31119
|
-
"decimals": 8,
|
|
31120
|
-
"name": "BAL / USD"
|
|
31121
|
-
},
|
|
31122
30812
|
{
|
|
31123
30813
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31124
30814
|
"proxyAddress": null,
|
|
31125
30815
|
"decimals": 18,
|
|
31126
30816
|
"name": "GALA/USD-RefPrice-DS-Premium-Global-003"
|
|
31127
30817
|
},
|
|
31128
|
-
{
|
|
31129
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31130
|
-
"proxyAddress": null,
|
|
31131
|
-
"decimals": 18,
|
|
31132
|
-
"name": "POLYX/USD-RefPrice-DS-Premium-Global-003"
|
|
31133
|
-
},
|
|
31134
|
-
{
|
|
31135
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31136
|
-
"proxyAddress": null,
|
|
31137
|
-
"decimals": 18,
|
|
31138
|
-
"name": "HOOK/USD-RefPrice-DS-Premium-Global-003"
|
|
31139
|
-
},
|
|
31140
|
-
{
|
|
31141
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31142
|
-
"proxyAddress": null,
|
|
31143
|
-
"decimals": 18,
|
|
31144
|
-
"name": "ACE/USD-RefPrice-DS-Premium-Global-003"
|
|
31145
|
-
},
|
|
31146
|
-
{
|
|
31147
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31148
|
-
"proxyAddress": null,
|
|
31149
|
-
"decimals": 18,
|
|
31150
|
-
"name": "BLUR/USD-RefPrice-DS-Premium-Global-003"
|
|
31151
|
-
},
|
|
31152
30818
|
{
|
|
31153
30819
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31154
30820
|
"proxyAddress": null,
|
|
@@ -31161,24 +30827,12 @@ const chainlinkFeeds = {
|
|
|
31161
30827
|
"decimals": 18,
|
|
31162
30828
|
"name": "SATS/USD-RefPrice-DS-Premium-Global-003"
|
|
31163
30829
|
},
|
|
31164
|
-
{
|
|
31165
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31166
|
-
"proxyAddress": null,
|
|
31167
|
-
"decimals": 18,
|
|
31168
|
-
"name": "CHR/USD-RefPrice-DS-Premium-Global-003"
|
|
31169
|
-
},
|
|
31170
30830
|
{
|
|
31171
30831
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31172
30832
|
"proxyAddress": null,
|
|
31173
30833
|
"decimals": 18,
|
|
31174
30834
|
"name": "STRK/USD-RefPrice-DS-Premium-Global-003"
|
|
31175
30835
|
},
|
|
31176
|
-
{
|
|
31177
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31178
|
-
"proxyAddress": null,
|
|
31179
|
-
"decimals": 18,
|
|
31180
|
-
"name": "BB/USD-RefPrice-DS-Premium-Global-003"
|
|
31181
|
-
},
|
|
31182
30836
|
{
|
|
31183
30837
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31184
30838
|
"proxyAddress": null,
|
|
@@ -31197,12 +30851,6 @@ const chainlinkFeeds = {
|
|
|
31197
30851
|
"decimals": 18,
|
|
31198
30852
|
"name": "TRX/USD-RefPrice-DS-Premium-Global-003"
|
|
31199
30853
|
},
|
|
31200
|
-
{
|
|
31201
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31202
|
-
"proxyAddress": null,
|
|
31203
|
-
"decimals": 18,
|
|
31204
|
-
"name": "ID/USD-RefPrice-DS-Premium-Global-003"
|
|
31205
|
-
},
|
|
31206
30854
|
{
|
|
31207
30855
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31208
30856
|
"proxyAddress": null,
|
|
@@ -31233,12 +30881,6 @@ const chainlinkFeeds = {
|
|
|
31233
30881
|
"decimals": 18,
|
|
31234
30882
|
"name": "JTO/USD-RefPrice-DS-Premium-Global-003"
|
|
31235
30883
|
},
|
|
31236
|
-
{
|
|
31237
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31238
|
-
"proxyAddress": null,
|
|
31239
|
-
"decimals": 18,
|
|
31240
|
-
"name": "MANA/USD-RefPrice-DS-Premium-Global-003"
|
|
31241
|
-
},
|
|
31242
30884
|
{
|
|
31243
30885
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31244
30886
|
"proxyAddress": null,
|
|
@@ -31257,24 +30899,12 @@ const chainlinkFeeds = {
|
|
|
31257
30899
|
"decimals": 18,
|
|
31258
30900
|
"name": "JUP/USD-RefPrice-DS-Premium-Global-003"
|
|
31259
30901
|
},
|
|
31260
|
-
{
|
|
31261
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31262
|
-
"proxyAddress": null,
|
|
31263
|
-
"decimals": 18,
|
|
31264
|
-
"name": "MOG/USD-RefPrice-DS-Premium-Global-003"
|
|
31265
|
-
},
|
|
31266
30902
|
{
|
|
31267
30903
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31268
30904
|
"proxyAddress": null,
|
|
31269
30905
|
"decimals": 18,
|
|
31270
30906
|
"name": "SAND/USD-RefPrice-DS-Premium-Global-003"
|
|
31271
30907
|
},
|
|
31272
|
-
{
|
|
31273
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31274
|
-
"proxyAddress": null,
|
|
31275
|
-
"decimals": 18,
|
|
31276
|
-
"name": "REZ/USD-RefPrice-DS-Premium-Global-003"
|
|
31277
|
-
},
|
|
31278
30908
|
{
|
|
31279
30909
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31280
30910
|
"proxyAddress": null,
|
|
@@ -31347,12 +30977,6 @@ const chainlinkFeeds = {
|
|
|
31347
30977
|
"decimals": 18,
|
|
31348
30978
|
"name": "BRETT/USD-RefPrice-DS-Premium-Global-003"
|
|
31349
30979
|
},
|
|
31350
|
-
{
|
|
31351
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31352
|
-
"proxyAddress": null,
|
|
31353
|
-
"decimals": 18,
|
|
31354
|
-
"name": "IO/USD-RefPrice-DS-Premium-Global-003"
|
|
31355
|
-
},
|
|
31356
30980
|
{
|
|
31357
30981
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31358
30982
|
"proxyAddress": null,
|
|
@@ -31395,48 +31019,18 @@ const chainlinkFeeds = {
|
|
|
31395
31019
|
"decimals": 18,
|
|
31396
31020
|
"name": "TIA/USD-RefPrice-DS-Premium-Global-003"
|
|
31397
31021
|
},
|
|
31398
|
-
{
|
|
31399
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31400
|
-
"proxyAddress": null,
|
|
31401
|
-
"decimals": 18,
|
|
31402
|
-
"name": "MERL/USD-RefPrice-DS-Premium-Global-003"
|
|
31403
|
-
},
|
|
31404
|
-
{
|
|
31405
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31406
|
-
"proxyAddress": null,
|
|
31407
|
-
"decimals": 18,
|
|
31408
|
-
"name": "STG/USD-RefPrice-DS-Premium-Global-003"
|
|
31409
|
-
},
|
|
31410
31022
|
{
|
|
31411
31023
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31412
31024
|
"proxyAddress": null,
|
|
31413
31025
|
"decimals": 18,
|
|
31414
31026
|
"name": "RENDER/USD-RefPrice-DS-Premium-Global-003"
|
|
31415
31027
|
},
|
|
31416
|
-
{
|
|
31417
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31418
|
-
"proxyAddress": null,
|
|
31419
|
-
"decimals": 18,
|
|
31420
|
-
"name": "PEOPLE/USD-RefPrice-DS-Premium-Global-003"
|
|
31421
|
-
},
|
|
31422
|
-
{
|
|
31423
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31424
|
-
"proxyAddress": null,
|
|
31425
|
-
"decimals": 18,
|
|
31426
|
-
"name": "XAI/USD-RefPrice-DS-Premium-Global-003"
|
|
31427
|
-
},
|
|
31428
31028
|
{
|
|
31429
31029
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31430
31030
|
"proxyAddress": null,
|
|
31431
31031
|
"decimals": 18,
|
|
31432
31032
|
"name": "XTZ/USD-RefPrice-DS-Premium-Global-003"
|
|
31433
31033
|
},
|
|
31434
|
-
{
|
|
31435
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31436
|
-
"proxyAddress": null,
|
|
31437
|
-
"decimals": 18,
|
|
31438
|
-
"name": "NOT/USD-RefPrice-DS-Premium-Global-003"
|
|
31439
|
-
},
|
|
31440
31034
|
{
|
|
31441
31035
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31442
31036
|
"proxyAddress": null,
|
|
@@ -31479,24 +31073,6 @@ const chainlinkFeeds = {
|
|
|
31479
31073
|
"decimals": 18,
|
|
31480
31074
|
"name": "GRT/USD-RefPrice-DS-Premium-Global-003"
|
|
31481
31075
|
},
|
|
31482
|
-
{
|
|
31483
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31484
|
-
"proxyAddress": null,
|
|
31485
|
-
"decimals": 18,
|
|
31486
|
-
"name": "EDU/USD-RefPrice-DS-Premium-Global-003"
|
|
31487
|
-
},
|
|
31488
|
-
{
|
|
31489
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31490
|
-
"proxyAddress": null,
|
|
31491
|
-
"decimals": 18,
|
|
31492
|
-
"name": "CYBER/USD-RefPrice-DS-Premium-Global-003"
|
|
31493
|
-
},
|
|
31494
|
-
{
|
|
31495
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31496
|
-
"proxyAddress": null,
|
|
31497
|
-
"decimals": 18,
|
|
31498
|
-
"name": "WOO/USD-RefPrice-DS-Premium-Global-003"
|
|
31499
|
-
},
|
|
31500
31076
|
{
|
|
31501
31077
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31502
31078
|
"proxyAddress": null,
|
|
@@ -31521,12 +31097,6 @@ const chainlinkFeeds = {
|
|
|
31521
31097
|
"decimals": 18,
|
|
31522
31098
|
"name": "UNI/USD-RefPrice-DS-Premium-Global-003"
|
|
31523
31099
|
},
|
|
31524
|
-
{
|
|
31525
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31526
|
-
"proxyAddress": null,
|
|
31527
|
-
"decimals": 18,
|
|
31528
|
-
"name": "ETHFI/USD-RefPrice-DS-Premium-Global-003"
|
|
31529
|
-
},
|
|
31530
31100
|
{
|
|
31531
31101
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31532
31102
|
"proxyAddress": null,
|
|
@@ -31569,24 +31139,6 @@ const chainlinkFeeds = {
|
|
|
31569
31139
|
"decimals": 18,
|
|
31570
31140
|
"name": "ONDO/USD-RefPrice-DS-Premium-Global-003"
|
|
31571
31141
|
},
|
|
31572
|
-
{
|
|
31573
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31574
|
-
"proxyAddress": null,
|
|
31575
|
-
"decimals": 18,
|
|
31576
|
-
"name": "C98/USD-RefPrice-DS-Premium-Global-003"
|
|
31577
|
-
},
|
|
31578
|
-
{
|
|
31579
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31580
|
-
"proxyAddress": null,
|
|
31581
|
-
"decimals": 18,
|
|
31582
|
-
"name": "BIGTIME/USD-RefPrice-DS-Premium-Global-003"
|
|
31583
|
-
},
|
|
31584
|
-
{
|
|
31585
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31586
|
-
"proxyAddress": null,
|
|
31587
|
-
"decimals": 18,
|
|
31588
|
-
"name": "RDNT/USD-RefPrice-DS-Premium-Global-003"
|
|
31589
|
-
},
|
|
31590
31142
|
{
|
|
31591
31143
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31592
31144
|
"proxyAddress": null,
|
|
@@ -31599,12 +31151,6 @@ const chainlinkFeeds = {
|
|
|
31599
31151
|
"decimals": 18,
|
|
31600
31152
|
"name": "VIRTUAL/USD-RefPrice-DS-Premium-Global-003"
|
|
31601
31153
|
},
|
|
31602
|
-
{
|
|
31603
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31604
|
-
"proxyAddress": null,
|
|
31605
|
-
"decimals": 18,
|
|
31606
|
-
"name": "MANTA/USD-RefPrice-DS-Premium-Global-003"
|
|
31607
|
-
},
|
|
31608
31154
|
{
|
|
31609
31155
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31610
31156
|
"proxyAddress": null,
|
|
@@ -31617,12 +31163,6 @@ const chainlinkFeeds = {
|
|
|
31617
31163
|
"decimals": 18,
|
|
31618
31164
|
"name": "MKR/USD-RefPrice-DS-Premium-Global-003"
|
|
31619
31165
|
},
|
|
31620
|
-
{
|
|
31621
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31622
|
-
"proxyAddress": null,
|
|
31623
|
-
"decimals": 18,
|
|
31624
|
-
"name": "BLAST/USD-RefPrice-DS-Premium-Global-003"
|
|
31625
|
-
},
|
|
31626
31166
|
{
|
|
31627
31167
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31628
31168
|
"proxyAddress": null,
|
|
@@ -31641,24 +31181,6 @@ const chainlinkFeeds = {
|
|
|
31641
31181
|
"decimals": 18,
|
|
31642
31182
|
"name": "ZEC/USD-RefPrice-DS-Premium-Global-003"
|
|
31643
31183
|
},
|
|
31644
|
-
{
|
|
31645
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31646
|
-
"proxyAddress": null,
|
|
31647
|
-
"decimals": 18,
|
|
31648
|
-
"name": "ENS/USD-RefPrice-DS-Premium-Global-003"
|
|
31649
|
-
},
|
|
31650
|
-
{
|
|
31651
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31652
|
-
"proxyAddress": null,
|
|
31653
|
-
"decimals": 18,
|
|
31654
|
-
"name": "ILV/USD-RefPrice-DS-Premium-Global-003"
|
|
31655
|
-
},
|
|
31656
|
-
{
|
|
31657
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31658
|
-
"proxyAddress": null,
|
|
31659
|
-
"decimals": 18,
|
|
31660
|
-
"name": "HMSTR/USD-RefPrice-DS-Premium-Global-003"
|
|
31661
|
-
},
|
|
31662
31184
|
{
|
|
31663
31185
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31664
31186
|
"proxyAddress": null,
|
|
@@ -31695,12 +31217,6 @@ const chainlinkFeeds = {
|
|
|
31695
31217
|
"decimals": 18,
|
|
31696
31218
|
"name": "AVAX/USD-RefPrice-DS-Premium-Global-003"
|
|
31697
31219
|
},
|
|
31698
|
-
{
|
|
31699
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31700
|
-
"proxyAddress": null,
|
|
31701
|
-
"decimals": 18,
|
|
31702
|
-
"name": "COMP/USD-RefPrice-DS-Premium-Global-003"
|
|
31703
|
-
},
|
|
31704
31220
|
{
|
|
31705
31221
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31706
31222
|
"proxyAddress": null,
|
|
@@ -31725,12 +31241,6 @@ const chainlinkFeeds = {
|
|
|
31725
31241
|
"decimals": 18,
|
|
31726
31242
|
"name": "OP/USD-RefPrice-DS-Premium-Global-003"
|
|
31727
31243
|
},
|
|
31728
|
-
{
|
|
31729
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31730
|
-
"proxyAddress": null,
|
|
31731
|
-
"decimals": 18,
|
|
31732
|
-
"name": "TOKEN/USD-RefPrice-DS-Premium-Global-003"
|
|
31733
|
-
},
|
|
31734
31244
|
{
|
|
31735
31245
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31736
31246
|
"proxyAddress": null,
|
|
@@ -31755,12 +31265,6 @@ const chainlinkFeeds = {
|
|
|
31755
31265
|
"decimals": 18,
|
|
31756
31266
|
"name": "ORDER/USD-RefPrice-DS-Premium-Global-003"
|
|
31757
31267
|
},
|
|
31758
|
-
{
|
|
31759
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31760
|
-
"proxyAddress": null,
|
|
31761
|
-
"decimals": 18,
|
|
31762
|
-
"name": "MAV/USD-RefPrice-DS-Premium-Global-003"
|
|
31763
|
-
},
|
|
31764
31268
|
{
|
|
31765
31269
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31766
31270
|
"proxyAddress": null,
|
|
@@ -31779,24 +31283,12 @@ const chainlinkFeeds = {
|
|
|
31779
31283
|
"decimals": 18,
|
|
31780
31284
|
"name": "BERA/USD-RefPrice-DS-Premium-Global-003"
|
|
31781
31285
|
},
|
|
31782
|
-
{
|
|
31783
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31784
|
-
"proxyAddress": null,
|
|
31785
|
-
"decimals": 18,
|
|
31786
|
-
"name": "ZEREBRO/USD-RefPrice-DS-Premium-Global-003"
|
|
31787
|
-
},
|
|
31788
31286
|
{
|
|
31789
31287
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31790
31288
|
"proxyAddress": null,
|
|
31791
31289
|
"decimals": 18,
|
|
31792
31290
|
"name": "ATOM/USD-RefPrice-DS-Premium-Global-003"
|
|
31793
31291
|
},
|
|
31794
|
-
{
|
|
31795
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31796
|
-
"proxyAddress": null,
|
|
31797
|
-
"decimals": 18,
|
|
31798
|
-
"name": "PIXEL/USD-RefPrice-DS-Premium-Global-003"
|
|
31799
|
-
},
|
|
31800
31292
|
{
|
|
31801
31293
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31802
31294
|
"proxyAddress": null,
|
|
@@ -31839,36 +31331,18 @@ const chainlinkFeeds = {
|
|
|
31839
31331
|
"decimals": 18,
|
|
31840
31332
|
"name": "ORDI/USD-RefPrice-DS-Premium-Global-003"
|
|
31841
31333
|
},
|
|
31842
|
-
{
|
|
31843
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31844
|
-
"proxyAddress": null,
|
|
31845
|
-
"decimals": 18,
|
|
31846
|
-
"name": "IQ/USD-RefPrice-DS-Premium-Global-003"
|
|
31847
|
-
},
|
|
31848
31334
|
{
|
|
31849
31335
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31850
31336
|
"proxyAddress": null,
|
|
31851
31337
|
"decimals": 18,
|
|
31852
31338
|
"name": "EGLD/USD-RefPrice-DS-Premium-Global-003"
|
|
31853
31339
|
},
|
|
31854
|
-
{
|
|
31855
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31856
|
-
"proxyAddress": null,
|
|
31857
|
-
"decimals": 18,
|
|
31858
|
-
"name": "ALT/USD-RefPrice-DS-Premium-Global-003"
|
|
31859
|
-
},
|
|
31860
31340
|
{
|
|
31861
31341
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31862
31342
|
"proxyAddress": null,
|
|
31863
31343
|
"decimals": 18,
|
|
31864
31344
|
"name": "DOGS/USD-RefPrice-DS-Premium-Global-003"
|
|
31865
31345
|
},
|
|
31866
|
-
{
|
|
31867
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31868
|
-
"proxyAddress": null,
|
|
31869
|
-
"decimals": 18,
|
|
31870
|
-
"name": "HOT/USD-RefPrice-DS-Premium-Global-003"
|
|
31871
|
-
},
|
|
31872
31346
|
{
|
|
31873
31347
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31874
31348
|
"proxyAddress": null,
|
|
@@ -31887,12 +31361,6 @@ const chainlinkFeeds = {
|
|
|
31887
31361
|
"decimals": 18,
|
|
31888
31362
|
"name": "SCR/USD-RefPrice-DS-Premium-Global-003"
|
|
31889
31363
|
},
|
|
31890
|
-
{
|
|
31891
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31892
|
-
"proxyAddress": null,
|
|
31893
|
-
"decimals": 18,
|
|
31894
|
-
"name": "ARKM/USD-RefPrice-DS-Premium-Global-003"
|
|
31895
|
-
},
|
|
31896
31364
|
{
|
|
31897
31365
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31898
31366
|
"proxyAddress": null,
|
|
@@ -31911,12 +31379,6 @@ const chainlinkFeeds = {
|
|
|
31911
31379
|
"decimals": 18,
|
|
31912
31380
|
"name": "ZRO/USD-RefPrice-DS-Premium-Global-003"
|
|
31913
31381
|
},
|
|
31914
|
-
{
|
|
31915
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31916
|
-
"proxyAddress": null,
|
|
31917
|
-
"decimals": 18,
|
|
31918
|
-
"name": "AI/USD-RefPrice-DS-Premium-Global-003"
|
|
31919
|
-
},
|
|
31920
31382
|
{
|
|
31921
31383
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31922
31384
|
"proxyAddress": null,
|
|
@@ -32129,13 +31591,6 @@ const chainlinkFeeds = {
|
|
|
32129
31591
|
"decimals": 8,
|
|
32130
31592
|
"name": "solvBTC / BTC"
|
|
32131
31593
|
},
|
|
32132
|
-
{
|
|
32133
|
-
"contractAddress": "0x7399107Df5344E0b928e75f3ACfa90569eC20848",
|
|
32134
|
-
"proxyAddress": "0x16F384AeF73f3f3f7B566125b1f144Bc7c847b1E",
|
|
32135
|
-
"decimals": 8,
|
|
32136
|
-
"name": "SVR FRAX / USD",
|
|
32137
|
-
"secondaryProxyAddress": "0x7537F8c0f8F7E7def07BF9e91e636e55881C7A66"
|
|
32138
|
-
},
|
|
32139
31594
|
{
|
|
32140
31595
|
"contractAddress": "0x73BBf768a429a4f80c47D0d22DdBCe5823c97d7a",
|
|
32141
31596
|
"proxyAddress": "0x052d4200b624b07262F574af26C71A6553996Ab5",
|
|
@@ -32262,12 +31717,6 @@ const chainlinkFeeds = {
|
|
|
32262
31717
|
"decimals": 8,
|
|
32263
31718
|
"name": "TRY / USD"
|
|
32264
31719
|
},
|
|
32265
|
-
{
|
|
32266
|
-
"contractAddress": "0x884720E3da9094190dC25911B4e0E61D79562788",
|
|
32267
|
-
"proxyAddress": "0x8883045300Eaf3b1Bb1b3b17F9B4d70EfF50212a",
|
|
32268
|
-
"decimals": 18,
|
|
32269
|
-
"name": "ULTI / USD"
|
|
32270
|
-
},
|
|
32271
31720
|
{
|
|
32272
31721
|
"contractAddress": "0x8ABe008B267C82199EC81E7f80eE4DC3A3545c82",
|
|
32273
31722
|
"proxyAddress": "0x9eE96caa9972c801058CAA8E23419fc6516FbF7e",
|
|
@@ -32298,12 +31747,6 @@ const chainlinkFeeds = {
|
|
|
32298
31747
|
"decimals": 18,
|
|
32299
31748
|
"name": "sUSDS / USDS Exchange Rate"
|
|
32300
31749
|
},
|
|
32301
|
-
{
|
|
32302
|
-
"contractAddress": "0x8f99f05E0a5Fa19579525A60801A0F473adB1CE1",
|
|
32303
|
-
"proxyAddress": "0x300b0990Ba191a1AeBef6e5Ed8B5B308C0B2d0c9",
|
|
32304
|
-
"decimals": 8,
|
|
32305
|
-
"name": "XVS / USD"
|
|
32306
|
-
},
|
|
32307
31750
|
{
|
|
32308
31751
|
"contractAddress": "0x920d90b3953B3C90b06ebE8579B0215d6801DA54",
|
|
32309
31752
|
"proxyAddress": "0xe4c31C5B118d8aA92433eD1c7EC70afb430cd730",
|
|
@@ -32652,12 +32095,6 @@ const chainlinkFeeds = {
|
|
|
32652
32095
|
"decimals": 1,
|
|
32653
32096
|
"name": "Real GDP — Percent Change (Annual Rate)"
|
|
32654
32097
|
},
|
|
32655
|
-
{
|
|
32656
|
-
"contractAddress": "0xa44BCD128E99188565c4849cdfFEea9C773f74ec",
|
|
32657
|
-
"proxyAddress": "0x04180965a782E487d0632013ABa488A472243542",
|
|
32658
|
-
"decimals": 8,
|
|
32659
|
-
"name": "JOE / USD"
|
|
32660
|
-
},
|
|
32661
32098
|
{
|
|
32662
32099
|
"contractAddress": "0xa4598924ca0cbEbB2D850684a9BFc0a7D1D848EB",
|
|
32663
32100
|
"proxyAddress": "0x1f5C0C2CD2e9Ad1eE475660AF0bBa27aE7d87f5e",
|
|
@@ -32732,6 +32169,18 @@ const chainlinkFeeds = {
|
|
|
32732
32169
|
"decimals": 8,
|
|
32733
32170
|
"name": "APT / USD"
|
|
32734
32171
|
},
|
|
32172
|
+
{
|
|
32173
|
+
"contractAddress": "0xb915D2b9d10df9Df8043F6d72fECDbA36edBdB60",
|
|
32174
|
+
"proxyAddress": "0x9dC30b7242556F871932AFe38CC34d2a77E6F6C9",
|
|
32175
|
+
"decimals": 18,
|
|
32176
|
+
"name": "DAI / USD CAPPED"
|
|
32177
|
+
},
|
|
32178
|
+
{
|
|
32179
|
+
"contractAddress": "0xb930631CF1A4158903Acaf30CAa716cC320c936F",
|
|
32180
|
+
"proxyAddress": "0xb2378F24E6d543cd28A8edcc7d2bE517FC9e074c",
|
|
32181
|
+
"decimals": 18,
|
|
32182
|
+
"name": "LUSD / USD CAPPED"
|
|
32183
|
+
},
|
|
32735
32184
|
{
|
|
32736
32185
|
"contractAddress": "0xb98512d5a21e13cf27b84Cc90eA118AE14134A76",
|
|
32737
32186
|
"proxyAddress": "0x021126143D0B6e20Bb69beFcc860e7E523df8055",
|
|
@@ -32956,18 +32405,18 @@ const chainlinkFeeds = {
|
|
|
32956
32405
|
"decimals": 3,
|
|
32957
32406
|
"name": "PCE Price Index — Level"
|
|
32958
32407
|
},
|
|
32408
|
+
{
|
|
32409
|
+
"contractAddress": "0xf1a81F33CDe09D59B64d0BE084971b9FBbA776E7",
|
|
32410
|
+
"proxyAddress": "0x21082CA28570f0ccfb089465bFaEfDc77b00D367",
|
|
32411
|
+
"decimals": 18,
|
|
32412
|
+
"name": "ZEC / USD"
|
|
32413
|
+
},
|
|
32959
32414
|
{
|
|
32960
32415
|
"contractAddress": "0xf6bACC7750c23A34b996A355A6E78b17Fc4BaEdC",
|
|
32961
32416
|
"proxyAddress": "0x383b3624478124697BEF675F07cA37570b73992f",
|
|
32962
32417
|
"decimals": 8,
|
|
32963
32418
|
"name": "SPELL / USD"
|
|
32964
32419
|
},
|
|
32965
|
-
{
|
|
32966
|
-
"contractAddress": "0xf8C6DE435CF8d06897a4A66b21df623D06d2A761",
|
|
32967
|
-
"proxyAddress": "0x36a121448D74Fa81450c992A1a44B9b7377CD3a5",
|
|
32968
|
-
"decimals": 8,
|
|
32969
|
-
"name": "FXS / USD"
|
|
32970
|
-
},
|
|
32971
32420
|
{
|
|
32972
32421
|
"contractAddress": "0xf8abb3c41A3b21687Ad862C9Fd00D007E413EEAA",
|
|
32973
32422
|
"proxyAddress": "0x6FfBc6339DD46a7e0513D4887106349214C05505",
|
|
@@ -33224,12 +32673,6 @@ const chainlinkFeeds = {
|
|
|
33224
32673
|
"decimals": 18,
|
|
33225
32674
|
"name": "WSTETH / ETH"
|
|
33226
32675
|
},
|
|
33227
|
-
{
|
|
33228
|
-
"contractAddress": "0x15505bcC6D3c6f8F3cfC3d6D96f5A6301A08D2cc",
|
|
33229
|
-
"proxyAddress": "0x7B0ca9A6D03FE0467A31Ca850f5bcA51e027B3aF",
|
|
33230
|
-
"decimals": 8,
|
|
33231
|
-
"name": "ALPHA / USD"
|
|
33232
|
-
},
|
|
33233
32676
|
{
|
|
33234
32677
|
"contractAddress": "0x184CCa2bA7015052424Fa2f509fB252926789D7C",
|
|
33235
32678
|
"proxyAddress": "0x7Ee401373A92f885a7C3A53CF46dbe661eaFb1C0",
|
|
@@ -33344,12 +32787,6 @@ const chainlinkFeeds = {
|
|
|
33344
32787
|
"decimals": 8,
|
|
33345
32788
|
"name": "ADA / USD"
|
|
33346
32789
|
},
|
|
33347
|
-
{
|
|
33348
|
-
"contractAddress": "0x461b95e560697B0C83AB569f06034832a4b62707",
|
|
33349
|
-
"proxyAddress": "0x99311B4bf6D8E3D3B4b9fbdD09a1B0F4Ad8e06E9",
|
|
33350
|
-
"decimals": 8,
|
|
33351
|
-
"name": "BTC.b Proof of Reserves"
|
|
33352
|
-
},
|
|
33353
32790
|
{
|
|
33354
32791
|
"contractAddress": "0x4A5cE69A1aDA639042B30e1574Eb9D6e939388A3",
|
|
33355
32792
|
"proxyAddress": "0x5C2d58627Fbe746f5ea24Ef6D618f09f8e3f0122",
|
|
@@ -34218,12 +33655,6 @@ const chainlinkFeeds = {
|
|
|
34218
33655
|
"decimals": 18,
|
|
34219
33656
|
"name": "wstETH-stETH Exchange Rate"
|
|
34220
33657
|
},
|
|
34221
|
-
{
|
|
34222
|
-
"contractAddress": "0xD672b32F0AcDF22b850852D4Cd7c59bc920D523a",
|
|
34223
|
-
"proxyAddress": "0x3fBB86e564fC1303625BA88EaE55740f3A649d36",
|
|
34224
|
-
"decimals": 18,
|
|
34225
|
-
"name": "RETH / ETH"
|
|
34226
|
-
},
|
|
34227
33658
|
{
|
|
34228
33659
|
"contractAddress": "0xD80196353308B3b0B34DA405b049F7F4f0E4C298",
|
|
34229
33660
|
"proxyAddress": "0x538E0fC727ce4604e25354D082890cdb5553d33B",
|
|
@@ -34260,6 +33691,12 @@ const chainlinkFeeds = {
|
|
|
34260
33691
|
"decimals": 8,
|
|
34261
33692
|
"name": "WBTC / BTC"
|
|
34262
33693
|
},
|
|
33694
|
+
{
|
|
33695
|
+
"contractAddress": "0xb5d6a076549Af9E436f4D18F495772204f746f34",
|
|
33696
|
+
"proxyAddress": "0x5df16dE72003c33dE38f8620BF91f0e7c4eE7300",
|
|
33697
|
+
"decimals": 18,
|
|
33698
|
+
"name": "EURC / USD"
|
|
33699
|
+
},
|
|
34263
33700
|
{
|
|
34264
33701
|
"contractAddress": "0xeAEE2B0DA69DFf8977f2E73887509B51fbf9bBfd",
|
|
34265
33702
|
"proxyAddress": "0xd63624330Ed4e50dD65FeA45c08558F78a3d8abd",
|
|
@@ -34876,6 +34313,7 @@ var types_default = {
|
|
|
34876
34313
|
"plugin": [2],
|
|
34877
34314
|
"controller": [2],
|
|
34878
34315
|
"verified": [5],
|
|
34316
|
+
"turbo": [5],
|
|
34879
34317
|
"domain": [2],
|
|
34880
34318
|
"search": [2],
|
|
34881
34319
|
"__typename": [2]
|
|
@@ -39612,5 +39050,5 @@ async function cidV0ToBs58(cid) {
|
|
|
39612
39050
|
}
|
|
39613
39051
|
|
|
39614
39052
|
//#endregion
|
|
39615
|
-
export { Aip, ChainId, ChainList, EVENT_DB, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAccessControl_ABI, IAggregatorInterface_ABI, ICLRatePriceCapAdapter_ABI, ICLSynchronicityPriceAdapterBaseToPeg_ABI, ICLSynchronicityPriceAdapterPegToBase_ABI, ICLSynchronicityPriceAdapter_ABI, ICollector_ABI, IDefaultInterestRateStrategyV2_ABI, IERC1967_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IGovernance_ABI, IOwnable_ABI, IPausableUpgradeable_ABI, IPayloadsController_ABI, IPendlePriceCapAdapter_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IPriceCapAdapterBase_ABI, IPriceCapAdapterStable_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, ISafe_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IUmbrellaStakeToken_ABI, IUmbrella_ABI, IWithGuardian_ABI, IWrappedTokenGatewayV3_ABI, IncentivizedERC20_ABI, KNOWN_ROLES, LTV_PRECISION, PayloadState, ProposalState, RAY, SECONDS_PER_YEAR, SelfdestructCheckState, SoltypeType, Umbrella_IRewardsController_ABI, Umbrella_IRewardsDistributor_ABI, VerificationStatus, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, addAssetPrice, addAssetSymbol, alchemyNetworkMap, alchemySupportedChainIds, assetIndexesToAsset, assetToBase, bitmapToIndexes, blockscoutExplorers, bytes32ToAddress, calculateAccruedRewards, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, cidV0ToBs58, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, diffFoundryStorageLayout, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, foundry_format, foundry_getStandardJsonInput, foundry_getStorageLayout, genericIndexer, getAlchemyRPC, getBits, getBytesValue, getClient, getCompleteReserveConfiguration, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getDynamicArraySlot, getEmissionPerSecondScaled, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getMdContractName, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getObjectDiff, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSolidityStorageSlotAddress, getSolidityStorageSlotBytes, getSolidityStorageSlotUint, getSourceCode, getTenderlyRpc, getVerificationStatus, hash, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseFrontmatterMd, parseLogs, prettifyNumber, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderMarkdownStateDiffReport, renderTenderlyReport, routescanExplorers, selfDestructStatusToString, setBits, snapshotClient, tenderlyExplorerMap, tenderlyNetworkMap, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_logsToAbiLogs, tenderly_pingExplorer, tenderly_sim, tenderly_simVnet, toAddressLink, toBinaryString, toTxLink, transformTenderlyStateDiff, validateAip, verificationStatusToString, wadDiv, wadToRay };
|
|
39053
|
+
export { Aip, BALANCER_VAULT_V2, BALANCER_VAULT_V3, ChainId, ChainList, EVENT_DB, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAccessControl_ABI, IAggregatorInterface_ABI, ICLRatePriceCapAdapter_ABI, ICLSynchronicityPriceAdapterBaseToPeg_ABI, ICLSynchronicityPriceAdapterPegToBase_ABI, ICLSynchronicityPriceAdapter_ABI, ICollector_ABI, IDefaultInterestRateStrategyV2_ABI, IERC1967_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IGovernance_ABI, IOwnable_ABI, IPausableUpgradeable_ABI, IPayloadsController_ABI, IPendlePriceCapAdapter_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IPriceCapAdapterBase_ABI, IPriceCapAdapterStable_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, ISafe_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IUmbrellaStakeToken_ABI, IUmbrella_ABI, IWithGuardian_ABI, IWrappedTokenGatewayV3_ABI, IncentivizedERC20_ABI, KNOWN_ROLES, LTV_PRECISION, MORPHO, PayloadState, ProposalState, RAY, SECONDS_PER_YEAR, SelfdestructCheckState, SoltypeType, UNISWAP_V4_MANAGER, Umbrella_IRewardsController_ABI, Umbrella_IRewardsDistributor_ABI, VELORA_PORTIKUS, VerificationStatus, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, addAssetPrice, addAssetSymbol, alchemyNetworkMap, alchemySupportedChainIds, assetIndexesToAsset, assetToBase, bitmapToIndexes, blockscoutExplorers, bytes32ToAddress, calculateAccruedRewards, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, cidV0ToBs58, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, diffFoundryStorageLayout, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, foundry_format, foundry_getStandardJsonInput, foundry_getStorageLayout, genericIndexer, getAlchemyRPC, getBits, getBytesValue, getClient, getClosestBlock, getCompleteReserveConfiguration, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getDynamicArraySlot, getEmissionPerSecondScaled, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getMdContractName, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getObjectDiff, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSolidityStorageSlotAddress, getSolidityStorageSlotBytes, getSolidityStorageSlotUint, getSourceCode, getTenderlyRpc, getVerificationStatus, hash, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseFrontmatterMd, parseLogs, prettifyNumber, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderMarkdownStateDiffReport, renderTenderlyReport, routescanExplorers, selfDestructStatusToString, setBits, snapshotClient, tenderlyExplorerMap, tenderlyNetworkMap, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_logsToAbiLogs, tenderly_pingExplorer, tenderly_sim, tenderly_simVnet, toAddressLink, toBinaryString, toTxLink, transformTenderlyStateDiff, validateAip, verificationStatusToString, wadDiv, wadToRay };
|
|
39616
39054
|
//# sourceMappingURL=index.mjs.map
|