This repository has been archived by the owner on Nov 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
76 lines (50 loc) · 1.6 KB
/
.env.example
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
##########
# general
##########
##### options are: 'error' < 'info' < 'debug'
LOG_LEVEL=info
PROVIDER_TYPE=
PROVIDER_URL=
BLOCK_NUMBER=
######################
# get_block_history.py
######################
#### options are 'local_ipc', 'local_http', 'local_ws', 'ipc', 'ws', 'http'
#### for locally run nodes, an IPC connection is the mosts secure option.
PAIR_ADDRESSES=
ABI_JSON_PATH=
##############################
# get_deep_block_data.py
#############################
##############################
# get_deep_tx_data.py
#############################
TRANSACTION=
##############################
# get_contracts_deployed.py
#############################
START_BLOCK=
TX_FILE=
##############################
# decode_calldata.py
#############################
CONTRACT_ADDRESS=
ABI=
CALLDATA=
############################################################
# get_transfer_logs_and_wallets_balance_for_a_token.py
###########################################################
RPC_PROVIDER_URL = https://mainnet.infura.io/v3/<your infura project id>
CHUNK_SIZE = 100000
NUM_ATTEMPTS = 3
TRANSFER_EVENT_TOPIC_HASH = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
TOKEN_ADDRESS =
DECIMALS =
############################################################
# get_transfer_logs_and_wallets_balance_for_a_token.py
###########################################################
RPC_PROVIDER_URL = https://mainnet.infura.io/v3/<your infura project id>
CHUNK_SIZE = 10000
TRANSFER_EVENT_TOPIC_HASH = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
TOKEN_ADDRESS =
SLEEP_TIME = 0.005