-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathconfig.ini
More file actions
54 lines (47 loc) · 3.89 KB
/
Copy pathconfig.ini
File metadata and controls
54 lines (47 loc) · 3.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[infura]
INFURA_NODE_LINK = https://mainnet.infura.io/v3/
INFURA_TEST_NODE_LINK = https://sepolia.infura.io/v3/
INFURA_PID =
INFURA_Test_PID =
RPC_POLY_TEST_NODE_LINK = https://polygon-mumbai.g.alchemy.com/v2/
RPC_POLY_TEST_PID =
RPC_POLY_NODE_LINK = https://polygon-mainnet.g.alchemy.com/v2/
RPC_POLY_PID =
RPC_BSC_TEST_NODE_LINK = https://data-seed-prebsc-1-s1.binance.org:8545/
RPC_BSC_TEST_PID =
RPC_BSC_NODE_LINK = https://bsc-dataseed1.binance.org/
RPC_BSC_PID =
[etherscan]
ETHERSCAN_API_KEY =
TRANSACTION_LINK = https://api.etherscan.io/api?module=account&action=txlist&address={}&startblock=0&endblock=99999999&page={}&offset=100&sort=asc&apikey={}
INTERNAL_TRANSACTION_LINK = https://api.etherscan.io/api?module=account&action=txlistinternal&address={}&m=advanced&startblock=0&endblock=99999999&page={}&offset=100&sort=asc&apikey={}
EVENT_LINK = https://api.etherscan.io/api?module=logs&action=getLogs&address={}&fromBlock=0&toBlock=99999999&page={}&offset=100&apikey={}
Test_TRANSACTION_LINK = https://api-sepolia.etherscan.io/api?module=account&action=txlist&address={}&startblock=0&endblock=99999999&page={}&offset=100&sort=asc&apikey={}
Test_INTERNAL_TRANSACTION_LINK = https://api-sepolia.etherscan.io/api/api?module=account&action=txlistinternal&address={}&m=advanced&startblock=0&endblock=99999999&page={}&offset=100&sort=asc&apikey={}
TEST_EVENT_LINK = https://api-sepolia.etherscan.io/api?module=logs&action=getLogs&address={}&fromBlock=0&toBlock=99999999&page={}&offset=100&apikey={}
[polygonscan]
POLYGONSCAN_API_KEY =
TEST_TRANSACTION_LINK = https://api-mumbai.polygonscan.com/api?module=account&action=txlist&address={}&startblock=0&endblock=99999999&page={}&offset=100&sort=asc&apikey={}
TEST_INTERNAL_TRANSACTION_LINK = https://api-mumbai.polygonscan.com/api?module=account&action=txlistinternal&address={}&m=advanced&startblock=0&endblock=99999999&page={}&offset=100&sort=asc&apikey={}
TEST_EVENT_LINK = https://api-mumbai.polygonscan.com/api?module=logs&action=getLogs&address={}&fromBlock=0&toBlock=99999999&page={}&offset=100&apikey={}
TRANSACTION_LINK = https://api.polygonscan.com/api?module=account&action=txlist&address={}&startblock=0&endblock=99999999&page={}&offset=100&sort=asc&apikey={}
INTERNAL_TRANSACTION_LINK = https://api.polygonscan.com/api?module=account&action=txlistinternal&address={}&m=advanced&startblock=0&endblock=99999999&page={}&offset=100&sort=asc&apikey={}
EVENT_LINK = https://api.polygonscan.com/api?module=logs&action=getLogs&address={}&fromBlock=0&toBlock=99999999&page={}&offset=100&apikey={}
[bscscan]
BSCSCAN_API_KEY =
TEST_TRANSACTION_LINK = https://api-testnet.bscscan.com/api?module=account&action=txlist&address={}&startblock=0&endblock=99999999&page={}&offset=100&sort=asc&apikey={}
TEST_INTERNAL_TRANSACTION_LINK = https://api-testnet.bscscan.com/api?module=account&action=txlistinternal&address={}&m=advanced&startblock=0&endblock=99999999&page={}&offset=100&sort=asc&apikey={}
TEST_EVENT_LINK = https://api-testnet.bscscan.com/api?module=logs&action=getLogs&address={}&fromBlock=0&toBlock=99999999&page={}&offset=100&apikey={}
TRANSACTION_LINK = https://api.bscscan.com/api?module=account&action=txlist&address={}&startblock=0&endblock=99999999&page={}&offset=100&sort=asc&apikey={}
INTERNAL_TRANSACTION_LINK = https://api.bscscan.com/api?module=account&action=txlistinternal&address={}&m=advanced&startblock=0&endblock=99999999&page={}&offset=100&sort=asc&apikey={}
EVENT_LINK = https://api.bscscan.com/api?module=logs&action=getLogs&address={}&fromBlock=0&toBlock=99999999&page={}&offset=100&apikey={}
[transactions]
TX_LIMIT = 200
[directories]
UPGRADE_DIRECTORY = src/upgrade/outputs/
CONTRACT_DIRECTORY = tests/examples/
[test_directories]
EXTRACTION_DIRECTORY = tests/expected_results/state_extraction/
KEY_ANALYSIS_DIRECTORY = tests/expected_results/key_approx_analysis/
SLOT_ANALYSIS_DIRECTORY = tests/expected_results/slot_analysis/
AST_PARSING_DIRECTORY = tests/expected_results/ast_parsing/