@bgd-labs/toolbox 0.0.18 → 0.0.20
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/{index-CoGUyq9j.d.mts → index-DPOHC58S.d.mts} +212 -52
- package/dist/{index-CoGUyq9j.d.ts → index-DPOHC58S.d.ts} +212 -52
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +286 -141
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +285 -145
- package/dist/index.mjs.map +1 -1
- package/dist/node.d.mts +3 -2
- package/dist/node.d.ts +3 -2
- package/dist/node.js +286 -141
- package/dist/node.js.map +1 -1
- package/dist/node.mjs +285 -145
- package/dist/node.mjs.map +1 -1
- package/package.json +3 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as viem from 'viem';
|
|
2
|
-
import { Address, Client, GetContractReturnType, Hex, TestClient, WalletClient, HttpTransportConfig, ClientConfig, AbiEvent, GetLogsReturnType, Account, HttpTransport, Chain as Chain$1, TransactionRequest, Log, Abi } from 'viem';
|
|
2
|
+
import { Address, Client, ContractFunctionReturnType, AbiStateMutability, GetContractReturnType, Hex, TestClient, WalletClient, HttpTransportConfig, ClientConfig, AbiEvent, GetLogsReturnType, Account, HttpTransport, Chain as Chain$1, TransactionRequest, Log, Abi, Hash } from 'viem';
|
|
3
3
|
import { IPayloadsControllerCore_ABI, IGovernanceCore_ABI } from '@bgd-labs/aave-address-book/abis';
|
|
4
|
+
import * as arktype_internal_methods_object_ts from 'arktype/internal/methods/object.ts';
|
|
4
5
|
import { Chain } from 'viem/chains';
|
|
5
6
|
import { EventSource } from 'eventsource';
|
|
6
7
|
|
|
@@ -253,6 +254,7 @@ declare function getReserveConfigurations(client: Client, pool: Address, reserve
|
|
|
253
254
|
}[];
|
|
254
255
|
}>;
|
|
255
256
|
|
|
257
|
+
type Payload = ContractFunctionReturnType<typeof IPayloadsControllerCore_ABI, AbiStateMutability, "getPayloadById">;
|
|
256
258
|
declare enum PayloadState {
|
|
257
259
|
None = 0,
|
|
258
260
|
Created = 1,
|
|
@@ -279,6 +281,7 @@ declare function makePayloadExecutableOnTestClient(client: TestClient, payloadsC
|
|
|
279
281
|
declare function isPayloadFinal(state: PayloadState): boolean;
|
|
280
282
|
declare function getNonFinalizedPayloads<T extends Client>(client: T, payloadsController: Address): Promise<number[]>;
|
|
281
283
|
|
|
284
|
+
type Proposal = ContractFunctionReturnType<typeof IGovernanceCore_ABI, AbiStateMutability, "getProposal">;
|
|
282
285
|
declare enum ProposalState {
|
|
283
286
|
Null = 0,// proposal does not exists
|
|
284
287
|
Created = 1,// created, waiting for a cooldown to initiate the balances snapshot
|
|
@@ -305,6 +308,20 @@ declare function makeProposalExecutableOnTestClient(client: TestClient, governan
|
|
|
305
308
|
declare function isProposalFinal(state: ProposalState): boolean;
|
|
306
309
|
declare function getNonFinalizedProposals<T extends Client>(client: T, governanceAddress: Address): Promise<bigint[]>;
|
|
307
310
|
|
|
311
|
+
declare const Aip: arktype_internal_methods_object_ts.ObjectType<{
|
|
312
|
+
discussions: string;
|
|
313
|
+
title: string;
|
|
314
|
+
author: string;
|
|
315
|
+
snapshot?: string | undefined;
|
|
316
|
+
}, {}>;
|
|
317
|
+
type Aip = typeof Aip.infer;
|
|
318
|
+
/**
|
|
319
|
+
* Validates the aip header and returns the aip title
|
|
320
|
+
* @param content
|
|
321
|
+
* @returns string aip title
|
|
322
|
+
*/
|
|
323
|
+
declare function validateAip(content: string): void;
|
|
324
|
+
|
|
308
325
|
type StandardJsonInput = {
|
|
309
326
|
language: string;
|
|
310
327
|
libraries: any;
|
|
@@ -489,6 +506,7 @@ declare const ChainId: {
|
|
|
489
506
|
readonly linea: 59144;
|
|
490
507
|
readonly ink: 57073;
|
|
491
508
|
readonly soneium: 1868;
|
|
509
|
+
readonly bob: 60808;
|
|
492
510
|
};
|
|
493
511
|
declare const ChainList: Record<valueOf<typeof ChainId>, Chain>;
|
|
494
512
|
|
|
@@ -510,12 +528,13 @@ declare const publicRPCs: {
|
|
|
510
528
|
readonly 250: "https://rpc.ftm.tools";
|
|
511
529
|
readonly 43114: "https://api.avax.network/ext/bc/C/rpc";
|
|
512
530
|
readonly 59144: "https://rpc.linea.build";
|
|
531
|
+
readonly 60808: "https://rpc.gobob.xyz";
|
|
513
532
|
};
|
|
514
|
-
declare const alchemySupportedChainIds: (1 | 10 | 56 | 100 | 137 | 146 | 250 | 324 | 1101 | 4002 | 5000 | 8453 | 42161 | 42220 | 43113 | 43114 | 59144 | 80002 | 84532 | 421614 | 534351 | 534352 | 11155111 | 11155420 | 1088 | 57073 | 1666600000 | 1868)[];
|
|
515
|
-
declare const getNetworkEnv: (chainId: SupportedChainIds) => "RPC_BNB" | "RPC_CELO" | "RPC_METIS" | "RPC_BASE" | "RPC_MAINNET" | "RPC_POLYGON" | "RPC_POLYGON_AMOY" | "RPC_AVALANCHE" | "RPC_AVALANCHE_FUJI" | "RPC_ARBITRUM" | "RPC_ARBITRUM_SEPOLIA" | "RPC_FANTOM" | "RPC_FANTOM_TESTNET" | "RPC_OPTIMISM" | "RPC_OPTIMISM_SEPOLIA" | "RPC_HARMONY" | "RPC_SEPOLIA" | "
|
|
533
|
+
declare const alchemySupportedChainIds: (1 | 10 | 56 | 100 | 137 | 146 | 250 | 324 | 1101 | 4002 | 5000 | 8453 | 42161 | 42220 | 43113 | 43114 | 59144 | 80002 | 84532 | 421614 | 534351 | 534352 | 11155111 | 11155420 | 1088 | 57073 | 1666600000 | 1868 | 60808)[];
|
|
534
|
+
declare const getNetworkEnv: (chainId: SupportedChainIds) => "RPC_BNB" | "RPC_CELO" | "RPC_METIS" | "RPC_BOB" | "RPC_BASE" | "RPC_SCROLL" | "RPC_MAINNET" | "RPC_POLYGON" | "RPC_POLYGON_AMOY" | "RPC_AVALANCHE" | "RPC_AVALANCHE_FUJI" | "RPC_ARBITRUM" | "RPC_ARBITRUM_SEPOLIA" | "RPC_FANTOM" | "RPC_FANTOM_TESTNET" | "RPC_OPTIMISM" | "RPC_OPTIMISM_SEPOLIA" | "RPC_HARMONY" | "RPC_SEPOLIA" | "RPC_SCROLL_SEPOLIA" | "RPC_SONIC" | "RPC_MANTLE" | "RPC_BASE_SEPOLIA" | "RPC_GNOSIS" | "RPC_ZKEVM" | "RPC_ZKSYNC" | "RPC_LINEA" | "RPC_INK" | "RPC_SONEIUM";
|
|
516
535
|
declare function getExplicitRPC(chainId: SupportedChainIds): string;
|
|
517
536
|
declare function getAlchemyRPC(chainId: SupportedChainIds, alchemyKey: string): string;
|
|
518
|
-
declare function getPublicRpc(chainId: SupportedChainIds): "https://mainnet.era.zksync.io" | "https://api.avax.network/ext/bc/C/rpc" | "https://rpc.linea.build" | "https://rpc.scroll.io" | "https://andromeda.metis.io/?owner=1088" | "https://eth.llamarpc.com" | "https://polygon.llamarpc.com" | "https://base.llamarpc.com" | "https://binance.llamarpc.com" | "https://rpc.ankr.com/gnosis" | "https://rpc.ftm.tools";
|
|
537
|
+
declare function getPublicRpc(chainId: SupportedChainIds): "https://mainnet.era.zksync.io" | "https://api.avax.network/ext/bc/C/rpc" | "https://rpc.linea.build" | "https://rpc.scroll.io" | "https://andromeda.metis.io/?owner=1088" | "https://rpc.gobob.xyz" | "https://eth.llamarpc.com" | "https://polygon.llamarpc.com" | "https://base.llamarpc.com" | "https://binance.llamarpc.com" | "https://rpc.ankr.com/gnosis" | "https://rpc.ftm.tools";
|
|
519
538
|
/**
|
|
520
539
|
* HyperRPCs are extremely fast **but** they only support a subset of the standard.
|
|
521
540
|
* Therefore they are not used in the generalized getClient atm.
|
|
@@ -703,7 +722,6 @@ declare const alchemyNetworkMap: {
|
|
|
703
722
|
readonly 2442: "polygonzkevm-cardona";
|
|
704
723
|
readonly 2523: "frax-sepolia";
|
|
705
724
|
readonly 2741: "abstract-mainnet";
|
|
706
|
-
readonly 4002: "fantom-testnet";
|
|
707
725
|
readonly 4157: "crossfi-testnet";
|
|
708
726
|
readonly 4158: "crossfi-mainnet";
|
|
709
727
|
readonly 4801: "worldchain-sepolia";
|
|
@@ -761,7 +779,7 @@ declare const alchemyNetworkMap: {
|
|
|
761
779
|
readonly 994873017: "lumia-prism";
|
|
762
780
|
readonly 999999999: "zora-sepolia";
|
|
763
781
|
readonly 1952959480: "lumia-testnet";
|
|
764
|
-
readonly null: "
|
|
782
|
+
readonly null: "aptos-testnet";
|
|
765
783
|
};
|
|
766
784
|
|
|
767
785
|
declare const quicknodeNetworkMap: {
|
|
@@ -1323,6 +1341,10 @@ declare const routescanExplorers: {
|
|
|
1323
1341
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/2358/etherscan";
|
|
1324
1342
|
readonly explorer: "2358.routescan.io";
|
|
1325
1343
|
};
|
|
1344
|
+
readonly 2368: {
|
|
1345
|
+
readonly api: "https://api.routescan.io/v2/network/testnet/evm/2368/etherscan";
|
|
1346
|
+
readonly explorer: "2368.routescan.io";
|
|
1347
|
+
};
|
|
1326
1348
|
readonly 2522: {
|
|
1327
1349
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/2522/etherscan";
|
|
1328
1350
|
readonly explorer: "2522.routescan.io";
|
|
@@ -1531,6 +1553,10 @@ declare const routescanExplorers: {
|
|
|
1531
1553
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/21816/etherscan";
|
|
1532
1554
|
readonly explorer: "21816.routescan.io";
|
|
1533
1555
|
};
|
|
1556
|
+
readonly 23944: {
|
|
1557
|
+
readonly api: "https://api.routescan.io/v2/network/testnet/evm/23944/etherscan";
|
|
1558
|
+
readonly explorer: "23944.routescan.io";
|
|
1559
|
+
};
|
|
1534
1560
|
readonly 24010: {
|
|
1535
1561
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/24010/etherscan";
|
|
1536
1562
|
readonly explorer: "24010.routescan.io";
|
|
@@ -1870,7 +1896,7 @@ declare const chainlinkFeeds: {
|
|
|
1870
1896
|
readonly contractAddress: "0x00f0eFB3d9dBe7fE91fee44aE09DAe5DFA65c382";
|
|
1871
1897
|
readonly proxyAddress: "0x75A0d3264a949C2C920d7F25Df174af1FaF73399";
|
|
1872
1898
|
readonly decimals: 8;
|
|
1873
|
-
readonly name: "FBTC
|
|
1899
|
+
readonly name: "FBTC Proof of Reserves";
|
|
1874
1900
|
}, {
|
|
1875
1901
|
readonly contractAddress: "0x019699e5b12331cf77DF9E39818c2E15C8B06215";
|
|
1876
1902
|
readonly proxyAddress: "0x4ad7B025127e89263242aB68F0f9c4E5C033B489";
|
|
@@ -1955,7 +1981,7 @@ declare const chainlinkFeeds: {
|
|
|
1955
1981
|
readonly contractAddress: "0x0bb1203d3Df75752723290EFB116a91a1a9196D1";
|
|
1956
1982
|
readonly proxyAddress: "0x7Eaa6f116Ab9E57f58d9A9Ce88cc3f1c2476ECfA";
|
|
1957
1983
|
readonly decimals: 18;
|
|
1958
|
-
readonly name: "stBTC
|
|
1984
|
+
readonly name: "stBTC Proof of Reserves";
|
|
1959
1985
|
}, {
|
|
1960
1986
|
readonly contractAddress: "0x0c5781B3d5E2F7c00bC286E910cB9D28a86D94b6";
|
|
1961
1987
|
readonly proxyAddress: "0x0981af0C002345c9C5AD5efd26242D0cBe5aCA99";
|
|
@@ -2150,7 +2176,7 @@ declare const chainlinkFeeds: {
|
|
|
2150
2176
|
readonly contractAddress: "0x4803f34B757726d857c86cE585582AeB5F4A9417";
|
|
2151
2177
|
readonly proxyAddress: "0x5586bF404C7A22A4a4077401272cE5945f80189C";
|
|
2152
2178
|
readonly decimals: 8;
|
|
2153
|
-
readonly name: "CacheGold
|
|
2179
|
+
readonly name: "CacheGold Proof of Reserves USD";
|
|
2154
2180
|
}, {
|
|
2155
2181
|
readonly contractAddress: "0x48ac3CD812680C39879A1Fd1666639dBC9B978C0";
|
|
2156
2182
|
readonly proxyAddress: "0xEBca574f1cE4d17cd02c20F47Ef8210C08Cc4255";
|
|
@@ -2190,7 +2216,7 @@ declare const chainlinkFeeds: {
|
|
|
2190
2216
|
readonly contractAddress: "0x50e1007404025e412F13eD1e1C1e6F57957F6A6F";
|
|
2191
2217
|
readonly proxyAddress: "0xe80baC615c38D01c101B0B1b943b05E20C8c2f76";
|
|
2192
2218
|
readonly decimals: 18;
|
|
2193
|
-
readonly name: "PumpBTC
|
|
2219
|
+
readonly name: "PumpBTC Proof of Reserves";
|
|
2194
2220
|
}, {
|
|
2195
2221
|
readonly contractAddress: "0x51766d8b44551740eFd8A34AA569D15aA0A13eCe";
|
|
2196
2222
|
readonly proxyAddress: "0xEC8761a0A73c34329CA5B1D3Dc7eD07F30e836e2";
|
|
@@ -2250,7 +2276,7 @@ declare const chainlinkFeeds: {
|
|
|
2250
2276
|
readonly contractAddress: "0x5EFFB9e0D6B472E48C542842B0306a1C12c9627c";
|
|
2251
2277
|
readonly proxyAddress: "0xC8cd82067eA907EA4af81b625d2bB653E21b5156";
|
|
2252
2278
|
readonly decimals: 18;
|
|
2253
|
-
readonly name: "eETH
|
|
2279
|
+
readonly name: "eETH Proof of Reserves";
|
|
2254
2280
|
}, {
|
|
2255
2281
|
readonly contractAddress: "0x5a0efD6D1a058A46D3Ac4511861adB8F3540BD49";
|
|
2256
2282
|
readonly proxyAddress: "0x9a51192e065ECC6BDEafE5e194ce54702DE4f1f5";
|
|
@@ -2270,7 +2296,7 @@ declare const chainlinkFeeds: {
|
|
|
2270
2296
|
readonly contractAddress: "0x601009229b0215e4FC90C10c8145E066aE03d5F9";
|
|
2271
2297
|
readonly proxyAddress: "0x461790bDAF5aeD3df6a88cB97Dec42DD0EFA73c0";
|
|
2272
2298
|
readonly decimals: 18;
|
|
2273
|
-
readonly name: "xSolvBTC
|
|
2299
|
+
readonly name: "xSolvBTC Proof of Reserves";
|
|
2274
2300
|
}, {
|
|
2275
2301
|
readonly contractAddress: "0x62a897c3e81d809c7444BB63D7D51E1F2EbB6C3D";
|
|
2276
2302
|
readonly proxyAddress: "0x9B4a96210bc8D9D55b1908B465D8B0de68B7fF83";
|
|
@@ -2295,7 +2321,7 @@ declare const chainlinkFeeds: {
|
|
|
2295
2321
|
readonly contractAddress: "0x64DEE1Bc46e817ed93dEA4815F071B20eD218E39";
|
|
2296
2322
|
readonly proxyAddress: "0xa81FE04086865e63E12dD3776978E49DEEa2ea4e";
|
|
2297
2323
|
readonly decimals: 8;
|
|
2298
|
-
readonly name: "WBTC
|
|
2324
|
+
readonly name: "WBTC Proof of Reserves";
|
|
2299
2325
|
}, {
|
|
2300
2326
|
readonly contractAddress: "0x64c67984A458513C6BAb23a815916B1b1075cf3a";
|
|
2301
2327
|
readonly proxyAddress: "0x76F8C9E423C228E83DCB11d17F0Bd8aEB0Ca01bb";
|
|
@@ -2427,7 +2453,7 @@ declare const chainlinkFeeds: {
|
|
|
2427
2453
|
readonly contractAddress: "0x83cE6dbda88D4b59b370d765567d2CaB460bBdc9";
|
|
2428
2454
|
readonly proxyAddress: "0x43921Ca0eca1EA69722c048A6afbc2CAd0BB80e9";
|
|
2429
2455
|
readonly decimals: 8;
|
|
2430
|
-
readonly name: "21BTC
|
|
2456
|
+
readonly name: "21BTC Proof of Reserves";
|
|
2431
2457
|
}, {
|
|
2432
2458
|
readonly contractAddress: "0x841385263b2192A6f4b14353574C02bf0577473d";
|
|
2433
2459
|
readonly proxyAddress: "0xc04611C43842220fd941515F86d1DDdB15F04e46";
|
|
@@ -2472,7 +2498,7 @@ declare const chainlinkFeeds: {
|
|
|
2472
2498
|
readonly contractAddress: "0x8a43cc06554Ab042FFBf07e64cfb8FeE4E673422";
|
|
2473
2499
|
readonly proxyAddress: "0xAd410E655C0fE4741F573152592eeb766e686CE7";
|
|
2474
2500
|
readonly decimals: 18;
|
|
2475
|
-
readonly name: "stETH
|
|
2501
|
+
readonly name: "stETH Proof of Reserves";
|
|
2476
2502
|
}, {
|
|
2477
2503
|
readonly contractAddress: "0x8c944f66a996b5399F51dc3d8d023E07Bb0767fD";
|
|
2478
2504
|
readonly proxyAddress: "0x5C8D8AaB4ffa4652753Df94f299330Bb4479bF85";
|
|
@@ -2572,12 +2598,17 @@ declare const chainlinkFeeds: {
|
|
|
2572
2598
|
readonly contractAddress: "0x99BC071f317BEF648E5e84f7E0600423360C0Cd1";
|
|
2573
2599
|
readonly proxyAddress: "0xad4A9bED9a5E2c1c9a6E43D35Db53c83873dd901";
|
|
2574
2600
|
readonly decimals: 18;
|
|
2575
|
-
readonly name: "STBT
|
|
2601
|
+
readonly name: "STBT Proof of Reserves";
|
|
2576
2602
|
}, {
|
|
2577
2603
|
readonly contractAddress: "0x9Bc91f0E55b0d6509F65fd8C4b34b89F23AEfA35";
|
|
2578
2604
|
readonly proxyAddress: "0xF0985f7E2CaBFf22CecC5a71282a89582c382EFE";
|
|
2579
2605
|
readonly decimals: 18;
|
|
2580
2606
|
readonly name: "FTT / ETH";
|
|
2607
|
+
}, {
|
|
2608
|
+
readonly contractAddress: "0x9E3AABA3B04264DD009437F48eBFD70713dd0667";
|
|
2609
|
+
readonly proxyAddress: "0xAcFCF155a0de611414C510D43446c27a4EE6a758";
|
|
2610
|
+
readonly decimals: 8;
|
|
2611
|
+
readonly name: "WAMPL / USD";
|
|
2581
2612
|
}, {
|
|
2582
2613
|
readonly contractAddress: "0x9c7CF045f964B45FFC6AA0Ffbffd7bb6d1b470A3";
|
|
2583
2614
|
readonly proxyAddress: "0x3C7dB4D25deAb7c89660512C5494Dc9A3FC40f78";
|
|
@@ -2763,7 +2794,7 @@ declare const chainlinkFeeds: {
|
|
|
2763
2794
|
readonly contractAddress: "0xD0f0efAfB63ce1e46ae1aF84BCFE2A2A175E6797";
|
|
2764
2795
|
readonly proxyAddress: "0xda9258AFc797Cd64d1b6FC651051224cdAB1B25E";
|
|
2765
2796
|
readonly decimals: 18;
|
|
2766
|
-
readonly name: "SolvBTC
|
|
2797
|
+
readonly name: "SolvBTC Proof of Reserves";
|
|
2767
2798
|
}, {
|
|
2768
2799
|
readonly contractAddress: "0xD37190eC18fEfE85F4a0fCdEb8Bc220A47093457";
|
|
2769
2800
|
readonly proxyAddress: "0x164b276057258d81941e97B0a900D4C7B358bCe0";
|
|
@@ -2778,7 +2809,7 @@ declare const chainlinkFeeds: {
|
|
|
2778
2809
|
readonly contractAddress: "0xE5490FcdFe66b1680f2b4c09f81149f0C285a2E3";
|
|
2779
2810
|
readonly proxyAddress: "0x60cbE8D88EF519cF3C62414D76f50818D211fea1";
|
|
2780
2811
|
readonly decimals: 18;
|
|
2781
|
-
readonly name: "Swell ETH
|
|
2812
|
+
readonly name: "Swell ETH Proof of Reserves";
|
|
2782
2813
|
}, {
|
|
2783
2814
|
readonly contractAddress: "0xE6c7AE04e83aa7e491988cAeecf5BD6a240A0d14";
|
|
2784
2815
|
readonly proxyAddress: "0x32d1463EB53b73C095625719Afa544D5426354cB";
|
|
@@ -2838,7 +2869,7 @@ declare const chainlinkFeeds: {
|
|
|
2838
2869
|
readonly contractAddress: "0xa685F0Bb86044e9c6A182A3689bBF8A98eB5764C";
|
|
2839
2870
|
readonly proxyAddress: "0x0c89c488e763AC2d69cB058CCAC7A8B283EE3DbA";
|
|
2840
2871
|
readonly decimals: 18;
|
|
2841
|
-
readonly name: "Swell Restaked ETH
|
|
2872
|
+
readonly name: "Swell Restaked ETH Proof of Reserves";
|
|
2842
2873
|
}, {
|
|
2843
2874
|
readonly contractAddress: "0xa7Daf8A03B064262FfF0D615663553DAe3E18744";
|
|
2844
2875
|
readonly proxyAddress: "0x169E633A2D1E6c10dD91238Ba11c4A708dfEF37C";
|
|
@@ -2863,7 +2894,7 @@ declare const chainlinkFeeds: {
|
|
|
2863
2894
|
readonly contractAddress: "0xb49dBd447D2C3ae00B205200Fe629cA73E3E80e3";
|
|
2864
2895
|
readonly proxyAddress: "0x0A8cD0115B1EE87EbA5b8E06A9a15ED93e230f7a";
|
|
2865
2896
|
readonly decimals: 18;
|
|
2866
|
-
readonly name: "HBTC
|
|
2897
|
+
readonly name: "HBTC Proof of Reserves";
|
|
2867
2898
|
}, {
|
|
2868
2899
|
readonly contractAddress: "0xb611401574061947aBAc7d2406711F115BE22A6e";
|
|
2869
2900
|
readonly proxyAddress: "0x09023c0DA49Aaf8fc3fA3ADF34C6A7016D38D5e3";
|
|
@@ -2873,7 +2904,7 @@ declare const chainlinkFeeds: {
|
|
|
2873
2904
|
readonly contractAddress: "0xbBaf2F253Dec10c17eF9531bc8Cd7A7C708A10Bc";
|
|
2874
2905
|
readonly proxyAddress: "0xc590D9fb8eE78a0909dFF341ccf717000b7b7fF2";
|
|
2875
2906
|
readonly decimals: 18;
|
|
2876
|
-
readonly name: "uniBTC
|
|
2907
|
+
readonly name: "uniBTC Proof of Reserves";
|
|
2877
2908
|
}, {
|
|
2878
2909
|
readonly contractAddress: "0xbCD99Bc4C5Bee667939bf7E9B3367d0A0Fa096a0";
|
|
2879
2910
|
readonly proxyAddress: "0x3977CFc9e4f29C184D4675f4EB8e0013236e5f3e";
|
|
@@ -3803,7 +3834,7 @@ declare const chainlinkFeeds: {
|
|
|
3803
3834
|
readonly contractAddress: "0x0044980acB0C01d75afF2Cc3DF2F11171442295c";
|
|
3804
3835
|
readonly proxyAddress: "0x657b128a4936542A48a40C320BFfa3F44043583a";
|
|
3805
3836
|
readonly decimals: 18;
|
|
3806
|
-
readonly name: "SolvBTC
|
|
3837
|
+
readonly name: "SolvBTC Proof of Reserves";
|
|
3807
3838
|
}, {
|
|
3808
3839
|
readonly contractAddress: "0x0765d9EF5E38A2E742d2c3A58C4944a3fb6D25C5";
|
|
3809
3840
|
readonly proxyAddress: "0xC333eb0086309a16aa7c8308DfD32c8BBA0a2592";
|
|
@@ -4253,7 +4284,7 @@ declare const chainlinkFeeds: {
|
|
|
4253
4284
|
readonly contractAddress: "0x9a8b0bf764D6cd177616A6133fb222ad5938b51a";
|
|
4254
4285
|
readonly proxyAddress: "0x81ca991cEf14e7bFB3fa8cc70303a2DEaEb09A42";
|
|
4255
4286
|
readonly decimals: 18;
|
|
4256
|
-
readonly name: "Solv
|
|
4287
|
+
readonly name: "Solv Proof of Reserves";
|
|
4257
4288
|
}, {
|
|
4258
4289
|
readonly contractAddress: "0x9f1fD891E4D82F4b23420C769Bd96409C99806b2";
|
|
4259
4290
|
readonly proxyAddress: "0x657e700c66C48c135c4A29c4292908DbdA7aa280";
|
|
@@ -4348,7 +4379,7 @@ declare const chainlinkFeeds: {
|
|
|
4348
4379
|
readonly contractAddress: "0xDa15d5A05A2813395e9A851EA463281AA1354FF7";
|
|
4349
4380
|
readonly proxyAddress: "0x696B7eA5827548cd35C743A0a05c1f3130196e5e";
|
|
4350
4381
|
readonly decimals: 18;
|
|
4351
|
-
readonly name: "stBTC
|
|
4382
|
+
readonly name: "stBTC Proof of Reserves";
|
|
4352
4383
|
}, {
|
|
4353
4384
|
readonly contractAddress: "0xE0Aa6B17316140A964B08E0228152E282225607D";
|
|
4354
4385
|
readonly proxyAddress: "0x10402B01cD2E6A9ed6DBe683CbC68f78Ff02f8FC";
|
|
@@ -4885,7 +4916,7 @@ declare const chainlinkFeeds: {
|
|
|
4885
4916
|
readonly contractAddress: "0x31fe6bD1D7E4166B5b8Fd4112eea3C7eECA51217";
|
|
4886
4917
|
readonly proxyAddress: "0x0fB2beD999da86Cb1Fdd97E746600A96141EeA09";
|
|
4887
4918
|
readonly decimals: 8;
|
|
4888
|
-
readonly name: "bNVDA Reserves /
|
|
4919
|
+
readonly name: "bNVDA Reserves / Proof of Reserves";
|
|
4889
4920
|
}, {
|
|
4890
4921
|
readonly contractAddress: "0x32411A331EAf9829adCEC478afF9adF2B5bd296c";
|
|
4891
4922
|
readonly proxyAddress: "0xFC539A559e170f848323e19dfD66007520510085";
|
|
@@ -5290,7 +5321,7 @@ declare const chainlinkFeeds: {
|
|
|
5290
5321
|
readonly contractAddress: "0xC65B00c8D77dc82Bd29E8b571De22c6ED3F6eE89";
|
|
5291
5322
|
readonly proxyAddress: "0x4e9fc7480c16F3FE5d956C0759eE6b4808d1F5D7";
|
|
5292
5323
|
readonly decimals: 8;
|
|
5293
|
-
readonly name: "CGT
|
|
5324
|
+
readonly name: "CGT Proof of Reserves (ETH)";
|
|
5294
5325
|
}, {
|
|
5295
5326
|
readonly contractAddress: "0xC6c7Bb0d721e4Ef7318A16F682dd4c1013b430F0";
|
|
5296
5327
|
readonly proxyAddress: "0x336584C8E6Dc19637A5b36206B1c79923111b405";
|
|
@@ -6046,6 +6077,11 @@ declare const chainlinkFeeds: {
|
|
|
6046
6077
|
readonly proxyAddress: "0x7db2275279F52D0914A481e14c4Ce5a59705A25b";
|
|
6047
6078
|
readonly decimals: 8;
|
|
6048
6079
|
readonly name: "BTC / USD";
|
|
6080
|
+
}, {
|
|
6081
|
+
readonly contractAddress: "0xa236d64Ef51e3243887aac4270ea75De65ECABfd";
|
|
6082
|
+
readonly proxyAddress: "0x01dd982820B7c25e2A9C77BDd3bC0eDA90298A2F";
|
|
6083
|
+
readonly decimals: 8;
|
|
6084
|
+
readonly name: "USD1 / USD";
|
|
6049
6085
|
}, {
|
|
6050
6086
|
readonly contractAddress: "0xfB1193670633f958F50C0E49688a82E6b73297b1";
|
|
6051
6087
|
readonly proxyAddress: "0xD97F20bEbeD74e8144134C4b148fE93417dd0F96";
|
|
@@ -6271,7 +6307,12 @@ declare const chainlinkFeeds: {
|
|
|
6271
6307
|
readonly contractAddress: "0x52d743436F6bA414050bD8869C8bF6537C355A00";
|
|
6272
6308
|
readonly proxyAddress: "0x30A76F4E688Cf52f4A06D7AAd987A7037f3Ae6f7";
|
|
6273
6309
|
readonly decimals: 8;
|
|
6274
|
-
readonly name: "dlcBTC
|
|
6310
|
+
readonly name: "dlcBTC Proof of Reserves";
|
|
6311
|
+
}, {
|
|
6312
|
+
readonly contractAddress: "0x5387a1EA9361BD8A2AA1BE68E1e10bd566eECFa4";
|
|
6313
|
+
readonly proxyAddress: "0x9f0C1dD78C4CBdF5b9cf923a549A201EdC676D34";
|
|
6314
|
+
readonly decimals: 8;
|
|
6315
|
+
readonly name: "XRP / USD";
|
|
6275
6316
|
}, {
|
|
6276
6317
|
readonly contractAddress: "0x55012EF027ae9b4E2bb5a5f529E5a1184Bcc998D";
|
|
6277
6318
|
readonly proxyAddress: "0x91D7AEd72bF772A0DA30199B925aCB866ACD3D9e";
|
|
@@ -6312,6 +6353,11 @@ declare const chainlinkFeeds: {
|
|
|
6312
6353
|
readonly proxyAddress: "0x9DDa783DE64A9d1A60c49ca761EbE528C35BA428";
|
|
6313
6354
|
readonly decimals: 8;
|
|
6314
6355
|
readonly name: "COMP / USD";
|
|
6356
|
+
}, {
|
|
6357
|
+
readonly contractAddress: "0x62c9CB9Dd648d9ed28C4C243d062093571b934D7";
|
|
6358
|
+
readonly proxyAddress: "0x206a34e47093125fbf4C75b7c7E88b84c6A77a69";
|
|
6359
|
+
readonly decimals: 8;
|
|
6360
|
+
readonly name: "LTC / USD";
|
|
6315
6361
|
}, {
|
|
6316
6362
|
readonly contractAddress: "0x63a3b4E2aeea2d1Cc883987AEc22E9Aa88323b3c";
|
|
6317
6363
|
readonly proxyAddress: "0x79cf4a31B29D69191f0b6E97916eB93FEB81E533";
|
|
@@ -6437,6 +6483,11 @@ declare const chainlinkFeeds: {
|
|
|
6437
6483
|
readonly proxyAddress: "0x42868EFcee13C0E71af89c04fF7d96f5bec479b0";
|
|
6438
6484
|
readonly decimals: 8;
|
|
6439
6485
|
readonly name: "GHO / USD";
|
|
6486
|
+
}, {
|
|
6487
|
+
readonly contractAddress: "0x91e936921Df850Cc8714527EBE6C45ECbD2CAd31";
|
|
6488
|
+
readonly proxyAddress: "0x34cD971a092d5411bD69C10a5F0A7EEF72C69041";
|
|
6489
|
+
readonly decimals: 8;
|
|
6490
|
+
readonly name: "ADA / USD";
|
|
6440
6491
|
}, {
|
|
6441
6492
|
readonly contractAddress: "0x9465CF4b4032080434E397F42fB99A8446c35376";
|
|
6442
6493
|
readonly proxyAddress: "0xd5Ec94430eF4170D819E0996BC53ed40d31638d8";
|
|
@@ -6591,7 +6642,7 @@ declare const chainlinkFeeds: {
|
|
|
6591
6642
|
readonly contractAddress: "0xa24AAfb9d49d0cF43dcd8A5f2442a30391F494D2";
|
|
6592
6643
|
readonly proxyAddress: "0x7FCED5198e43ec93Ef2179DFC70a8dcf494DcB80";
|
|
6593
6644
|
readonly decimals: 8;
|
|
6594
|
-
readonly name: "iBTC
|
|
6645
|
+
readonly name: "iBTC Proof of Reserves";
|
|
6595
6646
|
}, {
|
|
6596
6647
|
readonly contractAddress: "0xa332cbef58964977Fa47d8Fa9abdc58FBd477e62";
|
|
6597
6648
|
readonly proxyAddress: "0xcCBb30DA24b5195D2Ee94C2B29cfA7108b4DFB1F";
|
|
@@ -6752,7 +6803,7 @@ declare const chainlinkFeeds: {
|
|
|
6752
6803
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6753
6804
|
readonly proxyAddress: null;
|
|
6754
6805
|
readonly decimals: 18;
|
|
6755
|
-
readonly name: "UNIBTC/BTC-ExRate-mainnet-production";
|
|
6806
|
+
readonly name: "UNIBTC/BTC-ExRate-Deprecated-mainnet-production";
|
|
6756
6807
|
}, {
|
|
6757
6808
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
6758
6809
|
readonly proxyAddress: null;
|
|
@@ -7776,8 +7827,18 @@ declare const chainlinkFeeds: {
|
|
|
7776
7827
|
}, {
|
|
7777
7828
|
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7778
7829
|
readonly proxyAddress: null;
|
|
7779
|
-
readonly decimals:
|
|
7830
|
+
readonly decimals: 0;
|
|
7780
7831
|
readonly name: "SYRUPUSDC/USDC-ExRate-mainnet-production";
|
|
7832
|
+
}, {
|
|
7833
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7834
|
+
readonly proxyAddress: null;
|
|
7835
|
+
readonly decimals: 18;
|
|
7836
|
+
readonly name: "SyrupUSDC/USDC-ExRate-Deprecated-mainnet-production";
|
|
7837
|
+
}, {
|
|
7838
|
+
readonly contractAddress: "0x0000000000000000000000000000000000000000";
|
|
7839
|
+
readonly proxyAddress: null;
|
|
7840
|
+
readonly decimals: 0;
|
|
7841
|
+
readonly name: "UNIBTC/BTC-ExRate-mainnet-production";
|
|
7781
7842
|
}, {
|
|
7782
7843
|
readonly contractAddress: "0x01DD3Cf6118069DB13A2d64d7e1A09FECd587EDD";
|
|
7783
7844
|
readonly proxyAddress: "0x8d0CC5f38f9E802475f2CFf4F9fc7000C2E1557c";
|
|
@@ -7922,7 +7983,7 @@ declare const chainlinkFeeds: {
|
|
|
7922
7983
|
readonly contractAddress: "0x29ef0aE1eDb5764b5bd2ff3a605b5d4Eb39a0d63";
|
|
7923
7984
|
readonly proxyAddress: "0x5F25Ea8Cf2a3aB12E4D6fB58FB63C7938473B036";
|
|
7924
7985
|
readonly decimals: 10;
|
|
7925
|
-
readonly name: "aBTC
|
|
7986
|
+
readonly name: "aBTC Proof of Reserves";
|
|
7926
7987
|
}, {
|
|
7927
7988
|
readonly contractAddress: "0x2C50f2Fe9427d120DEA2eb804c148d2780519d59";
|
|
7928
7989
|
readonly proxyAddress: "0x221912ce795669f628c51c69b7d0873eDA9C03bB";
|
|
@@ -7967,7 +8028,7 @@ declare const chainlinkFeeds: {
|
|
|
7967
8028
|
readonly contractAddress: "0x331480b3C79f16018704A83847db1e29d8cdce14";
|
|
7968
8029
|
readonly proxyAddress: "0xfb010c715Ff2B85DB9c896f0C030bF9329638905";
|
|
7969
8030
|
readonly decimals: 8;
|
|
7970
|
-
readonly name: "FBTC
|
|
8031
|
+
readonly name: "FBTC Proof of Reserves";
|
|
7971
8032
|
}, {
|
|
7972
8033
|
readonly contractAddress: "0x338D614Af8c05eF9d77a33E9D33A92b770809ED4";
|
|
7973
8034
|
readonly proxyAddress: "0x6548a81E640C000150e06AB413fB3F772682e9c5";
|
|
@@ -9551,7 +9612,7 @@ declare const chainlinkFeeds: {
|
|
|
9551
9612
|
}, {
|
|
9552
9613
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
9553
9614
|
readonly proxyAddress: null;
|
|
9554
|
-
readonly decimals:
|
|
9615
|
+
readonly decimals: 0;
|
|
9555
9616
|
readonly name: "wstETH/USD-RefPrice-DS-Premium-Global-003";
|
|
9556
9617
|
}, {
|
|
9557
9618
|
readonly contractAddress: "0x534a7FF707Bc862cAB0Dda546F1B817Be5235b66";
|
|
@@ -9742,7 +9803,7 @@ declare const chainlinkFeeds: {
|
|
|
9742
9803
|
readonly contractAddress: "0x5F36C484290Ec4bDaC745c6C8BD681F44bE6ac4D";
|
|
9743
9804
|
readonly proxyAddress: "0x0543Bb6b5A57E3e7569237b67321eAB773e41401";
|
|
9744
9805
|
readonly decimals: 8;
|
|
9745
|
-
readonly name: "iBTC
|
|
9806
|
+
readonly name: "iBTC Proof of Reserves";
|
|
9746
9807
|
}, {
|
|
9747
9808
|
readonly contractAddress: "0x5ab0B1e2604d4B708721bc3cD1ce962958b4297E";
|
|
9748
9809
|
readonly proxyAddress: "0x47E55cCec6582838E173f252D08Afd8116c2202d";
|
|
@@ -9837,7 +9898,7 @@ declare const chainlinkFeeds: {
|
|
|
9837
9898
|
readonly contractAddress: "0x73b6A47371f6278F41Ec655A3a06477997912D09";
|
|
9838
9899
|
readonly proxyAddress: "0xA0118D8948FA85624608d94eC6B52973578082fA";
|
|
9839
9900
|
readonly decimals: 18;
|
|
9840
|
-
readonly name: "stBTC
|
|
9901
|
+
readonly name: "stBTC Proof of Reserves";
|
|
9841
9902
|
}, {
|
|
9842
9903
|
readonly contractAddress: "0x75DD106b46017F9b5BF2c468f29Ee55f410b991c";
|
|
9843
9904
|
readonly proxyAddress: "0x0F38D86FceF4955B705F35c9e41d1A16e0637c73";
|
|
@@ -10027,7 +10088,7 @@ declare const chainlinkFeeds: {
|
|
|
10027
10088
|
readonly contractAddress: "0xAfAEbEB1Db6d13EC1279B59396a9dc40502458c1";
|
|
10028
10089
|
readonly proxyAddress: "0x47A2fBEb46553F01E7133686Fb1b5349d4823a0C";
|
|
10029
10090
|
readonly decimals: 8;
|
|
10030
|
-
readonly name: "dlcBTC
|
|
10091
|
+
readonly name: "dlcBTC Proof of Reserves";
|
|
10031
10092
|
}, {
|
|
10032
10093
|
readonly contractAddress: "0xB4A1F9641186D822a941FEc71E374bB66cd27cdA";
|
|
10033
10094
|
readonly proxyAddress: "0xcd1bd86fDc33080DCF1b5715B6FCe04eC6F85845";
|
|
@@ -10107,7 +10168,7 @@ declare const chainlinkFeeds: {
|
|
|
10107
10168
|
readonly contractAddress: "0xDB99d80bD3aE8dae5d929493Ddf696196f7f59f2";
|
|
10108
10169
|
readonly proxyAddress: "0xd9344493d99153Ad4353D604A1d80d4089004c5D";
|
|
10109
10170
|
readonly decimals: 8;
|
|
10110
|
-
readonly name: "zBTC
|
|
10171
|
+
readonly name: "zBTC Proof of Reserves";
|
|
10111
10172
|
}, {
|
|
10112
10173
|
readonly contractAddress: "0xDf8a3fc9bC6fA89F1b630e58f6eB4b874f24C165";
|
|
10113
10174
|
readonly proxyAddress: "0x3A917e6B5732dFCc4A45257e3930979fAE6a3737";
|
|
@@ -10559,7 +10620,7 @@ declare const chainlinkFeeds: {
|
|
|
10559
10620
|
readonly contractAddress: "0x017780bFA4D66Ee3b4b816a15b0f05DF2654f7B9";
|
|
10560
10621
|
readonly proxyAddress: "0xebEfEAA58636DF9B20a4fAd78Fad8759e6A20e87";
|
|
10561
10622
|
readonly decimals: 8;
|
|
10562
|
-
readonly name: "WBTC.e
|
|
10623
|
+
readonly name: "WBTC.e Proof of Reserves";
|
|
10563
10624
|
}, {
|
|
10564
10625
|
readonly contractAddress: "0x0B2bFcbE40213cF93CE2Be85156DD16E31483f70";
|
|
10565
10626
|
readonly proxyAddress: "0x6f2A1D4014FED967172FC7caCf7a6e04Cf02752e";
|
|
@@ -10604,7 +10665,7 @@ declare const chainlinkFeeds: {
|
|
|
10604
10665
|
readonly contractAddress: "0x1c4841636a4848d474892E7408312804D3f9a43F";
|
|
10605
10666
|
readonly proxyAddress: "0x976D7fAc81A49FA71EF20694a3C56B9eFB93c30B";
|
|
10606
10667
|
readonly decimals: 18;
|
|
10607
|
-
readonly name: "DAI.e
|
|
10668
|
+
readonly name: "DAI.e Proof of Reserves";
|
|
10608
10669
|
}, {
|
|
10609
10670
|
readonly contractAddress: "0x255ca8e07c6Dbc4835DC7680dB7D9E969c08c120";
|
|
10610
10671
|
readonly proxyAddress: "0x7E77D9F06056017334e26bEd92176222169DE6C1";
|
|
@@ -10669,7 +10730,7 @@ declare const chainlinkFeeds: {
|
|
|
10669
10730
|
readonly contractAddress: "0x461b95e560697B0C83AB569f06034832a4b62707";
|
|
10670
10731
|
readonly proxyAddress: "0x99311B4bf6D8E3D3B4b9fbdD09a1B0F4Ad8e06E9";
|
|
10671
10732
|
readonly decimals: 8;
|
|
10672
|
-
readonly name: "BTC.b
|
|
10733
|
+
readonly name: "BTC.b Proof of Reserves";
|
|
10673
10734
|
}, {
|
|
10674
10735
|
readonly contractAddress: "0x4A5cE69A1aDA639042B30e1574Eb9D6e939388A3";
|
|
10675
10736
|
readonly proxyAddress: "0x5C2d58627Fbe746f5ea24Ef6D618f09f8e3f0122";
|
|
@@ -10704,7 +10765,7 @@ declare const chainlinkFeeds: {
|
|
|
10704
10765
|
readonly contractAddress: "0x61595142b147De812B43C66f30094a3219a38bCD";
|
|
10705
10766
|
readonly proxyAddress: "0x943cEF1B112Ca9FD7EDaDC9A46477d3812a382b6";
|
|
10706
10767
|
readonly decimals: 18;
|
|
10707
|
-
readonly name: "LINK.e
|
|
10768
|
+
readonly name: "LINK.e Proof of Reserves";
|
|
10708
10769
|
}, {
|
|
10709
10770
|
readonly contractAddress: "0x64922B570edf432defD4d3C5647269727a667EDa";
|
|
10710
10771
|
readonly proxyAddress: "0x2dD517B2f9ba49CedB0573131FD97a5AC19ff648";
|
|
@@ -10834,7 +10895,7 @@ declare const chainlinkFeeds: {
|
|
|
10834
10895
|
readonly contractAddress: "0xC5463267394709421b0FF3726dd21e152Ec0B1D9";
|
|
10835
10896
|
readonly proxyAddress: "0x14C4c668E34c09E1FBA823aD5DB47F60aeBDD4F7";
|
|
10836
10897
|
readonly decimals: 18;
|
|
10837
|
-
readonly name: "AAVE.e
|
|
10898
|
+
readonly name: "AAVE.e Proof of Reserves";
|
|
10838
10899
|
}, {
|
|
10839
10900
|
readonly contractAddress: "0xC54d8293A7f98ef887BE882311E4C274BE67f927";
|
|
10840
10901
|
readonly proxyAddress: "0x9a1372f9b1B71B3A5a72E092AE67E172dBd7Daaa";
|
|
@@ -10854,7 +10915,7 @@ declare const chainlinkFeeds: {
|
|
|
10854
10915
|
readonly contractAddress: "0xD38Acd83073EeF07186D5Db701C576aD42D6cf27";
|
|
10855
10916
|
readonly proxyAddress: "0xDDaf9290D057BfA12d7576e6dADC109421F31948";
|
|
10856
10917
|
readonly decimals: 18;
|
|
10857
|
-
readonly name: "WETH.e
|
|
10918
|
+
readonly name: "WETH.e Proof of Reserves";
|
|
10858
10919
|
}, {
|
|
10859
10920
|
readonly contractAddress: "0xD74bBE6Db11AD5F3D4F7d4Ee23D9C9d5c301D4e0";
|
|
10860
10921
|
readonly proxyAddress: "0x7FDE7f51dc2580dd051e17A333E28CDC8176da0A";
|
|
@@ -10939,7 +11000,7 @@ declare const chainlinkFeeds: {
|
|
|
10939
11000
|
readonly contractAddress: "0xd4452d1811AA9AC14B9c55444a1B55CDB97760eC";
|
|
10940
11001
|
readonly proxyAddress: "0x94D8c2548018C27F1aa078A23C4158206bE1CC72";
|
|
10941
11002
|
readonly decimals: 6;
|
|
10942
|
-
readonly name: "USDT.e
|
|
11003
|
+
readonly name: "USDT.e Proof of Reserves";
|
|
10943
11004
|
}, {
|
|
10944
11005
|
readonly contractAddress: "0xd761cFc03e833FEBB04297Cc1aB7291D80c9595f";
|
|
10945
11006
|
readonly proxyAddress: "0xEBE676ee90Fe1112671f19b6B7459bC678B67e8a";
|
|
@@ -10950,11 +11011,16 @@ declare const chainlinkFeeds: {
|
|
|
10950
11011
|
readonly proxyAddress: "0x7CF8A6090A9053B01F3DF4D4e6CfEdd8c90d9027";
|
|
10951
11012
|
readonly decimals: 8;
|
|
10952
11013
|
readonly name: "CRV / USD";
|
|
11014
|
+
}, {
|
|
11015
|
+
readonly contractAddress: "0xe3fA7342C4096E02aB376f64b6C5251bf6f3c657";
|
|
11016
|
+
readonly proxyAddress: "0x0d2807dc7FA52d3B38be564B64a2b37753C49AdD";
|
|
11017
|
+
readonly decimals: 8;
|
|
11018
|
+
readonly name: "EmCH Reserves";
|
|
10953
11019
|
}, {
|
|
10954
11020
|
readonly contractAddress: "0xf52BF03f3f406BAAADE542b3D2D5CeCfFf1754E6";
|
|
10955
11021
|
readonly proxyAddress: "0x63769951E4cfDbDC653dD9BBde63D2Ce0746e5F2";
|
|
10956
11022
|
readonly decimals: 6;
|
|
10957
|
-
readonly name: "USDC.e
|
|
11023
|
+
readonly name: "USDC.e Proof of Reserves";
|
|
10958
11024
|
}, {
|
|
10959
11025
|
readonly contractAddress: "0xfb317b2a4404802dF62c87a5982EE383F2711ce6";
|
|
10960
11026
|
readonly proxyAddress: "0xC4D7270aCc921DE5A17452437257f075C1298eB3";
|
|
@@ -11186,7 +11252,7 @@ declare const chainlinkFeeds: {
|
|
|
11186
11252
|
readonly contractAddress: "0x863451a4C718699bb3C860799a785DBd4DDf3a4D";
|
|
11187
11253
|
readonly proxyAddress: "0x6dCa10bce66548e26DBd1FCF4E8692796BeDdd7E";
|
|
11188
11254
|
readonly decimals: 18;
|
|
11189
|
-
readonly name: "stBTC
|
|
11255
|
+
readonly name: "stBTC Proof of Reserves";
|
|
11190
11256
|
}, {
|
|
11191
11257
|
readonly contractAddress: "0x88926382559e24D1153d9F492554064C9f052A22";
|
|
11192
11258
|
readonly proxyAddress: "0xB4b121ebE4DdCdFD3378b9519A101678829fE8c6";
|
|
@@ -11300,7 +11366,7 @@ declare const chainlinkFeeds: {
|
|
|
11300
11366
|
}];
|
|
11301
11367
|
};
|
|
11302
11368
|
|
|
11303
|
-
declare const hyperRPCSupportedNetworks: readonly [
|
|
11369
|
+
declare const hyperRPCSupportedNetworks: readonly [1, 1, 10, 100, 100, 10143, 10200, 1101, 11155111, 11155420, 1135, 1284, 1287, 130, 1301, 1313161554, 137, 14, 146, 148, 1666600000, 168587773, 169, 17000, 1750, 17864, 1868, 1923, 204, 250, 252, 255, 2741, 2810, 2818, 288, 30, 324, 33111, 34443, 42, 4200, 4201, 42161, 421614, 42170, 42220, 43113, 43114, 480, 48900, 50, 5000, 50002, 50104, 51, 5115, 531050104, 5330, 534352, 56, 57073, 59144, 6342, 645749, 696969, 7000, 7225878, 7560, 7777777, 80002, 80084, 80094, 81457, 8453, 84532, 8888, 97, 9889];
|
|
11304
11370
|
|
|
11305
11371
|
declare const erc1967_ImplementationSlot = "0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc";
|
|
11306
11372
|
declare const erc1967_AdminSlot = "0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103";
|
|
@@ -11349,13 +11415,107 @@ declare function checkForSelfdestruct(client: Client, addresses: Address[], trus
|
|
|
11349
11415
|
type RenderTenderlyReportParams = {
|
|
11350
11416
|
client: Client;
|
|
11351
11417
|
sim: any;
|
|
11418
|
+
payloadId: number;
|
|
11419
|
+
payload: Payload;
|
|
11420
|
+
onchainLogs: {
|
|
11421
|
+
createdLog: {
|
|
11422
|
+
transactionHash: Hash;
|
|
11423
|
+
blockNumber: number;
|
|
11424
|
+
};
|
|
11425
|
+
queuedLog?: {
|
|
11426
|
+
transactionHash: Hash;
|
|
11427
|
+
blockNumber: number;
|
|
11428
|
+
};
|
|
11429
|
+
executedLog?: {
|
|
11430
|
+
transactionHash: Hash;
|
|
11431
|
+
blockNumber: number;
|
|
11432
|
+
};
|
|
11433
|
+
};
|
|
11352
11434
|
};
|
|
11353
|
-
declare function renderTenderlyReport({ client, sim, }: RenderTenderlyReportParams): Promise<
|
|
11354
|
-
|
|
11355
|
-
|
|
11356
|
-
|
|
11435
|
+
declare function renderTenderlyReport({ client, sim, payloadId, payload, onchainLogs: { createdLog, queuedLog, executedLog }, }: RenderTenderlyReportParams): Promise<string>;
|
|
11436
|
+
declare function toTxLink(txn: Hex, client: Client): string;
|
|
11437
|
+
|
|
11438
|
+
interface GetVerificationStatusParams {
|
|
11439
|
+
client: Client;
|
|
11440
|
+
addresses: Address[];
|
|
11441
|
+
contractDb: Record<Address, string>;
|
|
11442
|
+
apiKey?: string;
|
|
11443
|
+
apiUrl?: string;
|
|
11444
|
+
}
|
|
11445
|
+
declare enum VerificationStatus {
|
|
11446
|
+
EOA = 0,
|
|
11447
|
+
CONTRACT = 1,
|
|
11448
|
+
ERROR = 2
|
|
11449
|
+
}
|
|
11450
|
+
/**
|
|
11451
|
+
* Iterates a list of addresses and returns their verification status
|
|
11452
|
+
* @param param0
|
|
11453
|
+
* @returns
|
|
11454
|
+
*/
|
|
11455
|
+
declare function getVerificationStatus({ client, addresses, contractDb, apiKey, apiUrl, }: GetVerificationStatusParams): Promise<{
|
|
11456
|
+
address: Address;
|
|
11457
|
+
status: VerificationStatus;
|
|
11458
|
+
name?: string;
|
|
11459
|
+
new?: boolean;
|
|
11357
11460
|
}[]>;
|
|
11358
11461
|
|
|
11462
|
+
declare enum SoltypeType {
|
|
11463
|
+
Address = "address",
|
|
11464
|
+
Bool = "bool",
|
|
11465
|
+
Bytes32 = "bytes32",
|
|
11466
|
+
MappingAddressUint256 = "mapping (address => uint256)",
|
|
11467
|
+
MappingUint256Uint256 = "mapping (uint256 => uint256)",
|
|
11468
|
+
String = "string",
|
|
11469
|
+
Tuple = "tuple",
|
|
11470
|
+
TypeAddress = "address[]",
|
|
11471
|
+
TypeTuple = "tuple[]",
|
|
11472
|
+
Uint16 = "uint16",
|
|
11473
|
+
Uint256 = "uint256",
|
|
11474
|
+
Uint48 = "uint48",
|
|
11475
|
+
Uint56 = "uint56",
|
|
11476
|
+
Uint8 = "uint8"
|
|
11477
|
+
}
|
|
11478
|
+
declare enum StorageLocation {
|
|
11479
|
+
Calldata = "calldata",
|
|
11480
|
+
Default = "default",
|
|
11481
|
+
Memory = "memory",
|
|
11482
|
+
Storage = "storage"
|
|
11483
|
+
}
|
|
11484
|
+
declare enum SimpleTypeType {
|
|
11485
|
+
Address = "address",
|
|
11486
|
+
Bool = "bool",
|
|
11487
|
+
Bytes = "bytes",
|
|
11488
|
+
Slice = "slice",
|
|
11489
|
+
String = "string",
|
|
11490
|
+
Uint = "uint"
|
|
11491
|
+
}
|
|
11492
|
+
interface Type {
|
|
11493
|
+
type: SimpleTypeType;
|
|
11494
|
+
}
|
|
11495
|
+
interface SoltypeElement {
|
|
11496
|
+
name: string;
|
|
11497
|
+
type: SoltypeType;
|
|
11498
|
+
storage_location: StorageLocation;
|
|
11499
|
+
components: SoltypeElement[] | null;
|
|
11500
|
+
offset: number;
|
|
11501
|
+
index: string;
|
|
11502
|
+
indexed: boolean;
|
|
11503
|
+
simple_type?: Type;
|
|
11504
|
+
}
|
|
11505
|
+
interface RawElement {
|
|
11506
|
+
address: string;
|
|
11507
|
+
key: string;
|
|
11508
|
+
original: string;
|
|
11509
|
+
dirty: string;
|
|
11510
|
+
}
|
|
11511
|
+
interface StateDiff {
|
|
11512
|
+
soltype: SoltypeElement | null;
|
|
11513
|
+
original: string | Record<string, any>;
|
|
11514
|
+
dirty: string | Record<string, any>;
|
|
11515
|
+
raw: RawElement[];
|
|
11516
|
+
address: string;
|
|
11517
|
+
}
|
|
11518
|
+
|
|
11359
11519
|
declare const IReserveInterestRateStrategy_ABI: readonly [{
|
|
11360
11520
|
readonly type: "function";
|
|
11361
11521
|
readonly name: "calculateInterestRates";
|
|
@@ -20115,4 +20275,4 @@ declare const IAuthorizedForwarder_ABI: readonly [{
|
|
|
20115
20275
|
readonly type: "function";
|
|
20116
20276
|
}];
|
|
20117
20277
|
|
|
20118
|
-
export {
|
|
20278
|
+
export { getNonFinalizedProposals as $, wadDiv as A, fetchImmutablePoolAddresses as B, fetchMutablePoolAddresses as C, fetchPoolAddresses as D, getReserveTokens as E, getReserveConfigurations as F, PayloadState as G, HALF_WAD as H, HUMAN_READABLE_PAYLOAD_STATE as I, type PayloadsControllerContract as J, getPayloadsController as K, LTV_PRECISION as L, getPayloadStorageOverrides as M, makePayloadExecutableOnTestClient as N, isPayloadFinal as O, type Payload as P, getNonFinalizedPayloads as Q, type ReserveConfiguration as R, type StandardJsonInput as S, type Proposal as T, ProposalState as U, HUMAN_READABLE_PROPOSAL_STATE as V, WAD as W, type GovernanceContract as X, getGovernance as Y, makeProposalExecutableOnTestClient as Z, isProposalFinal as _, decodeReserveConfiguration as a, IDualAggregator_ABI as a$, Aip as a0, validateAip as a1, type ExplorerConfig as a2, getExplorer as a3, getSourceCode as a4, parseEtherscanStyleSourceCode as a5, type Tenderly_createVnetParamsResponse as a6, tenderly_deleteVnet as a7, tenderly_simVnet as a8, tenderly_getVnet as a9, priceUpdateDecoder as aA, alchemyNetworkMap as aB, quicknodeNetworkMap as aC, etherscanExplorers as aD, routescanExplorers as aE, chainlinkFeeds as aF, hyperRPCSupportedNetworks as aG, erc1967_ImplementationSlot as aH, erc1967_AdminSlot as aI, diffCode as aJ, type IndexerTopicState as aK, type GenericIndexerArgs as aL, genericIndexer as aM, parseLogs as aN, SelfdestuctCheckState as aO, checkForSelfdestruct as aP, renderTenderlyReport as aQ, toTxLink as aR, getVerificationStatus as aS, type SoltypeElement as aT, type StateDiff as aU, IReserveInterestRateStrategy_ABI as aV, IStataTokenFactory_ABI as aW, IAToken_ABI as aX, IWrappedTokenGatewayV3_ABI as aY, IPoolAddressesProvider_ABI as aZ, IStataTokenV2_ABI as a_, tenderly_createVnet as aa, type StateObject as ab, type ContractObject as ac, type TenderlySimRequest as ad, tenderly_sim as ae, EVENT_DB as af, ChainId as ag, ChainList as ah, type SupportedChainIds as ai, publicRPCs as aj, alchemySupportedChainIds as ak, getNetworkEnv as al, getExplicitRPC as am, getAlchemyRPC as an, getPublicRpc as ao, getHyperRPC as ap, getQuicknodeRpc as aq, getRPCUrl as ar, getClient as as, getImplementationSlot as at, getLogsRecursive as au, getContractDeploymentBlock as av, type BundleParams as aw, flashbotsOnFetchRequest as ax, flashbotsClientExtension as ay, onMevHandler as az, bitmapToIndexes as b, IAaveOracle_ABI as b0, ICollector_ABI as b1, IPool_ABI as b2, AggregatorInterface_ABI as b3, IAaveV3ConfigEngine_ABI as b4, IEmissionManager_ABI as b5, IRewardsController_ABI as b6, IERC20Metadata_ABI as b7, IPoolConfigurator_ABI as b8, IERC20_ABI as b9, IAuthorizedForwarder_ABI as ba, decodeReserveConfigurationV2 as c, decodeUserConfiguration as d, SECONDS_PER_YEAR as e, aaveAddressesProvider_IncentivesControllerSlot as f, getBits as g, calculateCompoundedInterest as h, calculateLinearInterest as i, getNormalizedIncome as j, getNormalizedDebt as k, getCurrentLiquidityBalance as l, getCurrentDebtBalance as m, calculateHealthFactorFromBalances as n, calculateAvailableBorrowsMarketReferenceCurrency as o, getMarketReferenceCurrencyAndUsdBalance as p, assetToBase as q, calculateHealthFactor as r, setBits as s, RAY as t, HALF_RAY as u, WAD_RAY_RATIO as v, rayMul as w, rayDiv as x, rayToWad as y, wadToRay as z };
|