@bgd-labs/toolbox 0.2.20 → 0.2.22
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 +953 -272
- package/dist/browser.d.mts.map +1 -1
- package/dist/browser.mjs +346 -235
- package/dist/browser.mjs.map +1 -1
- package/dist/index.d.mts +819 -138
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +345 -234
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -18323,6 +18323,133 @@ function calculateAccruedRewards({ accrued, userIndex, reserveIndex, userBalance
|
|
|
18323
18323
|
return accrued + userBalance * (currentIndex - userIndex) / SCALING_FACTOR;
|
|
18324
18324
|
}
|
|
18325
18325
|
|
|
18326
|
+
//#endregion
|
|
18327
|
+
//#region src/ecosystem/chainIds.ts
|
|
18328
|
+
const ChainId = {
|
|
18329
|
+
celo: celo.id,
|
|
18330
|
+
mainnet: mainnet.id,
|
|
18331
|
+
polygon: polygon.id,
|
|
18332
|
+
polygon_amoy: polygonAmoy.id,
|
|
18333
|
+
avalanche: avalanche.id,
|
|
18334
|
+
avalanche_fuji: avalancheFuji.id,
|
|
18335
|
+
arbitrum: arbitrum.id,
|
|
18336
|
+
arbitrum_sepolia: arbitrumSepolia.id,
|
|
18337
|
+
fantom: fantom.id,
|
|
18338
|
+
fantom_testnet: fantomTestnet.id,
|
|
18339
|
+
optimism: optimism.id,
|
|
18340
|
+
optimism_sepolia: optimismSepolia.id,
|
|
18341
|
+
harmony: harmonyOne.id,
|
|
18342
|
+
sepolia: sepolia.id,
|
|
18343
|
+
scroll: scroll.id,
|
|
18344
|
+
scroll_sepolia: scrollSepolia.id,
|
|
18345
|
+
sonic: sonic.id,
|
|
18346
|
+
mantle: mantle.id,
|
|
18347
|
+
metis: metis.id,
|
|
18348
|
+
base: base.id,
|
|
18349
|
+
base_sepolia: baseSepolia.id,
|
|
18350
|
+
bnb: bsc.id,
|
|
18351
|
+
gnosis: gnosis.id,
|
|
18352
|
+
zkEVM: polygonZkEvm.id,
|
|
18353
|
+
zksync: zksync.id,
|
|
18354
|
+
linea: linea.id,
|
|
18355
|
+
ink: ink.id,
|
|
18356
|
+
soneium: soneium.id,
|
|
18357
|
+
bob: bob.id,
|
|
18358
|
+
plasma: plasma.id,
|
|
18359
|
+
xLayer: xLayer.id,
|
|
18360
|
+
megaeth: megaeth.id
|
|
18361
|
+
};
|
|
18362
|
+
const ChainList = {
|
|
18363
|
+
[ChainId.mainnet]: mainnet,
|
|
18364
|
+
[ChainId.polygon]: polygon,
|
|
18365
|
+
[ChainId.polygon_amoy]: polygonAmoy,
|
|
18366
|
+
[ChainId.avalanche]: {
|
|
18367
|
+
...avalanche,
|
|
18368
|
+
blockExplorers: { default: {
|
|
18369
|
+
url: "https://snowscan.xyz",
|
|
18370
|
+
name: "Snowscan"
|
|
18371
|
+
} }
|
|
18372
|
+
},
|
|
18373
|
+
[ChainId.avalanche_fuji]: {
|
|
18374
|
+
...avalancheFuji,
|
|
18375
|
+
blockExplorers: { default: {
|
|
18376
|
+
url: "https://testnet.snowscan.xyz",
|
|
18377
|
+
name: "Snowscan Fuji"
|
|
18378
|
+
} }
|
|
18379
|
+
},
|
|
18380
|
+
[ChainId.arbitrum]: arbitrum,
|
|
18381
|
+
[ChainId.arbitrum_sepolia]: arbitrumSepolia,
|
|
18382
|
+
[ChainId.fantom]: fantom,
|
|
18383
|
+
[ChainId.fantom_testnet]: fantomTestnet,
|
|
18384
|
+
[ChainId.optimism]: optimism,
|
|
18385
|
+
[ChainId.optimism_sepolia]: optimismSepolia,
|
|
18386
|
+
[ChainId.harmony]: harmonyOne,
|
|
18387
|
+
[ChainId.sepolia]: sepolia,
|
|
18388
|
+
[ChainId.scroll]: scroll,
|
|
18389
|
+
[ChainId.scroll_sepolia]: scrollSepolia,
|
|
18390
|
+
[ChainId.sonic]: sonic,
|
|
18391
|
+
[ChainId.mantle]: mantle,
|
|
18392
|
+
[ChainId.metis]: metis,
|
|
18393
|
+
[ChainId.base]: base,
|
|
18394
|
+
[ChainId.base_sepolia]: baseSepolia,
|
|
18395
|
+
[ChainId.bnb]: bsc,
|
|
18396
|
+
[ChainId.gnosis]: gnosis,
|
|
18397
|
+
[ChainId.zkEVM]: polygonZkEvm,
|
|
18398
|
+
[ChainId.celo]: celo,
|
|
18399
|
+
[ChainId.zksync]: zksync,
|
|
18400
|
+
[ChainId.linea]: linea,
|
|
18401
|
+
[ChainId.ink]: ink,
|
|
18402
|
+
[ChainId.soneium]: soneium,
|
|
18403
|
+
[ChainId.bob]: bob,
|
|
18404
|
+
[ChainId.plasma]: plasma,
|
|
18405
|
+
[ChainId.xLayer]: xLayer,
|
|
18406
|
+
[ChainId.megaeth]: megaeth
|
|
18407
|
+
};
|
|
18408
|
+
|
|
18409
|
+
//#endregion
|
|
18410
|
+
//#region src/ecosystem/addresses.ts
|
|
18411
|
+
const VELORA_PORTIKUS = {
|
|
18412
|
+
[ChainId.mainnet]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18413
|
+
[ChainId.base]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18414
|
+
[ChainId.optimism]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18415
|
+
[ChainId.arbitrum]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18416
|
+
[ChainId.polygon]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D",
|
|
18417
|
+
[ChainId.bnb]: "0x0000000000bbF5c5Fd284e657F01Bd000933C96D"
|
|
18418
|
+
};
|
|
18419
|
+
/**
|
|
18420
|
+
* The following is a list of venues that offer free flashloans
|
|
18421
|
+
*/
|
|
18422
|
+
const BALANCER_VAULT_V2 = "0xBA12222222228d8Ba445958a75a0704d566BF2C8";
|
|
18423
|
+
const BALANCER_VAULT_V3 = "0xbA1333333333a1BA1108E8412f11850A5C319bA9";
|
|
18424
|
+
const UNISWAP_V4_MANAGER = {
|
|
18425
|
+
[ChainId.mainnet]: "0x000000000004444c5dc75cB358380D2e3dE08A90",
|
|
18426
|
+
[ChainId.base]: "0x498581ff718922c3f8e6a244956af099b2652b2b",
|
|
18427
|
+
[ChainId.optimism]: "0x9a13f98cb987694c9f086b1f5eb990eea8264ec3",
|
|
18428
|
+
[ChainId.arbitrum]: "0x360e68faccca8ca495c1b759fd9eee466db9fb32",
|
|
18429
|
+
[ChainId.polygon]: "0x67366782805870060151383f4bbff9dab53e5cd6",
|
|
18430
|
+
[ChainId.ink]: "0x360e68faccca8ca495c1b759fd9eee466db9fb32",
|
|
18431
|
+
[ChainId.soneium]: "0x360e68faccca8ca495c1b759fd9eee466db9fb32",
|
|
18432
|
+
[ChainId.avalanche]: "0x06380c0e0912312b5150364b9dc4542ba0dbbc85",
|
|
18433
|
+
[ChainId.bnb]: "0x28e2ea090877bf75740558f6bfb36a5ffee9e9df",
|
|
18434
|
+
[ChainId.celo]: "0x288dc841A52FCA2707c6947B3A777c5E56cd87BC",
|
|
18435
|
+
[ChainId.megaeth]: "0xacb7e78fa05d562e0a5d3089ec896d57d057d38e"
|
|
18436
|
+
};
|
|
18437
|
+
const MORPHO = {
|
|
18438
|
+
[ChainId.mainnet]: "0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb",
|
|
18439
|
+
[ChainId.arbitrum]: "0x6c247b1F6182318877311737BaC0844bAa518F5e",
|
|
18440
|
+
[ChainId.avalanche]: "0x895383274303AA19fe978AFB4Ac55C7f094f982C",
|
|
18441
|
+
[ChainId.base]: "0xBBBBBbbBBb9cC5e90e3b3Af64bdAF62C37EEFFCb",
|
|
18442
|
+
[ChainId.bnb]: "0x01b0Bd309AA75547f7a37Ad7B1219A898E67a83a",
|
|
18443
|
+
[ChainId.celo]: "0xd24ECdD8C1e0E57a4E26B1a7bbeAa3e95466A569",
|
|
18444
|
+
[ChainId.gnosis]: "0xB74D4dd451E250bC325AFF0556D717e4E2351c66",
|
|
18445
|
+
[ChainId.ink]: "0x857f3EefE8cbda3Bc49367C996cd664A880d3042",
|
|
18446
|
+
[ChainId.linea]: "0x6B0D716aC0A45536172308e08fC2C40387262c9F",
|
|
18447
|
+
[ChainId.plasma]: "0x2fF74A46536f5c67ef5A42FD5B4e2Ed8A2cee249",
|
|
18448
|
+
[ChainId.scroll]: "0x2d012EdbAdc37eDc2BC62791B666f9193FDF5a55",
|
|
18449
|
+
[ChainId.soneium]: "0xE75Fc5eA6e74B824954349Ca351eb4e671ADA53a",
|
|
18450
|
+
[ChainId.sonic]: "0xd6c916eB7542D0Ad3f18AEd0FCBD50C582cfa95f"
|
|
18451
|
+
};
|
|
18452
|
+
|
|
18326
18453
|
//#endregion
|
|
18327
18454
|
//#region src/ecosystem/generated/etherscanExplorers.ts
|
|
18328
18455
|
const etherscanExplorers = {
|
|
@@ -19153,89 +19280,6 @@ async function getXLayerSourceCode(params) {
|
|
|
19153
19280
|
};
|
|
19154
19281
|
}
|
|
19155
19282
|
|
|
19156
|
-
//#endregion
|
|
19157
|
-
//#region src/ecosystem/chainIds.ts
|
|
19158
|
-
const ChainId = {
|
|
19159
|
-
celo: celo.id,
|
|
19160
|
-
mainnet: mainnet.id,
|
|
19161
|
-
polygon: polygon.id,
|
|
19162
|
-
polygon_amoy: polygonAmoy.id,
|
|
19163
|
-
avalanche: avalanche.id,
|
|
19164
|
-
avalanche_fuji: avalancheFuji.id,
|
|
19165
|
-
arbitrum: arbitrum.id,
|
|
19166
|
-
arbitrum_sepolia: arbitrumSepolia.id,
|
|
19167
|
-
fantom: fantom.id,
|
|
19168
|
-
fantom_testnet: fantomTestnet.id,
|
|
19169
|
-
optimism: optimism.id,
|
|
19170
|
-
optimism_sepolia: optimismSepolia.id,
|
|
19171
|
-
harmony: harmonyOne.id,
|
|
19172
|
-
sepolia: sepolia.id,
|
|
19173
|
-
scroll: scroll.id,
|
|
19174
|
-
scroll_sepolia: scrollSepolia.id,
|
|
19175
|
-
sonic: sonic.id,
|
|
19176
|
-
mantle: mantle.id,
|
|
19177
|
-
metis: metis.id,
|
|
19178
|
-
base: base.id,
|
|
19179
|
-
base_sepolia: baseSepolia.id,
|
|
19180
|
-
bnb: bsc.id,
|
|
19181
|
-
gnosis: gnosis.id,
|
|
19182
|
-
zkEVM: polygonZkEvm.id,
|
|
19183
|
-
zksync: zksync.id,
|
|
19184
|
-
linea: linea.id,
|
|
19185
|
-
ink: ink.id,
|
|
19186
|
-
soneium: soneium.id,
|
|
19187
|
-
bob: bob.id,
|
|
19188
|
-
plasma: plasma.id,
|
|
19189
|
-
xLayer: xLayer.id,
|
|
19190
|
-
megaeth: megaeth.id
|
|
19191
|
-
};
|
|
19192
|
-
const ChainList = {
|
|
19193
|
-
[ChainId.mainnet]: mainnet,
|
|
19194
|
-
[ChainId.polygon]: polygon,
|
|
19195
|
-
[ChainId.polygon_amoy]: polygonAmoy,
|
|
19196
|
-
[ChainId.avalanche]: {
|
|
19197
|
-
...avalanche,
|
|
19198
|
-
blockExplorers: { default: {
|
|
19199
|
-
url: "https://snowscan.xyz",
|
|
19200
|
-
name: "Snowscan"
|
|
19201
|
-
} }
|
|
19202
|
-
},
|
|
19203
|
-
[ChainId.avalanche_fuji]: {
|
|
19204
|
-
...avalancheFuji,
|
|
19205
|
-
blockExplorers: { default: {
|
|
19206
|
-
url: "https://testnet.snowscan.xyz",
|
|
19207
|
-
name: "Snowscan Fuji"
|
|
19208
|
-
} }
|
|
19209
|
-
},
|
|
19210
|
-
[ChainId.arbitrum]: arbitrum,
|
|
19211
|
-
[ChainId.arbitrum_sepolia]: arbitrumSepolia,
|
|
19212
|
-
[ChainId.fantom]: fantom,
|
|
19213
|
-
[ChainId.fantom_testnet]: fantomTestnet,
|
|
19214
|
-
[ChainId.optimism]: optimism,
|
|
19215
|
-
[ChainId.optimism_sepolia]: optimismSepolia,
|
|
19216
|
-
[ChainId.harmony]: harmonyOne,
|
|
19217
|
-
[ChainId.sepolia]: sepolia,
|
|
19218
|
-
[ChainId.scroll]: scroll,
|
|
19219
|
-
[ChainId.scroll_sepolia]: scrollSepolia,
|
|
19220
|
-
[ChainId.sonic]: sonic,
|
|
19221
|
-
[ChainId.mantle]: mantle,
|
|
19222
|
-
[ChainId.metis]: metis,
|
|
19223
|
-
[ChainId.base]: base,
|
|
19224
|
-
[ChainId.base_sepolia]: baseSepolia,
|
|
19225
|
-
[ChainId.bnb]: bsc,
|
|
19226
|
-
[ChainId.gnosis]: gnosis,
|
|
19227
|
-
[ChainId.zkEVM]: polygonZkEvm,
|
|
19228
|
-
[ChainId.celo]: celo,
|
|
19229
|
-
[ChainId.zksync]: zksync,
|
|
19230
|
-
[ChainId.linea]: linea,
|
|
19231
|
-
[ChainId.ink]: ink,
|
|
19232
|
-
[ChainId.soneium]: soneium,
|
|
19233
|
-
[ChainId.bob]: bob,
|
|
19234
|
-
[ChainId.plasma]: plasma,
|
|
19235
|
-
[ChainId.xLayer]: xLayer,
|
|
19236
|
-
[ChainId.megaeth]: megaeth
|
|
19237
|
-
};
|
|
19238
|
-
|
|
19239
19283
|
//#endregion
|
|
19240
19284
|
//#region src/ecosystem/tenderly.ts
|
|
19241
19285
|
/**
|
|
@@ -19490,6 +19534,7 @@ const alchemyNetworkMap = {
|
|
|
19490
19534
|
1328: "sei-testnet",
|
|
19491
19535
|
1329: "sei-mainnet",
|
|
19492
19536
|
1514: "story-mainnet",
|
|
19537
|
+
1672: "pharos-mainnet",
|
|
19493
19538
|
1868: "soneium-mainnet",
|
|
19494
19539
|
1946: "soneium-minato",
|
|
19495
19540
|
2020: "ronin-mainnet",
|
|
@@ -19521,7 +19566,6 @@ const alchemyNetworkMap = {
|
|
|
19521
19566
|
9746: "plasma-testnet",
|
|
19522
19567
|
10143: "monad-testnet",
|
|
19523
19568
|
10200: "gnosis-chiado",
|
|
19524
|
-
10218: "tea-sepolia",
|
|
19525
19569
|
11011: "shape-sepolia",
|
|
19526
19570
|
11124: "abstract-testnet",
|
|
19527
19571
|
14601: "sonic-testnet",
|
|
@@ -19560,6 +19604,7 @@ const alchemyNetworkMap = {
|
|
|
19560
19604
|
534352: "scroll-mainnet",
|
|
19561
19605
|
560048: "eth-hoodi",
|
|
19562
19606
|
685685: "gensyn-testnet",
|
|
19607
|
+
688689: "pharos-atlantic",
|
|
19563
19608
|
763373: "ink-sepolia",
|
|
19564
19609
|
808813: "bob-sepolia",
|
|
19565
19610
|
5042002: "arc-testnet",
|
|
@@ -19592,8 +19637,6 @@ const quicknodeNetworkMap = {
|
|
|
19592
19637
|
130: "unichain-mainnet",
|
|
19593
19638
|
137: "matic",
|
|
19594
19639
|
146: "sonic-mainnet",
|
|
19595
|
-
164: "omni-omega",
|
|
19596
|
-
166: "omni-mainnet",
|
|
19597
19640
|
196: "xlayer-mainnet",
|
|
19598
19641
|
250: "fantom",
|
|
19599
19642
|
252: "fraxtal-mainnet",
|
|
@@ -19613,12 +19656,8 @@ const quicknodeNetworkMap = {
|
|
|
19613
19656
|
1328: "sei-atlantic",
|
|
19614
19657
|
1329: "sei-pacific",
|
|
19615
19658
|
1480: "vana-mainnet",
|
|
19616
|
-
1513: "story-testnet",
|
|
19617
|
-
1516: "story-odyssey",
|
|
19618
19659
|
1993: "b3-sepolia",
|
|
19619
|
-
2442: "zkevm-cardona",
|
|
19620
19660
|
2741: "abstract-mainnet",
|
|
19621
|
-
2810: "morph-holesky",
|
|
19622
19661
|
2818: "morph-mainnet",
|
|
19623
19662
|
3338: "peaq-mainnet",
|
|
19624
19663
|
4801: "worldchain-sepolia",
|
|
@@ -19634,8 +19673,6 @@ const quicknodeNetworkMap = {
|
|
|
19634
19673
|
13371: "imx-mainnet",
|
|
19635
19674
|
13473: "imx-testnet",
|
|
19636
19675
|
14800: "vana-moksha",
|
|
19637
|
-
16600: "0g-newton",
|
|
19638
|
-
17e3: "ethereum-holesky",
|
|
19639
19676
|
34443: "mode-mainnet",
|
|
19640
19677
|
42161: "arbitrum-mainnet",
|
|
19641
19678
|
42170: "nova-mainnet",
|
|
@@ -19646,12 +19683,9 @@ const quicknodeNetworkMap = {
|
|
|
19646
19683
|
59144: "linea-mainnet",
|
|
19647
19684
|
80002: "matic-amoy",
|
|
19648
19685
|
80069: "bera-bepolia",
|
|
19649
|
-
80084: "bera-bartio",
|
|
19650
|
-
80085: "bera-artio",
|
|
19651
19686
|
80094: "bera-mainnet",
|
|
19652
19687
|
81457: "blast-mainnet",
|
|
19653
19688
|
84532: "base-sepolia",
|
|
19654
|
-
421613: "arbitrum-goerli",
|
|
19655
19689
|
421614: "arbitrum-sepolia",
|
|
19656
19690
|
534351: "scroll-testnet",
|
|
19657
19691
|
534352: "scroll-mainnet",
|
|
@@ -19702,10 +19736,10 @@ const tenderlyNetworkMap = {
|
|
|
19702
19736
|
2201: "stable-testnet",
|
|
19703
19737
|
2523: "fraxtal-hoodi",
|
|
19704
19738
|
4202: "lisk-sepolia",
|
|
19739
|
+
4326: "megaeth",
|
|
19705
19740
|
4801: "worldchain-sepolia",
|
|
19706
19741
|
5e3: "mantle",
|
|
19707
19742
|
5003: "mantle-sepolia",
|
|
19708
|
-
8008: "polynomial",
|
|
19709
19743
|
8453: "base",
|
|
19710
19744
|
9069: "af-nexus-mainnet",
|
|
19711
19745
|
9070: "af-nexus-testnet",
|
|
@@ -19737,7 +19771,6 @@ const tenderlyNetworkMap = {
|
|
|
19737
19771
|
59902: "metis-sepolia",
|
|
19738
19772
|
60808: "bob",
|
|
19739
19773
|
80002: "polygon-amoy",
|
|
19740
|
-
80008: "polynomial-sepolia",
|
|
19741
19774
|
80069: "bepolia",
|
|
19742
19775
|
80094: "berachain",
|
|
19743
19776
|
81457: "blast",
|
|
@@ -19754,8 +19787,7 @@ const tenderlyNetworkMap = {
|
|
|
19754
19787
|
808813: "bob-testnet",
|
|
19755
19788
|
11142220: "celo-sepolia",
|
|
19756
19789
|
11155111: "sepolia",
|
|
19757
|
-
11155420: "optimism-sepolia"
|
|
19758
|
-
531050104: "sophon-testnet"
|
|
19790
|
+
11155420: "optimism-sepolia"
|
|
19759
19791
|
};
|
|
19760
19792
|
const tenderlyExplorerMap = {
|
|
19761
19793
|
1: "mainnet",
|
|
@@ -19805,12 +19837,12 @@ const tenderlyExplorerMap = {
|
|
|
19805
19837
|
2523: "fraxtal-hoodi",
|
|
19806
19838
|
3338: "peaq",
|
|
19807
19839
|
4202: "lisk-sepolia",
|
|
19840
|
+
4326: "megaeth",
|
|
19808
19841
|
4801: "worldchain-sepolia",
|
|
19809
19842
|
5e3: "mantle",
|
|
19810
19843
|
5003: "mantle-sepolia",
|
|
19811
19844
|
7e3: "zetachain",
|
|
19812
19845
|
7001: "zetachain-testnet",
|
|
19813
|
-
8008: "polynomial-mainnet",
|
|
19814
19846
|
8453: "base",
|
|
19815
19847
|
9069: "af-nexus-mainnet",
|
|
19816
19848
|
9070: "af-nexus-testnet",
|
|
@@ -19844,7 +19876,6 @@ const tenderlyExplorerMap = {
|
|
|
19844
19876
|
59902: "metis-sepolia",
|
|
19845
19877
|
60808: "bob",
|
|
19846
19878
|
80002: "polygon-amoy",
|
|
19847
|
-
80008: "polynomial-sepolia",
|
|
19848
19879
|
80069: "bepolia",
|
|
19849
19880
|
80094: "berachain",
|
|
19850
19881
|
81457: "blast",
|
|
@@ -19866,8 +19897,7 @@ const tenderlyExplorerMap = {
|
|
|
19866
19897
|
11142220: "celo-sepolia",
|
|
19867
19898
|
11155111: "sepolia",
|
|
19868
19899
|
11155420: "optimistic-sepolia",
|
|
19869
|
-
13374202: "ethereal-testnet"
|
|
19870
|
-
531050104: "sophon-testnet"
|
|
19900
|
+
13374202: "ethereal-testnet"
|
|
19871
19901
|
};
|
|
19872
19902
|
|
|
19873
19903
|
//#endregion
|
|
@@ -19936,6 +19966,7 @@ function getQuicknodeRpc(chainId, options) {
|
|
|
19936
19966
|
if (!options.quicknodeEndpointName) throw new Error(`ChainId '${chainId}' is supported by Quicknode, but no 'quicknodeEndpointName' was provided.`);
|
|
19937
19967
|
if (!options.quicknodeToken) throw new Error(`ChainId '${chainId}' is supported by Quicknode, but no 'quicknodeToken' was provided.`);
|
|
19938
19968
|
if (chainId === ChainId.mainnet) return `https://${options.quicknodeEndpointName}.quiknode.pro/${options.quicknodeToken}`;
|
|
19969
|
+
if (chainId === ChainId.avalanche) return `https://${options.quicknodeEndpointName}.${quickNodeSlug}.quiknode.pro/${options.quicknodeToken}/ext/bc/C/rpc/`;
|
|
19939
19970
|
return `https://${options.quicknodeEndpointName}.${quickNodeSlug}.quiknode.pro/${options.quicknodeToken}`;
|
|
19940
19971
|
}
|
|
19941
19972
|
/**
|
|
@@ -20098,6 +20129,32 @@ async function getContractDeploymentBlock({ client, contractAddress, fromBlock,
|
|
|
20098
20129
|
}
|
|
20099
20130
|
throw new Error("Could not find contract deployment block");
|
|
20100
20131
|
}
|
|
20132
|
+
/**
|
|
20133
|
+
* Finds the closest block for a given timestamp using binary search.
|
|
20134
|
+
* Returns the last block whose timestamp is <= the target timestamp.
|
|
20135
|
+
* @param client a viem Client
|
|
20136
|
+
* @param timestamp the target unix timestamp
|
|
20137
|
+
* @returns the block closest to (but not after) the given timestamp
|
|
20138
|
+
*/
|
|
20139
|
+
async function getClosestBlock({ client, timestamp }) {
|
|
20140
|
+
const latestBlock = await getBlock(client, { blockTag: "latest" });
|
|
20141
|
+
if (timestamp >= latestBlock.timestamp) return latestBlock;
|
|
20142
|
+
let low = 0n;
|
|
20143
|
+
let high = latestBlock.number;
|
|
20144
|
+
const blockTime = client.chain?.blockTime;
|
|
20145
|
+
if (blockTime) {
|
|
20146
|
+
const estimatedBlocksBack = (latestBlock.timestamp - timestamp) / (BigInt(blockTime) / 1000n);
|
|
20147
|
+
const estimatedBlock = latestBlock.number > estimatedBlocksBack ? latestBlock.number - estimatedBlocksBack : 0n;
|
|
20148
|
+
if ((await getBlock(client, { blockNumber: estimatedBlock })).timestamp <= timestamp) low = estimatedBlock;
|
|
20149
|
+
else high = estimatedBlock;
|
|
20150
|
+
}
|
|
20151
|
+
while (low < high) {
|
|
20152
|
+
const mid = low + high + 1n >> 1n;
|
|
20153
|
+
if ((await getBlock(client, { blockNumber: mid })).timestamp <= timestamp) low = mid;
|
|
20154
|
+
else high = mid - 1n;
|
|
20155
|
+
}
|
|
20156
|
+
return getBlock(client, { blockNumber: low });
|
|
20157
|
+
}
|
|
20101
20158
|
|
|
20102
20159
|
//#endregion
|
|
20103
20160
|
//#region src/ecosystem/flashbots.ts
|
|
@@ -20401,10 +20458,6 @@ const blockscoutExplorers = {
|
|
|
20401
20458
|
api: "https://bob-sepolia.explorer.gobob.xyz/api",
|
|
20402
20459
|
explorer: "https://bob-sepolia.explorer.gobob.xyz/"
|
|
20403
20460
|
},
|
|
20404
|
-
113: {
|
|
20405
|
-
api: "https://coston2-explorer.flare.network/api",
|
|
20406
|
-
explorer: "https://coston2-explorer.flare.network/"
|
|
20407
|
-
},
|
|
20408
20461
|
114: {
|
|
20409
20462
|
api: "https://coston2-explorer.flare.network/api",
|
|
20410
20463
|
explorer: "https://coston2-explorer.flare.network/"
|
|
@@ -21038,8 +21091,8 @@ const blockscoutExplorers = {
|
|
|
21038
21091
|
explorer: "https://testnet.bitciexplorer.com"
|
|
21039
21092
|
},
|
|
21040
21093
|
1919: {
|
|
21041
|
-
api: "https://
|
|
21042
|
-
explorer: "https://
|
|
21094
|
+
api: "https://turkscan.com/api",
|
|
21095
|
+
explorer: "https://turkscan.com"
|
|
21043
21096
|
},
|
|
21044
21097
|
1923: {
|
|
21045
21098
|
api: "https://explorer.swellnetwork.io/api",
|
|
@@ -21433,10 +21486,6 @@ const blockscoutExplorers = {
|
|
|
21433
21486
|
api: "https://explore.steamexchange.io/api",
|
|
21434
21487
|
explorer: "https://explore.steamexchange.io/"
|
|
21435
21488
|
},
|
|
21436
|
-
6342: {
|
|
21437
|
-
api: "https://megaeth-testnet.blockscout.com/api",
|
|
21438
|
-
explorer: "https://megaeth-testnet.blockscout.com/"
|
|
21439
|
-
},
|
|
21440
21489
|
6343: {
|
|
21441
21490
|
api: "https://megaeth-testnet-v2.blockscout.com/api",
|
|
21442
21491
|
explorer: "https://megaeth-testnet-v2.blockscout.com/"
|
|
@@ -22545,10 +22594,6 @@ const blockscoutExplorers = {
|
|
|
22545
22594
|
api: "https://explorer.saakuru.network/api",
|
|
22546
22595
|
explorer: "https://explorer.saakuru.network/"
|
|
22547
22596
|
},
|
|
22548
|
-
7777777: {
|
|
22549
|
-
api: "https://explorer.zora.energy/api",
|
|
22550
|
-
explorer: "https://explorer.zora.energy/"
|
|
22551
|
-
},
|
|
22552
22597
|
7890785: {
|
|
22553
22598
|
api: "https://blockscout.xga.com/api",
|
|
22554
22599
|
explorer: "https://blockscout.xga.com/"
|
|
@@ -22799,6 +22844,12 @@ const blockscoutExplorers = {
|
|
|
22799
22844
|
//#region src/ecosystem/generated/chainlinkFeeds.ts
|
|
22800
22845
|
const chainlinkFeeds = {
|
|
22801
22846
|
"1": [
|
|
22847
|
+
{
|
|
22848
|
+
"contractAddress": "0x009b8b4D648cFCC813ecB70db0f31ce305DD4B32",
|
|
22849
|
+
"proxyAddress": "0x0C2e4Df738e99e8db80012f5bb2a303f3f48Ca74",
|
|
22850
|
+
"decimals": 6,
|
|
22851
|
+
"name": "JTRSY NAV"
|
|
22852
|
+
},
|
|
22802
22853
|
{
|
|
22803
22854
|
"contractAddress": "0x00f0eFB3d9dBe7fE91fee44aE09DAe5DFA65c382",
|
|
22804
22855
|
"proxyAddress": "0x75A0d3264a949C2C920d7F25Df174af1FaF73399",
|
|
@@ -23004,6 +23055,12 @@ const chainlinkFeeds = {
|
|
|
23004
23055
|
"decimals": 8,
|
|
23005
23056
|
"name": "Optimism Healthcheck"
|
|
23006
23057
|
},
|
|
23058
|
+
{
|
|
23059
|
+
"contractAddress": "0x224ac1d400BE6b1F50b040c3fF8c2A19300384F7",
|
|
23060
|
+
"proxyAddress": "0x5a489EACad4BEc30B5bC3BcE8a0b9301CCDC0f60",
|
|
23061
|
+
"decimals": 18,
|
|
23062
|
+
"name": "stGLD / tGLD Exchange Rate"
|
|
23063
|
+
},
|
|
23007
23064
|
{
|
|
23008
23065
|
"contractAddress": "0x24e3c657c27DfC7ea6f9f58e86387D846b3BaA59",
|
|
23009
23066
|
"proxyAddress": "0xdbd020CAeF83eFd542f4De03e3cF0C28A4428bd5",
|
|
@@ -23034,6 +23091,12 @@ const chainlinkFeeds = {
|
|
|
23034
23091
|
"decimals": 8,
|
|
23035
23092
|
"name": "STETH / USD"
|
|
23036
23093
|
},
|
|
23094
|
+
{
|
|
23095
|
+
"contractAddress": "0x2A539061d701471c3835256f8FF982e81E9B4374",
|
|
23096
|
+
"proxyAddress": "0x4720bcC6f940d709D7e2F510936e611Db07C240E",
|
|
23097
|
+
"decimals": 8,
|
|
23098
|
+
"name": "GOOGL-USD (24/5)"
|
|
23099
|
+
},
|
|
23037
23100
|
{
|
|
23038
23101
|
"contractAddress": "0x2a29c3696dD424d3e703F5F3f2D6Af86598e9303",
|
|
23039
23102
|
"proxyAddress": "0xdF2917806E30300537aEB49A7663062F4d1F2b5F",
|
|
@@ -23125,6 +23188,12 @@ const chainlinkFeeds = {
|
|
|
23125
23188
|
"decimals": 8,
|
|
23126
23189
|
"name": "PYUSD / USD"
|
|
23127
23190
|
},
|
|
23191
|
+
{
|
|
23192
|
+
"contractAddress": "0x3B4f49f4aa5491B5a60C0724467A67b4910aEAAc",
|
|
23193
|
+
"proxyAddress": "0x3F0543aA057BcAeA152Fe9462Cb3ffaB305a6F8D",
|
|
23194
|
+
"decimals": 18,
|
|
23195
|
+
"name": "KAG Reserves"
|
|
23196
|
+
},
|
|
23128
23197
|
{
|
|
23129
23198
|
"contractAddress": "0x3C405e1FE8a6BE5d9b714B8C88Ad913F236B1639",
|
|
23130
23199
|
"proxyAddress": "0xE8E65Fb9116875012F5990Ecaab290B3531DbeB9",
|
|
@@ -23192,6 +23261,18 @@ const chainlinkFeeds = {
|
|
|
23192
23261
|
"name": "SVR COMP / USD",
|
|
23193
23262
|
"secondaryProxyAddress": "0x69B50fF403E995d9c4441a303438D9049dAC8cCD"
|
|
23194
23263
|
},
|
|
23264
|
+
{
|
|
23265
|
+
"contractAddress": "0x45D48aa93275c2274E1006BfdCb6406eF96a509B",
|
|
23266
|
+
"proxyAddress": "0xD13cB763C43B5C058E7Ec40176962c5030F4EB49",
|
|
23267
|
+
"decimals": 8,
|
|
23268
|
+
"name": "WTGXX NAV"
|
|
23269
|
+
},
|
|
23270
|
+
{
|
|
23271
|
+
"contractAddress": "0x47f0840aCB50DF9C3B9584017eF1A9560E777b88",
|
|
23272
|
+
"proxyAddress": "0xB204328559E17F84eE7A285036AA0d47124F85D5",
|
|
23273
|
+
"decimals": 8,
|
|
23274
|
+
"name": "TSLA-USD (24/5)"
|
|
23275
|
+
},
|
|
23195
23276
|
{
|
|
23196
23277
|
"contractAddress": "0x48afBeDF849449b7B9eea101EdAbdc81417b04c8",
|
|
23197
23278
|
"proxyAddress": "0x194a9AaF2e0b67c35915cD01101585A33Fe25CAa",
|
|
@@ -23223,12 +23304,6 @@ const chainlinkFeeds = {
|
|
|
23223
23304
|
"decimals": 18,
|
|
23224
23305
|
"name": "GRT / ETH"
|
|
23225
23306
|
},
|
|
23226
|
-
{
|
|
23227
|
-
"contractAddress": "0x506F678C8E426BA87427674f814AD2166c17981D",
|
|
23228
|
-
"proxyAddress": "0x160AC928A16C93eD4895C2De6f81ECcE9a7eB7b4",
|
|
23229
|
-
"decimals": 18,
|
|
23230
|
-
"name": "LRC / ETH"
|
|
23231
|
-
},
|
|
23232
23307
|
{
|
|
23233
23308
|
"contractAddress": "0x50e1007404025e412F13eD1e1C1e6F57957F6A6F",
|
|
23234
23309
|
"proxyAddress": "0xe80baC615c38D01c101B0B1b943b05E20C8c2f76",
|
|
@@ -23398,6 +23473,12 @@ const chainlinkFeeds = {
|
|
|
23398
23473
|
"decimals": 8,
|
|
23399
23474
|
"name": "SUSHI / USD"
|
|
23400
23475
|
},
|
|
23476
|
+
{
|
|
23477
|
+
"contractAddress": "0x6594324b6bB0Bdf0C83b0B7ECd4a5c32889B442e",
|
|
23478
|
+
"proxyAddress": "0x25efbA0d9b115D233cfA849F16BA743E8FFba2a1",
|
|
23479
|
+
"decimals": 8,
|
|
23480
|
+
"name": "SPY-USD (24/5)"
|
|
23481
|
+
},
|
|
23401
23482
|
{
|
|
23402
23483
|
"contractAddress": "0x6795D4A47c9c8F4117b409D966259CdCf6A9Eb6E",
|
|
23403
23484
|
"proxyAddress": "0x9944D86CEB9160aF5C5feB251FD671923323f8C3",
|
|
@@ -23422,6 +23503,12 @@ const chainlinkFeeds = {
|
|
|
23422
23503
|
"decimals": 2,
|
|
23423
23504
|
"name": "BUIDL NAV"
|
|
23424
23505
|
},
|
|
23506
|
+
{
|
|
23507
|
+
"contractAddress": "0x6C659766386874a46dacd7a9aEf04818FD3b13F0",
|
|
23508
|
+
"proxyAddress": "0x3f929667bdf783b99274F10465a89d6aF772736E",
|
|
23509
|
+
"decimals": 18,
|
|
23510
|
+
"name": "ZEC / USD"
|
|
23511
|
+
},
|
|
23425
23512
|
{
|
|
23426
23513
|
"contractAddress": "0x6Cc5173Ffd8d674C64f2DC7237730Ff021829865",
|
|
23427
23514
|
"proxyAddress": "0x5C00128d4d1c2F4f652C267d7bcdD7aC99C16E16",
|
|
@@ -23440,6 +23527,12 @@ const chainlinkFeeds = {
|
|
|
23440
23527
|
"decimals": 18,
|
|
23441
23528
|
"name": "sUSDD / USDD Exchange Rate"
|
|
23442
23529
|
},
|
|
23530
|
+
{
|
|
23531
|
+
"contractAddress": "0x6F751d443c2b2E7d45d42b52AC87CDbBB4B0f7DE",
|
|
23532
|
+
"proxyAddress": "0xA1D955b4E582C784583df7071B8a3Fb6d4bcaC42",
|
|
23533
|
+
"decimals": 8,
|
|
23534
|
+
"name": "QQQ-USD (24/5)"
|
|
23535
|
+
},
|
|
23443
23536
|
{
|
|
23444
23537
|
"contractAddress": "0x6dFF3fE0bF312f54551788f843F06177fE89C4bd",
|
|
23445
23538
|
"proxyAddress": "0x03c68933f7a3F76875C0bc670a58e69294cDFD01",
|
|
@@ -23465,6 +23558,12 @@ const chainlinkFeeds = {
|
|
|
23465
23558
|
"decimals": 18,
|
|
23466
23559
|
"name": "KNC / ETH"
|
|
23467
23560
|
},
|
|
23561
|
+
{
|
|
23562
|
+
"contractAddress": "0x74acdD8Ca84fF6a9Eb0814e7F000b4F33195152d",
|
|
23563
|
+
"proxyAddress": "0x2c47b8CD75C818969b398911b70C633e280552d4",
|
|
23564
|
+
"decimals": 8,
|
|
23565
|
+
"name": "NVDA-USD (24/5)"
|
|
23566
|
+
},
|
|
23468
23567
|
{
|
|
23469
23568
|
"contractAddress": "0x757EB2AF32c76621FEAE483c6458C04ba19906Ba",
|
|
23470
23569
|
"proxyAddress": "0xe108E75d6bA28F14EA51F24F886c0B6BBeca575a",
|
|
@@ -23612,6 +23711,12 @@ const chainlinkFeeds = {
|
|
|
23612
23711
|
"decimals": 8,
|
|
23613
23712
|
"name": "APE / USD"
|
|
23614
23713
|
},
|
|
23714
|
+
{
|
|
23715
|
+
"contractAddress": "0x89fB24e1c41c74c712500B86399751b1DA463697",
|
|
23716
|
+
"proxyAddress": "0x0b9bD3eAac381A1a6731ff6598a50638E5CFFD25",
|
|
23717
|
+
"decimals": 8,
|
|
23718
|
+
"name": "CRDYX NAV"
|
|
23719
|
+
},
|
|
23615
23720
|
{
|
|
23616
23721
|
"contractAddress": "0x8F73090a7c58B8BDcC9A93cBB6816e5cC4f01E8c",
|
|
23617
23722
|
"proxyAddress": "0xB9E1E3A9feFf48998E45Fa90847ed4D467E8BcfD",
|
|
@@ -23746,12 +23851,6 @@ const chainlinkFeeds = {
|
|
|
23746
23851
|
"decimals": 1,
|
|
23747
23852
|
"name": "Real Final Sales to Private Domestic Purchasers — Percent Change (Annual Rate)"
|
|
23748
23853
|
},
|
|
23749
|
-
{
|
|
23750
|
-
"contractAddress": "0x9Bc91f0E55b0d6509F65fd8C4b34b89F23AEfA35",
|
|
23751
|
-
"proxyAddress": "0xF0985f7E2CaBFf22CecC5a71282a89582c382EFE",
|
|
23752
|
-
"decimals": 18,
|
|
23753
|
-
"name": "FTT / ETH"
|
|
23754
|
-
},
|
|
23755
23854
|
{
|
|
23756
23855
|
"contractAddress": "0x9F6B06e826d3DF391285c695749F8f921F6972D9",
|
|
23757
23856
|
"proxyAddress": "0x89904B6fcF8dAD1e5DA47dFdF69fC38Ad6be0bd5",
|
|
@@ -23759,6 +23858,12 @@ const chainlinkFeeds = {
|
|
|
23759
23858
|
"name": "SVR TSLAon-USD (Calculated)",
|
|
23760
23859
|
"secondaryProxyAddress": "0xC557dcbc32A01a4FBf7b9E3107BAF283f059EDc7"
|
|
23761
23860
|
},
|
|
23861
|
+
{
|
|
23862
|
+
"contractAddress": "0x9b3a984d1abbe03845CBa7A895f1ff7f4209d59c",
|
|
23863
|
+
"proxyAddress": "0xaB5Dd7DD7669072a1Ef27c0ba241120A27A1aeC3",
|
|
23864
|
+
"decimals": 18,
|
|
23865
|
+
"name": "KAU Reserves"
|
|
23866
|
+
},
|
|
23762
23867
|
{
|
|
23763
23868
|
"contractAddress": "0x9c7CF045f964B45FFC6AA0Ffbffd7bb6d1b470A3",
|
|
23764
23869
|
"proxyAddress": "0x3C7dB4D25deAb7c89660512C5494Dc9A3FC40f78",
|
|
@@ -23977,6 +24082,12 @@ const chainlinkFeeds = {
|
|
|
23977
24082
|
"decimals": 18,
|
|
23978
24083
|
"name": "savBTC / avBTC Exchange Rate"
|
|
23979
24084
|
},
|
|
24085
|
+
{
|
|
24086
|
+
"contractAddress": "0xBa0477C34019E53c7C1C94b127D8892D7DFAFf2A",
|
|
24087
|
+
"proxyAddress": "0x35DDfB90011E686CCf837a6819562705076207EB",
|
|
24088
|
+
"decimals": 8,
|
|
24089
|
+
"name": "ACRED NAV"
|
|
24090
|
+
},
|
|
23980
24091
|
{
|
|
23981
24092
|
"contractAddress": "0xBae95c3247AA52738C52d2Df94ac6932b6b1907F",
|
|
23982
24093
|
"proxyAddress": "0x91b99C9b75aF469a71eE1AB528e8da994A5D7030",
|
|
@@ -24025,6 +24136,12 @@ const chainlinkFeeds = {
|
|
|
24025
24136
|
"decimals": 18,
|
|
24026
24137
|
"name": "STETH / ETH"
|
|
24027
24138
|
},
|
|
24139
|
+
{
|
|
24140
|
+
"contractAddress": "0xCB44fa91012781Ff12D4c258508b470B97F82D41",
|
|
24141
|
+
"proxyAddress": "0xB00341502DfEA6Ced8A5786b4059d29dA5E4D1FD",
|
|
24142
|
+
"decimals": 18,
|
|
24143
|
+
"name": "AUSD / USD"
|
|
24144
|
+
},
|
|
24028
24145
|
{
|
|
24029
24146
|
"contractAddress": "0xCe14fF0ACf4a1e7Eab6802C64D317e3fD989f3C6",
|
|
24030
24147
|
"proxyAddress": "0x60AEd7d20AC6328f7BA771aD58931c996aff30E8",
|
|
@@ -24037,6 +24154,12 @@ const chainlinkFeeds = {
|
|
|
24037
24154
|
"decimals": 8,
|
|
24038
24155
|
"name": "CAD / USD"
|
|
24039
24156
|
},
|
|
24157
|
+
{
|
|
24158
|
+
"contractAddress": "0xD0e3f81D467A1383F582D36a26E03E48D54cE391",
|
|
24159
|
+
"proxyAddress": "0xd92095BAf79a6ca6533019e952aDe0d3C5834f4b",
|
|
24160
|
+
"decimals": 8,
|
|
24161
|
+
"name": "VBILL NAV"
|
|
24162
|
+
},
|
|
24040
24163
|
{
|
|
24041
24164
|
"contractAddress": "0xD0f0efAfB63ce1e46ae1aF84BCFE2A2A175E6797",
|
|
24042
24165
|
"proxyAddress": "0xda9258AFc797Cd64d1b6FC651051224cdAB1B25E",
|
|
@@ -24151,6 +24274,12 @@ const chainlinkFeeds = {
|
|
|
24151
24274
|
"decimals": 8,
|
|
24152
24275
|
"name": "IBTA / USD"
|
|
24153
24276
|
},
|
|
24277
|
+
{
|
|
24278
|
+
"contractAddress": "0xa4dD65e17944d735CE35DfE12b92EAB8f679A510",
|
|
24279
|
+
"proxyAddress": "0x3BbccB2301759D2e4A5692bA72DAb4b75dC43B1a",
|
|
24280
|
+
"decimals": 6,
|
|
24281
|
+
"name": "JAAA NAV"
|
|
24282
|
+
},
|
|
24154
24283
|
{
|
|
24155
24284
|
"contractAddress": "0xa685F0Bb86044e9c6A182A3689bBF8A98eB5764C",
|
|
24156
24285
|
"proxyAddress": "0x0c89c488e763AC2d69cB058CCAC7A8B283EE3DbA",
|
|
@@ -24169,6 +24298,12 @@ const chainlinkFeeds = {
|
|
|
24169
24298
|
"decimals": 8,
|
|
24170
24299
|
"name": "SOL / USD"
|
|
24171
24300
|
},
|
|
24301
|
+
{
|
|
24302
|
+
"contractAddress": "0xaF452c2EA72b6E08AB64a67133a13C4ED35343eb",
|
|
24303
|
+
"proxyAddress": "0xAFa801e508613be7CA88D2d0fDB3F84f4c1B0384",
|
|
24304
|
+
"decimals": 18,
|
|
24305
|
+
"name": "C1USD Reserves"
|
|
24306
|
+
},
|
|
24172
24307
|
{
|
|
24173
24308
|
"contractAddress": "0xad88fc1A810379Ef4EFbF2D97EdE57e306178e5a",
|
|
24174
24309
|
"proxyAddress": "0xd82562bb17557231Cd871e1B2525F3AB8d63D409",
|
|
@@ -24272,12 +24407,6 @@ const chainlinkFeeds = {
|
|
|
24272
24407
|
"decimals": 18,
|
|
24273
24408
|
"name": "SHIB / ETH"
|
|
24274
24409
|
},
|
|
24275
|
-
{
|
|
24276
|
-
"contractAddress": "0xcD2d64424aBE57AB8c70d9f9253d0C6DffeBB2E7",
|
|
24277
|
-
"proxyAddress": "0xE3fd61Cd8935EAE81e1c31AF36D7134e411490Cd",
|
|
24278
|
-
"decimals": 8,
|
|
24279
|
-
"name": "OUSDT / USD"
|
|
24280
|
-
},
|
|
24281
24410
|
{
|
|
24282
24411
|
"contractAddress": "0xcd07B31D85756098334eDdC92DE755dEae8FE62f",
|
|
24283
24412
|
"proxyAddress": "0xbd7F896e60B650C01caf2d7279a1148189A68884",
|
|
@@ -24390,6 +24519,12 @@ const chainlinkFeeds = {
|
|
|
24390
24519
|
"decimals": 8,
|
|
24391
24520
|
"name": "WLFI / USD"
|
|
24392
24521
|
},
|
|
24522
|
+
{
|
|
24523
|
+
"contractAddress": "0xecA1d16A120fC96Fe33CfEB64Adca70B678dFb8b",
|
|
24524
|
+
"proxyAddress": "0x42fC9d7c315Cf64Edc39ec984Bf89Bc34BbE9FD5",
|
|
24525
|
+
"decimals": 18,
|
|
24526
|
+
"name": "ezETH Proof of Reserves"
|
|
24527
|
+
},
|
|
24393
24528
|
{
|
|
24394
24529
|
"contractAddress": "0xf17CB308606999DF25F5d4B9f74bD9fe47A5b3b3",
|
|
24395
24530
|
"proxyAddress": "0xAbE7a3643615Ed32d3431e11E0Ee5A486Cb27d48",
|
|
@@ -24668,6 +24803,12 @@ const chainlinkFeeds = {
|
|
|
24668
24803
|
"decimals": 8,
|
|
24669
24804
|
"name": "APT / USD"
|
|
24670
24805
|
},
|
|
24806
|
+
{
|
|
24807
|
+
"contractAddress": "0x36D86c4D65B534375380a31749c3E8c0E8756bD8",
|
|
24808
|
+
"proxyAddress": "0xAE33e077a02071E62d342E449Afd9895b016d541",
|
|
24809
|
+
"decimals": 8,
|
|
24810
|
+
"name": "SAND / USD"
|
|
24811
|
+
},
|
|
24671
24812
|
{
|
|
24672
24813
|
"contractAddress": "0x384547665C7BF2bb7927E67A8a321E9a0c91Fe59",
|
|
24673
24814
|
"proxyAddress": "0x89178957E9bD07934d7792fFc0CF39f11c8C2B1F",
|
|
@@ -24794,12 +24935,6 @@ const chainlinkFeeds = {
|
|
|
24794
24935
|
"decimals": 8,
|
|
24795
24936
|
"name": "LINK / USD"
|
|
24796
24937
|
},
|
|
24797
|
-
{
|
|
24798
|
-
"contractAddress": "0x5d1345669278128B77AF9662C5D6B5e0b2FFD54A",
|
|
24799
|
-
"proxyAddress": "0xAE33e077a02071E62d342E449Afd9895b016d541",
|
|
24800
|
-
"decimals": 8,
|
|
24801
|
-
"name": "SAND / USD"
|
|
24802
|
-
},
|
|
24803
24938
|
{
|
|
24804
24939
|
"contractAddress": "0x5d782463840e3a2Ed55e425916d498319f289DEd",
|
|
24805
24940
|
"proxyAddress": "0xD7bC56BBF8D555936cb5121f38d1d362c586776A",
|
|
@@ -25016,12 +25151,6 @@ const chainlinkFeeds = {
|
|
|
25016
25151
|
"decimals": 8,
|
|
25017
25152
|
"name": "SOL / USD"
|
|
25018
25153
|
},
|
|
25019
|
-
{
|
|
25020
|
-
"contractAddress": "0x95836878f632c8797434a359ab3863892BF7eEcc",
|
|
25021
|
-
"proxyAddress": "0x60025324DAB37DB3A623ea59Cc567937821EeA12",
|
|
25022
|
-
"decimals": 8,
|
|
25023
|
-
"name": "OUSDT / USD"
|
|
25024
|
-
},
|
|
25025
25154
|
{
|
|
25026
25155
|
"contractAddress": "0x962e192e23fcc5Ec59141b58B112e5Fe0e0B70C0",
|
|
25027
25156
|
"proxyAddress": "0x4e8e8F5b3d0f49e00F3DFb9CF827d1A0FBe33B21",
|
|
@@ -25232,12 +25361,6 @@ const chainlinkFeeds = {
|
|
|
25232
25361
|
"decimals": 8,
|
|
25233
25362
|
"name": "SEI / USD"
|
|
25234
25363
|
},
|
|
25235
|
-
{
|
|
25236
|
-
"contractAddress": "0xa2eb6Ece70Cf255624ed2B2158A7dbC4dc4b02Ad",
|
|
25237
|
-
"proxyAddress": "0x4244c9aE5B97269B7301B622E22932FA49fBb763",
|
|
25238
|
-
"decimals": 8,
|
|
25239
|
-
"name": "mooBIFI / USD"
|
|
25240
|
-
},
|
|
25241
25364
|
{
|
|
25242
25365
|
"contractAddress": "0xa44681BdaE78DB54cAc3d7f862d6A5BaE8c79CbC",
|
|
25243
25366
|
"proxyAddress": "0xFC3b7bd4368b2919f67E437f8c6Ca42C7FD55dd5",
|
|
@@ -25784,12 +25907,6 @@ const chainlinkFeeds = {
|
|
|
25784
25907
|
"decimals": 8,
|
|
25785
25908
|
"name": "ATOM / USD"
|
|
25786
25909
|
},
|
|
25787
|
-
{
|
|
25788
|
-
"contractAddress": "0x5A3b0851519Bfd72b681609137efF5b2E47C381b",
|
|
25789
|
-
"proxyAddress": "0x47e01580C537Cd47dA339eA3a4aFb5998CCf037C",
|
|
25790
|
-
"decimals": 8,
|
|
25791
|
-
"name": "SPELL / USD"
|
|
25792
|
-
},
|
|
25793
25910
|
{
|
|
25794
25911
|
"contractAddress": "0x5A69d0948b0607401cC821704b7E99916bc9452E",
|
|
25795
25912
|
"proxyAddress": "0xbD4Bcf7DCFF34fd67525FceB3992cec53C23892A",
|
|
@@ -25872,6 +25989,12 @@ const chainlinkFeeds = {
|
|
|
25872
25989
|
"name": "SVR TWT / BNB",
|
|
25873
25990
|
"secondaryProxyAddress": "0x1A083354421Da4e26D78D55DAfaeBf4CFc541dAf"
|
|
25874
25991
|
},
|
|
25992
|
+
{
|
|
25993
|
+
"contractAddress": "0x66815140e049C986Ca00fae75591958c4c322a5e",
|
|
25994
|
+
"proxyAddress": "0xfa54C1c5F62ea3a5653a0b1b7148E26008eA1501",
|
|
25995
|
+
"decimals": 18,
|
|
25996
|
+
"name": "XAUM Reference Rate"
|
|
25997
|
+
},
|
|
25875
25998
|
{
|
|
25876
25999
|
"contractAddress": "0x67AF9BF189380E91bF59a4EA0c7cCd9B710d6786",
|
|
25877
26000
|
"proxyAddress": "0x337B4889fed5557595c37a45c1BB9b057cC670AE",
|
|
@@ -26125,12 +26248,6 @@ const chainlinkFeeds = {
|
|
|
26125
26248
|
"decimals": 8,
|
|
26126
26249
|
"name": "LISUSD / USD"
|
|
26127
26250
|
},
|
|
26128
|
-
{
|
|
26129
|
-
"contractAddress": "0xA90204b8Cffa45EDbca42CB577CDF6fafAbF0d33",
|
|
26130
|
-
"proxyAddress": "0x9f1fD2cEf7b226D555A747DA0411F93c5fe74e13",
|
|
26131
|
-
"decimals": 8,
|
|
26132
|
-
"name": "VET / USD"
|
|
26133
|
-
},
|
|
26134
26251
|
{
|
|
26135
26252
|
"contractAddress": "0xAA6778bD1313ff4BF4F07b671B3B89A12aDD0277",
|
|
26136
26253
|
"proxyAddress": "0x964261740356cB4aaD0C3D2003Ce808A4176a46d",
|
|
@@ -26310,6 +26427,12 @@ const chainlinkFeeds = {
|
|
|
26310
26427
|
"decimals": 8,
|
|
26311
26428
|
"name": "RDNT / USD"
|
|
26312
26429
|
},
|
|
26430
|
+
{
|
|
26431
|
+
"contractAddress": "0xF0030fA22Aeee34Aacc9a7F6B9190951b96D7FF2",
|
|
26432
|
+
"proxyAddress": "0x86b3897a1c755ac8f0e12263242141cdecF71CC2",
|
|
26433
|
+
"decimals": 18,
|
|
26434
|
+
"name": "RLP / USD Exchange Rate"
|
|
26435
|
+
},
|
|
26313
26436
|
{
|
|
26314
26437
|
"contractAddress": "0xF2cb4eaa89Efc51aa79bA31F815361EB47Be34c5",
|
|
26315
26438
|
"proxyAddress": "0xeDA73F8acb669274B15A977Cb0cdA57a84F18c2a",
|
|
@@ -27538,12 +27661,6 @@ const chainlinkFeeds = {
|
|
|
27538
27661
|
"decimals": 8,
|
|
27539
27662
|
"name": "USDe / USD"
|
|
27540
27663
|
},
|
|
27541
|
-
{
|
|
27542
|
-
"contractAddress": "0xbC71031a5588b6bDfEA3C2974bD6fa0F5b81d49b",
|
|
27543
|
-
"proxyAddress": "0xF626964Ba5e81405f47e8004F0b276Bb974742B5",
|
|
27544
|
-
"decimals": 8,
|
|
27545
|
-
"name": "BADGER / USD"
|
|
27546
|
-
},
|
|
27547
27664
|
{
|
|
27548
27665
|
"contractAddress": "0xbc128024295Ed113926C4Dd49fb71964cfc9D516",
|
|
27549
27666
|
"proxyAddress": "0x692AE5510cA9070095A496dbcFBCDA99D4024Cd9",
|
|
@@ -27804,12 +27921,6 @@ const chainlinkFeeds = {
|
|
|
27804
27921
|
"decimals": 1,
|
|
27805
27922
|
"name": "PCE Price Index — Percent Change (Annual Rate)"
|
|
27806
27923
|
},
|
|
27807
|
-
{
|
|
27808
|
-
"contractAddress": "0xB70b802953462312A47c857b940991108F8d43De",
|
|
27809
|
-
"proxyAddress": "0x790181e93e9F4Eedb5b864860C12e4d2CffFe73B",
|
|
27810
|
-
"decimals": 8,
|
|
27811
|
-
"name": "OUSDT / USD"
|
|
27812
|
-
},
|
|
27813
27924
|
{
|
|
27814
27925
|
"contractAddress": "0xBb223278eCE74329276099E71d0F0be70Ba74faC",
|
|
27815
27926
|
"proxyAddress": "0xCdF021EbD115b1B225801F4056c40F4Ff14A574d",
|
|
@@ -28284,12 +28395,6 @@ const chainlinkFeeds = {
|
|
|
28284
28395
|
"decimals": 18,
|
|
28285
28396
|
"name": "USR-USD Exchange Rate"
|
|
28286
28397
|
},
|
|
28287
|
-
{
|
|
28288
|
-
"contractAddress": "0x7DCcF223c077e8D1e2297d7788Bb6E62af89dFc9",
|
|
28289
|
-
"proxyAddress": "0xF049354158e13F6794A3cCD236694E0e1BD9AF79",
|
|
28290
|
-
"decimals": 8,
|
|
28291
|
-
"name": "OUSDT / USD"
|
|
28292
|
-
},
|
|
28293
28398
|
{
|
|
28294
28399
|
"contractAddress": "0x842291cfbEf554fF48197316136dF9beA63Eaac6",
|
|
28295
28400
|
"proxyAddress": "0x4516fDa3259110EefAfC6fBcE266417B3F3b985a",
|
|
@@ -28370,12 +28475,6 @@ const chainlinkFeeds = {
|
|
|
28370
28475
|
"decimals": 8,
|
|
28371
28476
|
"name": "USDe / USD"
|
|
28372
28477
|
},
|
|
28373
|
-
{
|
|
28374
|
-
"contractAddress": "0x1019a076F73432AAb97A73CD04e4B6Ad968C09C2",
|
|
28375
|
-
"proxyAddress": "0xC5fD97adABf827e9FCC4ed936360f47080F35868",
|
|
28376
|
-
"decimals": 8,
|
|
28377
|
-
"name": "OUSDT / USD"
|
|
28378
|
-
},
|
|
28379
28478
|
{
|
|
28380
28479
|
"contractAddress": "0x154650BD0B40E449214f9c544cE693889ae65f27",
|
|
28381
28480
|
"proxyAddress": "0xaDE1b9AbB98c6A542E4B49db2588a3Ec4bF7Cdf0",
|
|
@@ -28687,6 +28786,12 @@ const chainlinkFeeds = {
|
|
|
28687
28786
|
"decimals": 18,
|
|
28688
28787
|
"name": "ynETH / ETH Exchange Rate"
|
|
28689
28788
|
},
|
|
28789
|
+
{
|
|
28790
|
+
"contractAddress": "0x21F577D890e5c74e3f56E2C6C0ba4321B5D5bFc6",
|
|
28791
|
+
"proxyAddress": "0x7dBC779B2A6F9B9AaB83a2dED78A2F7E9e203f0c",
|
|
28792
|
+
"decimals": 8,
|
|
28793
|
+
"name": "XAG / USD"
|
|
28794
|
+
},
|
|
28690
28795
|
{
|
|
28691
28796
|
"contractAddress": "0x21b1E4eA0E9AE2e79932662300eB12A0f90AbE59",
|
|
28692
28797
|
"proxyAddress": "0x591e79239a7d679378eC8c847e5038150364C78F",
|
|
@@ -28801,12 +28906,6 @@ const chainlinkFeeds = {
|
|
|
28801
28906
|
"decimals": 18,
|
|
28802
28907
|
"name": "yUSD / USD Exchange Rate"
|
|
28803
28908
|
},
|
|
28804
|
-
{
|
|
28805
|
-
"contractAddress": "0x41F3a42270f161Ad1b25Cdb06bAd6cFC123E5C99",
|
|
28806
|
-
"proxyAddress": "0x2B1de6AD89847C11aF2ede14edB013AA79E94aC9",
|
|
28807
|
-
"decimals": 8,
|
|
28808
|
-
"name": "MAG7.SSI / USD"
|
|
28809
|
-
},
|
|
28810
28909
|
{
|
|
28811
28910
|
"contractAddress": "0x43F92e6805196FA6cd7a19F3d769957f95Baa261",
|
|
28812
28911
|
"proxyAddress": "0xB366E8Efb9661323ff477CedF70f55F897D6cFeA",
|
|
@@ -29057,6 +29156,12 @@ const chainlinkFeeds = {
|
|
|
29057
29156
|
"decimals": 0,
|
|
29058
29157
|
"name": "AAVE Network Emergency Count (Base)"
|
|
29059
29158
|
},
|
|
29159
|
+
{
|
|
29160
|
+
"contractAddress": "0x7f567Bf6EB08740F18Cd4de0A5716118954F731f",
|
|
29161
|
+
"proxyAddress": "0x900E653c6b25eCf1eF43525fcCC5263E654085cc",
|
|
29162
|
+
"decimals": 18,
|
|
29163
|
+
"name": "RLUSD / USD"
|
|
29164
|
+
},
|
|
29060
29165
|
{
|
|
29061
29166
|
"contractAddress": "0x801B6E7d186370EeE854F76481643c22c7d1da99",
|
|
29062
29167
|
"proxyAddress": "0xdEd37FC1400B8022968441356f771639ad1B23aA",
|
|
@@ -29345,12 +29450,6 @@ const chainlinkFeeds = {
|
|
|
29345
29450
|
"decimals": 8,
|
|
29346
29451
|
"name": "USDAI / USD"
|
|
29347
29452
|
},
|
|
29348
|
-
{
|
|
29349
|
-
"contractAddress": "0xF4f6843A8003417b04EAbDd7a1bAe2cAFCBF0aCC",
|
|
29350
|
-
"proxyAddress": "0x721F1B4dc604AEA0661Aa9982AB624e5756B31f2",
|
|
29351
|
-
"decimals": 8,
|
|
29352
|
-
"name": "mooBIFI / USD"
|
|
29353
|
-
},
|
|
29354
29453
|
{
|
|
29355
29454
|
"contractAddress": "0xF929EC74AB71033792308dB7fbE82Eb87b42ac3E",
|
|
29356
29455
|
"proxyAddress": "0x95Eba7bE2f755a298984bd714822994f1d4B6313",
|
|
@@ -29461,6 +29560,12 @@ const chainlinkFeeds = {
|
|
|
29461
29560
|
"decimals": 1,
|
|
29462
29561
|
"name": "Real Final Sales to Private Domestic Purchasers — Percent Change (Annual Rate)"
|
|
29463
29562
|
},
|
|
29563
|
+
{
|
|
29564
|
+
"contractAddress": "0xdc22706Ac082C85fE56A5ac4cc85A7b012490c35",
|
|
29565
|
+
"proxyAddress": "0xaABc55Ca55D70B034e4daA2551A224239890282F",
|
|
29566
|
+
"decimals": 18,
|
|
29567
|
+
"name": "VVV / USD"
|
|
29568
|
+
},
|
|
29464
29569
|
{
|
|
29465
29570
|
"contractAddress": "0xe09bE26CF556F7211c16B75BE9fB4DB433A0d37E",
|
|
29466
29571
|
"proxyAddress": "0x06bdFe07E71C476157FC025d3cCD4BBe08e83EF9",
|
|
@@ -29630,6 +29735,12 @@ const chainlinkFeeds = {
|
|
|
29630
29735
|
"decimals": 18,
|
|
29631
29736
|
"name": "instETH / ETH Exchange Rate"
|
|
29632
29737
|
},
|
|
29738
|
+
{
|
|
29739
|
+
"contractAddress": "0x11F15B46dFDcAE97FFCC08d4Fe2520CC09B8c959",
|
|
29740
|
+
"proxyAddress": "0xAa3024cF3f77bA88f8Fe9ff0D24903c50022f874",
|
|
29741
|
+
"decimals": 18,
|
|
29742
|
+
"name": "SAVUSD / AVUSD Exchange Rate"
|
|
29743
|
+
},
|
|
29633
29744
|
{
|
|
29634
29745
|
"contractAddress": "0x126b9a529Dd6f14C62c494F6b6b5AA73d9f6F849",
|
|
29635
29746
|
"proxyAddress": "0x3609baAa0a9b1f0FE4d6CC01884585d0e191C3E3",
|
|
@@ -29844,6 +29955,12 @@ const chainlinkFeeds = {
|
|
|
29844
29955
|
"decimals": 8,
|
|
29845
29956
|
"name": "ETH / USD"
|
|
29846
29957
|
},
|
|
29958
|
+
{
|
|
29959
|
+
"contractAddress": "0x377dB25BbD41Bf70746cC2936875AA6bDF58fD43",
|
|
29960
|
+
"proxyAddress": "0x4Fd4455b88D38945ca1B2ef2D499f805091EB5a6",
|
|
29961
|
+
"decimals": 18,
|
|
29962
|
+
"name": "SOLVBTC / BTC Exchange Rate"
|
|
29963
|
+
},
|
|
29847
29964
|
{
|
|
29848
29965
|
"contractAddress": "0x37b300020b77d043F2A8cf7700f1b05d6d889090",
|
|
29849
29966
|
"proxyAddress": "0xf2215b9c35b1697B5f47e407c917a40D055E68d7",
|
|
@@ -29856,12 +29973,6 @@ const chainlinkFeeds = {
|
|
|
29856
29973
|
"decimals": 8,
|
|
29857
29974
|
"name": "SNX / USD"
|
|
29858
29975
|
},
|
|
29859
|
-
{
|
|
29860
|
-
"contractAddress": "0x39fdD7815faDA275d666437D9571967Ef6417880",
|
|
29861
|
-
"proxyAddress": "0x05Bc6e5Fb110589bb366A3Cd7CdBe143EeBA2168",
|
|
29862
|
-
"decimals": 18,
|
|
29863
|
-
"name": "SWETH / ETH"
|
|
29864
|
-
},
|
|
29865
29976
|
{
|
|
29866
29977
|
"contractAddress": "0x3A00c8Ffe6d87C00c55543f3a265E153bC50e754",
|
|
29867
29978
|
"proxyAddress": "0x9fa74925F21ad6C86d8f402EF490cFbA2Fa5e9bE",
|
|
@@ -30306,12 +30417,6 @@ const chainlinkFeeds = {
|
|
|
30306
30417
|
"decimals": 18,
|
|
30307
30418
|
"name": "TRUMP/USD-RefPrice-DSstaging-Premium-Global-003"
|
|
30308
30419
|
},
|
|
30309
|
-
{
|
|
30310
|
-
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30311
|
-
"proxyAddress": null,
|
|
30312
|
-
"decimals": 18,
|
|
30313
|
-
"name": "CAT/USD-RefPrice-DSstaging-Premium-Global-003-dead"
|
|
30314
|
-
},
|
|
30315
30420
|
{
|
|
30316
30421
|
"contractAddress": "0x3caF678232f500b05864dBaDDD9F9dB8760bE072",
|
|
30317
30422
|
"proxyAddress": null,
|
|
@@ -31486,13 +31591,6 @@ const chainlinkFeeds = {
|
|
|
31486
31591
|
"decimals": 8,
|
|
31487
31592
|
"name": "solvBTC / BTC"
|
|
31488
31593
|
},
|
|
31489
|
-
{
|
|
31490
|
-
"contractAddress": "0x7399107Df5344E0b928e75f3ACfa90569eC20848",
|
|
31491
|
-
"proxyAddress": "0x16F384AeF73f3f3f7B566125b1f144Bc7c847b1E",
|
|
31492
|
-
"decimals": 8,
|
|
31493
|
-
"name": "SVR FRAX / USD",
|
|
31494
|
-
"secondaryProxyAddress": "0x7537F8c0f8F7E7def07BF9e91e636e55881C7A66"
|
|
31495
|
-
},
|
|
31496
31594
|
{
|
|
31497
31595
|
"contractAddress": "0x73BBf768a429a4f80c47D0d22DdBCe5823c97d7a",
|
|
31498
31596
|
"proxyAddress": "0x052d4200b624b07262F574af26C71A6553996Ab5",
|
|
@@ -32071,6 +32169,18 @@ const chainlinkFeeds = {
|
|
|
32071
32169
|
"decimals": 8,
|
|
32072
32170
|
"name": "APT / USD"
|
|
32073
32171
|
},
|
|
32172
|
+
{
|
|
32173
|
+
"contractAddress": "0xb915D2b9d10df9Df8043F6d72fECDbA36edBdB60",
|
|
32174
|
+
"proxyAddress": "0x9dC30b7242556F871932AFe38CC34d2a77E6F6C9",
|
|
32175
|
+
"decimals": 18,
|
|
32176
|
+
"name": "DAI / USD CAPPED"
|
|
32177
|
+
},
|
|
32178
|
+
{
|
|
32179
|
+
"contractAddress": "0xb930631CF1A4158903Acaf30CAa716cC320c936F",
|
|
32180
|
+
"proxyAddress": "0xb2378F24E6d543cd28A8edcc7d2bE517FC9e074c",
|
|
32181
|
+
"decimals": 18,
|
|
32182
|
+
"name": "LUSD / USD CAPPED"
|
|
32183
|
+
},
|
|
32074
32184
|
{
|
|
32075
32185
|
"contractAddress": "0xb98512d5a21e13cf27b84Cc90eA118AE14134A76",
|
|
32076
32186
|
"proxyAddress": "0x021126143D0B6e20Bb69beFcc860e7E523df8055",
|
|
@@ -32295,6 +32405,12 @@ const chainlinkFeeds = {
|
|
|
32295
32405
|
"decimals": 3,
|
|
32296
32406
|
"name": "PCE Price Index — Level"
|
|
32297
32407
|
},
|
|
32408
|
+
{
|
|
32409
|
+
"contractAddress": "0xf1a81F33CDe09D59B64d0BE084971b9FBbA776E7",
|
|
32410
|
+
"proxyAddress": "0x21082CA28570f0ccfb089465bFaEfDc77b00D367",
|
|
32411
|
+
"decimals": 18,
|
|
32412
|
+
"name": "ZEC / USD"
|
|
32413
|
+
},
|
|
32298
32414
|
{
|
|
32299
32415
|
"contractAddress": "0xf6bACC7750c23A34b996A355A6E78b17Fc4BaEdC",
|
|
32300
32416
|
"proxyAddress": "0x383b3624478124697BEF675F07cA37570b73992f",
|
|
@@ -32671,12 +32787,6 @@ const chainlinkFeeds = {
|
|
|
32671
32787
|
"decimals": 8,
|
|
32672
32788
|
"name": "ADA / USD"
|
|
32673
32789
|
},
|
|
32674
|
-
{
|
|
32675
|
-
"contractAddress": "0x461b95e560697B0C83AB569f06034832a4b62707",
|
|
32676
|
-
"proxyAddress": "0x99311B4bf6D8E3D3B4b9fbdD09a1B0F4Ad8e06E9",
|
|
32677
|
-
"decimals": 8,
|
|
32678
|
-
"name": "BTC.b Proof of Reserves"
|
|
32679
|
-
},
|
|
32680
32790
|
{
|
|
32681
32791
|
"contractAddress": "0x4A5cE69A1aDA639042B30e1574Eb9D6e939388A3",
|
|
32682
32792
|
"proxyAddress": "0x5C2d58627Fbe746f5ea24Ef6D618f09f8e3f0122",
|
|
@@ -33545,12 +33655,6 @@ const chainlinkFeeds = {
|
|
|
33545
33655
|
"decimals": 18,
|
|
33546
33656
|
"name": "wstETH-stETH Exchange Rate"
|
|
33547
33657
|
},
|
|
33548
|
-
{
|
|
33549
|
-
"contractAddress": "0xD672b32F0AcDF22b850852D4Cd7c59bc920D523a",
|
|
33550
|
-
"proxyAddress": "0x3fBB86e564fC1303625BA88EaE55740f3A649d36",
|
|
33551
|
-
"decimals": 18,
|
|
33552
|
-
"name": "RETH / ETH"
|
|
33553
|
-
},
|
|
33554
33658
|
{
|
|
33555
33659
|
"contractAddress": "0xD80196353308B3b0B34DA405b049F7F4f0E4C298",
|
|
33556
33660
|
"proxyAddress": "0x538E0fC727ce4604e25354D082890cdb5553d33B",
|
|
@@ -33587,6 +33691,12 @@ const chainlinkFeeds = {
|
|
|
33587
33691
|
"decimals": 8,
|
|
33588
33692
|
"name": "WBTC / BTC"
|
|
33589
33693
|
},
|
|
33694
|
+
{
|
|
33695
|
+
"contractAddress": "0xb5d6a076549Af9E436f4D18F495772204f746f34",
|
|
33696
|
+
"proxyAddress": "0x5df16dE72003c33dE38f8620BF91f0e7c4eE7300",
|
|
33697
|
+
"decimals": 18,
|
|
33698
|
+
"name": "EURC / USD"
|
|
33699
|
+
},
|
|
33590
33700
|
{
|
|
33591
33701
|
"contractAddress": "0xeAEE2B0DA69DFf8977f2E73887509B51fbf9bBfd",
|
|
33592
33702
|
"proxyAddress": "0xd63624330Ed4e50dD65FeA45c08558F78a3d8abd",
|
|
@@ -34203,6 +34313,7 @@ var types_default = {
|
|
|
34203
34313
|
"plugin": [2],
|
|
34204
34314
|
"controller": [2],
|
|
34205
34315
|
"verified": [5],
|
|
34316
|
+
"turbo": [5],
|
|
34206
34317
|
"domain": [2],
|
|
34207
34318
|
"search": [2],
|
|
34208
34319
|
"__typename": [2]
|
|
@@ -34819,7 +34930,7 @@ async function diffCode(before, after) {
|
|
|
34819
34930
|
const changes = {};
|
|
34820
34931
|
const settingsBefore = JSON.stringify(before.settings, null, 2);
|
|
34821
34932
|
const settingsAfter = JSON.stringify(after.settings, null, 2);
|
|
34822
|
-
if (settingsBefore !== settingsAfter) changes.settings = createPatch("settings", settingsBefore, settingsAfter);
|
|
34933
|
+
if (settingsBefore && settingsAfter && settingsBefore !== settingsAfter) changes.settings = createPatch("settings", settingsBefore, settingsAfter);
|
|
34823
34934
|
const contractsBefore = await Promise.all(Object.entries(before.sources).map(async ([path, source]) => [
|
|
34824
34935
|
path.replace(/^.*[\\/]/, ""),
|
|
34825
34936
|
path,
|
|
@@ -38939,5 +39050,5 @@ async function cidV0ToBs58(cid) {
|
|
|
38939
39050
|
}
|
|
38940
39051
|
|
|
38941
39052
|
//#endregion
|
|
38942
|
-
export { Aip, ChainId, ChainList, EVENT_DB, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAccessControl_ABI, IAggregatorInterface_ABI, ICLRatePriceCapAdapter_ABI, ICLSynchronicityPriceAdapterBaseToPeg_ABI, ICLSynchronicityPriceAdapterPegToBase_ABI, ICLSynchronicityPriceAdapter_ABI, ICollector_ABI, IDefaultInterestRateStrategyV2_ABI, IERC1967_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IGovernance_ABI, IOwnable_ABI, IPausableUpgradeable_ABI, IPayloadsController_ABI, IPendlePriceCapAdapter_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IPriceCapAdapterBase_ABI, IPriceCapAdapterStable_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, ISafe_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IUmbrellaStakeToken_ABI, IUmbrella_ABI, IWithGuardian_ABI, IWrappedTokenGatewayV3_ABI, IncentivizedERC20_ABI, KNOWN_ROLES, LTV_PRECISION, PayloadState, ProposalState, RAY, SECONDS_PER_YEAR, SelfdestructCheckState, SoltypeType, Umbrella_IRewardsController_ABI, Umbrella_IRewardsDistributor_ABI, VerificationStatus, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, addAssetPrice, addAssetSymbol, alchemyNetworkMap, alchemySupportedChainIds, assetIndexesToAsset, assetToBase, bitmapToIndexes, blockscoutExplorers, bytes32ToAddress, calculateAccruedRewards, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, cidV0ToBs58, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, diffFoundryStorageLayout, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, foundry_format, foundry_getStandardJsonInput, foundry_getStorageLayout, genericIndexer, getAlchemyRPC, getBits, getBytesValue, getClient, getCompleteReserveConfiguration, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getDynamicArraySlot, getEmissionPerSecondScaled, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getMdContractName, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getObjectDiff, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSolidityStorageSlotAddress, getSolidityStorageSlotBytes, getSolidityStorageSlotUint, getSourceCode, getTenderlyRpc, getVerificationStatus, hash, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseFrontmatterMd, parseLogs, prettifyNumber, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderMarkdownStateDiffReport, renderTenderlyReport, routescanExplorers, selfDestructStatusToString, setBits, snapshotClient, tenderlyExplorerMap, tenderlyNetworkMap, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_logsToAbiLogs, tenderly_pingExplorer, tenderly_sim, tenderly_simVnet, toAddressLink, toBinaryString, toTxLink, transformTenderlyStateDiff, validateAip, verificationStatusToString, wadDiv, wadToRay };
|
|
39053
|
+
export { Aip, BALANCER_VAULT_V2, BALANCER_VAULT_V3, ChainId, ChainList, EVENT_DB, HALF_RAY, HALF_WAD, HUMAN_READABLE_PAYLOAD_STATE, HUMAN_READABLE_PROPOSAL_STATE, IAToken_ABI, IAaveOracle_ABI, IAaveV3ConfigEngine_ABI, IAccessControl_ABI, IAggregatorInterface_ABI, ICLRatePriceCapAdapter_ABI, ICLSynchronicityPriceAdapterBaseToPeg_ABI, ICLSynchronicityPriceAdapterPegToBase_ABI, ICLSynchronicityPriceAdapter_ABI, ICollector_ABI, IDefaultInterestRateStrategyV2_ABI, IERC1967_ABI, IERC20Metadata_ABI, IERC20_ABI, IEmissionManager_ABI, IGovernance_ABI, IOwnable_ABI, IPausableUpgradeable_ABI, IPayloadsController_ABI, IPendlePriceCapAdapter_ABI, IPoolAddressesProvider_ABI, IPoolConfigurator_ABI, IPool_ABI, IPriceCapAdapterBase_ABI, IPriceCapAdapterStable_ABI, IReserveInterestRateStrategy_ABI, IRewardsController_ABI, ISafe_ABI, IStataTokenFactory_ABI, IStataTokenV2_ABI, IUmbrellaStakeToken_ABI, IUmbrella_ABI, IWithGuardian_ABI, IWrappedTokenGatewayV3_ABI, IncentivizedERC20_ABI, KNOWN_ROLES, LTV_PRECISION, MORPHO, PayloadState, ProposalState, RAY, SECONDS_PER_YEAR, SelfdestructCheckState, SoltypeType, UNISWAP_V4_MANAGER, Umbrella_IRewardsController_ABI, Umbrella_IRewardsDistributor_ABI, VELORA_PORTIKUS, VerificationStatus, WAD, WAD_RAY_RATIO, aaveAddressesProvider_IncentivesControllerSlot, addAssetPrice, addAssetSymbol, alchemyNetworkMap, alchemySupportedChainIds, assetIndexesToAsset, assetToBase, bitmapToIndexes, blockscoutExplorers, bytes32ToAddress, calculateAccruedRewards, calculateAvailableBorrowsMarketReferenceCurrency, calculateCompoundedInterest, calculateHealthFactor, calculateHealthFactorFromBalances, calculateLinearInterest, chainlinkFeeds, checkForSelfdestruct, cidV0ToBs58, decodeReserveConfiguration, decodeReserveConfigurationV2, decodeUserConfiguration, diffCode, diffFoundryStorageLayout, enhanceLogs, enhanceStateDiff, erc1967_AdminSlot, erc1967_ImplementationSlot, etherscanExplorers, fetchImmutablePoolAddresses, fetchMutablePoolAddresses, fetchPoolAddresses, findAsset, flashbotsClientExtension, flashbotsOnFetchRequest, formatNumberString, foundry_format, foundry_getStandardJsonInput, foundry_getStorageLayout, genericIndexer, getAlchemyRPC, getBits, getBytesValue, getClient, getClosestBlock, getCompleteReserveConfiguration, getContractDeploymentBlock, getCurrentDebtBalance, getCurrentLiquidityBalance, getDynamicArraySlot, getEmissionPerSecondScaled, getExplicitRPC, getExplorer, getGovernance, getHyperRPC, getImplementationSlot, getLogsRecursive, getMarketReferenceCurrencyAndUsdBalance, getMdContractName, getNetworkEnv, getNonFinalizedPayloads, getNonFinalizedProposals, getNormalizedDebt, getNormalizedIncome, getObjectDiff, getPayloadStorageOverrides, getPayloadsController, getPublicRpc, getQuicknodeRpc, getRPCUrl, getReserveConfigurations, getReserveTokens, getSolidityStorageSlotAddress, getSolidityStorageSlotBytes, getSolidityStorageSlotUint, getSourceCode, getTenderlyRpc, getVerificationStatus, hash, hyperRPCSupportedNetworks, isPayloadFinal, isProposalFinal, makePayloadExecutableOnTestClient, makeProposalExecutableOnTestClient, onMevHandler, parseBlockscoutStyleSourceCode, parseEtherscanStyleSourceCode, parseFrontmatterMd, parseLogs, prettifyNumber, priceUpdateDecoder, publicRPCs, quicknodeNetworkMap, rayDiv, rayMul, rayToWad, renderMarkdownStateDiffReport, renderTenderlyReport, routescanExplorers, selfDestructStatusToString, setBits, snapshotClient, tenderlyExplorerMap, tenderlyNetworkMap, tenderly_createVnet, tenderly_deleteVnet, tenderly_getVnet, tenderly_logsToAbiLogs, tenderly_pingExplorer, tenderly_sim, tenderly_simVnet, toAddressLink, toBinaryString, toTxLink, transformTenderlyStateDiff, validateAip, verificationStatusToString, wadDiv, wadToRay };
|
|
38943
39054
|
//# sourceMappingURL=index.mjs.map
|