-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.example.toml
More file actions
87 lines (72 loc) · 1.93 KB
/
Config.example.toml
File metadata and controls
87 lines (72 loc) · 1.93 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# ==========================================
# ETHEREUM
# ==========================================
[chains.ethereum]
caip2 = "eip155:1"
start_block = 19000000
end_block = 19000500
rpc = [
"https://ethereum.publicnode.com",
"https://eth.drpc.org",
"https://1rpc.io/eth",
]
[chains.ethereum.assets.ETH]
contract = "native"
decimals = 18
[chains.ethereum.assets.USDC]
contract = "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48"
decimals = 6
# ==========================================
# BASE
# ==========================================
[chains.base]
caip2 = "eip155:8453"
start_block = 12000000
end_block = 12000500
rpc = [
"https://base.publicnode.com",
"https://base.drpc.org",
"https://mainnet.base.org",
]
[chains.base.assets.USDC]
contract = "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
decimals = 6
# ==========================================
# POLYGON (Optional/Commented out)
# ==========================================
# Polygon public RPCs often require API keys. Commented out by default.
# [chains.polygon]
# caip2 = "eip155:137"
# rpc = [
# "https://polygon-rpc.com",
# "https://rpc.ankr.com/polygon",
# ]
# ==========================================
# SOLANA
# ==========================================
[chains.solana]
caip2 = "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp"
rpc = [
"https://api.mainnet-beta.solana.com",
]
# Grouped rate-limiting / performance options
[chains.solana.rpc_options]
max_concurrent = 1
delay_ms = 500
[chains.solana.assets.SOL]
contract = "native"
decimals = 9
[chains.solana.assets.USDC]
contract = "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v"
decimals = 6
# ==========================================
# BITCOIN
# ==========================================
[chains.bitcoin]
caip2 = "bip122:000000000019d6689c085ae165831e93"
rpc = [
"https://bitcoin-rpc.publicnode.com",
]
[chains.bitcoin.assets.BTC]
contract = "native"
decimals = 8