@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/browser.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { concat, createPublicClient, createTestClient, createWalletClient, decodeAbiParameters, decodeEventLog, decodeFunctionData, encodeAbiParameters, encodePacked, formatUnits, fromHex, getAddress, getContract, http, keccak256, pad, parseAbiParameters, publicActions, slice, toBytes, toHex, trim, zeroAddress, zeroHash } from "viem";
|
|
2
2
|
import { getBlock, getBlockNumber, getBytecode, getCode, getLogs, getStorageAt, getTransactionCount, readContract } from "viem/actions";
|
|
3
3
|
import yaml from "js-yaml";
|
|
4
|
-
import { createPatch, createTwoFilesPatch, diffChars } from "diff";
|
|
5
4
|
import { arbitrum, arbitrumSepolia, avalanche, avalancheFuji, base, baseSepolia, bob, bsc, celo, fantom, fantomTestnet, gnosis, harmonyOne, ink, linea, mainnet, mantle, megaeth, metis, optimism, optimismSepolia, plasma, polygon, polygonAmoy, polygonZkEvm, scroll, scrollSepolia, sepolia, soneium, sonic, xLayer, zksync } from "viem/chains";
|
|
5
|
+
import { createPatch, createTwoFilesPatch, diffChars } from "diff";
|
|
6
6
|
import { EventSource } from "eventsource";
|
|
7
7
|
import { format } from "prettier/standalone";
|
|
8
8
|
import solidityPlugin from "prettier-plugin-solidity/standalone";
|
|
@@ -18302,6 +18302,133 @@ function calculateAccruedRewards({ accrued, userIndex, reserveIndex, userBalance
|
|
|
18302
18302
|
return accrued + userBalance * (currentIndex - userIndex) / SCALING_FACTOR;
|
|
18303
18303
|
}
|
|
18304
18304
|
|
|
18305
|
+
//#endregion
|
|
18306
|
+
//#region src/ecosystem/chainIds.ts
|
|
18307
|
+
const ChainId = {
|
|
18308
|
+
celo: celo.id,
|
|
18309
|
+
mainnet: mainnet.id,
|
|
18310
|
+
polygon: polygon.id,
|
|
18311
|
+
polygon_amoy: polygonAmoy.id,
|
|
18312
|
+
avalanche: avalanche.id,
|
|
18313
|
+
avalanche_fuji: avalancheFuji.id,
|
|
18314
|
+
arbitrum: arbitrum.id,
|
|
18315
|
+
arbitrum_sepolia: arbitrumSepolia.id,
|
|
18316
|
+
fantom: fantom.id,
|
|
18317
|
+
fantom_testnet: fantomTestnet.id,
|
|
18318
|
+
optimism: optimism.id,
|
|
18319
|
+
optimism_sepolia: optimismSepolia.id,
|
|
18320
|
+
harmony: harmonyOne.id,
|
|
18321
|
+
sepolia: sepolia.id,
|
|
18322
|
+
scroll: scroll.id,
|
|
18323
|
+
scroll_sepolia: scrollSepolia.id,
|
|
18324
|
+
sonic: sonic.id,
|
|
18325
|
+
mantle: mantle.id,
|
|
18326
|
+
metis: metis.id,
|
|
18327
|
+
base: base.id,
|
|
18328
|
+
base_sepolia: baseSepolia.id,
|
|
18329
|
+
bnb: bsc.id,
|
|
18330
|
+
gnosis: gnosis.id,
|
|
18331
|
+
zkEVM: polygonZkEvm.id,
|
|
18332
|
+
zksync: zksync.id,
|
|
18333
|
+
linea: linea.id,
|
|
18334
|
+
ink: ink.id,
|
|
18335
|
+
soneium: soneium.id,
|
|
18336
|
+
bob: bob.id,
|
|
18337
|
+
plasma: plasma.id,
|
|
18338
|
+
xLayer: xLayer.id,
|
|
18339
|
+
megaeth: megaeth.id
|
|
18340
|
+
};
|
|
18341
|
+
const ChainList = {
|
|
18342
|
+
[ChainId.mainnet]: mainnet,
|
|
18343
|
+
[ChainId.polygon]: polygon,
|
|
18344
|
+
[ChainId.polygon_amoy]: polygonAmoy,
|
|
18345
|
+
[ChainId.avalanche]: {
|
|
18346
|
+
...avalanche,
|
|
18347
|
+
blockExplorers: { default: {
|
|
18348
|
+
url: "https://snowscan.xyz",
|
|
18349
|
+
name: "Snowscan"
|
|
18350
|
+
} }
|
|
18351
|
+
},
|
|
18352
|
+
[ChainId.avalanche_fuji]: {
|
|
18353
|
+
...avalancheFuji,
|
|
18354
|
+
blockExplorers: { default: {
|
|
18355
|
+
url: "https://testnet.snowscan.xyz",
|
|
18356
|
+
name: "Snowscan Fuji"
|
|
18357
|
+
} }
|
|
18358
|
+
},
|
|
18359
|
+
[ChainId.arbitrum]: arbitrum,
|
|
18360
|
+
[ChainId.arbitrum_sepolia]: arbitrumSepolia,
|
|
18361
|
+
[ChainId.fantom]: fantom,
|
|
18362
|
+
[ChainId.fantom_testnet]: fantomTestnet,
|
|
18363
|
+
[ChainId.optimism]: optimism,
|
|
18364
|
+
[ChainId.optimism_sepolia]: optimismSepolia,
|
|
18365
|
+
[ChainId.harmony]: harmonyOne,
|
|
18366
|
+
[ChainId.sepolia]: sepolia,
|
|
18367
|
+
[ChainId.scroll]: scroll,
|
|
18368
|
+
[ChainId.scroll_sepolia]: scrollSepolia,
|
|
18369
|
+
[ChainId.sonic]: sonic,
|
|
18370
|
+
[ChainId.mantle]: mantle,
|
|
18371
|
+
[ChainId.metis]: metis,
|
|
18372
|
+
[ChainId.base]: base,
|
|
18373
|
+
[ChainId.base_sepolia]: baseSepolia,
|
|
18374
|
+
[ChainId.bnb]: bsc,
|
|
18375
|
+
[ChainId.gnosis]: gnosis,
|
|
18376
|
+
[ChainId.zkEVM]: polygonZkEvm,
|
|
18377
|
+
[ChainId.celo]: celo,
|
|
18378
|
+
[ChainId.zksync]: zksync,
|
|
18379
|
+
[ChainId.linea]: linea,
|
|
18380
|
+
[ChainId.ink]: ink,
|
|
18381
|
+
[ChainId.soneium]: soneium,
|
|
18382
|
+
[ChainId.bob]: bob,
|
|
18383
|
+
[ChainId.plasma]: plasma,
|
|
18384
|
+
[ChainId.xLayer]: xLayer,
|
|
18385
|
+
[ChainId.megaeth]: megaeth
|
|
18386
|
+
};
|
|
18387
|
+
|
|
18388
|
+
//#endregion
|
|
18389
|
+
//#region src/ecosystem/addresses.ts
|
|
18390
|
+
const VELORA_PORTIKUS = {
|
|
18391
|
+
[ChainId.mainnet]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18392
|
+
[ChainId.base]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18393
|
+
[ChainId.optimism]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18394
|
+
[ChainId.arbitrum]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18395
|
+
[ChainId.polygon]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18396
|
+
[ChainId.bnb]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D"
|
|
18397
|
+
};
|
|
18398
|
+
/**
|
|
18399
|
+
* The following is a list of venues that offer free flashloans
|
|
18400
|
+
*/
|
|
18401
|
+
const BALANCER_VAULT_V2 = "0xBA12222222228d8Ba445958a75a0704d566BF2C8";
|
|
18402
|
+
const BALANCER_VAULT_V3 = "0xbA1333333333a1BA1108E8412f11850A5C319bA9";
|
|
18403
|
+
const UNISWAP_V4_MANAGER = {
|
|
18404
|
+
[ChainId.mainnet]: "0x000000000004444c5dc75cB358380D2e3dE08A90",
|
|
18405
|
+
[ChainId.base]: "0x498581ff718922c3f8e6a244956af099b2652b2b",
|
|
18406
|
+
[ChainId.optimism]: "0x9a13f98cb987694c9f086b1f5eb990eea8264ec3",
|
|
18407
|
+
[ChainId.arbitrum]: "0x360e68faccca8ca495c1b759fd9eee466db9fb32",
|
|
18408
|
+
[ChainId.polygon]: "0x67366782805870060151383f4bbff9dab53e5cd6",
|
|
18409
|
+
[ChainId.ink]: "0x360e68faccca8ca495c1b759fd9eee466db9fb32",
|
|
18410
|
+
[ChainId.soneium]: "0x360e68faccca8ca495c1b759fd9eee466db9fb32",
|
|
18411
|
+
[ChainId.avalanche]: "0x06380c0e0912312b5150364b9dc4542ba0dbbc85",
|
|
18412
|
+
[ChainId.bnb]: "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df",
|
|
18413
|
+
[ChainId.celo]: "0x288dc841A52FCA2707c6947B3A777c5E56cd87BC",
|
|
18414
|
+
[ChainId.megaeth]: "0xacb7e78fa05d562e0a5d3089ec896d57d057d38e"
|
|
18415
|
+
};
|
|
18416
|
+
const MORPHO = {
|
|
18417
|
+
[ChainId.mainnet]: "0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb",
|
|
18418
|
+
[ChainId.arbitrum]: "0x6c247b1F6182318877311737BaC0844bAa518F5e",
|
|
18419
|
+
[ChainId.avalanche]: "0x895383274303AA19fe978AFB4Ac55C7f094f982C",
|
|
18420
|
+
[ChainId.base]: "0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb",
|
|
18421
|
+
[ChainId.bnb]: "0x01b0Bd309AA75547f7a37Ad7B1219A898E67a83a",
|
|
18422
|
+
[ChainId.celo]: "0xd24ECdD8C1e0E57a4E26B1a7bbeAa3e95466A569",
|
|
18423
|
+
[ChainId.gnosis]: "0xB74D4dd451E250bC325AFF0556D717e4E2351c66",
|
|
18424
|
+
[ChainId.ink]: "0x857f3EefE8cbda3Bc49367C996cd664A880d3042",
|
|
18425
|
+
[ChainId.linea]: "0x6B0D716aC0A45536172308e08fC2C40387262c9F",
|
|
18426
|
+
[ChainId.plasma]: "0x2fF74A46536f5c67ef5A42FD5B4e2Ed8A2cee249",
|
|
18427
|
+
[ChainId.scroll]: "0x2d012EdbAdc37eDc2BC62791B666f9193FDF5a55",
|
|
18428
|
+
[ChainId.soneium]: "0xE75Fc5eA6e74B824954349Ca351eb4e671ADA53a",
|
|
18429
|
+
[ChainId.sonic]: "0xd6c916eB7542D0Ad3f18AEd0FCBD50C582cfa95f"
|
|
18430
|
+
};
|
|
18431
|
+
|
|
18305
18432
|
//#endregion
|
|
18306
18433
|
//#region src/ecosystem/generated/etherscanExplorers.ts
|
|
18307
18434
|
const etherscanExplorers = {
|
|
@@ -18445,7 +18572,7 @@ const etherscanExplorers = {
|
|
|
18445
18572
|
api: "https://api.etherscan.io/v2/api",
|
|
18446
18573
|
explorer: "https://opbnb-testnet.bscscan.com/"
|
|
18447
18574
|
},
|
|
18448
|
-
|
|
18575
|
+
6343: {
|
|
18449
18576
|
api: "https://api.etherscan.io/v2/api",
|
|
18450
18577
|
explorer: "https://testnet-mega.etherscan.io/"
|
|
18451
18578
|
},
|
|
@@ -18485,10 +18612,6 @@ const etherscanExplorers = {
|
|
|
18485
18612
|
api: "https://api.etherscan.io/v2/api",
|
|
18486
18613
|
explorer: "https://arbiscan.io/"
|
|
18487
18614
|
},
|
|
18488
|
-
42170: {
|
|
18489
|
-
api: "https://api.etherscan.io/v2/api",
|
|
18490
|
-
explorer: "https://nova.arbiscan.io/"
|
|
18491
|
-
},
|
|
18492
18615
|
42220: {
|
|
18493
18616
|
api: "https://api.etherscan.io/v2/api",
|
|
18494
18617
|
explorer: "https://celoscan.io/"
|
|
@@ -18634,10 +18757,6 @@ const routescanExplorers = {
|
|
|
18634
18757
|
api: "https://api.routescan.io/v2/network/mainnet/evm/252/etherscan",
|
|
18635
18758
|
explorer: "252.routescan.io"
|
|
18636
18759
|
},
|
|
18637
|
-
254: {
|
|
18638
|
-
api: "https://api.routescan.io/v2/network/mainnet/evm/254/etherscan",
|
|
18639
|
-
explorer: "254.routescan.io"
|
|
18640
|
-
},
|
|
18641
18760
|
288: {
|
|
18642
18761
|
api: "https://api.routescan.io/v2/network/mainnet/evm/288/etherscan",
|
|
18643
18762
|
explorer: "288.routescan.io"
|
|
@@ -19140,89 +19259,6 @@ async function getXLayerSourceCode(params) {
|
|
|
19140
19259
|
};
|
|
19141
19260
|
}
|
|
19142
19261
|
|
|
19143
|
-
//#endregion
|
|
19144
|
-
//#region src/ecosystem/chainIds.ts
|
|
19145
|
-
const ChainId = {
|
|
19146
|
-
celo: celo.id,
|
|
19147
|
-
mainnet: mainnet.id,
|
|
19148
|
-
polygon: polygon.id,
|
|
19149
|
-
polygon_amoy: polygonAmoy.id,
|
|
19150
|
-
avalanche: avalanche.id,
|
|
19151
|
-
avalanche_fuji: avalancheFuji.id,
|
|
19152
|
-
arbitrum: arbitrum.id,
|
|
19153
|
-
arbitrum_sepolia: arbitrumSepolia.id,
|
|
19154
|
-
fantom: fantom.id,
|
|
19155
|
-
fantom_testnet: fantomTestnet.id,
|
|
19156
|
-
optimism: optimism.id,
|
|
19157
|
-
optimism_sepolia: optimismSepolia.id,
|
|
19158
|
-
harmony: harmonyOne.id,
|
|
19159
|
-
sepolia: sepolia.id,
|
|
19160
|
-
scroll: scroll.id,
|
|
19161
|
-
scroll_sepolia: scrollSepolia.id,
|
|
19162
|
-
sonic: sonic.id,
|
|
19163
|
-
mantle: mantle.id,
|
|
19164
|
-
metis: metis.id,
|
|
19165
|
-
base: base.id,
|
|
19166
|
-
base_sepolia: baseSepolia.id,
|
|
19167
|
-
bnb: bsc.id,
|
|
19168
|
-
gnosis: gnosis.id,
|
|
19169
|
-
zkEVM: polygonZkEvm.id,
|
|
19170
|
-
zksync: zksync.id,
|
|
19171
|
-
linea: linea.id,
|
|
19172
|
-
ink: ink.id,
|
|
19173
|
-
soneium: soneium.id,
|
|
19174
|
-
bob: bob.id,
|
|
19175
|
-
plasma: plasma.id,
|
|
19176
|
-
xLayer: xLayer.id,
|
|
19177
|
-
megaeth: megaeth.id
|
|
19178
|
-
};
|
|
19179
|
-
const ChainList = {
|
|
19180
|
-
[ChainId.mainnet]: mainnet,
|
|
19181
|
-
[ChainId.polygon]: polygon,
|
|
19182
|
-
[ChainId.polygon_amoy]: polygonAmoy,
|
|
19183
|
-
[ChainId.avalanche]: {
|
|
19184
|
-
...avalanche,
|
|
19185
|
-
blockExplorers: { default: {
|
|
19186
|
-
url: "https://snowscan.xyz",
|
|
19187
|
-
name: "Snowscan"
|
|
19188
|
-
} }
|
|
19189
|
-
},
|
|
19190
|
-
[ChainId.avalanche_fuji]: {
|
|
19191
|
-
...avalancheFuji,
|
|
19192
|
-
blockExplorers: { default: {
|
|
19193
|
-
url: "https://testnet.snowscan.xyz",
|
|
19194
|
-
name: "Snowscan Fuji"
|
|
19195
|
-
} }
|
|
19196
|
-
},
|
|
19197
|
-
[ChainId.arbitrum]: arbitrum,
|
|
19198
|
-
[ChainId.arbitrum_sepolia]: arbitrumSepolia,
|
|
19199
|
-
[ChainId.fantom]: fantom,
|
|
19200
|
-
[ChainId.fantom_testnet]: fantomTestnet,
|
|
19201
|
-
[ChainId.optimism]: optimism,
|
|
19202
|
-
[ChainId.optimism_sepolia]: optimismSepolia,
|
|
19203
|
-
[ChainId.harmony]: harmonyOne,
|
|
19204
|
-
[ChainId.sepolia]: sepolia,
|
|
19205
|
-
[ChainId.scroll]: scroll,
|
|
19206
|
-
[ChainId.scroll_sepolia]: scrollSepolia,
|
|
19207
|
-
[ChainId.sonic]: sonic,
|
|
19208
|
-
[ChainId.mantle]: mantle,
|
|
19209
|
-
[ChainId.metis]: metis,
|
|
19210
|
-
[ChainId.base]: base,
|
|
19211
|
-
[ChainId.base_sepolia]: baseSepolia,
|
|
19212
|
-
[ChainId.bnb]: bsc,
|
|
19213
|
-
[ChainId.gnosis]: gnosis,
|
|
19214
|
-
[ChainId.zkEVM]: polygonZkEvm,
|
|
19215
|
-
[ChainId.celo]: celo,
|
|
19216
|
-
[ChainId.zksync]: zksync,
|
|
19217
|
-
[ChainId.linea]: linea,
|
|
19218
|
-
[ChainId.ink]: ink,
|
|
19219
|
-
[ChainId.soneium]: soneium,
|
|
19220
|
-
[ChainId.bob]: bob,
|
|
19221
|
-
[ChainId.plasma]: plasma,
|
|
19222
|
-
[ChainId.xLayer]: xLayer,
|
|
19223
|
-
[ChainId.megaeth]: megaeth
|
|
19224
|
-
};
|
|
19225
|
-
|
|
19226
19262
|
//#endregion
|
|
19227
19263
|
//#region src/ecosystem/tenderly.ts
|
|
19228
19264
|
/**
|
|
@@ -19477,6 +19513,7 @@ const alchemyNetworkMap = {
|
|
|
19477
19513
|
1328: "sei-testnet",
|
|
19478
19514
|
1329: "sei-mainnet",
|
|
19479
19515
|
1514: "story-mainnet",
|
|
19516
|
+
1672: "pharos-mainnet",
|
|
19480
19517
|
1868: "soneium-mainnet",
|
|
19481
19518
|
1946: "soneium-minato",
|
|
19482
19519
|
2020: "ronin-mainnet",
|
|
@@ -19508,7 +19545,6 @@ const alchemyNetworkMap = {
|
|
|
19508
19545
|
9746: "plasma-testnet",
|
|
19509
19546
|
10143: "monad-testnet",
|
|
19510
19547
|
10200: "gnosis-chiado",
|
|
19511
|
-
10218: "tea-sepolia",
|
|
19512
19548
|
11011: "shape-sepolia",
|
|
19513
19549
|
11124: "abstract-testnet",
|
|
19514
19550
|
14601: "sonic-testnet",
|
|
@@ -19525,6 +19561,7 @@ const alchemyNetworkMap = {
|
|
|
19525
19561
|
42431: "tempo-moderato",
|
|
19526
19562
|
43113: "avax-fuji",
|
|
19527
19563
|
43114: "avax-mainnet",
|
|
19564
|
+
46630: "robinhood-testnet",
|
|
19528
19565
|
53302: "superseed-sepolia",
|
|
19529
19566
|
57054: "sonic-blaze",
|
|
19530
19567
|
57073: "ink-mainnet",
|
|
@@ -19546,6 +19583,7 @@ const alchemyNetworkMap = {
|
|
|
19546
19583
|
534352: "scroll-mainnet",
|
|
19547
19584
|
560048: "eth-hoodi",
|
|
19548
19585
|
685685: "gensyn-testnet",
|
|
19586
|
+
688689: "pharos-atlantic",
|
|
19549
19587
|
763373: "ink-sepolia",
|
|
19550
19588
|
808813: "bob-sepolia",
|
|
19551
19589
|
5042002: "arc-testnet",
|
|
@@ -19578,8 +19616,6 @@ const quicknodeNetworkMap = {
|
|
|
19578
19616
|
130: "unichain-mainnet",
|
|
19579
19617
|
137: "matic",
|
|
19580
19618
|
146: "sonic-mainnet",
|
|
19581
|
-
164: "omni-omega",
|
|
19582
|
-
166: "omni-mainnet",
|
|
19583
19619
|
196: "xlayer-mainnet",
|
|
19584
19620
|
250: "fantom",
|
|
19585
19621
|
252: "fraxtal-mainnet",
|
|
@@ -19599,12 +19635,8 @@ const quicknodeNetworkMap = {
|
|
|
19599
19635
|
1328: "sei-atlantic",
|
|
19600
19636
|
1329: "sei-pacific",
|
|
19601
19637
|
1480: "vana-mainnet",
|
|
19602
|
-
1513: "story-testnet",
|
|
19603
|
-
1516: "story-odyssey",
|
|
19604
19638
|
1993: "b3-sepolia",
|
|
19605
|
-
2442: "zkevm-cardona",
|
|
19606
19639
|
2741: "abstract-mainnet",
|
|
19607
|
-
2810: "morph-holesky",
|
|
19608
19640
|
2818: "morph-mainnet",
|
|
19609
19641
|
3338: "peaq-mainnet",
|
|
19610
19642
|
4801: "worldchain-sepolia",
|
|
@@ -19620,8 +19652,6 @@ const quicknodeNetworkMap = {
|
|
|
19620
19652
|
13371: "imx-mainnet",
|
|
19621
19653
|
13473: "imx-testnet",
|
|
19622
19654
|
14800: "vana-moksha",
|
|
19623
|
-
16600: "0g-newton",
|
|
19624
|
-
17e3: "ethereum-holesky",
|
|
19625
19655
|
34443: "mode-mainnet",
|
|
19626
19656
|
42161: "arbitrum-mainnet",
|
|
19627
19657
|
42170: "nova-mainnet",
|
|
@@ -19632,12 +19662,9 @@ const quicknodeNetworkMap = {
|
|
|
19632
19662
|
59144: "linea-mainnet",
|
|
19633
19663
|
80002: "matic-amoy",
|
|
19634
19664
|
80069: "bera-bepolia",
|
|
19635
|
-
80084: "bera-bartio",
|
|
19636
|
-
80085: "bera-artio",
|
|
19637
19665
|
80094: "bera-mainnet",
|
|
19638
19666
|
81457: "blast-mainnet",
|
|
19639
19667
|
84532: "base-sepolia",
|
|
19640
|
-
421613: "arbitrum-goerli",
|
|
19641
19668
|
421614: "arbitrum-sepolia",
|
|
19642
19669
|
534351: "scroll-testnet",
|
|
19643
19670
|
534352: "scroll-mainnet",
|
|
@@ -19685,14 +19712,13 @@ const tenderlyNetworkMap = {
|
|
|
19685
19712
|
1924: "swellchain-sepolia",
|
|
19686
19713
|
1946: "soneium-minato",
|
|
19687
19714
|
2020: "ronin",
|
|
19688
|
-
2021: "ronin-testnet",
|
|
19689
19715
|
2201: "stable-testnet",
|
|
19690
19716
|
2523: "fraxtal-hoodi",
|
|
19691
19717
|
4202: "lisk-sepolia",
|
|
19718
|
+
4326: "megaeth",
|
|
19692
19719
|
4801: "worldchain-sepolia",
|
|
19693
19720
|
5e3: "mantle",
|
|
19694
19721
|
5003: "mantle-sepolia",
|
|
19695
|
-
8008: "polynomial",
|
|
19696
19722
|
8453: "base",
|
|
19697
19723
|
9069: "af-nexus-mainnet",
|
|
19698
19724
|
9070: "af-nexus-testnet",
|
|
@@ -19724,7 +19750,6 @@ const tenderlyNetworkMap = {
|
|
|
19724
19750
|
59902: "metis-sepolia",
|
|
19725
19751
|
60808: "bob",
|
|
19726
19752
|
80002: "polygon-amoy",
|
|
19727
|
-
80008: "polynomial-sepolia",
|
|
19728
19753
|
80069: "bepolia",
|
|
19729
19754
|
80094: "berachain",
|
|
19730
19755
|
81457: "blast",
|
|
@@ -19741,8 +19766,7 @@ const tenderlyNetworkMap = {
|
|
|
19741
19766
|
808813: "bob-testnet",
|
|
19742
19767
|
11142220: "celo-sepolia",
|
|
19743
19768
|
11155111: "sepolia",
|
|
19744
|
-
11155420: "optimism-sepolia"
|
|
19745
|
-
531050104: "sophon-testnet"
|
|
19769
|
+
11155420: "optimism-sepolia"
|
|
19746
19770
|
};
|
|
19747
19771
|
const tenderlyExplorerMap = {
|
|
19748
19772
|
1: "mainnet",
|
|
@@ -19792,12 +19816,12 @@ const tenderlyExplorerMap = {
|
|
|
19792
19816
|
2523: "fraxtal-hoodi",
|
|
19793
19817
|
3338: "peaq",
|
|
19794
19818
|
4202: "lisk-sepolia",
|
|
19819
|
+
4326: "megaeth",
|
|
19795
19820
|
4801: "worldchain-sepolia",
|
|
19796
19821
|
5e3: "mantle",
|
|
19797
19822
|
5003: "mantle-sepolia",
|
|
19798
19823
|
7e3: "zetachain",
|
|
19799
19824
|
7001: "zetachain-testnet",
|
|
19800
|
-
8008: "polynomial-mainnet",
|
|
19801
19825
|
8453: "base",
|
|
19802
19826
|
9069: "af-nexus-mainnet",
|
|
19803
19827
|
9070: "af-nexus-testnet",
|
|
@@ -19831,7 +19855,6 @@ const tenderlyExplorerMap = {
|
|
|
19831
19855
|
59902: "metis-sepolia",
|
|
19832
19856
|
60808: "bob",
|
|
19833
19857
|
80002: "polygon-amoy",
|
|
19834
|
-
80008: "polynomial-sepolia",
|
|
19835
19858
|
80069: "bepolia",
|
|
19836
19859
|
80094: "berachain",
|
|
19837
19860
|
81457: "blast",
|
|
@@ -19840,6 +19863,7 @@ const tenderlyExplorerMap = {
|
|
|
19840
19863
|
98867: "plume-testnet",
|
|
19841
19864
|
167e3: "taiko-mainnet",
|
|
19842
19865
|
167013: "taiko-hoodi",
|
|
19866
|
+
202601: "ronin-testnet",
|
|
19843
19867
|
421614: "arbitrum-sepolia",
|
|
19844
19868
|
534351: "scroll-sepolia",
|
|
19845
19869
|
534352: "scroll-mainnet",
|
|
@@ -19852,8 +19876,7 @@ const tenderlyExplorerMap = {
|
|
|
19852
19876
|
11142220: "celo-sepolia",
|
|
19853
19877
|
11155111: "sepolia",
|
|
19854
19878
|
11155420: "optimistic-sepolia",
|
|
19855
|
-
13374202: "ethereal-testnet"
|
|
19856
|
-
531050104: "sophon-testnet"
|
|
19879
|
+
13374202: "ethereal-testnet"
|
|
19857
19880
|
};
|
|
19858
19881
|
|
|
19859
19882
|
//#endregion
|
|
@@ -19922,6 +19945,7 @@ function getQuicknodeRpc(chainId, options) {
|
|
|
19922
19945
|
if (!options.quicknodeEndpointName) throw new Error(`ChainId '${chainId}' is supported by Quicknode, but no 'quicknodeEndpointName' was provided.`);
|
|
19923
19946
|
if (!options.quicknodeToken) throw new Error(`ChainId '${chainId}' is supported by Quicknode, but no 'quicknodeToken' was provided.`);
|
|
19924
19947
|
if (chainId === ChainId.mainnet) return `https://${options.quicknodeEndpointName}.quiknode.pro/${options.quicknodeToken}`;
|
|
19948
|
+
if (chainId === ChainId.avalanche) return `https://${options.quicknodeEndpointName}.${quickNodeSlug}.quiknode.pro/${options.quicknodeToken}/ext/bc/C/rpc/`;
|
|
19925
19949
|
return `https://${options.quicknodeEndpointName}.${quickNodeSlug}.quiknode.pro/${options.quicknodeToken}`;
|
|
19926
19950
|
}
|
|
19927
19951
|
/**
|
|
@@ -20084,6 +20108,32 @@ async function getContractDeploymentBlock({ client, contractAddress, fromBlock,
|
|
|
20084
20108
|
}
|
|
20085
20109
|
throw new Error("Could not find contract deployment block");
|
|
20086
20110
|
}
|
|
20111
|
+
/**
|
|
20112
|
+
* Finds the closest block for a given timestamp using binary search.
|
|
20113
|
+
* Returns the last block whose timestamp is <= the target timestamp.
|
|
20114
|
+
* @param client a viem Client
|
|
20115
|
+
* @param timestamp the target unix timestamp
|
|
20116
|
+
* @returns the block closest to (but not after) the given timestamp
|
|
20117
|
+
*/
|
|
20118
|
+
async function getClosestBlock({ client, timestamp }) {
|
|
20119
|
+
const latestBlock = await getBlock(client, { blockTag: "latest" });
|
|
20120
|
+
if (timestamp >= latestBlock.timestamp) return latestBlock;
|
|
20121
|
+
let low = 0n;
|
|
20122
|
+
let high = latestBlock.number;
|
|
20123
|
+
const blockTime = client.chain?.blockTime;
|
|
20124
|
+
if (blockTime) {
|
|
20125
|
+
const estimatedBlocksBack = (latestBlock.timestamp - timestamp) / (BigInt(blockTime) / 1000n);
|
|
20126
|
+
const estimatedBlock = latestBlock.number > estimatedBlocksBack ? latestBlock.number - estimatedBlocksBack : 0n;
|
|
20127
|
+
if ((await getBlock(client, { blockNumber: estimatedBlock })).timestamp <= timestamp) low = estimatedBlock;
|
|
20128
|
+
else high = estimatedBlock;
|
|
20129
|
+
}
|
|
20130
|
+
while (low < high) {
|
|
20131
|
+
const mid = low + high + 1n >> 1n;
|
|
20132
|
+
if ((await getBlock(client, { blockNumber: mid })).timestamp <= timestamp) low = mid;
|
|
20133
|
+
else high = mid - 1n;
|
|
20134
|
+
}
|
|
20135
|
+
return getBlock(client, { blockNumber: low });
|
|
20136
|
+
}
|
|
20087
20137
|
|
|
20088
20138
|
//#endregion
|
|
20089
20139
|
//#region src/ecosystem/flashbots.ts
|
|
@@ -20387,10 +20437,6 @@ const blockscoutExplorers = {
|
|
|
20387
20437
|
api: "https://bob-sepolia.explorer.gobob.xyz/api",
|
|
20388
20438
|
explorer: "https://bob-sepolia.explorer.gobob.xyz/"
|
|
20389
20439
|
},
|
|
20390
|
-
113: {
|
|
20391
|
-
api: "https://coston2-explorer.flare.network/api",
|
|
20392
|
-
explorer: "https://coston2-explorer.flare.network/"
|
|
20393
|
-
},
|
|
20394
20440
|
114: {
|
|
20395
20441
|
api: "https://coston2-explorer.flare.network/api",
|
|
20396
20442
|
explorer: "https://coston2-explorer.flare.network/"
|
|
@@ -21024,8 +21070,8 @@ const blockscoutExplorers = {
|
|
|
21024
21070
|
explorer: "https://testnet.bitciexplorer.com"
|
|
21025
21071
|
},
|
|
21026
21072
|
1919: {
|
|
21027
|
-
api: "https://
|
|
21028
|
-
explorer: "https://
|
|
21073
|
+
api: "https://turkscan.com/api",
|
|
21074
|
+
explorer: "https://turkscan.com"
|
|
21029
21075
|
},
|
|
21030
21076
|
1923: {
|
|
21031
21077
|
api: "https://explorer.swellnetwork.io/api",
|
|
@@ -21419,10 +21465,6 @@ const blockscoutExplorers = {
|
|
|
21419
21465
|
api: "https://explore.steamexchange.io/api",
|
|
21420
21466
|
explorer: "https://explore.steamexchange.io/"
|
|
21421
21467
|
},
|
|
21422
|
-
6342: {
|
|
21423
|
-
api: "https://megaeth-testnet.blockscout.com/api",
|
|
21424
|
-
explorer: "https://megaeth-testnet.blockscout.com/"
|
|
21425
|
-
},
|
|
21426
21468
|
6343: {
|
|
21427
21469
|
api: "https://megaeth-testnet-v2.blockscout.com/api",
|
|
21428
21470
|
explorer: "https://megaeth-testnet-v2.blockscout.com/"
|
|
@@ -22531,10 +22573,6 @@ const blockscoutExplorers = {
|
|
|
22531
22573
|
api: "https://explorer.saakuru.network/api",
|
|
22532
22574
|
explorer: "https://explorer.saakuru.network/"
|
|
22533
22575
|
},
|
|
22534
|
-
7777777: {
|
|
22535
|
-
api: "https://explorer.zora.energy/api",
|
|
22536
|
-
explorer: "https://explorer.zora.energy/"
|
|
22537
|
-
},
|
|
22538
22576
|
7890785: {
|
|
22539
22577
|
api: "https://blockscout.xga.com/api",
|
|
22540
22578
|
explorer: "https://blockscout.xga.com/"
|
|
@@ -22785,6 +22823,12 @@ const blockscoutExplorers = {
|
|
|
22785
22823
|
//#region src/ecosystem/generated/chainlinkFeeds.ts
|
|
22786
22824
|
const chainlinkFeeds = {
|
|
22787
22825
|
"1": [
|
|
22826
|
+
{
|
|
22827
|
+
"contractAddress": "0x009b8b4D648cFCC813ecB70db0f31ce305DD4B32",
|
|
22828
|
+
"proxyAddress": "0x0C2e4Df738e99e8db80012f5bb2a303f3f48Ca74",
|
|
22829
|
+
"decimals": 6,
|
|
22830
|
+
"name": "JTRSY NAV"
|
|
22831
|
+
},
|
|
22788
22832
|
{
|
|
22789
22833
|
"contractAddress": "0x00f0eFB3d9dBe7fE91fee44aE09DAe5DFA65c382",
|
|
22790
22834
|
"proxyAddress": "0x75A0d3264a949C2C920d7F25Df174af1FaF73399",
|
|
@@ -22947,12 +22991,6 @@ const chainlinkFeeds = {
|
|
|
22947
22991
|
"decimals": 8,
|
|
22948
22992
|
"name": "C3M / EUR"
|
|
22949
22993
|
},
|
|
22950
|
-
{
|
|
22951
|
-
"contractAddress": "0x1E37adeFCfF644B69E717ce536D2dE407879D809",
|
|
22952
|
-
"proxyAddress": "0x3b41D5571468904D4e53b6a8d93A6BaC43f02dC9",
|
|
22953
|
-
"decimals": 18,
|
|
22954
|
-
"name": "PERP / ETH"
|
|
22955
|
-
},
|
|
22956
22994
|
{
|
|
22957
22995
|
"contractAddress": "0x1E726556244D772d1d50cacb19B87E7205fA509E",
|
|
22958
22996
|
"proxyAddress": "0xF017fcB346A1885194689bA23Eff2fE6fA5C483b",
|
|
@@ -22996,6 +23034,12 @@ const chainlinkFeeds = {
|
|
|
22996
23034
|
"decimals": 8,
|
|
22997
23035
|
"name": "Optimism Healthcheck"
|
|
22998
23036
|
},
|
|
23037
|
+
{
|
|
23038
|
+
"contractAddress": "0x224ac1d400BE6b1F50b040c3fF8c2A19300384F7",
|
|
23039
|
+
"proxyAddress": "0x5a489EACad4BEc30B5bC3BcE8a0b9301CCDC0f60",
|
|
23040
|
+
"decimals": 18,
|
|
23041
|
+
"name": "stGLD / tGLD Exchange Rate"
|
|
23042
|
+
},
|
|
22999
23043
|
{
|
|
23000
23044
|
"contractAddress": "0x24e3c657c27DfC7ea6f9f58e86387D846b3BaA59",
|
|
23001
23045
|
"proxyAddress": "0xdbd020CAeF83eFd542f4De03e3cF0C28A4428bd5",
|
|
@@ -23026,6 +23070,12 @@ const chainlinkFeeds = {
|
|
|
23026
23070
|
"decimals": 8,
|
|
23027
23071
|
"name": "STETH / USD"
|
|
23028
23072
|
},
|
|
23073
|
+
{
|
|
23074
|
+
"contractAddress": "0x2A539061d701471c3835256f8FF982e81E9B4374",
|
|
23075
|
+
"proxyAddress": "0x4720bcC6f940d709D7e2F510936e611Db07C240E",
|
|
23076
|
+
"decimals": 8,
|
|
23077
|
+
"name": "GOOGL-USD (24/5)"
|
|
23078
|
+
},
|
|
23029
23079
|
{
|
|
23030
23080
|
"contractAddress": "0x2a29c3696dD424d3e703F5F3f2D6Af86598e9303",
|
|
23031
23081
|
"proxyAddress": "0xdF2917806E30300537aEB49A7663062F4d1F2b5F",
|
|
@@ -23117,6 +23167,12 @@ const chainlinkFeeds = {
|
|
|
23117
23167
|
"decimals": 8,
|
|
23118
23168
|
"name": "PYUSD / USD"
|
|
23119
23169
|
},
|
|
23170
|
+
{
|
|
23171
|
+
"contractAddress": "0x3B4f49f4aa5491B5a60C0724467A67b4910aEAAc",
|
|
23172
|
+
"proxyAddress": "0x3F0543aA057BcAeA152Fe9462Cb3ffaB305a6F8D",
|
|
23173
|
+
"decimals": 18,
|
|
23174
|
+
"name": "KAG Reserves"
|
|
23175
|
+
},
|
|
23120
23176
|
{
|
|
23121
23177
|
"contractAddress": "0x3C405e1FE8a6BE5d9b714B8C88Ad913F236B1639",
|
|
23122
23178
|
"proxyAddress": "0xE8E65Fb9116875012F5990Ecaab290B3531DbeB9",
|
|
@@ -23184,6 +23240,18 @@ const chainlinkFeeds = {
|
|
|
23184
23240
|
"name": "SVR COMP / USD",
|
|
23185
23241
|
"secondaryProxyAddress": "0x69B50fF403E995d9c4441a303438D9049dAC8cCD"
|
|
23186
23242
|
},
|
|
23243
|
+
{
|
|
23244
|
+
"contractAddress": "0x45D48aa93275c2274E1006BfdCb6406eF96a509B",
|
|
23245
|
+
"proxyAddress": "0xD13cB763C43B5C058E7Ec40176962c5030F4EB49",
|
|
23246
|
+
"decimals": 8,
|
|
23247
|
+
"name": "WTGXX NAV"
|
|
23248
|
+
},
|
|
23249
|
+
{
|
|
23250
|
+
"contractAddress": "0x47f0840aCB50DF9C3B9584017eF1A9560E777b88",
|
|
23251
|
+
"proxyAddress": "0xB204328559E17F84eE7A285036AA0d47124F85D5",
|
|
23252
|
+
"decimals": 8,
|
|
23253
|
+
"name": "TSLA-USD (24/5)"
|
|
23254
|
+
},
|
|
23187
23255
|
{
|
|
23188
23256
|
"contractAddress": "0x48afBeDF849449b7B9eea101EdAbdc81417b04c8",
|
|
23189
23257
|
"proxyAddress": "0x194a9AaF2e0b67c35915cD01101585A33Fe25CAa",
|
|
@@ -23215,12 +23283,6 @@ const chainlinkFeeds = {
|
|
|
23215
23283
|
"decimals": 18,
|
|
23216
23284
|
"name": "GRT / ETH"
|
|
23217
23285
|
},
|
|
23218
|
-
{
|
|
23219
|
-
"contractAddress": "0x506F678C8E426BA87427674f814AD2166c17981D",
|
|
23220
|
-
"proxyAddress": "0x160AC928A16C93eD4895C2De6f81ECcE9a7eB7b4",
|
|
23221
|
-
"decimals": 18,
|
|
23222
|
-
"name": "LRC / ETH"
|
|
23223
|
-
},
|
|
23224
23286
|
{
|
|
23225
23287
|
"contractAddress": "0x50e1007404025e412F13eD1e1C1e6F57957F6A6F",
|
|
23226
23288
|
"proxyAddress": "0xe80baC615c38D01c101B0B1b943b05E20C8c2f76",
|
|
@@ -23390,6 +23452,12 @@ const chainlinkFeeds = {
|
|
|
23390
23452
|
"decimals": 8,
|
|
23391
23453
|
"name": "SUSHI / USD"
|
|
23392
23454
|
},
|
|
23455
|
+
{
|
|
23456
|
+
"contractAddress": "0x6594324b6bB0Bdf0C83b0B7ECd4a5c32889B442e",
|
|
23457
|
+
"proxyAddress": "0x25efbA0d9b115D233cfA849F16BA743E8FFba2a1",
|
|
23458
|
+
"decimals": 8,
|
|
23459
|
+
"name": "SPY-USD (24/5)"
|
|
23460
|
+
},
|
|
23393
23461
|
{
|
|
23394
23462
|
"contractAddress": "0x6795D4A47c9c8F4117b409D966259CdCf6A9Eb6E",
|
|
23395
23463
|
"proxyAddress": "0x9944D86CEB9160aF5C5feB251FD671923323f8C3",
|
|
@@ -23414,6 +23482,12 @@ const chainlinkFeeds = {
|
|
|
23414
23482
|
"decimals": 2,
|
|
23415
23483
|
"name": "BUIDL NAV"
|
|
23416
23484
|
},
|
|
23485
|
+
{
|
|
23486
|
+
"contractAddress": "0x6C659766386874a46dacd7a9aEf04818FD3b13F0",
|
|
23487
|
+
"proxyAddress": "0x3f929667bdf783b99274F10465a89d6aF772736E",
|
|
23488
|
+
"decimals": 18,
|
|
23489
|
+
"name": "ZEC / USD"
|
|
23490
|
+
},
|
|
23417
23491
|
{
|
|
23418
23492
|
"contractAddress": "0x6Cc5173Ffd8d674C64f2DC7237730Ff021829865",
|
|
23419
23493
|
"proxyAddress": "0x5C00128d4d1c2F4f652C267d7bcdD7aC99C16E16",
|
|
@@ -23432,6 +23506,12 @@ const chainlinkFeeds = {
|
|
|
23432
23506
|
"decimals": 18,
|
|
23433
23507
|
"name": "sUSDD / USDD Exchange Rate"
|
|
23434
23508
|
},
|
|
23509
|
+
{
|
|
23510
|
+
"contractAddress": "0x6F751d443c2b2E7d45d42b52AC87CDbBB4B0f7DE",
|
|
23511
|
+
"proxyAddress": "0xA1D955b4E582C784583df7071B8a3Fb6d4bcaC42",
|
|
23512
|
+
"decimals": 8,
|
|
23513
|
+
"name": "QQQ-USD (24/5)"
|
|
23514
|
+
},
|
|
23435
23515
|
{
|
|
23436
23516
|
"contractAddress": "0x6dFF3fE0bF312f54551788f843F06177fE89C4bd",
|
|
23437
23517
|
"proxyAddress": "0x03c68933f7a3F76875C0bc670a58e69294cDFD01",
|
|
@@ -23457,6 +23537,12 @@ const chainlinkFeeds = {
|
|
|
23457
23537
|
"decimals": 18,
|
|
23458
23538
|
"name": "KNC / ETH"
|
|
23459
23539
|
},
|
|
23540
|
+
{
|
|
23541
|
+
"contractAddress": "0x74acdD8Ca84fF6a9Eb0814e7F000b4F33195152d",
|
|
23542
|
+
"proxyAddress": "0x2c47b8CD75C818969b398911b70C633e280552d4",
|
|
23543
|
+
"decimals": 8,
|
|
23544
|
+
"name": "NVDA-USD (24/5)"
|
|
23545
|
+
},
|
|
23460
23546
|
{
|
|
23461
23547
|
"contractAddress": "0x757EB2AF32c76621FEAE483c6458C04ba19906Ba",
|
|
23462
23548
|
"proxyAddress": "0xe108E75d6bA28F14EA51F24F886c0B6BBeca575a",
|
|
@@ -23604,6 +23690,12 @@ const chainlinkFeeds = {
|
|
|
23604
23690
|
"decimals": 8,
|
|
23605
23691
|
"name": "APE / USD"
|
|
23606
23692
|
},
|
|
23693
|
+
{
|
|
23694
|
+
"contractAddress": "0x89fB24e1c41c74c712500B86399751b1DA463697",
|
|
23695
|
+
"proxyAddress": "0x0b9bD3eAac381A1a6731ff6598a50638E5CFFD25",
|
|
23696
|
+
"decimals": 8,
|
|
23697
|
+
"name": "CRDYX NAV"
|
|
23698
|
+
},
|
|
23607
23699
|
{
|
|
23608
23700
|
"contractAddress": "0x8F73090a7c58B8BDcC9A93cBB6816e5cC4f01E8c",
|
|
23609
23701
|
"proxyAddress": "0xB9E1E3A9feFf48998E45Fa90847ed4D467E8BcfD",
|
|
@@ -23738,18 +23830,6 @@ const chainlinkFeeds = {
|
|
|
23738
23830
|
"decimals": 1,
|
|
23739
23831
|
"name": "Real Final Sales to Private Domestic Purchasers — Percent Change (Annual Rate)"
|
|
23740
23832
|
},
|
|
23741
|
-
{
|
|
23742
|
-
"contractAddress": "0x9Bc91f0E55b0d6509F65fd8C4b34b89F23AEfA35",
|
|
23743
|
-
"proxyAddress": "0xF0985f7E2CaBFf22CecC5a71282a89582c382EFE",
|
|
23744
|
-
"decimals": 18,
|
|
23745
|
-
"name": "FTT / ETH"
|
|
23746
|
-
},
|
|
23747
|
-
{
|
|
23748
|
-
"contractAddress": "0x9E3AABA3B04264DD009437F48eBFD70713dd0667",
|
|
23749
|
-
"proxyAddress": "0xAcFCF155a0de611414C510D43446c27a4EE6a758",
|
|
23750
|
-
"decimals": 8,
|
|
23751
|
-
"name": "WAMPL / USD"
|
|
23752
|
-
},
|
|
23753
23833
|
{
|
|
23754
23834
|
"contractAddress": "0x9F6B06e826d3DF391285c695749F8f921F6972D9",
|
|
23755
23835
|
"proxyAddress": "0x89904B6fcF8dAD1e5DA47dFdF69fC38Ad6be0bd5",
|
|
@@ -23757,6 +23837,12 @@ const chainlinkFeeds = {
|
|
|
23757
23837
|
"name": "SVR TSLAon-USD (Calculated)",
|
|
23758
23838
|
"secondaryProxyAddress": "0xC557dcbc32A01a4FBf7b9E3107BAF283f059EDc7"
|
|
23759
23839
|
},
|
|
23840
|
+
{
|
|
23841
|
+
"contractAddress": "0x9b3a984d1abbe03845CBa7A895f1ff7f4209d59c",
|
|
23842
|
+
"proxyAddress": "0xaB5Dd7DD7669072a1Ef27c0ba241120A27A1aeC3",
|
|
23843
|
+
"decimals": 18,
|
|
23844
|
+
"name": "KAU Reserves"
|
|
23845
|
+
},
|
|
23760
23846
|
{
|
|
23761
23847
|
"contractAddress": "0x9c7CF045f964B45FFC6AA0Ffbffd7bb6d1b470A3",
|
|
23762
23848
|
"proxyAddress": "0x3C7dB4D25deAb7c89660512C5494Dc9A3FC40f78",
|
|
@@ -23777,12 +23863,6 @@ const chainlinkFeeds = {
|
|
|
23777
23863
|
"name": "AAVE SVR USDT / USD",
|
|
23778
23864
|
"secondaryProxyAddress": "0x62c2ab773B7324ad9e030D777989B3b5d5c54c0A"
|
|
23779
23865
|
},
|
|
23780
|
-
{
|
|
23781
|
-
"contractAddress": "0x9e6e40dC0A35D6eD96BB09D928261EB598523645",
|
|
23782
|
-
"proxyAddress": "0x58921Ac140522867bf50b9E009599Da0CA4A2379",
|
|
23783
|
-
"decimals": 18,
|
|
23784
|
-
"name": "BADGER / ETH"
|
|
23785
|
-
},
|
|
23786
23866
|
{
|
|
23787
23867
|
"contractAddress": "0xA0B5260BDfD1011C4bcdc7A099C75BFf6340B38C",
|
|
23788
23868
|
"proxyAddress": "0xBcE206caE7f0ec07b545EddE332A47C2F75bbeb3",
|
|
@@ -23951,12 +24031,6 @@ const chainlinkFeeds = {
|
|
|
23951
24031
|
"decimals": 0,
|
|
23952
24032
|
"name": "Arbitrum Healthcheck"
|
|
23953
24033
|
},
|
|
23954
|
-
{
|
|
23955
|
-
"contractAddress": "0xAfDA097A70d1AF8D93874Dd8cD55b7E082b5ee57",
|
|
23956
|
-
"proxyAddress": "0x46cE854814ea38A4857AeA23aE7759b3A7970e4a",
|
|
23957
|
-
"decimals": 18,
|
|
23958
|
-
"name": "xSolvBTC NAV"
|
|
23959
|
-
},
|
|
23960
24034
|
{
|
|
23961
24035
|
"contractAddress": "0xB30Aae40B630500D5c8140B7d1E5Bb1d61C86B64",
|
|
23962
24036
|
"proxyAddress": "0xD93571A6201978976e37c4A0F7bE17806f2Feab2",
|
|
@@ -23987,6 +24061,12 @@ const chainlinkFeeds = {
|
|
|
23987
24061
|
"decimals": 18,
|
|
23988
24062
|
"name": "savBTC / avBTC Exchange Rate"
|
|
23989
24063
|
},
|
|
24064
|
+
{
|
|
24065
|
+
"contractAddress": "0xBa0477C34019E53c7C1C94b127D8892D7DFAFf2A",
|
|
24066
|
+
"proxyAddress": "0x35DDfB90011E686CCf837a6819562705076207EB",
|
|
24067
|
+
"decimals": 8,
|
|
24068
|
+
"name": "ACRED NAV"
|
|
24069
|
+
},
|
|
23990
24070
|
{
|
|
23991
24071
|
"contractAddress": "0xBae95c3247AA52738C52d2Df94ac6932b6b1907F",
|
|
23992
24072
|
"proxyAddress": "0x91b99C9b75aF469a71eE1AB528e8da994A5D7030",
|
|
@@ -24035,6 +24115,12 @@ const chainlinkFeeds = {
|
|
|
24035
24115
|
"decimals": 18,
|
|
24036
24116
|
"name": "STETH / ETH"
|
|
24037
24117
|
},
|
|
24118
|
+
{
|
|
24119
|
+
"contractAddress": "0xCB44fa91012781Ff12D4c258508b470B97F82D41",
|
|
24120
|
+
"proxyAddress": "0xB00341502DfEA6Ced8A5786b4059d29dA5E4D1FD",
|
|
24121
|
+
"decimals": 18,
|
|
24122
|
+
"name": "AUSD / USD"
|
|
24123
|
+
},
|
|
24038
24124
|
{
|
|
24039
24125
|
"contractAddress": "0xCe14fF0ACf4a1e7Eab6802C64D317e3fD989f3C6",
|
|
24040
24126
|
"proxyAddress": "0x60AEd7d20AC6328f7BA771aD58931c996aff30E8",
|
|
@@ -24047,6 +24133,12 @@ const chainlinkFeeds = {
|
|
|
24047
24133
|
"decimals": 8,
|
|
24048
24134
|
"name": "CAD / USD"
|
|
24049
24135
|
},
|
|
24136
|
+
{
|
|
24137
|
+
"contractAddress": "0xD0e3f81D467A1383F582D36a26E03E48D54cE391",
|
|
24138
|
+
"proxyAddress": "0xd92095BAf79a6ca6533019e952aDe0d3C5834f4b",
|
|
24139
|
+
"decimals": 8,
|
|
24140
|
+
"name": "VBILL NAV"
|
|
24141
|
+
},
|
|
24050
24142
|
{
|
|
24051
24143
|
"contractAddress": "0xD0f0efAfB63ce1e46ae1aF84BCFE2A2A175E6797",
|
|
24052
24144
|
"proxyAddress": "0xda9258AFc797Cd64d1b6FC651051224cdAB1B25E",
|
|
@@ -24131,12 +24223,6 @@ const chainlinkFeeds = {
|
|
|
24131
24223
|
"decimals": 0,
|
|
24132
24224
|
"name": "Celo Healthcheck"
|
|
24133
24225
|
},
|
|
24134
|
-
{
|
|
24135
|
-
"contractAddress": "0xF4cF94EB58b2a6eFd05A39dbdc5B02Cf33A509D8",
|
|
24136
|
-
"proxyAddress": "0xd95044Eb392CdE502b1F903Fc978317462049E52",
|
|
24137
|
-
"decimals": 8,
|
|
24138
|
-
"name": "ATH / USD"
|
|
24139
|
-
},
|
|
24140
24226
|
{
|
|
24141
24227
|
"contractAddress": "0xF69C2CdFa50C970235d059DfeEE767b27E02F260",
|
|
24142
24228
|
"proxyAddress": "0x64c4c1BF5ec145CB6095A289249592B5bb007098",
|
|
@@ -24167,6 +24253,12 @@ const chainlinkFeeds = {
|
|
|
24167
24253
|
"decimals": 8,
|
|
24168
24254
|
"name": "IBTA / USD"
|
|
24169
24255
|
},
|
|
24256
|
+
{
|
|
24257
|
+
"contractAddress": "0xa4dD65e17944d735CE35DfE12b92EAB8f679A510",
|
|
24258
|
+
"proxyAddress": "0x3BbccB2301759D2e4A5692bA72DAb4b75dC43B1a",
|
|
24259
|
+
"decimals": 6,
|
|
24260
|
+
"name": "JAAA NAV"
|
|
24261
|
+
},
|
|
24170
24262
|
{
|
|
24171
24263
|
"contractAddress": "0xa685F0Bb86044e9c6A182A3689bBF8A98eB5764C",
|
|
24172
24264
|
"proxyAddress": "0x0c89c488e763AC2d69cB058CCAC7A8B283EE3DbA",
|
|
@@ -24185,6 +24277,12 @@ const chainlinkFeeds = {
|
|
|
24185
24277
|
"decimals": 8,
|
|
24186
24278
|
"name": "SOL / USD"
|
|
24187
24279
|
},
|
|
24280
|
+
{
|
|
24281
|
+
"contractAddress": "0xaF452c2EA72b6E08AB64a67133a13C4ED35343eb",
|
|
24282
|
+
"proxyAddress": "0xAFa801e508613be7CA88D2d0fDB3F84f4c1B0384",
|
|
24283
|
+
"decimals": 18,
|
|
24284
|
+
"name": "C1USD Reserves"
|
|
24285
|
+
},
|
|
24188
24286
|
{
|
|
24189
24287
|
"contractAddress": "0xad88fc1A810379Ef4EFbF2D97EdE57e306178e5a",
|
|
24190
24288
|
"proxyAddress": "0xd82562bb17557231Cd871e1B2525F3AB8d63D409",
|
|
@@ -24246,12 +24344,6 @@ const chainlinkFeeds = {
|
|
|
24246
24344
|
"decimals": 8,
|
|
24247
24345
|
"name": "IMX / USD"
|
|
24248
24346
|
},
|
|
24249
|
-
{
|
|
24250
|
-
"contractAddress": "0xc4f25Fed1c2C5973947d5C90f7C9a32353ceEb22",
|
|
24251
|
-
"proxyAddress": "0x14d04Fff8D21bd62987a5cE9ce543d2F1edF5D3E",
|
|
24252
|
-
"decimals": 18,
|
|
24253
|
-
"name": "FRAX / ETH"
|
|
24254
|
-
},
|
|
24255
24347
|
{
|
|
24256
24348
|
"contractAddress": "0xc778E9686F0fde6Fe4D7d8fE4B481463Fce898fD",
|
|
24257
24349
|
"proxyAddress": "0xDC3EA94CD0AC27d9A86C180091e7f78C683d3699",
|
|
@@ -24294,12 +24386,6 @@ const chainlinkFeeds = {
|
|
|
24294
24386
|
"decimals": 18,
|
|
24295
24387
|
"name": "SHIB / ETH"
|
|
24296
24388
|
},
|
|
24297
|
-
{
|
|
24298
|
-
"contractAddress": "0xcD2d64424aBE57AB8c70d9f9253d0C6DffeBB2E7",
|
|
24299
|
-
"proxyAddress": "0xE3fd61Cd8935EAE81e1c31AF36D7134e411490Cd",
|
|
24300
|
-
"decimals": 8,
|
|
24301
|
-
"name": "OUSDT / USD"
|
|
24302
|
-
},
|
|
24303
24389
|
{
|
|
24304
24390
|
"contractAddress": "0xcd07B31D85756098334eDdC92DE755dEae8FE62f",
|
|
24305
24391
|
"proxyAddress": "0xbd7F896e60B650C01caf2d7279a1148189A68884",
|
|
@@ -24412,6 +24498,12 @@ const chainlinkFeeds = {
|
|
|
24412
24498
|
"decimals": 8,
|
|
24413
24499
|
"name": "WLFI / USD"
|
|
24414
24500
|
},
|
|
24501
|
+
{
|
|
24502
|
+
"contractAddress": "0xecA1d16A120fC96Fe33CfEB64Adca70B678dFb8b",
|
|
24503
|
+
"proxyAddress": "0x42fC9d7c315Cf64Edc39ec984Bf89Bc34BbE9FD5",
|
|
24504
|
+
"decimals": 18,
|
|
24505
|
+
"name": "ezETH Proof of Reserves"
|
|
24506
|
+
},
|
|
24415
24507
|
{
|
|
24416
24508
|
"contractAddress": "0xf17CB308606999DF25F5d4B9f74bD9fe47A5b3b3",
|
|
24417
24509
|
"proxyAddress": "0xAbE7a3643615Ed32d3431e11E0Ee5A486Cb27d48",
|
|
@@ -24486,12 +24578,6 @@ const chainlinkFeeds = {
|
|
|
24486
24578
|
"decimals": 8,
|
|
24487
24579
|
"name": "ONE / USD"
|
|
24488
24580
|
},
|
|
24489
|
-
{
|
|
24490
|
-
"contractAddress": "0x0542BbBfbc26A86EA92d2b7f6Da07DAf0CA091eD",
|
|
24491
|
-
"proxyAddress": "0x2fF1EB7D0ceC35959F0248E9354c3248c6683D9b",
|
|
24492
|
-
"decimals": 8,
|
|
24493
|
-
"name": "FLOW / USD"
|
|
24494
|
-
},
|
|
24495
24581
|
{
|
|
24496
24582
|
"contractAddress": "0x057B4ffE41aFb2104C3355a8396bab7c64E4017F",
|
|
24497
24583
|
"proxyAddress": "0x5a61374950D4BFa5a3D4f2CA36FC1d23A92b6f21",
|
|
@@ -24612,12 +24698,6 @@ const chainlinkFeeds = {
|
|
|
24612
24698
|
"decimals": 8,
|
|
24613
24699
|
"name": "MIMATIC / USD"
|
|
24614
24700
|
},
|
|
24615
|
-
{
|
|
24616
|
-
"contractAddress": "0x1C1df24f0d06415fc3F58b1c1fDadd5fC85d2950",
|
|
24617
|
-
"proxyAddress": "0x0ded608AFc23724f614B76955bbd9dFe7dDdc828",
|
|
24618
|
-
"decimals": 8,
|
|
24619
|
-
"name": "MATIC / USD"
|
|
24620
|
-
},
|
|
24621
24701
|
{
|
|
24622
24702
|
"contractAddress": "0x1C4f2b051fdBE353d17c58Eca8FFb2fe15b5Da71",
|
|
24623
24703
|
"proxyAddress": "0x14d2d3a82AeD4019FddDfe07E8bdc485fb0d2249",
|
|
@@ -24702,6 +24782,12 @@ const chainlinkFeeds = {
|
|
|
24702
24782
|
"decimals": 8,
|
|
24703
24783
|
"name": "APT / USD"
|
|
24704
24784
|
},
|
|
24785
|
+
{
|
|
24786
|
+
"contractAddress": "0x36D86c4D65B534375380a31749c3E8c0E8756bD8",
|
|
24787
|
+
"proxyAddress": "0xAE33e077a02071E62d342E449Afd9895b016d541",
|
|
24788
|
+
"decimals": 8,
|
|
24789
|
+
"name": "SAND / USD"
|
|
24790
|
+
},
|
|
24705
24791
|
{
|
|
24706
24792
|
"contractAddress": "0x384547665C7BF2bb7927E67A8a321E9a0c91Fe59",
|
|
24707
24793
|
"proxyAddress": "0x89178957E9bD07934d7792fFc0CF39f11c8C2B1F",
|
|
@@ -24726,12 +24812,6 @@ const chainlinkFeeds = {
|
|
|
24726
24812
|
"decimals": 8,
|
|
24727
24813
|
"name": "GRT / USD"
|
|
24728
24814
|
},
|
|
24729
|
-
{
|
|
24730
|
-
"contractAddress": "0x44f690526B76D91072fb0427B0A24b882E612455",
|
|
24731
|
-
"proxyAddress": "0x30D9d31C1ac29Bc2c2c312c1bCa9F8b3D60e2376",
|
|
24732
|
-
"decimals": 8,
|
|
24733
|
-
"name": "BAL / USD"
|
|
24734
|
-
},
|
|
24735
24815
|
{
|
|
24736
24816
|
"contractAddress": "0x4713B96931c490F1B66D25cc2ac96Eb0AAFa2ac3",
|
|
24737
24817
|
"proxyAddress": "0x0f2Ed59657e391746C1a097BDa98F2aBb94b1120",
|
|
@@ -24834,12 +24914,6 @@ const chainlinkFeeds = {
|
|
|
24834
24914
|
"decimals": 8,
|
|
24835
24915
|
"name": "LINK / USD"
|
|
24836
24916
|
},
|
|
24837
|
-
{
|
|
24838
|
-
"contractAddress": "0x5d1345669278128B77AF9662C5D6B5e0b2FFD54A",
|
|
24839
|
-
"proxyAddress": "0xAE33e077a02071E62d342E449Afd9895b016d541",
|
|
24840
|
-
"decimals": 8,
|
|
24841
|
-
"name": "SAND / USD"
|
|
24842
|
-
},
|
|
24843
24917
|
{
|
|
24844
24918
|
"contractAddress": "0x5d782463840e3a2Ed55e425916d498319f289DEd",
|
|
24845
24919
|
"proxyAddress": "0xD7bC56BBF8D555936cb5121f38d1d362c586776A",
|
|
@@ -25056,12 +25130,6 @@ const chainlinkFeeds = {
|
|
|
25056
25130
|
"decimals": 8,
|
|
25057
25131
|
"name": "SOL / USD"
|
|
25058
25132
|
},
|
|
25059
|
-
{
|
|
25060
|
-
"contractAddress": "0x95836878f632c8797434a359ab3863892BF7eEcc",
|
|
25061
|
-
"proxyAddress": "0x60025324DAB37DB3A623ea59Cc567937821EeA12",
|
|
25062
|
-
"decimals": 8,
|
|
25063
|
-
"name": "OUSDT / USD"
|
|
25064
|
-
},
|
|
25065
25133
|
{
|
|
25066
25134
|
"contractAddress": "0x962e192e23fcc5Ec59141b58B112e5Fe0e0B70C0",
|
|
25067
25135
|
"proxyAddress": "0x4e8e8F5b3d0f49e00F3DFb9CF827d1A0FBe33B21",
|
|
@@ -25272,12 +25340,6 @@ const chainlinkFeeds = {
|
|
|
25272
25340
|
"decimals": 8,
|
|
25273
25341
|
"name": "SEI / USD"
|
|
25274
25342
|
},
|
|
25275
|
-
{
|
|
25276
|
-
"contractAddress": "0xa2eb6Ece70Cf255624ed2B2158A7dbC4dc4b02Ad",
|
|
25277
|
-
"proxyAddress": "0x4244c9aE5B97269B7301B622E22932FA49fBb763",
|
|
25278
|
-
"decimals": 8,
|
|
25279
|
-
"name": "mooBIFI / USD"
|
|
25280
|
-
},
|
|
25281
25343
|
{
|
|
25282
25344
|
"contractAddress": "0xa44681BdaE78DB54cAc3d7f862d6A5BaE8c79CbC",
|
|
25283
25345
|
"proxyAddress": "0xFC3b7bd4368b2919f67E437f8c6Ca42C7FD55dd5",
|
|
@@ -25314,12 +25376,6 @@ const chainlinkFeeds = {
|
|
|
25314
25376
|
"decimals": 8,
|
|
25315
25377
|
"name": "ZEC / USD"
|
|
25316
25378
|
},
|
|
25317
|
-
{
|
|
25318
|
-
"contractAddress": "0xb413D63Ac2e38a5A1C18834F20b958745dBeb998",
|
|
25319
|
-
"proxyAddress": "0x7F102e5b4C32e0861293E97DE85e6E0dB3530605",
|
|
25320
|
-
"decimals": 8,
|
|
25321
|
-
"name": "WELL / USD"
|
|
25322
|
-
},
|
|
25323
25379
|
{
|
|
25324
25380
|
"contractAddress": "0xb785e9aa87cDB29cC11a3f2b8bd17E6279275A35",
|
|
25325
25381
|
"proxyAddress": "0x517C2557c29F7c53Aa5F97a1DAE465E0d5C174AA",
|
|
@@ -25503,12 +25559,6 @@ const chainlinkFeeds = {
|
|
|
25503
25559
|
"decimals": 18,
|
|
25504
25560
|
"name": "savBTC / avBTC Exchange Rate"
|
|
25505
25561
|
},
|
|
25506
|
-
{
|
|
25507
|
-
"contractAddress": "0x1640C1a6984f744E069b65d5657c075935474d63",
|
|
25508
|
-
"proxyAddress": "0xf7E7c0ffCB11dAC6eCA1434C67faB9aE000e10a7",
|
|
25509
|
-
"decimals": 8,
|
|
25510
|
-
"name": "WING / USD"
|
|
25511
|
-
},
|
|
25512
25562
|
{
|
|
25513
25563
|
"contractAddress": "0x17d041D20a0b8693aA95c99FCdc5A2bd0126FDB3",
|
|
25514
25564
|
"proxyAddress": "0x1a269eA1b209DA2c12bDCDab22635C9e6C5028B2",
|
|
@@ -25715,12 +25765,6 @@ const chainlinkFeeds = {
|
|
|
25715
25765
|
"decimals": 18,
|
|
25716
25766
|
"name": "sUSDX / USDX Exchange Rate"
|
|
25717
25767
|
},
|
|
25718
|
-
{
|
|
25719
|
-
"contractAddress": "0x43CB601A5869Fc67f5D3389fE91C6c6fBC6F880b",
|
|
25720
|
-
"proxyAddress": "0x9e7377E194E41d63795907c92c3EB351a2eb0233",
|
|
25721
|
-
"decimals": 8,
|
|
25722
|
-
"name": "WIN / USD"
|
|
25723
|
-
},
|
|
25724
25768
|
{
|
|
25725
25769
|
"contractAddress": "0x44b24057e1cF7a58c86d06dFb12C83806DB7cA95",
|
|
25726
25770
|
"proxyAddress": "0xd97aB9e5bD461eBcD55009791C410294f7B42Cdb",
|
|
@@ -25842,12 +25886,6 @@ const chainlinkFeeds = {
|
|
|
25842
25886
|
"decimals": 8,
|
|
25843
25887
|
"name": "ATOM / USD"
|
|
25844
25888
|
},
|
|
25845
|
-
{
|
|
25846
|
-
"contractAddress": "0x5A3b0851519Bfd72b681609137efF5b2E47C381b",
|
|
25847
|
-
"proxyAddress": "0x47e01580C537Cd47dA339eA3a4aFb5998CCf037C",
|
|
25848
|
-
"decimals": 8,
|
|
25849
|
-
"name": "SPELL / USD"
|
|
25850
|
-
},
|
|
25851
25889
|
{
|
|
25852
25890
|
"contractAddress": "0x5A69d0948b0607401cC821704b7E99916bc9452E",
|
|
25853
25891
|
"proxyAddress": "0xbD4Bcf7DCFF34fd67525FceB3992cec53C23892A",
|
|
@@ -25930,6 +25968,12 @@ const chainlinkFeeds = {
|
|
|
25930
25968
|
"name": "SVR TWT / BNB",
|
|
25931
25969
|
"secondaryProxyAddress": "0x1A083354421Da4e26D78D55DAfaeBf4CFc541dAf"
|
|
25932
25970
|
},
|
|
25971
|
+
{
|
|
25972
|
+
"contractAddress": "0x66815140e049C986Ca00fae75591958c4c322a5e",
|
|
25973
|
+
"proxyAddress": "0xfa54C1c5F62ea3a5653a0b1b7148E26008eA1501",
|
|
25974
|
+
"decimals": 18,
|
|
25975
|
+
"name": "XAUM Reference Rate"
|
|
25976
|
+
},
|
|
25933
25977
|
{
|
|
25934
25978
|
"contractAddress": "0x67AF9BF189380E91bF59a4EA0c7cCd9B710d6786",
|
|
25935
25979
|
"proxyAddress": "0x337B4889fed5557595c37a45c1BB9b057cC670AE",
|
|
@@ -26183,12 +26227,6 @@ const chainlinkFeeds = {
|
|
|
26183
26227
|
"decimals": 8,
|
|
26184
26228
|
"name": "LISUSD / USD"
|
|
26185
26229
|
},
|
|
26186
|
-
{
|
|
26187
|
-
"contractAddress": "0xA90204b8Cffa45EDbca42CB577CDF6fafAbF0d33",
|
|
26188
|
-
"proxyAddress": "0x9f1fD2cEf7b226D555A747DA0411F93c5fe74e13",
|
|
26189
|
-
"decimals": 8,
|
|
26190
|
-
"name": "VET / USD"
|
|
26191
|
-
},
|
|
26192
26230
|
{
|
|
26193
26231
|
"contractAddress": "0xAA6778bD1313ff4BF4F07b671B3B89A12aDD0277",
|
|
26194
26232
|
"proxyAddress": "0x964261740356cB4aaD0C3D2003Ce808A4176a46d",
|
|
@@ -26251,12 +26289,6 @@ const chainlinkFeeds = {
|
|
|
26251
26289
|
"decimals": 8,
|
|
26252
26290
|
"name": "TUSD / USD"
|
|
26253
26291
|
},
|
|
26254
|
-
{
|
|
26255
|
-
"contractAddress": "0xBD25C33FFA560129E6346454faF0e8deBD0c0288",
|
|
26256
|
-
"proxyAddress": "0x0E9D55932893Fb1308882C7857285B2B0bcc4f4a",
|
|
26257
|
-
"decimals": 8,
|
|
26258
|
-
"name": "FXS / USD"
|
|
26259
|
-
},
|
|
26260
26292
|
{
|
|
26261
26293
|
"contractAddress": "0xC5E353BEd3a74cE79210aC6819355e8531616876",
|
|
26262
26294
|
"proxyAddress": "0x4c75d01cfa4D998770b399246400a6dc40FB9645",
|
|
@@ -26305,12 +26337,6 @@ const chainlinkFeeds = {
|
|
|
26305
26337
|
"decimals": 8,
|
|
26306
26338
|
"name": "XVS / USD"
|
|
26307
26339
|
},
|
|
26308
|
-
{
|
|
26309
|
-
"contractAddress": "0xD377b4D1ef943d0414Cc072ddAC1299940222A24",
|
|
26310
|
-
"proxyAddress": "0xcF95796f3016801A1dA5C518Fc7A59C51dcEf793",
|
|
26311
|
-
"decimals": 8,
|
|
26312
|
-
"name": "ONG / USD"
|
|
26313
|
-
},
|
|
26314
26340
|
{
|
|
26315
26341
|
"contractAddress": "0xDD746F1C05207D1478dC217F4e832786ABEd5C80",
|
|
26316
26342
|
"proxyAddress": "0x84210d9013A30C6ab169e28840A6CC54B60fa042",
|
|
@@ -26380,6 +26406,12 @@ const chainlinkFeeds = {
|
|
|
26380
26406
|
"decimals": 8,
|
|
26381
26407
|
"name": "RDNT / USD"
|
|
26382
26408
|
},
|
|
26409
|
+
{
|
|
26410
|
+
"contractAddress": "0xF0030fA22Aeee34Aacc9a7F6B9190951b96D7FF2",
|
|
26411
|
+
"proxyAddress": "0x86b3897a1c755ac8f0e12263242141cdecF71CC2",
|
|
26412
|
+
"decimals": 18,
|
|
26413
|
+
"name": "RLP / USD Exchange Rate"
|
|
26414
|
+
},
|
|
26383
26415
|
{
|
|
26384
26416
|
"contractAddress": "0xF2cb4eaa89Efc51aa79bA31F815361EB47Be34c5",
|
|
26385
26417
|
"proxyAddress": "0xeDA73F8acb669274B15A977Cb0cdA57a84F18c2a",
|
|
@@ -26410,12 +26442,6 @@ const chainlinkFeeds = {
|
|
|
26410
26442
|
"decimals": 18,
|
|
26411
26443
|
"name": "BCH / BNB"
|
|
26412
26444
|
},
|
|
26413
|
-
{
|
|
26414
|
-
"contractAddress": "0xFaA69Fc5efd347b9D6FD4709F7618d4E1449cA74",
|
|
26415
|
-
"proxyAddress": "0x7CA57b0cA6367191c94C8914d7Df09A57655905f",
|
|
26416
|
-
"decimals": 8,
|
|
26417
|
-
"name": "MATIC / USD"
|
|
26418
|
-
},
|
|
26419
26445
|
{
|
|
26420
26446
|
"contractAddress": "0xFbBc7E59dd02ADa97FfB0f85C36cE14B1A3Fdfc2",
|
|
26421
26447
|
"proxyAddress": "0x08E70777b982a58D23D05E3D7714f44837c06A21",
|
|
@@ -26458,12 +26484,6 @@ const chainlinkFeeds = {
|
|
|
26458
26484
|
"decimals": 8,
|
|
26459
26485
|
"name": "AAPL / USD"
|
|
26460
26486
|
},
|
|
26461
|
-
{
|
|
26462
|
-
"contractAddress": "0xb208D9Ee1703674b7Ced85b615Db69d65430aF67",
|
|
26463
|
-
"proxyAddress": "0x13A9c98b07F098c5319f4FF786eB16E22DC738e1",
|
|
26464
|
-
"decimals": 8,
|
|
26465
|
-
"name": "FRAX / USD"
|
|
26466
|
-
},
|
|
26467
26487
|
{
|
|
26468
26488
|
"contractAddress": "0xb3Ea5aFbd958dB1d36b007e8B5DcD7cD33C5Db02",
|
|
26469
26489
|
"proxyAddress": "0x0Db8945f9aEf5651fa5bd52314C5aAe78DfDe540",
|
|
@@ -26796,12 +26816,6 @@ const chainlinkFeeds = {
|
|
|
26796
26816
|
"decimals": 8,
|
|
26797
26817
|
"name": "BNB / USD"
|
|
26798
26818
|
},
|
|
26799
|
-
{
|
|
26800
|
-
"contractAddress": "0x9C1Dc429a8d8F10C8ebA522b608bC27F58d6ABE2",
|
|
26801
|
-
"proxyAddress": "0x27d4D36968a2BD1Cc3406D99cB1DF50561dBf2a4",
|
|
26802
|
-
"decimals": 8,
|
|
26803
|
-
"name": "REN / USD"
|
|
26804
|
-
},
|
|
26805
26819
|
{
|
|
26806
26820
|
"contractAddress": "0xB660dC68D4cf26F5ac1c1fDcD9e57d648FCf13d9",
|
|
26807
26821
|
"proxyAddress": "0x2997eBa3d9c2447c36107bB0F082b8c33566b49c",
|
|
@@ -27626,12 +27640,6 @@ const chainlinkFeeds = {
|
|
|
27626
27640
|
"decimals": 8,
|
|
27627
27641
|
"name": "USDe / USD"
|
|
27628
27642
|
},
|
|
27629
|
-
{
|
|
27630
|
-
"contractAddress": "0xbC71031a5588b6bDfEA3C2974bD6fa0F5b81d49b",
|
|
27631
|
-
"proxyAddress": "0xF626964Ba5e81405f47e8004F0b276Bb974742B5",
|
|
27632
|
-
"decimals": 8,
|
|
27633
|
-
"name": "BADGER / USD"
|
|
27634
|
-
},
|
|
27635
27643
|
{
|
|
27636
27644
|
"contractAddress": "0xbc128024295Ed113926C4Dd49fb71964cfc9D516",
|
|
27637
27645
|
"proxyAddress": "0x692AE5510cA9070095A496dbcFBCDA99D4024Cd9",
|
|
@@ -27892,12 +27900,6 @@ const chainlinkFeeds = {
|
|
|
27892
27900
|
"decimals": 1,
|
|
27893
27901
|
"name": "PCE Price Index — Percent Change (Annual Rate)"
|
|
27894
27902
|
},
|
|
27895
|
-
{
|
|
27896
|
-
"contractAddress": "0xB70b802953462312A47c857b940991108F8d43De",
|
|
27897
|
-
"proxyAddress": "0x790181e93e9F4Eedb5b864860C12e4d2CffFe73B",
|
|
27898
|
-
"decimals": 8,
|
|
27899
|
-
"name": "OUSDT / USD"
|
|
27900
|
-
},
|
|
27901
27903
|
{
|
|
27902
27904
|
"contractAddress": "0xBb223278eCE74329276099E71d0F0be70Ba74faC",
|
|
27903
27905
|
"proxyAddress": "0xCdF021EbD115b1B225801F4056c40F4Ff14A574d",
|
|
@@ -27982,12 +27984,6 @@ const chainlinkFeeds = {
|
|
|
27982
27984
|
"decimals": 18,
|
|
27983
27985
|
"name": "PumpBTC / BTC Exchange Rate"
|
|
27984
27986
|
},
|
|
27985
|
-
{
|
|
27986
|
-
"contractAddress": "0xb35dC10BF66F82D3efD8f08BE49c3BEC31c6efe4",
|
|
27987
|
-
"proxyAddress": "0x30caC44b395eB969C9CA0d44dF39e6E0aE8f8D94",
|
|
27988
|
-
"decimals": 18,
|
|
27989
|
-
"name": "OS / S"
|
|
27990
|
-
},
|
|
27991
27987
|
{
|
|
27992
27988
|
"contractAddress": "0xc40650248C96027e8A7a86Cf96aA492004873E5d",
|
|
27993
27989
|
"proxyAddress": "0x8f0240dc9C7644D121D370d8ee61FF9F2356521E",
|
|
@@ -28006,12 +28002,6 @@ const chainlinkFeeds = {
|
|
|
28006
28002
|
"decimals": 18,
|
|
28007
28003
|
"name": "uniBTC / BTC Exchange Rate"
|
|
28008
28004
|
},
|
|
28009
|
-
{
|
|
28010
|
-
"contractAddress": "0xd1B3e5248aF8781c1338D1Ea278618fB58955017",
|
|
28011
|
-
"proxyAddress": "0x3cf9E4860bafe8e29eC8e1bC073436C5519684f4",
|
|
28012
|
-
"decimals": 8,
|
|
28013
|
-
"name": "scBTC / BTC"
|
|
28014
|
-
},
|
|
28015
28005
|
{
|
|
28016
28006
|
"contractAddress": "0xd7221b10FBBC1e1ba95Fd0B4D031C15f7F365296",
|
|
28017
28007
|
"proxyAddress": "0xfdee80dec97AF9AddcDccD208eC09d7Ea5eEbB9a",
|
|
@@ -28324,12 +28314,6 @@ const chainlinkFeeds = {
|
|
|
28324
28314
|
}
|
|
28325
28315
|
],
|
|
28326
28316
|
"1868": [
|
|
28327
|
-
{
|
|
28328
|
-
"contractAddress": "0x0101EF4292188d0082121ED61854F25e4b79C600",
|
|
28329
|
-
"proxyAddress": "0xEEDE303b8602Db7556eD57BDf7133A6bAADa294D",
|
|
28330
|
-
"decimals": 18,
|
|
28331
|
-
"name": "pufETH / ETH"
|
|
28332
|
-
},
|
|
28333
28317
|
{
|
|
28334
28318
|
"contractAddress": "0x0c617263C40231731f1264b8Ee5aA96A29eeA99F",
|
|
28335
28319
|
"proxyAddress": "0x884E2819193d8c8993036290D5a8778Dbe3942f2",
|
|
@@ -28390,12 +28374,6 @@ const chainlinkFeeds = {
|
|
|
28390
28374
|
"decimals": 18,
|
|
28391
28375
|
"name": "USR-USD Exchange Rate"
|
|
28392
28376
|
},
|
|
28393
|
-
{
|
|
28394
|
-
"contractAddress": "0x7DCcF223c077e8D1e2297d7788Bb6E62af89dFc9",
|
|
28395
|
-
"proxyAddress": "0xF049354158e13F6794A3cCD236694E0e1BD9AF79",
|
|
28396
|
-
"decimals": 8,
|
|
28397
|
-
"name": "OUSDT / USD"
|
|
28398
|
-
},
|
|
28399
28377
|
{
|
|
28400
28378
|
"contractAddress": "0x842291cfbEf554fF48197316136dF9beA63Eaac6",
|
|
28401
28379
|
"proxyAddress": "0x4516fDa3259110EefAfC6fBcE266417B3F3b985a",
|
|
@@ -28476,12 +28454,6 @@ const chainlinkFeeds = {
|
|
|
28476
28454
|
"decimals": 8,
|
|
28477
28455
|
"name": "USDe / USD"
|
|
28478
28456
|
},
|
|
28479
|
-
{
|
|
28480
|
-
"contractAddress": "0x1019a076F73432AAb97A73CD04e4B6Ad968C09C2",
|
|
28481
|
-
"proxyAddress": "0xC5fD97adABf827e9FCC4ed936360f47080F35868",
|
|
28482
|
-
"decimals": 8,
|
|
28483
|
-
"name": "OUSDT / USD"
|
|
28484
|
-
},
|
|
28485
28457
|
{
|
|
28486
28458
|
"contractAddress": "0x154650BD0B40E449214f9c544cE693889ae65f27",
|
|
28487
28459
|
"proxyAddress": "0xaDE1b9AbB98c6A542E4B49db2588a3Ec4bF7Cdf0",
|
|
@@ -28793,6 +28765,12 @@ const chainlinkFeeds = {
|
|
|
28793
28765
|
"decimals": 18,
|
|
28794
28766
|
"name": "ynETH / ETH Exchange Rate"
|
|
28795
28767
|
},
|
|
28768
|
+
{
|
|
28769
|
+
"contractAddress": "0x21F577D890e5c74e3f56E2C6C0ba4321B5D5bFc6",
|
|
28770
|
+
"proxyAddress": "0x7dBC779B2A6F9B9AaB83a2dED78A2F7E9e203f0c",
|
|
28771
|
+
"decimals": 8,
|
|
28772
|
+
"name": "XAG / USD"
|
|
28773
|
+
},
|
|
28796
28774
|
{
|
|
28797
28775
|
"contractAddress": "0x21b1E4eA0E9AE2e79932662300eB12A0f90AbE59",
|
|
28798
28776
|
"proxyAddress": "0x591e79239a7d679378eC8c847e5038150364C78F",
|
|
@@ -28907,12 +28885,6 @@ const chainlinkFeeds = {
|
|
|
28907
28885
|
"decimals": 18,
|
|
28908
28886
|
"name": "yUSD / USD Exchange Rate"
|
|
28909
28887
|
},
|
|
28910
|
-
{
|
|
28911
|
-
"contractAddress": "0x41F3a42270f161Ad1b25Cdb06bAd6cFC123E5C99",
|
|
28912
|
-
"proxyAddress": "0x2B1de6AD89847C11aF2ede14edB013AA79E94aC9",
|
|
28913
|
-
"decimals": 8,
|
|
28914
|
-
"name": "MAG7.SSI / USD"
|
|
28915
|
-
},
|
|
28916
28888
|
{
|
|
28917
28889
|
"contractAddress": "0x43F92e6805196FA6cd7a19F3d769957f95Baa261",
|
|
28918
28890
|
"proxyAddress": "0xB366E8Efb9661323ff477CedF70f55F897D6cFeA",
|
|
@@ -28992,12 +28964,6 @@ const chainlinkFeeds = {
|
|
|
28992
28964
|
"decimals": 8,
|
|
28993
28965
|
"name": "XRP / USD"
|
|
28994
28966
|
},
|
|
28995
|
-
{
|
|
28996
|
-
"contractAddress": "0x55012EF027ae9b4E2bb5a5f529E5a1184Bcc998D",
|
|
28997
|
-
"proxyAddress": "0x91D7AEd72bF772A0DA30199B925aCB866ACD3D9e",
|
|
28998
|
-
"decimals": 8,
|
|
28999
|
-
"name": "OGN / USD"
|
|
29000
|
-
},
|
|
29001
28967
|
{
|
|
29002
28968
|
"contractAddress": "0x5526525178A842eB07e54cAE0d30c967d74bd0b7",
|
|
29003
28969
|
"proxyAddress": "0x1E6A29666288a310326B37d823Fe4Ea3937424D2",
|
|
@@ -29132,12 +29098,6 @@ const chainlinkFeeds = {
|
|
|
29132
29098
|
"decimals": 8,
|
|
29133
29099
|
"name": "SNX / USD"
|
|
29134
29100
|
},
|
|
29135
|
-
{
|
|
29136
|
-
"contractAddress": "0x74E60B98A3FCaBcDDC66C5727Ab4bCccbad10ce7",
|
|
29137
|
-
"proxyAddress": "0x8eC6a128a430f7A850165bcF18facc9520a9873F",
|
|
29138
|
-
"decimals": 8,
|
|
29139
|
-
"name": "VVV / USD"
|
|
29140
|
-
},
|
|
29141
29101
|
{
|
|
29142
29102
|
"contractAddress": "0x74f70D08c92f1cd4Ed70B9aa3F8edC0bA5496a01",
|
|
29143
29103
|
"proxyAddress": "0x5E988c11a4f92155C30D9fb69Ed75597f712B113",
|
|
@@ -29175,6 +29135,12 @@ const chainlinkFeeds = {
|
|
|
29175
29135
|
"decimals": 0,
|
|
29176
29136
|
"name": "AAVE Network Emergency Count (Base)"
|
|
29177
29137
|
},
|
|
29138
|
+
{
|
|
29139
|
+
"contractAddress": "0x7f567Bf6EB08740F18Cd4de0A5716118954F731f",
|
|
29140
|
+
"proxyAddress": "0x900E653c6b25eCf1eF43525fcCC5263E654085cc",
|
|
29141
|
+
"decimals": 18,
|
|
29142
|
+
"name": "RLUSD / USD"
|
|
29143
|
+
},
|
|
29178
29144
|
{
|
|
29179
29145
|
"contractAddress": "0x801B6E7d186370EeE854F76481643c22c7d1da99",
|
|
29180
29146
|
"proxyAddress": "0xdEd37FC1400B8022968441356f771639ad1B23aA",
|
|
@@ -29237,12 +29203,6 @@ const chainlinkFeeds = {
|
|
|
29237
29203
|
"name": "AAVE SVR LBTC / BTC Exchange Rate",
|
|
29238
29204
|
"secondaryProxyAddress": "0xA6E3b91196afC536E4944B78aBb7DA41E7e18d6b"
|
|
29239
29205
|
},
|
|
29240
|
-
{
|
|
29241
|
-
"contractAddress": "0x8E6ec3E7d1E50db38D5690dF501530D5B2d0b58A",
|
|
29242
|
-
"proxyAddress": "0x90F3676B40F6dc2C1E074985D0544Bb8e1815B00",
|
|
29243
|
-
"decimals": 8,
|
|
29244
|
-
"name": "CTX / USD"
|
|
29245
|
-
},
|
|
29246
29206
|
{
|
|
29247
29207
|
"contractAddress": "0x8b535cC811c4E4c9CFf85b823479B1616CB5C7B5",
|
|
29248
29208
|
"proxyAddress": "0x1E6c22AAA11F507af12034A5Dc4126A6A25DC8d2",
|
|
@@ -29274,12 +29234,6 @@ const chainlinkFeeds = {
|
|
|
29274
29234
|
"name": "AAVE SVR WSTETH / STETH Exchange Rate",
|
|
29275
29235
|
"secondaryProxyAddress": "0x2d4b8B1083a7C278B4C45c598De155e5f9b7A8D5"
|
|
29276
29236
|
},
|
|
29277
|
-
{
|
|
29278
|
-
"contractAddress": "0x9465CF4b4032080434E397F42fB99A8446c35376",
|
|
29279
|
-
"proxyAddress": "0xd5Ec94430eF4170D819E0996BC53ed40d31638d8",
|
|
29280
|
-
"decimals": 8,
|
|
29281
|
-
"name": "USD+ / USD"
|
|
29282
|
-
},
|
|
29283
29237
|
{
|
|
29284
29238
|
"contractAddress": "0x97100bac08Ef1532401041b5F864B4De999ab6D4",
|
|
29285
29239
|
"proxyAddress": "0xC8D5D660bb585b68fa0263EeD7B4224a5FC99669",
|
|
@@ -29408,24 +29362,12 @@ const chainlinkFeeds = {
|
|
|
29408
29362
|
"decimals": 1,
|
|
29409
29363
|
"name": "PCE Price Index — Percent Change (Annual Rate)"
|
|
29410
29364
|
},
|
|
29411
|
-
{
|
|
29412
|
-
"contractAddress": "0xCe14fF0ACf4a1e7Eab6802C64D317e3fD989f3C6",
|
|
29413
|
-
"proxyAddress": "0x1fC950BbC12E93c15A3eEb62db978eb3cC567943",
|
|
29414
|
-
"decimals": 8,
|
|
29415
|
-
"name": "SYND / USD"
|
|
29416
|
-
},
|
|
29417
29365
|
{
|
|
29418
29366
|
"contractAddress": "0xD0407a6524C7d9075E0b040dCEf4696129B2C3B4",
|
|
29419
29367
|
"proxyAddress": "0xeDC243c7E3c1A9dAf067C90641D2346d2694d2e5",
|
|
29420
29368
|
"decimals": 18,
|
|
29421
29369
|
"name": "LSETH / ETH"
|
|
29422
29370
|
},
|
|
29423
|
-
{
|
|
29424
|
-
"contractAddress": "0xD27766C20dF630a7D7e1e5885ae581FB0e61828A",
|
|
29425
|
-
"proxyAddress": "0xe25969e2Fa633a0C027fAB8F30Fc9C6A90D60B48",
|
|
29426
|
-
"decimals": 8,
|
|
29427
|
-
"name": "USDz / USD"
|
|
29428
|
-
},
|
|
29429
29371
|
{
|
|
29430
29372
|
"contractAddress": "0xD41A2B9575eD27D38EC9B75B4d0DD9632a72e45b",
|
|
29431
29373
|
"proxyAddress": "0x5218Ebeb96bD2bAFe21F9b143f5672552629ba79",
|
|
@@ -29487,12 +29429,6 @@ const chainlinkFeeds = {
|
|
|
29487
29429
|
"decimals": 8,
|
|
29488
29430
|
"name": "USDAI / USD"
|
|
29489
29431
|
},
|
|
29490
|
-
{
|
|
29491
|
-
"contractAddress": "0xF4f6843A8003417b04EAbDd7a1bAe2cAFCBF0aCC",
|
|
29492
|
-
"proxyAddress": "0x721F1B4dc604AEA0661Aa9982AB624e5756B31f2",
|
|
29493
|
-
"decimals": 8,
|
|
29494
|
-
"name": "mooBIFI / USD"
|
|
29495
|
-
},
|
|
29496
29432
|
{
|
|
29497
29433
|
"contractAddress": "0xF929EC74AB71033792308dB7fbE82Eb87b42ac3E",
|
|
29498
29434
|
"proxyAddress": "0x95Eba7bE2f755a298984bd714822994f1d4B6313",
|
|
@@ -29603,6 +29539,12 @@ const chainlinkFeeds = {
|
|
|
29603
29539
|
"decimals": 1,
|
|
29604
29540
|
"name": "Real Final Sales to Private Domestic Purchasers — Percent Change (Annual Rate)"
|
|
29605
29541
|
},
|
|
29542
|
+
{
|
|
29543
|
+
"contractAddress": "0xdc22706Ac082C85fE56A5ac4cc85A7b012490c35",
|
|
29544
|
+
"proxyAddress": "0xaABc55Ca55D70B034e4daA2551A224239890282F",
|
|
29545
|
+
"decimals": 18,
|
|
29546
|
+
"name": "VVV / USD"
|
|
29547
|
+
},
|
|
29606
29548
|
{
|
|
29607
29549
|
"contractAddress": "0xe09bE26CF556F7211c16B75BE9fB4DB433A0d37E",
|
|
29608
29550
|
"proxyAddress": "0x06bdFe07E71C476157FC025d3cCD4BBe08e83EF9",
|
|
@@ -29772,6 +29714,12 @@ const chainlinkFeeds = {
|
|
|
29772
29714
|
"decimals": 18,
|
|
29773
29715
|
"name": "instETH / ETH Exchange Rate"
|
|
29774
29716
|
},
|
|
29717
|
+
{
|
|
29718
|
+
"contractAddress": "0x11F15B46dFDcAE97FFCC08d4Fe2520CC09B8c959",
|
|
29719
|
+
"proxyAddress": "0xAa3024cF3f77bA88f8Fe9ff0D24903c50022f874",
|
|
29720
|
+
"decimals": 18,
|
|
29721
|
+
"name": "SAVUSD / AVUSD Exchange Rate"
|
|
29722
|
+
},
|
|
29775
29723
|
{
|
|
29776
29724
|
"contractAddress": "0x126b9a529Dd6f14C62c494F6b6b5AA73d9f6F849",
|
|
29777
29725
|
"proxyAddress": "0x3609baAa0a9b1f0FE4d6CC01884585d0e191C3E3",
|
|
@@ -29967,12 +29915,6 @@ const chainlinkFeeds = {
|
|
|
29967
29915
|
"name": "AAVE SVR EURC / USD",
|
|
29968
29916
|
"secondaryProxyAddress": "0x86e5D529Cb7cAeF5C475Aab0727a84739E12EA3F"
|
|
29969
29917
|
},
|
|
29970
|
-
{
|
|
29971
|
-
"contractAddress": "0x338D614Af8c05eF9d77a33E9D33A92b770809ED4",
|
|
29972
|
-
"proxyAddress": "0x6548a81E640C000150e06AB413fB3F772682e9c5",
|
|
29973
|
-
"decimals": 8,
|
|
29974
|
-
"name": "USD+ / USD"
|
|
29975
|
-
},
|
|
29976
29918
|
{
|
|
29977
29919
|
"contractAddress": "0x34EA4fc62510bd81a72399309f717B96F740A4AE",
|
|
29978
29920
|
"proxyAddress": "0x7A58648CAeA88e042767823723aF266DC6c4c4D9",
|
|
@@ -29992,6 +29934,12 @@ const chainlinkFeeds = {
|
|
|
29992
29934
|
"decimals": 8,
|
|
29993
29935
|
"name": "ETH / USD"
|
|
29994
29936
|
},
|
|
29937
|
+
{
|
|
29938
|
+
"contractAddress": "0x377dB25BbD41Bf70746cC2936875AA6bDF58fD43",
|
|
29939
|
+
"proxyAddress": "0x4Fd4455b88D38945ca1B2ef2D499f805091EB5a6",
|
|
29940
|
+
"decimals": 18,
|
|
29941
|
+
"name": "SOLVBTC / BTC Exchange Rate"
|
|
29942
|
+
},
|
|
29995
29943
|
{
|
|
29996
29944
|
"contractAddress": "0x37b300020b77d043F2A8cf7700f1b05d6d889090",
|
|
29997
29945
|
"proxyAddress": "0xf2215b9c35b1697B5f47e407c917a40D055E68d7",
|
|
@@ -30004,12 +29952,6 @@ const chainlinkFeeds = {
|
|
|
30004
29952
|
"decimals": 8,
|
|
30005
29953
|
"name": "SNX / USD"
|
|
30006
29954
|
},
|
|
30007
|
-
{
|
|
30008
|
-
"contractAddress": "0x39fdD7815faDA275d666437D9571967Ef6417880",
|
|
30009
|
-
"proxyAddress": "0x05Bc6e5Fb110589bb366A3Cd7CdBe143EeBA2168",
|
|
30010
|
-
"decimals": 18,
|
|
30011
|
-
"name": "SWETH / ETH"
|
|
30012
|
-
},
|
|
30013
29955
|
{
|
|
30014
29956
|
"contractAddress": "0x3A00c8Ffe6d87C00c55543f3a265E153bC50e754",
|
|
30015
29957
|
"proxyAddress": "0x9fa74925F21ad6C86d8f402EF490cFbA2Fa5e9bE",
|
|
@@ -30052,42 +29994,18 @@ const chainlinkFeeds = {
|
|
|
30052
29994
|
"decimals": 18,
|
|
30053
29995
|
"name": "ASTR/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30054
29996
|
},
|
|
30055
|
-
{
|
|
30056
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30057
|
-
"proxyAddress": null,
|
|
30058
|
-
"decimals": 18,
|
|
30059
|
-
"name": "REZ/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30060
|
-
},
|
|
30061
|
-
{
|
|
30062
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30063
|
-
"proxyAddress": null,
|
|
30064
|
-
"decimals": 18,
|
|
30065
|
-
"name": "WOO/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30066
|
-
},
|
|
30067
29997
|
{
|
|
30068
29998
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30069
29999
|
"proxyAddress": null,
|
|
30070
30000
|
"decimals": 18,
|
|
30071
30001
|
"name": "BONK/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30072
30002
|
},
|
|
30073
|
-
{
|
|
30074
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30075
|
-
"proxyAddress": null,
|
|
30076
|
-
"decimals": 18,
|
|
30077
|
-
"name": "PEOPLE/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30078
|
-
},
|
|
30079
30003
|
{
|
|
30080
30004
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30081
30005
|
"proxyAddress": null,
|
|
30082
30006
|
"decimals": 18,
|
|
30083
30007
|
"name": "ATOM/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30084
30008
|
},
|
|
30085
|
-
{
|
|
30086
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30087
|
-
"proxyAddress": null,
|
|
30088
|
-
"decimals": 18,
|
|
30089
|
-
"name": "XAI/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30090
|
-
},
|
|
30091
30009
|
{
|
|
30092
30010
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30093
30011
|
"proxyAddress": null,
|
|
@@ -30112,12 +30030,6 @@ const chainlinkFeeds = {
|
|
|
30112
30030
|
"decimals": 18,
|
|
30113
30031
|
"name": "ORDER/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30114
30032
|
},
|
|
30115
|
-
{
|
|
30116
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30117
|
-
"proxyAddress": null,
|
|
30118
|
-
"decimals": 18,
|
|
30119
|
-
"name": "BIGTIME/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30120
|
-
},
|
|
30121
30033
|
{
|
|
30122
30034
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30123
30035
|
"proxyAddress": null,
|
|
@@ -30130,12 +30042,6 @@ const chainlinkFeeds = {
|
|
|
30130
30042
|
"decimals": 18,
|
|
30131
30043
|
"name": "ADA/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30132
30044
|
},
|
|
30133
|
-
{
|
|
30134
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30135
|
-
"proxyAddress": null,
|
|
30136
|
-
"decimals": 18,
|
|
30137
|
-
"name": "NOT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30138
|
-
},
|
|
30139
30045
|
{
|
|
30140
30046
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30141
30047
|
"proxyAddress": null,
|
|
@@ -30148,12 +30054,6 @@ const chainlinkFeeds = {
|
|
|
30148
30054
|
"decimals": 18,
|
|
30149
30055
|
"name": "PENDLE/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30150
30056
|
},
|
|
30151
|
-
{
|
|
30152
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30153
|
-
"proxyAddress": null,
|
|
30154
|
-
"decimals": 18,
|
|
30155
|
-
"name": "PIXEL/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30156
|
-
},
|
|
30157
30057
|
{
|
|
30158
30058
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30159
30059
|
"proxyAddress": null,
|
|
@@ -30196,42 +30096,6 @@ const chainlinkFeeds = {
|
|
|
30196
30096
|
"decimals": 18,
|
|
30197
30097
|
"name": "MELANIA/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30198
30098
|
},
|
|
30199
|
-
{
|
|
30200
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30201
|
-
"proxyAddress": null,
|
|
30202
|
-
"decimals": 18,
|
|
30203
|
-
"name": "BLUR/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30204
|
-
},
|
|
30205
|
-
{
|
|
30206
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30207
|
-
"proxyAddress": null,
|
|
30208
|
-
"decimals": 18,
|
|
30209
|
-
"name": "HOT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30210
|
-
},
|
|
30211
|
-
{
|
|
30212
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30213
|
-
"proxyAddress": null,
|
|
30214
|
-
"decimals": 18,
|
|
30215
|
-
"name": "MOG/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30216
|
-
},
|
|
30217
|
-
{
|
|
30218
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30219
|
-
"proxyAddress": null,
|
|
30220
|
-
"decimals": 18,
|
|
30221
|
-
"name": "STG/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30222
|
-
},
|
|
30223
|
-
{
|
|
30224
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30225
|
-
"proxyAddress": null,
|
|
30226
|
-
"decimals": 18,
|
|
30227
|
-
"name": "IQ/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30228
|
-
},
|
|
30229
|
-
{
|
|
30230
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30231
|
-
"proxyAddress": null,
|
|
30232
|
-
"decimals": 18,
|
|
30233
|
-
"name": "ILV/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30234
|
-
},
|
|
30235
30099
|
{
|
|
30236
30100
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30237
30101
|
"proxyAddress": null,
|
|
@@ -30298,18 +30162,6 @@ const chainlinkFeeds = {
|
|
|
30298
30162
|
"decimals": 18,
|
|
30299
30163
|
"name": "QNT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30300
30164
|
},
|
|
30301
|
-
{
|
|
30302
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30303
|
-
"proxyAddress": null,
|
|
30304
|
-
"decimals": 18,
|
|
30305
|
-
"name": "AI/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30306
|
-
},
|
|
30307
|
-
{
|
|
30308
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30309
|
-
"proxyAddress": null,
|
|
30310
|
-
"decimals": 18,
|
|
30311
|
-
"name": "C98/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30312
|
-
},
|
|
30313
30165
|
{
|
|
30314
30166
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30315
30167
|
"proxyAddress": null,
|
|
@@ -30322,12 +30174,6 @@ const chainlinkFeeds = {
|
|
|
30322
30174
|
"decimals": 18,
|
|
30323
30175
|
"name": "PAXG/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30324
30176
|
},
|
|
30325
|
-
{
|
|
30326
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30327
|
-
"proxyAddress": null,
|
|
30328
|
-
"decimals": 18,
|
|
30329
|
-
"name": "EDU/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30330
|
-
},
|
|
30331
30177
|
{
|
|
30332
30178
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30333
30179
|
"proxyAddress": null,
|
|
@@ -30346,18 +30192,6 @@ const chainlinkFeeds = {
|
|
|
30346
30192
|
"decimals": 18,
|
|
30347
30193
|
"name": "ICP/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30348
30194
|
},
|
|
30349
|
-
{
|
|
30350
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30351
|
-
"proxyAddress": null,
|
|
30352
|
-
"decimals": 18,
|
|
30353
|
-
"name": "MERL/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30354
|
-
},
|
|
30355
|
-
{
|
|
30356
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30357
|
-
"proxyAddress": null,
|
|
30358
|
-
"decimals": 18,
|
|
30359
|
-
"name": "BLAST/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30360
|
-
},
|
|
30361
30195
|
{
|
|
30362
30196
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30363
30197
|
"proxyAddress": null,
|
|
@@ -30388,12 +30222,6 @@ const chainlinkFeeds = {
|
|
|
30388
30222
|
"decimals": 18,
|
|
30389
30223
|
"name": "BNB/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30390
30224
|
},
|
|
30391
|
-
{
|
|
30392
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30393
|
-
"proxyAddress": null,
|
|
30394
|
-
"decimals": 18,
|
|
30395
|
-
"name": "LPT/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30396
|
-
},
|
|
30397
30225
|
{
|
|
30398
30226
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30399
30227
|
"proxyAddress": null,
|
|
@@ -30412,12 +30240,6 @@ const chainlinkFeeds = {
|
|
|
30412
30240
|
"decimals": 18,
|
|
30413
30241
|
"name": "VIRTUAL/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30414
30242
|
},
|
|
30415
|
-
{
|
|
30416
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30417
|
-
"proxyAddress": null,
|
|
30418
|
-
"decimals": 18,
|
|
30419
|
-
"name": "IO/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30420
|
-
},
|
|
30421
30243
|
{
|
|
30422
30244
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30423
30245
|
"proxyAddress": null,
|
|
@@ -30430,24 +30252,6 @@ const chainlinkFeeds = {
|
|
|
30430
30252
|
"decimals": 18,
|
|
30431
30253
|
"name": "GOAT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30432
30254
|
},
|
|
30433
|
-
{
|
|
30434
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30435
|
-
"proxyAddress": null,
|
|
30436
|
-
"decimals": 18,
|
|
30437
|
-
"name": "RDNT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30438
|
-
},
|
|
30439
|
-
{
|
|
30440
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30441
|
-
"proxyAddress": null,
|
|
30442
|
-
"decimals": 18,
|
|
30443
|
-
"name": "TOKEN/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30444
|
-
},
|
|
30445
|
-
{
|
|
30446
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30447
|
-
"proxyAddress": null,
|
|
30448
|
-
"decimals": 18,
|
|
30449
|
-
"name": "ZEREBRO/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30450
|
-
},
|
|
30451
30255
|
{
|
|
30452
30256
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30453
30257
|
"proxyAddress": null,
|
|
@@ -30460,18 +30264,6 @@ const chainlinkFeeds = {
|
|
|
30460
30264
|
"decimals": 18,
|
|
30461
30265
|
"name": "LINK/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30462
30266
|
},
|
|
30463
|
-
{
|
|
30464
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30465
|
-
"proxyAddress": null,
|
|
30466
|
-
"decimals": 18,
|
|
30467
|
-
"name": "POLYX/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30468
|
-
},
|
|
30469
|
-
{
|
|
30470
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30471
|
-
"proxyAddress": null,
|
|
30472
|
-
"decimals": 18,
|
|
30473
|
-
"name": "ARKM/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30474
|
-
},
|
|
30475
30267
|
{
|
|
30476
30268
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30477
30269
|
"proxyAddress": null,
|
|
@@ -30508,12 +30300,6 @@ const chainlinkFeeds = {
|
|
|
30508
30300
|
"decimals": 18,
|
|
30509
30301
|
"name": "PENGU/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30510
30302
|
},
|
|
30511
|
-
{
|
|
30512
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30513
|
-
"proxyAddress": null,
|
|
30514
|
-
"decimals": 18,
|
|
30515
|
-
"name": "BB/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30516
|
-
},
|
|
30517
30303
|
{
|
|
30518
30304
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30519
30305
|
"proxyAddress": null,
|
|
@@ -30562,30 +30348,12 @@ const chainlinkFeeds = {
|
|
|
30562
30348
|
"decimals": 18,
|
|
30563
30349
|
"name": "TURBO/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30564
30350
|
},
|
|
30565
|
-
{
|
|
30566
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30567
|
-
"proxyAddress": null,
|
|
30568
|
-
"decimals": 18,
|
|
30569
|
-
"name": "ETHFI/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30570
|
-
},
|
|
30571
30351
|
{
|
|
30572
30352
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30573
30353
|
"proxyAddress": null,
|
|
30574
30354
|
"decimals": 18,
|
|
30575
30355
|
"name": "PEPE/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30576
30356
|
},
|
|
30577
|
-
{
|
|
30578
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30579
|
-
"proxyAddress": null,
|
|
30580
|
-
"decimals": 18,
|
|
30581
|
-
"name": "HMSTR/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30582
|
-
},
|
|
30583
|
-
{
|
|
30584
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30585
|
-
"proxyAddress": null,
|
|
30586
|
-
"decimals": 18,
|
|
30587
|
-
"name": "MANTA/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30588
|
-
},
|
|
30589
30357
|
{
|
|
30590
30358
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30591
30359
|
"proxyAddress": null,
|
|
@@ -30622,36 +30390,18 @@ const chainlinkFeeds = {
|
|
|
30622
30390
|
"decimals": 18,
|
|
30623
30391
|
"name": "SUI/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30624
30392
|
},
|
|
30625
|
-
{
|
|
30626
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30627
|
-
"proxyAddress": null,
|
|
30628
|
-
"decimals": 18,
|
|
30629
|
-
"name": "MANA/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30630
|
-
},
|
|
30631
30393
|
{
|
|
30632
30394
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30633
30395
|
"proxyAddress": null,
|
|
30634
30396
|
"decimals": 18,
|
|
30635
30397
|
"name": "TRUMP/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30636
30398
|
},
|
|
30637
|
-
{
|
|
30638
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30639
|
-
"proxyAddress": null,
|
|
30640
|
-
"decimals": 18,
|
|
30641
|
-
"name": "CAT/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30642
|
-
},
|
|
30643
30399
|
{
|
|
30644
30400
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30645
30401
|
"proxyAddress": null,
|
|
30646
30402
|
"decimals": 18,
|
|
30647
30403
|
"name": "KNC/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30648
30404
|
},
|
|
30649
|
-
{
|
|
30650
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30651
|
-
"proxyAddress": null,
|
|
30652
|
-
"decimals": 18,
|
|
30653
|
-
"name": "ID/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30654
|
-
},
|
|
30655
30405
|
{
|
|
30656
30406
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30657
30407
|
"proxyAddress": null,
|
|
@@ -30670,18 +30420,6 @@ const chainlinkFeeds = {
|
|
|
30670
30420
|
"decimals": 18,
|
|
30671
30421
|
"name": "DAI/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30672
30422
|
},
|
|
30673
|
-
{
|
|
30674
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30675
|
-
"proxyAddress": null,
|
|
30676
|
-
"decimals": 18,
|
|
30677
|
-
"name": "CYBER/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30678
|
-
},
|
|
30679
|
-
{
|
|
30680
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30681
|
-
"proxyAddress": null,
|
|
30682
|
-
"decimals": 18,
|
|
30683
|
-
"name": "CHR/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30684
|
-
},
|
|
30685
30423
|
{
|
|
30686
30424
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30687
30425
|
"proxyAddress": null,
|
|
@@ -30700,12 +30438,6 @@ const chainlinkFeeds = {
|
|
|
30700
30438
|
"decimals": 18,
|
|
30701
30439
|
"name": "W/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30702
30440
|
},
|
|
30703
|
-
{
|
|
30704
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30705
|
-
"proxyAddress": null,
|
|
30706
|
-
"decimals": 18,
|
|
30707
|
-
"name": "POPCAT/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30708
|
-
},
|
|
30709
30441
|
{
|
|
30710
30442
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30711
30443
|
"proxyAddress": null,
|
|
@@ -30748,24 +30480,6 @@ const chainlinkFeeds = {
|
|
|
30748
30480
|
"decimals": 18,
|
|
30749
30481
|
"name": "RENDER/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30750
30482
|
},
|
|
30751
|
-
{
|
|
30752
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30753
|
-
"proxyAddress": null,
|
|
30754
|
-
"decimals": 18,
|
|
30755
|
-
"name": "MAV/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30756
|
-
},
|
|
30757
|
-
{
|
|
30758
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30759
|
-
"proxyAddress": null,
|
|
30760
|
-
"decimals": 18,
|
|
30761
|
-
"name": "ENS/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30762
|
-
},
|
|
30763
|
-
{
|
|
30764
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30765
|
-
"proxyAddress": null,
|
|
30766
|
-
"decimals": 18,
|
|
30767
|
-
"name": "HOOK/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30768
|
-
},
|
|
30769
30483
|
{
|
|
30770
30484
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30771
30485
|
"proxyAddress": null,
|
|
@@ -30790,18 +30504,6 @@ const chainlinkFeeds = {
|
|
|
30790
30504
|
"decimals": 18,
|
|
30791
30505
|
"name": "DYDX/USD-RefPrice-DStaging-Premium-Global-003"
|
|
30792
30506
|
},
|
|
30793
|
-
{
|
|
30794
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30795
|
-
"proxyAddress": null,
|
|
30796
|
-
"decimals": 18,
|
|
30797
|
-
"name": "ALT/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30798
|
-
},
|
|
30799
|
-
{
|
|
30800
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30801
|
-
"proxyAddress": null,
|
|
30802
|
-
"decimals": 18,
|
|
30803
|
-
"name": "COMP/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30804
|
-
},
|
|
30805
30507
|
{
|
|
30806
30508
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30807
30509
|
"proxyAddress": null,
|
|
@@ -30832,12 +30534,6 @@ const chainlinkFeeds = {
|
|
|
30832
30534
|
"decimals": 18,
|
|
30833
30535
|
"name": "JUP/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30834
30536
|
},
|
|
30835
|
-
{
|
|
30836
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30837
|
-
"proxyAddress": null,
|
|
30838
|
-
"decimals": 18,
|
|
30839
|
-
"name": "ACE/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30840
|
-
},
|
|
30841
30537
|
{
|
|
30842
30538
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30843
30539
|
"proxyAddress": null,
|
|
@@ -31092,42 +30788,12 @@ const chainlinkFeeds = {
|
|
|
31092
30788
|
"decimals": 8,
|
|
31093
30789
|
"name": "COMP / USD"
|
|
31094
30790
|
},
|
|
31095
|
-
{
|
|
31096
|
-
"contractAddress": "0x53368bC6a7eB4f4AF3d6974520FEba0295A5daAb",
|
|
31097
|
-
"proxyAddress": "0xBE5eA816870D11239c543F84b71439511D70B94f",
|
|
31098
|
-
"decimals": 8,
|
|
31099
|
-
"name": "BAL / USD"
|
|
31100
|
-
},
|
|
31101
30791
|
{
|
|
31102
30792
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31103
30793
|
"proxyAddress": null,
|
|
31104
30794
|
"decimals": 18,
|
|
31105
30795
|
"name": "GALA/USD-RefPrice-DS-Premium-Global-003"
|
|
31106
30796
|
},
|
|
31107
|
-
{
|
|
31108
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31109
|
-
"proxyAddress": null,
|
|
31110
|
-
"decimals": 18,
|
|
31111
|
-
"name": "POLYX/USD-RefPrice-DS-Premium-Global-003"
|
|
31112
|
-
},
|
|
31113
|
-
{
|
|
31114
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31115
|
-
"proxyAddress": null,
|
|
31116
|
-
"decimals": 18,
|
|
31117
|
-
"name": "HOOK/USD-RefPrice-DS-Premium-Global-003"
|
|
31118
|
-
},
|
|
31119
|
-
{
|
|
31120
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31121
|
-
"proxyAddress": null,
|
|
31122
|
-
"decimals": 18,
|
|
31123
|
-
"name": "ACE/USD-RefPrice-DS-Premium-Global-003"
|
|
31124
|
-
},
|
|
31125
|
-
{
|
|
31126
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31127
|
-
"proxyAddress": null,
|
|
31128
|
-
"decimals": 18,
|
|
31129
|
-
"name": "BLUR/USD-RefPrice-DS-Premium-Global-003"
|
|
31130
|
-
},
|
|
31131
30797
|
{
|
|
31132
30798
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31133
30799
|
"proxyAddress": null,
|
|
@@ -31140,24 +30806,12 @@ const chainlinkFeeds = {
|
|
|
31140
30806
|
"decimals": 18,
|
|
31141
30807
|
"name": "SATS/USD-RefPrice-DS-Premium-Global-003"
|
|
31142
30808
|
},
|
|
31143
|
-
{
|
|
31144
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31145
|
-
"proxyAddress": null,
|
|
31146
|
-
"decimals": 18,
|
|
31147
|
-
"name": "CHR/USD-RefPrice-DS-Premium-Global-003"
|
|
31148
|
-
},
|
|
31149
30809
|
{
|
|
31150
30810
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31151
30811
|
"proxyAddress": null,
|
|
31152
30812
|
"decimals": 18,
|
|
31153
30813
|
"name": "STRK/USD-RefPrice-DS-Premium-Global-003"
|
|
31154
30814
|
},
|
|
31155
|
-
{
|
|
31156
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31157
|
-
"proxyAddress": null,
|
|
31158
|
-
"decimals": 18,
|
|
31159
|
-
"name": "BB/USD-RefPrice-DS-Premium-Global-003"
|
|
31160
|
-
},
|
|
31161
30815
|
{
|
|
31162
30816
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31163
30817
|
"proxyAddress": null,
|
|
@@ -31176,12 +30830,6 @@ const chainlinkFeeds = {
|
|
|
31176
30830
|
"decimals": 18,
|
|
31177
30831
|
"name": "TRX/USD-RefPrice-DS-Premium-Global-003"
|
|
31178
30832
|
},
|
|
31179
|
-
{
|
|
31180
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31181
|
-
"proxyAddress": null,
|
|
31182
|
-
"decimals": 18,
|
|
31183
|
-
"name": "ID/USD-RefPrice-DS-Premium-Global-003"
|
|
31184
|
-
},
|
|
31185
30833
|
{
|
|
31186
30834
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31187
30835
|
"proxyAddress": null,
|
|
@@ -31212,12 +30860,6 @@ const chainlinkFeeds = {
|
|
|
31212
30860
|
"decimals": 18,
|
|
31213
30861
|
"name": "JTO/USD-RefPrice-DS-Premium-Global-003"
|
|
31214
30862
|
},
|
|
31215
|
-
{
|
|
31216
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31217
|
-
"proxyAddress": null,
|
|
31218
|
-
"decimals": 18,
|
|
31219
|
-
"name": "MANA/USD-RefPrice-DS-Premium-Global-003"
|
|
31220
|
-
},
|
|
31221
30863
|
{
|
|
31222
30864
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31223
30865
|
"proxyAddress": null,
|
|
@@ -31236,24 +30878,12 @@ const chainlinkFeeds = {
|
|
|
31236
30878
|
"decimals": 18,
|
|
31237
30879
|
"name": "JUP/USD-RefPrice-DS-Premium-Global-003"
|
|
31238
30880
|
},
|
|
31239
|
-
{
|
|
31240
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31241
|
-
"proxyAddress": null,
|
|
31242
|
-
"decimals": 18,
|
|
31243
|
-
"name": "MOG/USD-RefPrice-DS-Premium-Global-003"
|
|
31244
|
-
},
|
|
31245
30881
|
{
|
|
31246
30882
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31247
30883
|
"proxyAddress": null,
|
|
31248
30884
|
"decimals": 18,
|
|
31249
30885
|
"name": "SAND/USD-RefPrice-DS-Premium-Global-003"
|
|
31250
30886
|
},
|
|
31251
|
-
{
|
|
31252
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31253
|
-
"proxyAddress": null,
|
|
31254
|
-
"decimals": 18,
|
|
31255
|
-
"name": "REZ/USD-RefPrice-DS-Premium-Global-003"
|
|
31256
|
-
},
|
|
31257
30887
|
{
|
|
31258
30888
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31259
30889
|
"proxyAddress": null,
|
|
@@ -31326,12 +30956,6 @@ const chainlinkFeeds = {
|
|
|
31326
30956
|
"decimals": 18,
|
|
31327
30957
|
"name": "BRETT/USD-RefPrice-DS-Premium-Global-003"
|
|
31328
30958
|
},
|
|
31329
|
-
{
|
|
31330
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31331
|
-
"proxyAddress": null,
|
|
31332
|
-
"decimals": 18,
|
|
31333
|
-
"name": "IO/USD-RefPrice-DS-Premium-Global-003"
|
|
31334
|
-
},
|
|
31335
30959
|
{
|
|
31336
30960
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31337
30961
|
"proxyAddress": null,
|
|
@@ -31374,48 +30998,18 @@ const chainlinkFeeds = {
|
|
|
31374
30998
|
"decimals": 18,
|
|
31375
30999
|
"name": "TIA/USD-RefPrice-DS-Premium-Global-003"
|
|
31376
31000
|
},
|
|
31377
|
-
{
|
|
31378
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31379
|
-
"proxyAddress": null,
|
|
31380
|
-
"decimals": 18,
|
|
31381
|
-
"name": "MERL/USD-RefPrice-DS-Premium-Global-003"
|
|
31382
|
-
},
|
|
31383
|
-
{
|
|
31384
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31385
|
-
"proxyAddress": null,
|
|
31386
|
-
"decimals": 18,
|
|
31387
|
-
"name": "STG/USD-RefPrice-DS-Premium-Global-003"
|
|
31388
|
-
},
|
|
31389
31001
|
{
|
|
31390
31002
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31391
31003
|
"proxyAddress": null,
|
|
31392
31004
|
"decimals": 18,
|
|
31393
31005
|
"name": "RENDER/USD-RefPrice-DS-Premium-Global-003"
|
|
31394
31006
|
},
|
|
31395
|
-
{
|
|
31396
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31397
|
-
"proxyAddress": null,
|
|
31398
|
-
"decimals": 18,
|
|
31399
|
-
"name": "PEOPLE/USD-RefPrice-DS-Premium-Global-003"
|
|
31400
|
-
},
|
|
31401
|
-
{
|
|
31402
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31403
|
-
"proxyAddress": null,
|
|
31404
|
-
"decimals": 18,
|
|
31405
|
-
"name": "XAI/USD-RefPrice-DS-Premium-Global-003"
|
|
31406
|
-
},
|
|
31407
31007
|
{
|
|
31408
31008
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31409
31009
|
"proxyAddress": null,
|
|
31410
31010
|
"decimals": 18,
|
|
31411
31011
|
"name": "XTZ/USD-RefPrice-DS-Premium-Global-003"
|
|
31412
31012
|
},
|
|
31413
|
-
{
|
|
31414
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31415
|
-
"proxyAddress": null,
|
|
31416
|
-
"decimals": 18,
|
|
31417
|
-
"name": "NOT/USD-RefPrice-DS-Premium-Global-003"
|
|
31418
|
-
},
|
|
31419
31013
|
{
|
|
31420
31014
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31421
31015
|
"proxyAddress": null,
|
|
@@ -31458,24 +31052,6 @@ const chainlinkFeeds = {
|
|
|
31458
31052
|
"decimals": 18,
|
|
31459
31053
|
"name": "GRT/USD-RefPrice-DS-Premium-Global-003"
|
|
31460
31054
|
},
|
|
31461
|
-
{
|
|
31462
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31463
|
-
"proxyAddress": null,
|
|
31464
|
-
"decimals": 18,
|
|
31465
|
-
"name": "EDU/USD-RefPrice-DS-Premium-Global-003"
|
|
31466
|
-
},
|
|
31467
|
-
{
|
|
31468
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31469
|
-
"proxyAddress": null,
|
|
31470
|
-
"decimals": 18,
|
|
31471
|
-
"name": "CYBER/USD-RefPrice-DS-Premium-Global-003"
|
|
31472
|
-
},
|
|
31473
|
-
{
|
|
31474
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31475
|
-
"proxyAddress": null,
|
|
31476
|
-
"decimals": 18,
|
|
31477
|
-
"name": "WOO/USD-RefPrice-DS-Premium-Global-003"
|
|
31478
|
-
},
|
|
31479
31055
|
{
|
|
31480
31056
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31481
31057
|
"proxyAddress": null,
|
|
@@ -31500,12 +31076,6 @@ const chainlinkFeeds = {
|
|
|
31500
31076
|
"decimals": 18,
|
|
31501
31077
|
"name": "UNI/USD-RefPrice-DS-Premium-Global-003"
|
|
31502
31078
|
},
|
|
31503
|
-
{
|
|
31504
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31505
|
-
"proxyAddress": null,
|
|
31506
|
-
"decimals": 18,
|
|
31507
|
-
"name": "ETHFI/USD-RefPrice-DS-Premium-Global-003"
|
|
31508
|
-
},
|
|
31509
31079
|
{
|
|
31510
31080
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31511
31081
|
"proxyAddress": null,
|
|
@@ -31548,24 +31118,6 @@ const chainlinkFeeds = {
|
|
|
31548
31118
|
"decimals": 18,
|
|
31549
31119
|
"name": "ONDO/USD-RefPrice-DS-Premium-Global-003"
|
|
31550
31120
|
},
|
|
31551
|
-
{
|
|
31552
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31553
|
-
"proxyAddress": null,
|
|
31554
|
-
"decimals": 18,
|
|
31555
|
-
"name": "C98/USD-RefPrice-DS-Premium-Global-003"
|
|
31556
|
-
},
|
|
31557
|
-
{
|
|
31558
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31559
|
-
"proxyAddress": null,
|
|
31560
|
-
"decimals": 18,
|
|
31561
|
-
"name": "BIGTIME/USD-RefPrice-DS-Premium-Global-003"
|
|
31562
|
-
},
|
|
31563
|
-
{
|
|
31564
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31565
|
-
"proxyAddress": null,
|
|
31566
|
-
"decimals": 18,
|
|
31567
|
-
"name": "RDNT/USD-RefPrice-DS-Premium-Global-003"
|
|
31568
|
-
},
|
|
31569
31121
|
{
|
|
31570
31122
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31571
31123
|
"proxyAddress": null,
|
|
@@ -31578,12 +31130,6 @@ const chainlinkFeeds = {
|
|
|
31578
31130
|
"decimals": 18,
|
|
31579
31131
|
"name": "VIRTUAL/USD-RefPrice-DS-Premium-Global-003"
|
|
31580
31132
|
},
|
|
31581
|
-
{
|
|
31582
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31583
|
-
"proxyAddress": null,
|
|
31584
|
-
"decimals": 18,
|
|
31585
|
-
"name": "MANTA/USD-RefPrice-DS-Premium-Global-003"
|
|
31586
|
-
},
|
|
31587
31133
|
{
|
|
31588
31134
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31589
31135
|
"proxyAddress": null,
|
|
@@ -31596,12 +31142,6 @@ const chainlinkFeeds = {
|
|
|
31596
31142
|
"decimals": 18,
|
|
31597
31143
|
"name": "MKR/USD-RefPrice-DS-Premium-Global-003"
|
|
31598
31144
|
},
|
|
31599
|
-
{
|
|
31600
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31601
|
-
"proxyAddress": null,
|
|
31602
|
-
"decimals": 18,
|
|
31603
|
-
"name": "BLAST/USD-RefPrice-DS-Premium-Global-003"
|
|
31604
|
-
},
|
|
31605
31145
|
{
|
|
31606
31146
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31607
31147
|
"proxyAddress": null,
|
|
@@ -31620,24 +31160,6 @@ const chainlinkFeeds = {
|
|
|
31620
31160
|
"decimals": 18,
|
|
31621
31161
|
"name": "ZEC/USD-RefPrice-DS-Premium-Global-003"
|
|
31622
31162
|
},
|
|
31623
|
-
{
|
|
31624
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31625
|
-
"proxyAddress": null,
|
|
31626
|
-
"decimals": 18,
|
|
31627
|
-
"name": "ENS/USD-RefPrice-DS-Premium-Global-003"
|
|
31628
|
-
},
|
|
31629
|
-
{
|
|
31630
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31631
|
-
"proxyAddress": null,
|
|
31632
|
-
"decimals": 18,
|
|
31633
|
-
"name": "ILV/USD-RefPrice-DS-Premium-Global-003"
|
|
31634
|
-
},
|
|
31635
|
-
{
|
|
31636
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31637
|
-
"proxyAddress": null,
|
|
31638
|
-
"decimals": 18,
|
|
31639
|
-
"name": "HMSTR/USD-RefPrice-DS-Premium-Global-003"
|
|
31640
|
-
},
|
|
31641
31163
|
{
|
|
31642
31164
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31643
31165
|
"proxyAddress": null,
|
|
@@ -31674,12 +31196,6 @@ const chainlinkFeeds = {
|
|
|
31674
31196
|
"decimals": 18,
|
|
31675
31197
|
"name": "AVAX/USD-RefPrice-DS-Premium-Global-003"
|
|
31676
31198
|
},
|
|
31677
|
-
{
|
|
31678
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31679
|
-
"proxyAddress": null,
|
|
31680
|
-
"decimals": 18,
|
|
31681
|
-
"name": "COMP/USD-RefPrice-DS-Premium-Global-003"
|
|
31682
|
-
},
|
|
31683
31199
|
{
|
|
31684
31200
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31685
31201
|
"proxyAddress": null,
|
|
@@ -31704,12 +31220,6 @@ const chainlinkFeeds = {
|
|
|
31704
31220
|
"decimals": 18,
|
|
31705
31221
|
"name": "OP/USD-RefPrice-DS-Premium-Global-003"
|
|
31706
31222
|
},
|
|
31707
|
-
{
|
|
31708
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31709
|
-
"proxyAddress": null,
|
|
31710
|
-
"decimals": 18,
|
|
31711
|
-
"name": "TOKEN/USD-RefPrice-DS-Premium-Global-003"
|
|
31712
|
-
},
|
|
31713
31223
|
{
|
|
31714
31224
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31715
31225
|
"proxyAddress": null,
|
|
@@ -31734,12 +31244,6 @@ const chainlinkFeeds = {
|
|
|
31734
31244
|
"decimals": 18,
|
|
31735
31245
|
"name": "ORDER/USD-RefPrice-DS-Premium-Global-003"
|
|
31736
31246
|
},
|
|
31737
|
-
{
|
|
31738
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31739
|
-
"proxyAddress": null,
|
|
31740
|
-
"decimals": 18,
|
|
31741
|
-
"name": "MAV/USD-RefPrice-DS-Premium-Global-003"
|
|
31742
|
-
},
|
|
31743
31247
|
{
|
|
31744
31248
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31745
31249
|
"proxyAddress": null,
|
|
@@ -31758,24 +31262,12 @@ const chainlinkFeeds = {
|
|
|
31758
31262
|
"decimals": 18,
|
|
31759
31263
|
"name": "BERA/USD-RefPrice-DS-Premium-Global-003"
|
|
31760
31264
|
},
|
|
31761
|
-
{
|
|
31762
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31763
|
-
"proxyAddress": null,
|
|
31764
|
-
"decimals": 18,
|
|
31765
|
-
"name": "ZEREBRO/USD-RefPrice-DS-Premium-Global-003"
|
|
31766
|
-
},
|
|
31767
31265
|
{
|
|
31768
31266
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31769
31267
|
"proxyAddress": null,
|
|
31770
31268
|
"decimals": 18,
|
|
31771
31269
|
"name": "ATOM/USD-RefPrice-DS-Premium-Global-003"
|
|
31772
31270
|
},
|
|
31773
|
-
{
|
|
31774
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31775
|
-
"proxyAddress": null,
|
|
31776
|
-
"decimals": 18,
|
|
31777
|
-
"name": "PIXEL/USD-RefPrice-DS-Premium-Global-003"
|
|
31778
|
-
},
|
|
31779
31271
|
{
|
|
31780
31272
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31781
31273
|
"proxyAddress": null,
|
|
@@ -31818,36 +31310,18 @@ const chainlinkFeeds = {
|
|
|
31818
31310
|
"decimals": 18,
|
|
31819
31311
|
"name": "ORDI/USD-RefPrice-DS-Premium-Global-003"
|
|
31820
31312
|
},
|
|
31821
|
-
{
|
|
31822
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31823
|
-
"proxyAddress": null,
|
|
31824
|
-
"decimals": 18,
|
|
31825
|
-
"name": "IQ/USD-RefPrice-DS-Premium-Global-003"
|
|
31826
|
-
},
|
|
31827
31313
|
{
|
|
31828
31314
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31829
31315
|
"proxyAddress": null,
|
|
31830
31316
|
"decimals": 18,
|
|
31831
31317
|
"name": "EGLD/USD-RefPrice-DS-Premium-Global-003"
|
|
31832
31318
|
},
|
|
31833
|
-
{
|
|
31834
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31835
|
-
"proxyAddress": null,
|
|
31836
|
-
"decimals": 18,
|
|
31837
|
-
"name": "ALT/USD-RefPrice-DS-Premium-Global-003"
|
|
31838
|
-
},
|
|
31839
31319
|
{
|
|
31840
31320
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31841
31321
|
"proxyAddress": null,
|
|
31842
31322
|
"decimals": 18,
|
|
31843
31323
|
"name": "DOGS/USD-RefPrice-DS-Premium-Global-003"
|
|
31844
31324
|
},
|
|
31845
|
-
{
|
|
31846
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31847
|
-
"proxyAddress": null,
|
|
31848
|
-
"decimals": 18,
|
|
31849
|
-
"name": "HOT/USD-RefPrice-DS-Premium-Global-003"
|
|
31850
|
-
},
|
|
31851
31325
|
{
|
|
31852
31326
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31853
31327
|
"proxyAddress": null,
|
|
@@ -31866,12 +31340,6 @@ const chainlinkFeeds = {
|
|
|
31866
31340
|
"decimals": 18,
|
|
31867
31341
|
"name": "SCR/USD-RefPrice-DS-Premium-Global-003"
|
|
31868
31342
|
},
|
|
31869
|
-
{
|
|
31870
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31871
|
-
"proxyAddress": null,
|
|
31872
|
-
"decimals": 18,
|
|
31873
|
-
"name": "ARKM/USD-RefPrice-DS-Premium-Global-003"
|
|
31874
|
-
},
|
|
31875
31343
|
{
|
|
31876
31344
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31877
31345
|
"proxyAddress": null,
|
|
@@ -31890,12 +31358,6 @@ const chainlinkFeeds = {
|
|
|
31890
31358
|
"decimals": 18,
|
|
31891
31359
|
"name": "ZRO/USD-RefPrice-DS-Premium-Global-003"
|
|
31892
31360
|
},
|
|
31893
|
-
{
|
|
31894
|
-
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31895
|
-
"proxyAddress": null,
|
|
31896
|
-
"decimals": 18,
|
|
31897
|
-
"name": "AI/USD-RefPrice-DS-Premium-Global-003"
|
|
31898
|
-
},
|
|
31899
31361
|
{
|
|
31900
31362
|
"contractAddress": "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66",
|
|
31901
31363
|
"proxyAddress": null,
|
|
@@ -32108,13 +31570,6 @@ const chainlinkFeeds = {
|
|
|
32108
31570
|
"decimals": 8,
|
|
32109
31571
|
"name": "solvBTC / BTC"
|
|
32110
31572
|
},
|
|
32111
|
-
{
|
|
32112
|
-
"contractAddress": "0x7399107Df5344E0b928e75f3ACfa90569eC20848",
|
|
32113
|
-
"proxyAddress": "0x16F384AeF73f3f3f7B566125b1f144Bc7c847b1E",
|
|
32114
|
-
"decimals": 8,
|
|
32115
|
-
"name": "SVR FRAX / USD",
|
|
32116
|
-
"secondaryProxyAddress": "0x7537F8c0f8F7E7def07BF9e91e636e55881C7A66"
|
|
32117
|
-
},
|
|
32118
31573
|
{
|
|
32119
31574
|
"contractAddress": "0x73BBf768a429a4f80c47D0d22DdBCe5823c97d7a",
|
|
32120
31575
|
"proxyAddress": "0x052d4200b624b07262F574af26C71A6553996Ab5",
|
|
@@ -32241,12 +31696,6 @@ const chainlinkFeeds = {
|
|
|
32241
31696
|
"decimals": 8,
|
|
32242
31697
|
"name": "TRY / USD"
|
|
32243
31698
|
},
|
|
32244
|
-
{
|
|
32245
|
-
"contractAddress": "0x884720E3da9094190dC25911B4e0E61D79562788",
|
|
32246
|
-
"proxyAddress": "0x8883045300Eaf3b1Bb1b3b17F9B4d70EfF50212a",
|
|
32247
|
-
"decimals": 18,
|
|
32248
|
-
"name": "ULTI / USD"
|
|
32249
|
-
},
|
|
32250
31699
|
{
|
|
32251
31700
|
"contractAddress": "0x8ABe008B267C82199EC81E7f80eE4DC3A3545c82",
|
|
32252
31701
|
"proxyAddress": "0x9eE96caa9972c801058CAA8E23419fc6516FbF7e",
|
|
@@ -32277,12 +31726,6 @@ const chainlinkFeeds = {
|
|
|
32277
31726
|
"decimals": 18,
|
|
32278
31727
|
"name": "sUSDS / USDS Exchange Rate"
|
|
32279
31728
|
},
|
|
32280
|
-
{
|
|
32281
|
-
"contractAddress": "0x8f99f05E0a5Fa19579525A60801A0F473adB1CE1",
|
|
32282
|
-
"proxyAddress": "0x300b0990Ba191a1AeBef6e5Ed8B5B308C0B2d0c9",
|
|
32283
|
-
"decimals": 8,
|
|
32284
|
-
"name": "XVS / USD"
|
|
32285
|
-
},
|
|
32286
31729
|
{
|
|
32287
31730
|
"contractAddress": "0x920d90b3953B3C90b06ebE8579B0215d6801DA54",
|
|
32288
31731
|
"proxyAddress": "0xe4c31C5B118d8aA92433eD1c7EC70afb430cd730",
|
|
@@ -32631,12 +32074,6 @@ const chainlinkFeeds = {
|
|
|
32631
32074
|
"decimals": 1,
|
|
32632
32075
|
"name": "Real GDP — Percent Change (Annual Rate)"
|
|
32633
32076
|
},
|
|
32634
|
-
{
|
|
32635
|
-
"contractAddress": "0xa44BCD128E99188565c4849cdfFEea9C773f74ec",
|
|
32636
|
-
"proxyAddress": "0x04180965a782E487d0632013ABa488A472243542",
|
|
32637
|
-
"decimals": 8,
|
|
32638
|
-
"name": "JOE / USD"
|
|
32639
|
-
},
|
|
32640
32077
|
{
|
|
32641
32078
|
"contractAddress": "0xa4598924ca0cbEbB2D850684a9BFc0a7D1D848EB",
|
|
32642
32079
|
"proxyAddress": "0x1f5C0C2CD2e9Ad1eE475660AF0bBa27aE7d87f5e",
|
|
@@ -32711,6 +32148,18 @@ const chainlinkFeeds = {
|
|
|
32711
32148
|
"decimals": 8,
|
|
32712
32149
|
"name": "APT / USD"
|
|
32713
32150
|
},
|
|
32151
|
+
{
|
|
32152
|
+
"contractAddress": "0xb915D2b9d10df9Df8043F6d72fECDbA36edBdB60",
|
|
32153
|
+
"proxyAddress": "0x9dC30b7242556F871932AFe38CC34d2a77E6F6C9",
|
|
32154
|
+
"decimals": 18,
|
|
32155
|
+
"name": "DAI / USD CAPPED"
|
|
32156
|
+
},
|
|
32157
|
+
{
|
|
32158
|
+
"contractAddress": "0xb930631CF1A4158903Acaf30CAa716cC320c936F",
|
|
32159
|
+
"proxyAddress": "0xb2378F24E6d543cd28A8edcc7d2bE517FC9e074c",
|
|
32160
|
+
"decimals": 18,
|
|
32161
|
+
"name": "LUSD / USD CAPPED"
|
|
32162
|
+
},
|
|
32714
32163
|
{
|
|
32715
32164
|
"contractAddress": "0xb98512d5a21e13cf27b84Cc90eA118AE14134A76",
|
|
32716
32165
|
"proxyAddress": "0x021126143D0B6e20Bb69beFcc860e7E523df8055",
|
|
@@ -32935,18 +32384,18 @@ const chainlinkFeeds = {
|
|
|
32935
32384
|
"decimals": 3,
|
|
32936
32385
|
"name": "PCE Price Index — Level"
|
|
32937
32386
|
},
|
|
32387
|
+
{
|
|
32388
|
+
"contractAddress": "0xf1a81F33CDe09D59B64d0BE084971b9FBbA776E7",
|
|
32389
|
+
"proxyAddress": "0x21082CA28570f0ccfb089465bFaEfDc77b00D367",
|
|
32390
|
+
"decimals": 18,
|
|
32391
|
+
"name": "ZEC / USD"
|
|
32392
|
+
},
|
|
32938
32393
|
{
|
|
32939
32394
|
"contractAddress": "0xf6bACC7750c23A34b996A355A6E78b17Fc4BaEdC",
|
|
32940
32395
|
"proxyAddress": "0x383b3624478124697BEF675F07cA37570b73992f",
|
|
32941
32396
|
"decimals": 8,
|
|
32942
32397
|
"name": "SPELL / USD"
|
|
32943
32398
|
},
|
|
32944
|
-
{
|
|
32945
|
-
"contractAddress": "0xf8C6DE435CF8d06897a4A66b21df623D06d2A761",
|
|
32946
|
-
"proxyAddress": "0x36a121448D74Fa81450c992A1a44B9b7377CD3a5",
|
|
32947
|
-
"decimals": 8,
|
|
32948
|
-
"name": "FXS / USD"
|
|
32949
|
-
},
|
|
32950
32399
|
{
|
|
32951
32400
|
"contractAddress": "0xf8abb3c41A3b21687Ad862C9Fd00D007E413EEAA",
|
|
32952
32401
|
"proxyAddress": "0x6FfBc6339DD46a7e0513D4887106349214C05505",
|
|
@@ -33203,12 +32652,6 @@ const chainlinkFeeds = {
|
|
|
33203
32652
|
"decimals": 18,
|
|
33204
32653
|
"name": "WSTETH / ETH"
|
|
33205
32654
|
},
|
|
33206
|
-
{
|
|
33207
|
-
"contractAddress": "0x15505bcC6D3c6f8F3cfC3d6D96f5A6301A08D2cc",
|
|
33208
|
-
"proxyAddress": "0x7B0ca9A6D03FE0467A31Ca850f5bcA51e027B3aF",
|
|
33209
|
-
"decimals": 8,
|
|
33210
|
-
"name": "ALPHA / USD"
|
|
33211
|
-
},
|
|
33212
32655
|
{
|
|
33213
32656
|
"contractAddress": "0x184CCa2bA7015052424Fa2f509fB252926789D7C",
|
|
33214
32657
|
"proxyAddress": "0x7Ee401373A92f885a7C3A53CF46dbe661eaFb1C0",
|
|
@@ -33323,12 +32766,6 @@ const chainlinkFeeds = {
|
|
|
33323
32766
|
"decimals": 8,
|
|
33324
32767
|
"name": "ADA / USD"
|
|
33325
32768
|
},
|
|
33326
|
-
{
|
|
33327
|
-
"contractAddress": "0x461b95e560697B0C83AB569f06034832a4b62707",
|
|
33328
|
-
"proxyAddress": "0x99311B4bf6D8E3D3B4b9fbdD09a1B0F4Ad8e06E9",
|
|
33329
|
-
"decimals": 8,
|
|
33330
|
-
"name": "BTC.b Proof of Reserves"
|
|
33331
|
-
},
|
|
33332
32769
|
{
|
|
33333
32770
|
"contractAddress": "0x4A5cE69A1aDA639042B30e1574Eb9D6e939388A3",
|
|
33334
32771
|
"proxyAddress": "0x5C2d58627Fbe746f5ea24Ef6D618f09f8e3f0122",
|
|
@@ -34197,12 +33634,6 @@ const chainlinkFeeds = {
|
|
|
34197
33634
|
"decimals": 18,
|
|
34198
33635
|
"name": "wstETH-stETH Exchange Rate"
|
|
34199
33636
|
},
|
|
34200
|
-
{
|
|
34201
|
-
"contractAddress": "0xD672b32F0AcDF22b850852D4Cd7c59bc920D523a",
|
|
34202
|
-
"proxyAddress": "0x3fBB86e564fC1303625BA88EaE55740f3A649d36",
|
|
34203
|
-
"decimals": 18,
|
|
34204
|
-
"name": "RETH / ETH"
|
|
34205
|
-
},
|
|
34206
33637
|
{
|
|
34207
33638
|
"contractAddress": "0xD80196353308B3b0B34DA405b049F7F4f0E4C298",
|
|
34208
33639
|
"proxyAddress": "0x538E0fC727ce4604e25354D082890cdb5553d33B",
|
|
@@ -34239,6 +33670,12 @@ const chainlinkFeeds = {
|
|
|
34239
33670
|
"decimals": 8,
|
|
34240
33671
|
"name": "WBTC / BTC"
|
|
34241
33672
|
},
|
|
33673
|
+
{
|
|
33674
|
+
"contractAddress": "0xb5d6a076549Af9E436f4D18F495772204f746f34",
|
|
33675
|
+
"proxyAddress": "0x5df16dE72003c33dE38f8620BF91f0e7c4eE7300",
|
|
33676
|
+
"decimals": 18,
|
|
33677
|
+
"name": "EURC / USD"
|
|
33678
|
+
},
|
|
34242
33679
|
{
|
|
34243
33680
|
"contractAddress": "0xeAEE2B0DA69DFf8977f2E73887509B51fbf9bBfd",
|
|
34244
33681
|
"proxyAddress": "0xd63624330Ed4e50dD65FeA45c08558F78a3d8abd",
|
|
@@ -34855,6 +34292,7 @@ var types_default = {
|
|
|
34855
34292
|
"plugin": [2],
|
|
34856
34293
|
"controller": [2],
|
|
34857
34294
|
"verified": [5],
|
|
34295
|
+
"turbo": [5],
|
|
34858
34296
|
"domain": [2],
|
|
34859
34297
|
"search": [2],
|
|
34860
34298
|
"__typename": [2]
|
|
@@ -36298,5 +35736,5 @@ function toAddressLink(address, client) {
|
|
|
36298
35736
|
}
|
|
36299
35737
|
|
|
36300
35738
|
//#endregion
|
|
36301
|
-
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, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, 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, 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 };
|
|
35739
|
+
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, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, 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, 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 };
|
|
36302
35740
|
//# sourceMappingURL=browser.mjs.map
|