@bgd-labs/toolbox 0.0.18 → 0.0.19
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-BkYlywfa.d.mts} +195 -47
- package/dist/{index-CoGUyq9j.d.ts → index-BkYlywfa.d.ts} +195 -47
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +265 -135
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +262 -138
- 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 +265 -135
- package/dist/node.js.map +1 -1
- package/dist/node.mjs +262 -138
- 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;
|
|
@@ -512,7 +529,7 @@ declare const publicRPCs: {
|
|
|
512
529
|
readonly 59144: "https://rpc.linea.build";
|
|
513
530
|
};
|
|
514
531
|
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" | "
|
|
532
|
+
declare const getNetworkEnv: (chainId: SupportedChainIds) => "RPC_BNB" | "RPC_CELO" | "RPC_METIS" | "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
533
|
declare function getExplicitRPC(chainId: SupportedChainIds): string;
|
|
517
534
|
declare function getAlchemyRPC(chainId: SupportedChainIds, alchemyKey: string): string;
|
|
518
535
|
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";
|
|
@@ -703,7 +720,6 @@ declare const alchemyNetworkMap: {
|
|
|
703
720
|
readonly 2442: "polygonzkevm-cardona";
|
|
704
721
|
readonly 2523: "frax-sepolia";
|
|
705
722
|
readonly 2741: "abstract-mainnet";
|
|
706
|
-
readonly 4002: "fantom-testnet";
|
|
707
723
|
readonly 4157: "crossfi-testnet";
|
|
708
724
|
readonly 4158: "crossfi-mainnet";
|
|
709
725
|
readonly 4801: "worldchain-sepolia";
|
|
@@ -761,7 +777,7 @@ declare const alchemyNetworkMap: {
|
|
|
761
777
|
readonly 994873017: "lumia-prism";
|
|
762
778
|
readonly 999999999: "zora-sepolia";
|
|
763
779
|
readonly 1952959480: "lumia-testnet";
|
|
764
|
-
readonly null: "
|
|
780
|
+
readonly null: "aptos-testnet";
|
|
765
781
|
};
|
|
766
782
|
|
|
767
783
|
declare const quicknodeNetworkMap: {
|
|
@@ -1323,6 +1339,10 @@ declare const routescanExplorers: {
|
|
|
1323
1339
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/2358/etherscan";
|
|
1324
1340
|
readonly explorer: "2358.routescan.io";
|
|
1325
1341
|
};
|
|
1342
|
+
readonly 2368: {
|
|
1343
|
+
readonly api: "https://api.routescan.io/v2/network/testnet/evm/2368/etherscan";
|
|
1344
|
+
readonly explorer: "2368.routescan.io";
|
|
1345
|
+
};
|
|
1326
1346
|
readonly 2522: {
|
|
1327
1347
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/2522/etherscan";
|
|
1328
1348
|
readonly explorer: "2522.routescan.io";
|
|
@@ -1531,6 +1551,10 @@ declare const routescanExplorers: {
|
|
|
1531
1551
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/21816/etherscan";
|
|
1532
1552
|
readonly explorer: "21816.routescan.io";
|
|
1533
1553
|
};
|
|
1554
|
+
readonly 23944: {
|
|
1555
|
+
readonly api: "https://api.routescan.io/v2/network/testnet/evm/23944/etherscan";
|
|
1556
|
+
readonly explorer: "23944.routescan.io";
|
|
1557
|
+
};
|
|
1534
1558
|
readonly 24010: {
|
|
1535
1559
|
readonly api: "https://api.routescan.io/v2/network/testnet/evm/24010/etherscan";
|
|
1536
1560
|
readonly explorer: "24010.routescan.io";
|
|
@@ -1870,7 +1894,7 @@ declare const chainlinkFeeds: {
|
|
|
1870
1894
|
readonly contractAddress: "0x00f0eFB3d9dBe7fE91fee44aE09DAe5DFA65c382";
|
|
1871
1895
|
readonly proxyAddress: "0x75A0d3264a949C2C920d7F25Df174af1FaF73399";
|
|
1872
1896
|
readonly decimals: 8;
|
|
1873
|
-
readonly name: "FBTC
|
|
1897
|
+
readonly name: "FBTC Proof of Reserves";
|
|
1874
1898
|
}, {
|
|
1875
1899
|
readonly contractAddress: "0x019699e5b12331cf77DF9E39818c2E15C8B06215";
|
|
1876
1900
|
readonly proxyAddress: "0x4ad7B025127e89263242aB68F0f9c4E5C033B489";
|
|
@@ -1955,7 +1979,7 @@ declare const chainlinkFeeds: {
|
|
|
1955
1979
|
readonly contractAddress: "0x0bb1203d3Df75752723290EFB116a91a1a9196D1";
|
|
1956
1980
|
readonly proxyAddress: "0x7Eaa6f116Ab9E57f58d9A9Ce88cc3f1c2476ECfA";
|
|
1957
1981
|
readonly decimals: 18;
|
|
1958
|
-
readonly name: "stBTC
|
|
1982
|
+
readonly name: "stBTC Proof of Reserves";
|
|
1959
1983
|
}, {
|
|
1960
1984
|
readonly contractAddress: "0x0c5781B3d5E2F7c00bC286E910cB9D28a86D94b6";
|
|
1961
1985
|
readonly proxyAddress: "0x0981af0C002345c9C5AD5efd26242D0cBe5aCA99";
|
|
@@ -2150,7 +2174,7 @@ declare const chainlinkFeeds: {
|
|
|
2150
2174
|
readonly contractAddress: "0x4803f34B757726d857c86cE585582AeB5F4A9417";
|
|
2151
2175
|
readonly proxyAddress: "0x5586bF404C7A22A4a4077401272cE5945f80189C";
|
|
2152
2176
|
readonly decimals: 8;
|
|
2153
|
-
readonly name: "CacheGold
|
|
2177
|
+
readonly name: "CacheGold Proof of Reserves USD";
|
|
2154
2178
|
}, {
|
|
2155
2179
|
readonly contractAddress: "0x48ac3CD812680C39879A1Fd1666639dBC9B978C0";
|
|
2156
2180
|
readonly proxyAddress: "0xEBca574f1cE4d17cd02c20F47Ef8210C08Cc4255";
|
|
@@ -2190,7 +2214,7 @@ declare const chainlinkFeeds: {
|
|
|
2190
2214
|
readonly contractAddress: "0x50e1007404025e412F13eD1e1C1e6F57957F6A6F";
|
|
2191
2215
|
readonly proxyAddress: "0xe80baC615c38D01c101B0B1b943b05E20C8c2f76";
|
|
2192
2216
|
readonly decimals: 18;
|
|
2193
|
-
readonly name: "PumpBTC
|
|
2217
|
+
readonly name: "PumpBTC Proof of Reserves";
|
|
2194
2218
|
}, {
|
|
2195
2219
|
readonly contractAddress: "0x51766d8b44551740eFd8A34AA569D15aA0A13eCe";
|
|
2196
2220
|
readonly proxyAddress: "0xEC8761a0A73c34329CA5B1D3Dc7eD07F30e836e2";
|
|
@@ -2250,7 +2274,7 @@ declare const chainlinkFeeds: {
|
|
|
2250
2274
|
readonly contractAddress: "0x5EFFB9e0D6B472E48C542842B0306a1C12c9627c";
|
|
2251
2275
|
readonly proxyAddress: "0xC8cd82067eA907EA4af81b625d2bB653E21b5156";
|
|
2252
2276
|
readonly decimals: 18;
|
|
2253
|
-
readonly name: "eETH
|
|
2277
|
+
readonly name: "eETH Proof of Reserves";
|
|
2254
2278
|
}, {
|
|
2255
2279
|
readonly contractAddress: "0x5a0efD6D1a058A46D3Ac4511861adB8F3540BD49";
|
|
2256
2280
|
readonly proxyAddress: "0x9a51192e065ECC6BDEafE5e194ce54702DE4f1f5";
|
|
@@ -2270,7 +2294,7 @@ declare const chainlinkFeeds: {
|
|
|
2270
2294
|
readonly contractAddress: "0x601009229b0215e4FC90C10c8145E066aE03d5F9";
|
|
2271
2295
|
readonly proxyAddress: "0x461790bDAF5aeD3df6a88cB97Dec42DD0EFA73c0";
|
|
2272
2296
|
readonly decimals: 18;
|
|
2273
|
-
readonly name: "xSolvBTC
|
|
2297
|
+
readonly name: "xSolvBTC Proof of Reserves";
|
|
2274
2298
|
}, {
|
|
2275
2299
|
readonly contractAddress: "0x62a897c3e81d809c7444BB63D7D51E1F2EbB6C3D";
|
|
2276
2300
|
readonly proxyAddress: "0x9B4a96210bc8D9D55b1908B465D8B0de68B7fF83";
|
|
@@ -2295,7 +2319,7 @@ declare const chainlinkFeeds: {
|
|
|
2295
2319
|
readonly contractAddress: "0x64DEE1Bc46e817ed93dEA4815F071B20eD218E39";
|
|
2296
2320
|
readonly proxyAddress: "0xa81FE04086865e63E12dD3776978E49DEEa2ea4e";
|
|
2297
2321
|
readonly decimals: 8;
|
|
2298
|
-
readonly name: "WBTC
|
|
2322
|
+
readonly name: "WBTC Proof of Reserves";
|
|
2299
2323
|
}, {
|
|
2300
2324
|
readonly contractAddress: "0x64c67984A458513C6BAb23a815916B1b1075cf3a";
|
|
2301
2325
|
readonly proxyAddress: "0x76F8C9E423C228E83DCB11d17F0Bd8aEB0Ca01bb";
|
|
@@ -2427,7 +2451,7 @@ declare const chainlinkFeeds: {
|
|
|
2427
2451
|
readonly contractAddress: "0x83cE6dbda88D4b59b370d765567d2CaB460bBdc9";
|
|
2428
2452
|
readonly proxyAddress: "0x43921Ca0eca1EA69722c048A6afbc2CAd0BB80e9";
|
|
2429
2453
|
readonly decimals: 8;
|
|
2430
|
-
readonly name: "21BTC
|
|
2454
|
+
readonly name: "21BTC Proof of Reserves";
|
|
2431
2455
|
}, {
|
|
2432
2456
|
readonly contractAddress: "0x841385263b2192A6f4b14353574C02bf0577473d";
|
|
2433
2457
|
readonly proxyAddress: "0xc04611C43842220fd941515F86d1DDdB15F04e46";
|
|
@@ -2472,7 +2496,7 @@ declare const chainlinkFeeds: {
|
|
|
2472
2496
|
readonly contractAddress: "0x8a43cc06554Ab042FFBf07e64cfb8FeE4E673422";
|
|
2473
2497
|
readonly proxyAddress: "0xAd410E655C0fE4741F573152592eeb766e686CE7";
|
|
2474
2498
|
readonly decimals: 18;
|
|
2475
|
-
readonly name: "stETH
|
|
2499
|
+
readonly name: "stETH Proof of Reserves";
|
|
2476
2500
|
}, {
|
|
2477
2501
|
readonly contractAddress: "0x8c944f66a996b5399F51dc3d8d023E07Bb0767fD";
|
|
2478
2502
|
readonly proxyAddress: "0x5C8D8AaB4ffa4652753Df94f299330Bb4479bF85";
|
|
@@ -2572,12 +2596,17 @@ declare const chainlinkFeeds: {
|
|
|
2572
2596
|
readonly contractAddress: "0x99BC071f317BEF648E5e84f7E0600423360C0Cd1";
|
|
2573
2597
|
readonly proxyAddress: "0xad4A9bED9a5E2c1c9a6E43D35Db53c83873dd901";
|
|
2574
2598
|
readonly decimals: 18;
|
|
2575
|
-
readonly name: "STBT
|
|
2599
|
+
readonly name: "STBT Proof of Reserves";
|
|
2576
2600
|
}, {
|
|
2577
2601
|
readonly contractAddress: "0x9Bc91f0E55b0d6509F65fd8C4b34b89F23AEfA35";
|
|
2578
2602
|
readonly proxyAddress: "0xF0985f7E2CaBFf22CecC5a71282a89582c382EFE";
|
|
2579
2603
|
readonly decimals: 18;
|
|
2580
2604
|
readonly name: "FTT / ETH";
|
|
2605
|
+
}, {
|
|
2606
|
+
readonly contractAddress: "0x9E3AABA3B04264DD009437F48eBFD70713dd0667";
|
|
2607
|
+
readonly proxyAddress: "0xAcFCF155a0de611414C510D43446c27a4EE6a758";
|
|
2608
|
+
readonly decimals: 8;
|
|
2609
|
+
readonly name: "WAMPL / USD";
|
|
2581
2610
|
}, {
|
|
2582
2611
|
readonly contractAddress: "0x9c7CF045f964B45FFC6AA0Ffbffd7bb6d1b470A3";
|
|
2583
2612
|
readonly proxyAddress: "0x3C7dB4D25deAb7c89660512C5494Dc9A3FC40f78";
|
|
@@ -2763,7 +2792,7 @@ declare const chainlinkFeeds: {
|
|
|
2763
2792
|
readonly contractAddress: "0xD0f0efAfB63ce1e46ae1aF84BCFE2A2A175E6797";
|
|
2764
2793
|
readonly proxyAddress: "0xda9258AFc797Cd64d1b6FC651051224cdAB1B25E";
|
|
2765
2794
|
readonly decimals: 18;
|
|
2766
|
-
readonly name: "SolvBTC
|
|
2795
|
+
readonly name: "SolvBTC Proof of Reserves";
|
|
2767
2796
|
}, {
|
|
2768
2797
|
readonly contractAddress: "0xD37190eC18fEfE85F4a0fCdEb8Bc220A47093457";
|
|
2769
2798
|
readonly proxyAddress: "0x164b276057258d81941e97B0a900D4C7B358bCe0";
|
|
@@ -2778,7 +2807,7 @@ declare const chainlinkFeeds: {
|
|
|
2778
2807
|
readonly contractAddress: "0xE5490FcdFe66b1680f2b4c09f81149f0C285a2E3";
|
|
2779
2808
|
readonly proxyAddress: "0x60cbE8D88EF519cF3C62414D76f50818D211fea1";
|
|
2780
2809
|
readonly decimals: 18;
|
|
2781
|
-
readonly name: "Swell ETH
|
|
2810
|
+
readonly name: "Swell ETH Proof of Reserves";
|
|
2782
2811
|
}, {
|
|
2783
2812
|
readonly contractAddress: "0xE6c7AE04e83aa7e491988cAeecf5BD6a240A0d14";
|
|
2784
2813
|
readonly proxyAddress: "0x32d1463EB53b73C095625719Afa544D5426354cB";
|
|
@@ -2838,7 +2867,7 @@ declare const chainlinkFeeds: {
|
|
|
2838
2867
|
readonly contractAddress: "0xa685F0Bb86044e9c6A182A3689bBF8A98eB5764C";
|
|
2839
2868
|
readonly proxyAddress: "0x0c89c488e763AC2d69cB058CCAC7A8B283EE3DbA";
|
|
2840
2869
|
readonly decimals: 18;
|
|
2841
|
-
readonly name: "Swell Restaked ETH
|
|
2870
|
+
readonly name: "Swell Restaked ETH Proof of Reserves";
|
|
2842
2871
|
}, {
|
|
2843
2872
|
readonly contractAddress: "0xa7Daf8A03B064262FfF0D615663553DAe3E18744";
|
|
2844
2873
|
readonly proxyAddress: "0x169E633A2D1E6c10dD91238Ba11c4A708dfEF37C";
|
|
@@ -2863,7 +2892,7 @@ declare const chainlinkFeeds: {
|
|
|
2863
2892
|
readonly contractAddress: "0xb49dBd447D2C3ae00B205200Fe629cA73E3E80e3";
|
|
2864
2893
|
readonly proxyAddress: "0x0A8cD0115B1EE87EbA5b8E06A9a15ED93e230f7a";
|
|
2865
2894
|
readonly decimals: 18;
|
|
2866
|
-
readonly name: "HBTC
|
|
2895
|
+
readonly name: "HBTC Proof of Reserves";
|
|
2867
2896
|
}, {
|
|
2868
2897
|
readonly contractAddress: "0xb611401574061947aBAc7d2406711F115BE22A6e";
|
|
2869
2898
|
readonly proxyAddress: "0x09023c0DA49Aaf8fc3fA3ADF34C6A7016D38D5e3";
|
|
@@ -2873,7 +2902,7 @@ declare const chainlinkFeeds: {
|
|
|
2873
2902
|
readonly contractAddress: "0xbBaf2F253Dec10c17eF9531bc8Cd7A7C708A10Bc";
|
|
2874
2903
|
readonly proxyAddress: "0xc590D9fb8eE78a0909dFF341ccf717000b7b7fF2";
|
|
2875
2904
|
readonly decimals: 18;
|
|
2876
|
-
readonly name: "uniBTC
|
|
2905
|
+
readonly name: "uniBTC Proof of Reserves";
|
|
2877
2906
|
}, {
|
|
2878
2907
|
readonly contractAddress: "0xbCD99Bc4C5Bee667939bf7E9B3367d0A0Fa096a0";
|
|
2879
2908
|
readonly proxyAddress: "0x3977CFc9e4f29C184D4675f4EB8e0013236e5f3e";
|
|
@@ -3803,7 +3832,7 @@ declare const chainlinkFeeds: {
|
|
|
3803
3832
|
readonly contractAddress: "0x0044980acB0C01d75afF2Cc3DF2F11171442295c";
|
|
3804
3833
|
readonly proxyAddress: "0x657b128a4936542A48a40C320BFfa3F44043583a";
|
|
3805
3834
|
readonly decimals: 18;
|
|
3806
|
-
readonly name: "SolvBTC
|
|
3835
|
+
readonly name: "SolvBTC Proof of Reserves";
|
|
3807
3836
|
}, {
|
|
3808
3837
|
readonly contractAddress: "0x0765d9EF5E38A2E742d2c3A58C4944a3fb6D25C5";
|
|
3809
3838
|
readonly proxyAddress: "0xC333eb0086309a16aa7c8308DfD32c8BBA0a2592";
|
|
@@ -4253,7 +4282,7 @@ declare const chainlinkFeeds: {
|
|
|
4253
4282
|
readonly contractAddress: "0x9a8b0bf764D6cd177616A6133fb222ad5938b51a";
|
|
4254
4283
|
readonly proxyAddress: "0x81ca991cEf14e7bFB3fa8cc70303a2DEaEb09A42";
|
|
4255
4284
|
readonly decimals: 18;
|
|
4256
|
-
readonly name: "Solv
|
|
4285
|
+
readonly name: "Solv Proof of Reserves";
|
|
4257
4286
|
}, {
|
|
4258
4287
|
readonly contractAddress: "0x9f1fD891E4D82F4b23420C769Bd96409C99806b2";
|
|
4259
4288
|
readonly proxyAddress: "0x657e700c66C48c135c4A29c4292908DbdA7aa280";
|
|
@@ -4348,7 +4377,7 @@ declare const chainlinkFeeds: {
|
|
|
4348
4377
|
readonly contractAddress: "0xDa15d5A05A2813395e9A851EA463281AA1354FF7";
|
|
4349
4378
|
readonly proxyAddress: "0x696B7eA5827548cd35C743A0a05c1f3130196e5e";
|
|
4350
4379
|
readonly decimals: 18;
|
|
4351
|
-
readonly name: "stBTC
|
|
4380
|
+
readonly name: "stBTC Proof of Reserves";
|
|
4352
4381
|
}, {
|
|
4353
4382
|
readonly contractAddress: "0xE0Aa6B17316140A964B08E0228152E282225607D";
|
|
4354
4383
|
readonly proxyAddress: "0x10402B01cD2E6A9ed6DBe683CbC68f78Ff02f8FC";
|
|
@@ -4885,7 +4914,7 @@ declare const chainlinkFeeds: {
|
|
|
4885
4914
|
readonly contractAddress: "0x31fe6bD1D7E4166B5b8Fd4112eea3C7eECA51217";
|
|
4886
4915
|
readonly proxyAddress: "0x0fB2beD999da86Cb1Fdd97E746600A96141EeA09";
|
|
4887
4916
|
readonly decimals: 8;
|
|
4888
|
-
readonly name: "bNVDA Reserves /
|
|
4917
|
+
readonly name: "bNVDA Reserves / Proof of Reserves";
|
|
4889
4918
|
}, {
|
|
4890
4919
|
readonly contractAddress: "0x32411A331EAf9829adCEC478afF9adF2B5bd296c";
|
|
4891
4920
|
readonly proxyAddress: "0xFC539A559e170f848323e19dfD66007520510085";
|
|
@@ -5290,7 +5319,7 @@ declare const chainlinkFeeds: {
|
|
|
5290
5319
|
readonly contractAddress: "0xC65B00c8D77dc82Bd29E8b571De22c6ED3F6eE89";
|
|
5291
5320
|
readonly proxyAddress: "0x4e9fc7480c16F3FE5d956C0759eE6b4808d1F5D7";
|
|
5292
5321
|
readonly decimals: 8;
|
|
5293
|
-
readonly name: "CGT
|
|
5322
|
+
readonly name: "CGT Proof of Reserves (ETH)";
|
|
5294
5323
|
}, {
|
|
5295
5324
|
readonly contractAddress: "0xC6c7Bb0d721e4Ef7318A16F682dd4c1013b430F0";
|
|
5296
5325
|
readonly proxyAddress: "0x336584C8E6Dc19637A5b36206B1c79923111b405";
|
|
@@ -6046,6 +6075,11 @@ declare const chainlinkFeeds: {
|
|
|
6046
6075
|
readonly proxyAddress: "0x7db2275279F52D0914A481e14c4Ce5a59705A25b";
|
|
6047
6076
|
readonly decimals: 8;
|
|
6048
6077
|
readonly name: "BTC / USD";
|
|
6078
|
+
}, {
|
|
6079
|
+
readonly contractAddress: "0xa236d64Ef51e3243887aac4270ea75De65ECABfd";
|
|
6080
|
+
readonly proxyAddress: "0x01dd982820B7c25e2A9C77BDd3bC0eDA90298A2F";
|
|
6081
|
+
readonly decimals: 8;
|
|
6082
|
+
readonly name: "USD1 / USD";
|
|
6049
6083
|
}, {
|
|
6050
6084
|
readonly contractAddress: "0xfB1193670633f958F50C0E49688a82E6b73297b1";
|
|
6051
6085
|
readonly proxyAddress: "0xD97F20bEbeD74e8144134C4b148fE93417dd0F96";
|
|
@@ -6271,7 +6305,12 @@ declare const chainlinkFeeds: {
|
|
|
6271
6305
|
readonly contractAddress: "0x52d743436F6bA414050bD8869C8bF6537C355A00";
|
|
6272
6306
|
readonly proxyAddress: "0x30A76F4E688Cf52f4A06D7AAd987A7037f3Ae6f7";
|
|
6273
6307
|
readonly decimals: 8;
|
|
6274
|
-
readonly name: "dlcBTC
|
|
6308
|
+
readonly name: "dlcBTC Proof of Reserves";
|
|
6309
|
+
}, {
|
|
6310
|
+
readonly contractAddress: "0x5387a1EA9361BD8A2AA1BE68E1e10bd566eECFa4";
|
|
6311
|
+
readonly proxyAddress: "0x9f0C1dD78C4CBdF5b9cf923a549A201EdC676D34";
|
|
6312
|
+
readonly decimals: 8;
|
|
6313
|
+
readonly name: "XRP / USD";
|
|
6275
6314
|
}, {
|
|
6276
6315
|
readonly contractAddress: "0x55012EF027ae9b4E2bb5a5f529E5a1184Bcc998D";
|
|
6277
6316
|
readonly proxyAddress: "0x91D7AEd72bF772A0DA30199B925aCB866ACD3D9e";
|
|
@@ -6312,6 +6351,11 @@ declare const chainlinkFeeds: {
|
|
|
6312
6351
|
readonly proxyAddress: "0x9DDa783DE64A9d1A60c49ca761EbE528C35BA428";
|
|
6313
6352
|
readonly decimals: 8;
|
|
6314
6353
|
readonly name: "COMP / USD";
|
|
6354
|
+
}, {
|
|
6355
|
+
readonly contractAddress: "0x62c9CB9Dd648d9ed28C4C243d062093571b934D7";
|
|
6356
|
+
readonly proxyAddress: "0x206a34e47093125fbf4C75b7c7E88b84c6A77a69";
|
|
6357
|
+
readonly decimals: 8;
|
|
6358
|
+
readonly name: "LTC / USD";
|
|
6315
6359
|
}, {
|
|
6316
6360
|
readonly contractAddress: "0x63a3b4E2aeea2d1Cc883987AEc22E9Aa88323b3c";
|
|
6317
6361
|
readonly proxyAddress: "0x79cf4a31B29D69191f0b6E97916eB93FEB81E533";
|
|
@@ -6437,6 +6481,11 @@ declare const chainlinkFeeds: {
|
|
|
6437
6481
|
readonly proxyAddress: "0x42868EFcee13C0E71af89c04fF7d96f5bec479b0";
|
|
6438
6482
|
readonly decimals: 8;
|
|
6439
6483
|
readonly name: "GHO / USD";
|
|
6484
|
+
}, {
|
|
6485
|
+
readonly contractAddress: "0x91e936921Df850Cc8714527EBE6C45ECbD2CAd31";
|
|
6486
|
+
readonly proxyAddress: "0x34cD971a092d5411bD69C10a5F0A7EEF72C69041";
|
|
6487
|
+
readonly decimals: 8;
|
|
6488
|
+
readonly name: "ADA / USD";
|
|
6440
6489
|
}, {
|
|
6441
6490
|
readonly contractAddress: "0x9465CF4b4032080434E397F42fB99A8446c35376";
|
|
6442
6491
|
readonly proxyAddress: "0xd5Ec94430eF4170D819E0996BC53ed40d31638d8";
|
|
@@ -6591,7 +6640,7 @@ declare const chainlinkFeeds: {
|
|
|
6591
6640
|
readonly contractAddress: "0xa24AAfb9d49d0cF43dcd8A5f2442a30391F494D2";
|
|
6592
6641
|
readonly proxyAddress: "0x7FCED5198e43ec93Ef2179DFC70a8dcf494DcB80";
|
|
6593
6642
|
readonly decimals: 8;
|
|
6594
|
-
readonly name: "iBTC
|
|
6643
|
+
readonly name: "iBTC Proof of Reserves";
|
|
6595
6644
|
}, {
|
|
6596
6645
|
readonly contractAddress: "0xa332cbef58964977Fa47d8Fa9abdc58FBd477e62";
|
|
6597
6646
|
readonly proxyAddress: "0xcCBb30DA24b5195D2Ee94C2B29cfA7108b4DFB1F";
|
|
@@ -7922,7 +7971,7 @@ declare const chainlinkFeeds: {
|
|
|
7922
7971
|
readonly contractAddress: "0x29ef0aE1eDb5764b5bd2ff3a605b5d4Eb39a0d63";
|
|
7923
7972
|
readonly proxyAddress: "0x5F25Ea8Cf2a3aB12E4D6fB58FB63C7938473B036";
|
|
7924
7973
|
readonly decimals: 10;
|
|
7925
|
-
readonly name: "aBTC
|
|
7974
|
+
readonly name: "aBTC Proof of Reserves";
|
|
7926
7975
|
}, {
|
|
7927
7976
|
readonly contractAddress: "0x2C50f2Fe9427d120DEA2eb804c148d2780519d59";
|
|
7928
7977
|
readonly proxyAddress: "0x221912ce795669f628c51c69b7d0873eDA9C03bB";
|
|
@@ -7967,7 +8016,7 @@ declare const chainlinkFeeds: {
|
|
|
7967
8016
|
readonly contractAddress: "0x331480b3C79f16018704A83847db1e29d8cdce14";
|
|
7968
8017
|
readonly proxyAddress: "0xfb010c715Ff2B85DB9c896f0C030bF9329638905";
|
|
7969
8018
|
readonly decimals: 8;
|
|
7970
|
-
readonly name: "FBTC
|
|
8019
|
+
readonly name: "FBTC Proof of Reserves";
|
|
7971
8020
|
}, {
|
|
7972
8021
|
readonly contractAddress: "0x338D614Af8c05eF9d77a33E9D33A92b770809ED4";
|
|
7973
8022
|
readonly proxyAddress: "0x6548a81E640C000150e06AB413fB3F772682e9c5";
|
|
@@ -9742,7 +9791,7 @@ declare const chainlinkFeeds: {
|
|
|
9742
9791
|
readonly contractAddress: "0x5F36C484290Ec4bDaC745c6C8BD681F44bE6ac4D";
|
|
9743
9792
|
readonly proxyAddress: "0x0543Bb6b5A57E3e7569237b67321eAB773e41401";
|
|
9744
9793
|
readonly decimals: 8;
|
|
9745
|
-
readonly name: "iBTC
|
|
9794
|
+
readonly name: "iBTC Proof of Reserves";
|
|
9746
9795
|
}, {
|
|
9747
9796
|
readonly contractAddress: "0x5ab0B1e2604d4B708721bc3cD1ce962958b4297E";
|
|
9748
9797
|
readonly proxyAddress: "0x47E55cCec6582838E173f252D08Afd8116c2202d";
|
|
@@ -9837,7 +9886,7 @@ declare const chainlinkFeeds: {
|
|
|
9837
9886
|
readonly contractAddress: "0x73b6A47371f6278F41Ec655A3a06477997912D09";
|
|
9838
9887
|
readonly proxyAddress: "0xA0118D8948FA85624608d94eC6B52973578082fA";
|
|
9839
9888
|
readonly decimals: 18;
|
|
9840
|
-
readonly name: "stBTC
|
|
9889
|
+
readonly name: "stBTC Proof of Reserves";
|
|
9841
9890
|
}, {
|
|
9842
9891
|
readonly contractAddress: "0x75DD106b46017F9b5BF2c468f29Ee55f410b991c";
|
|
9843
9892
|
readonly proxyAddress: "0x0F38D86FceF4955B705F35c9e41d1A16e0637c73";
|
|
@@ -10027,7 +10076,7 @@ declare const chainlinkFeeds: {
|
|
|
10027
10076
|
readonly contractAddress: "0xAfAEbEB1Db6d13EC1279B59396a9dc40502458c1";
|
|
10028
10077
|
readonly proxyAddress: "0x47A2fBEb46553F01E7133686Fb1b5349d4823a0C";
|
|
10029
10078
|
readonly decimals: 8;
|
|
10030
|
-
readonly name: "dlcBTC
|
|
10079
|
+
readonly name: "dlcBTC Proof of Reserves";
|
|
10031
10080
|
}, {
|
|
10032
10081
|
readonly contractAddress: "0xB4A1F9641186D822a941FEc71E374bB66cd27cdA";
|
|
10033
10082
|
readonly proxyAddress: "0xcd1bd86fDc33080DCF1b5715B6FCe04eC6F85845";
|
|
@@ -10107,7 +10156,7 @@ declare const chainlinkFeeds: {
|
|
|
10107
10156
|
readonly contractAddress: "0xDB99d80bD3aE8dae5d929493Ddf696196f7f59f2";
|
|
10108
10157
|
readonly proxyAddress: "0xd9344493d99153Ad4353D604A1d80d4089004c5D";
|
|
10109
10158
|
readonly decimals: 8;
|
|
10110
|
-
readonly name: "zBTC
|
|
10159
|
+
readonly name: "zBTC Proof of Reserves";
|
|
10111
10160
|
}, {
|
|
10112
10161
|
readonly contractAddress: "0xDf8a3fc9bC6fA89F1b630e58f6eB4b874f24C165";
|
|
10113
10162
|
readonly proxyAddress: "0x3A917e6B5732dFCc4A45257e3930979fAE6a3737";
|
|
@@ -10559,7 +10608,7 @@ declare const chainlinkFeeds: {
|
|
|
10559
10608
|
readonly contractAddress: "0x017780bFA4D66Ee3b4b816a15b0f05DF2654f7B9";
|
|
10560
10609
|
readonly proxyAddress: "0xebEfEAA58636DF9B20a4fAd78Fad8759e6A20e87";
|
|
10561
10610
|
readonly decimals: 8;
|
|
10562
|
-
readonly name: "WBTC.e
|
|
10611
|
+
readonly name: "WBTC.e Proof of Reserves";
|
|
10563
10612
|
}, {
|
|
10564
10613
|
readonly contractAddress: "0x0B2bFcbE40213cF93CE2Be85156DD16E31483f70";
|
|
10565
10614
|
readonly proxyAddress: "0x6f2A1D4014FED967172FC7caCf7a6e04Cf02752e";
|
|
@@ -10604,7 +10653,7 @@ declare const chainlinkFeeds: {
|
|
|
10604
10653
|
readonly contractAddress: "0x1c4841636a4848d474892E7408312804D3f9a43F";
|
|
10605
10654
|
readonly proxyAddress: "0x976D7fAc81A49FA71EF20694a3C56B9eFB93c30B";
|
|
10606
10655
|
readonly decimals: 18;
|
|
10607
|
-
readonly name: "DAI.e
|
|
10656
|
+
readonly name: "DAI.e Proof of Reserves";
|
|
10608
10657
|
}, {
|
|
10609
10658
|
readonly contractAddress: "0x255ca8e07c6Dbc4835DC7680dB7D9E969c08c120";
|
|
10610
10659
|
readonly proxyAddress: "0x7E77D9F06056017334e26bEd92176222169DE6C1";
|
|
@@ -10669,7 +10718,7 @@ declare const chainlinkFeeds: {
|
|
|
10669
10718
|
readonly contractAddress: "0x461b95e560697B0C83AB569f06034832a4b62707";
|
|
10670
10719
|
readonly proxyAddress: "0x99311B4bf6D8E3D3B4b9fbdD09a1B0F4Ad8e06E9";
|
|
10671
10720
|
readonly decimals: 8;
|
|
10672
|
-
readonly name: "BTC.b
|
|
10721
|
+
readonly name: "BTC.b Proof of Reserves";
|
|
10673
10722
|
}, {
|
|
10674
10723
|
readonly contractAddress: "0x4A5cE69A1aDA639042B30e1574Eb9D6e939388A3";
|
|
10675
10724
|
readonly proxyAddress: "0x5C2d58627Fbe746f5ea24Ef6D618f09f8e3f0122";
|
|
@@ -10704,7 +10753,7 @@ declare const chainlinkFeeds: {
|
|
|
10704
10753
|
readonly contractAddress: "0x61595142b147De812B43C66f30094a3219a38bCD";
|
|
10705
10754
|
readonly proxyAddress: "0x943cEF1B112Ca9FD7EDaDC9A46477d3812a382b6";
|
|
10706
10755
|
readonly decimals: 18;
|
|
10707
|
-
readonly name: "LINK.e
|
|
10756
|
+
readonly name: "LINK.e Proof of Reserves";
|
|
10708
10757
|
}, {
|
|
10709
10758
|
readonly contractAddress: "0x64922B570edf432defD4d3C5647269727a667EDa";
|
|
10710
10759
|
readonly proxyAddress: "0x2dD517B2f9ba49CedB0573131FD97a5AC19ff648";
|
|
@@ -10834,7 +10883,7 @@ declare const chainlinkFeeds: {
|
|
|
10834
10883
|
readonly contractAddress: "0xC5463267394709421b0FF3726dd21e152Ec0B1D9";
|
|
10835
10884
|
readonly proxyAddress: "0x14C4c668E34c09E1FBA823aD5DB47F60aeBDD4F7";
|
|
10836
10885
|
readonly decimals: 18;
|
|
10837
|
-
readonly name: "AAVE.e
|
|
10886
|
+
readonly name: "AAVE.e Proof of Reserves";
|
|
10838
10887
|
}, {
|
|
10839
10888
|
readonly contractAddress: "0xC54d8293A7f98ef887BE882311E4C274BE67f927";
|
|
10840
10889
|
readonly proxyAddress: "0x9a1372f9b1B71B3A5a72E092AE67E172dBd7Daaa";
|
|
@@ -10854,7 +10903,7 @@ declare const chainlinkFeeds: {
|
|
|
10854
10903
|
readonly contractAddress: "0xD38Acd83073EeF07186D5Db701C576aD42D6cf27";
|
|
10855
10904
|
readonly proxyAddress: "0xDDaf9290D057BfA12d7576e6dADC109421F31948";
|
|
10856
10905
|
readonly decimals: 18;
|
|
10857
|
-
readonly name: "WETH.e
|
|
10906
|
+
readonly name: "WETH.e Proof of Reserves";
|
|
10858
10907
|
}, {
|
|
10859
10908
|
readonly contractAddress: "0xD74bBE6Db11AD5F3D4F7d4Ee23D9C9d5c301D4e0";
|
|
10860
10909
|
readonly proxyAddress: "0x7FDE7f51dc2580dd051e17A333E28CDC8176da0A";
|
|
@@ -10939,7 +10988,7 @@ declare const chainlinkFeeds: {
|
|
|
10939
10988
|
readonly contractAddress: "0xd4452d1811AA9AC14B9c55444a1B55CDB97760eC";
|
|
10940
10989
|
readonly proxyAddress: "0x94D8c2548018C27F1aa078A23C4158206bE1CC72";
|
|
10941
10990
|
readonly decimals: 6;
|
|
10942
|
-
readonly name: "USDT.e
|
|
10991
|
+
readonly name: "USDT.e Proof of Reserves";
|
|
10943
10992
|
}, {
|
|
10944
10993
|
readonly contractAddress: "0xd761cFc03e833FEBB04297Cc1aB7291D80c9595f";
|
|
10945
10994
|
readonly proxyAddress: "0xEBE676ee90Fe1112671f19b6B7459bC678B67e8a";
|
|
@@ -10950,11 +10999,16 @@ declare const chainlinkFeeds: {
|
|
|
10950
10999
|
readonly proxyAddress: "0x7CF8A6090A9053B01F3DF4D4e6CfEdd8c90d9027";
|
|
10951
11000
|
readonly decimals: 8;
|
|
10952
11001
|
readonly name: "CRV / USD";
|
|
11002
|
+
}, {
|
|
11003
|
+
readonly contractAddress: "0xe3fA7342C4096E02aB376f64b6C5251bf6f3c657";
|
|
11004
|
+
readonly proxyAddress: "0x0d2807dc7FA52d3B38be564B64a2b37753C49AdD";
|
|
11005
|
+
readonly decimals: 8;
|
|
11006
|
+
readonly name: "EmCH Reserves";
|
|
10953
11007
|
}, {
|
|
10954
11008
|
readonly contractAddress: "0xf52BF03f3f406BAAADE542b3D2D5CeCfFf1754E6";
|
|
10955
11009
|
readonly proxyAddress: "0x63769951E4cfDbDC653dD9BBde63D2Ce0746e5F2";
|
|
10956
11010
|
readonly decimals: 6;
|
|
10957
|
-
readonly name: "USDC.e
|
|
11011
|
+
readonly name: "USDC.e Proof of Reserves";
|
|
10958
11012
|
}, {
|
|
10959
11013
|
readonly contractAddress: "0xfb317b2a4404802dF62c87a5982EE383F2711ce6";
|
|
10960
11014
|
readonly proxyAddress: "0xC4D7270aCc921DE5A17452437257f075C1298eB3";
|
|
@@ -11186,7 +11240,7 @@ declare const chainlinkFeeds: {
|
|
|
11186
11240
|
readonly contractAddress: "0x863451a4C718699bb3C860799a785DBd4DDf3a4D";
|
|
11187
11241
|
readonly proxyAddress: "0x6dCa10bce66548e26DBd1FCF4E8692796BeDdd7E";
|
|
11188
11242
|
readonly decimals: 18;
|
|
11189
|
-
readonly name: "stBTC
|
|
11243
|
+
readonly name: "stBTC Proof of Reserves";
|
|
11190
11244
|
}, {
|
|
11191
11245
|
readonly contractAddress: "0x88926382559e24D1153d9F492554064C9f052A22";
|
|
11192
11246
|
readonly proxyAddress: "0xB4b121ebE4DdCdFD3378b9519A101678829fE8c6";
|
|
@@ -11300,7 +11354,7 @@ declare const chainlinkFeeds: {
|
|
|
11300
11354
|
}];
|
|
11301
11355
|
};
|
|
11302
11356
|
|
|
11303
|
-
declare const hyperRPCSupportedNetworks: readonly [
|
|
11357
|
+
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
11358
|
|
|
11305
11359
|
declare const erc1967_ImplementationSlot = "0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc";
|
|
11306
11360
|
declare const erc1967_AdminSlot = "0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103";
|
|
@@ -11349,13 +11403,107 @@ declare function checkForSelfdestruct(client: Client, addresses: Address[], trus
|
|
|
11349
11403
|
type RenderTenderlyReportParams = {
|
|
11350
11404
|
client: Client;
|
|
11351
11405
|
sim: any;
|
|
11406
|
+
payloadId: number;
|
|
11407
|
+
payload: Payload;
|
|
11408
|
+
onchainLogs: {
|
|
11409
|
+
createdLog: {
|
|
11410
|
+
transactionHash: Hash;
|
|
11411
|
+
blockNumber: number;
|
|
11412
|
+
};
|
|
11413
|
+
queuedLog?: {
|
|
11414
|
+
transactionHash: Hash;
|
|
11415
|
+
blockNumber: number;
|
|
11416
|
+
};
|
|
11417
|
+
executedLog?: {
|
|
11418
|
+
transactionHash: Hash;
|
|
11419
|
+
blockNumber: number;
|
|
11420
|
+
};
|
|
11421
|
+
};
|
|
11352
11422
|
};
|
|
11353
|
-
declare function renderTenderlyReport({ client, sim, }: RenderTenderlyReportParams): Promise<
|
|
11354
|
-
|
|
11355
|
-
|
|
11356
|
-
|
|
11423
|
+
declare function renderTenderlyReport({ client, sim, payloadId, payload, onchainLogs: { createdLog, queuedLog, executedLog }, }: RenderTenderlyReportParams): Promise<string>;
|
|
11424
|
+
declare function toTxLink(txn: Hex, client: Client): string;
|
|
11425
|
+
|
|
11426
|
+
interface GetVerificationStatusParams {
|
|
11427
|
+
client: Client;
|
|
11428
|
+
addresses: Address[];
|
|
11429
|
+
contractDb: Record<Address, string>;
|
|
11430
|
+
apiKey?: string;
|
|
11431
|
+
apiUrl?: string;
|
|
11432
|
+
}
|
|
11433
|
+
declare enum VerificationStatus {
|
|
11434
|
+
EOA = 0,
|
|
11435
|
+
CONTRACT = 1,
|
|
11436
|
+
ERROR = 2
|
|
11437
|
+
}
|
|
11438
|
+
/**
|
|
11439
|
+
* Iterates a list of addresses and returns their verification status
|
|
11440
|
+
* @param param0
|
|
11441
|
+
* @returns
|
|
11442
|
+
*/
|
|
11443
|
+
declare function getVerificationStatus({ client, addresses, contractDb, apiKey, apiUrl, }: GetVerificationStatusParams): Promise<{
|
|
11444
|
+
address: Address;
|
|
11445
|
+
status: VerificationStatus;
|
|
11446
|
+
name?: string;
|
|
11447
|
+
new?: boolean;
|
|
11357
11448
|
}[]>;
|
|
11358
11449
|
|
|
11450
|
+
declare enum SoltypeType {
|
|
11451
|
+
Address = "address",
|
|
11452
|
+
Bool = "bool",
|
|
11453
|
+
Bytes32 = "bytes32",
|
|
11454
|
+
MappingAddressUint256 = "mapping (address => uint256)",
|
|
11455
|
+
MappingUint256Uint256 = "mapping (uint256 => uint256)",
|
|
11456
|
+
String = "string",
|
|
11457
|
+
Tuple = "tuple",
|
|
11458
|
+
TypeAddress = "address[]",
|
|
11459
|
+
TypeTuple = "tuple[]",
|
|
11460
|
+
Uint16 = "uint16",
|
|
11461
|
+
Uint256 = "uint256",
|
|
11462
|
+
Uint48 = "uint48",
|
|
11463
|
+
Uint56 = "uint56",
|
|
11464
|
+
Uint8 = "uint8"
|
|
11465
|
+
}
|
|
11466
|
+
declare enum StorageLocation {
|
|
11467
|
+
Calldata = "calldata",
|
|
11468
|
+
Default = "default",
|
|
11469
|
+
Memory = "memory",
|
|
11470
|
+
Storage = "storage"
|
|
11471
|
+
}
|
|
11472
|
+
declare enum SimpleTypeType {
|
|
11473
|
+
Address = "address",
|
|
11474
|
+
Bool = "bool",
|
|
11475
|
+
Bytes = "bytes",
|
|
11476
|
+
Slice = "slice",
|
|
11477
|
+
String = "string",
|
|
11478
|
+
Uint = "uint"
|
|
11479
|
+
}
|
|
11480
|
+
interface Type {
|
|
11481
|
+
type: SimpleTypeType;
|
|
11482
|
+
}
|
|
11483
|
+
interface SoltypeElement {
|
|
11484
|
+
name: string;
|
|
11485
|
+
type: SoltypeType;
|
|
11486
|
+
storage_location: StorageLocation;
|
|
11487
|
+
components: SoltypeElement[] | null;
|
|
11488
|
+
offset: number;
|
|
11489
|
+
index: string;
|
|
11490
|
+
indexed: boolean;
|
|
11491
|
+
simple_type?: Type;
|
|
11492
|
+
}
|
|
11493
|
+
interface RawElement {
|
|
11494
|
+
address: string;
|
|
11495
|
+
key: string;
|
|
11496
|
+
original: string;
|
|
11497
|
+
dirty: string;
|
|
11498
|
+
}
|
|
11499
|
+
interface StateDiff {
|
|
11500
|
+
soltype: SoltypeElement | null;
|
|
11501
|
+
original: string | Record<string, any>;
|
|
11502
|
+
dirty: string | Record<string, any>;
|
|
11503
|
+
raw: RawElement[];
|
|
11504
|
+
address: string;
|
|
11505
|
+
}
|
|
11506
|
+
|
|
11359
11507
|
declare const IReserveInterestRateStrategy_ABI: readonly [{
|
|
11360
11508
|
readonly type: "function";
|
|
11361
11509
|
readonly name: "calculateInterestRates";
|
|
@@ -20115,4 +20263,4 @@ declare const IAuthorizedForwarder_ABI: readonly [{
|
|
|
20115
20263
|
readonly type: "function";
|
|
20116
20264
|
}];
|
|
20117
20265
|
|
|
20118
|
-
export {
|
|
20266
|
+
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 };
|