-
Notifications
You must be signed in to change notification settings - Fork 1
/
base.toml
56 lines (46 loc) · 1.42 KB
/
base.toml
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
[server]
addr = "0.0.0.0:3000"
[compilers]
# if omitted, number of CPU cores would be used
max_threads = 8
[solidity]
enabled = true
compilers_dir = "/tmp/solidity-compilers"
refresh_versions_schedule = "0 0 * * * * *"
[solidity.fetcher.list]
# It depends on the OS you are running the service on
list_url = "https://solc-bin.ethereum.org/linux-amd64/list.json"
# list_url = "https://solc-bin.ethereum.org/macosx-amd64/list.json"
# list_url = "https://solc-bin.ethereum.org/windows-amd64/list.json"
#[solidity.fetcher.s3]
#access_key = "access_key"
#secret_key = "secret_key"
#region = "region"
#endpoint = "endpoint"
## The only required field for the s3 fetcher
#bucket = "bucket"
[vyper]
enabled = true
compilers_dir = "/tmp/vyper-compilers"
refresh_versions_schedule = "0 0 * * * * *"
[vyper.fetcher.list]
list_url = "https://raw.githubusercontent.com/blockscout/solc-bin/main/vyper.list.json"
# list_url = "https://raw.githubusercontent.com/blockscout/solc-bin/main/vyper.macos.list.json"
[sourcify]
enabled = true
api_url = "https://sourcify.dev/server/"
verification_attempts = 3
request_timeout = 10
# [extensions.solidity.sig_provider]
# url = "http://127.0.0.1:8051/"
# [extensions.vyper.sig_provider]
# url = "http://127.0.0.1:8051/"
# [extensions.sourcify.sig_provider]
# url = "http://127.0.0.1:8051/"
[metrics]
enabled = false
addr = "0.0.0.0:6060"
route = "/metrics"
[jaeger]
enabled = false
agent_endpoint = "localhost:6831"