-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathconfig.example.toml
More file actions
32 lines (28 loc) · 900 Bytes
/
Copy pathconfig.example.toml
File metadata and controls
32 lines (28 loc) · 900 Bytes
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
[chain]
read_rpc = "wss://eth-mainnet.alchemyapi.io/v2/<YOUR_KEY>"
submit_rpcs = [
"https://rpc.mevblocker.io/fast",
"https://rpc.flashbots.net/fast",
]
chain_id = 1
contract = "0xAC7b5d06fa1e77D08aea40d46cB7C5923A87A0cc"
[wallet]
# Name of the env var that holds the hex-encoded private key.
# Export it before starting the miner: `export MINER1_PRIVKEY=0x...`
private_key_env = "MINER1_PRIVKEY"
[mine]
backend = "cuda"
cuda_devices = [] # empty = all visible
batch_size = 64 # iters per kernel launch (per thread)
poll_interval_ms = 2000
event_subscribe = true
[submit]
priority_tip_gwei = 3.0
max_priority_tip_gwei = 5.0
base_fee_multiplier = 2
gas_min = 200000
gas_max = 400000
gas_estimate_timeout_ms = 4000
submit_timeout_ms = 12000
[economics]
min_balance_eth = 0.0005