-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig_bulk.toml
54 lines (48 loc) · 1.55 KB
/
config_bulk.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
SignerServerURL = "--- Signer Server URL ---"
OperatorAddress = "--- Operator Address ---"
OperatorKeyAccountID = "--- Operator Key Account ID ---"
SignerKeyAccountID = "--- Signer Key Account ID ---"
EthereumRPCURL = "--- Ethereum RPC URL (mainnet / holesky) ---"
L1RPCEndpoint = "--- L1 RPC Endpoint (mainnet) ---"
BeaconURL = "--- Beacon Endpoint (mainnet) ---"
BLSCurve = "BN254"
[CertConfig]
CACertPath = "--- CA Cert Path ---"
NodeKeyPath = "--- Node Key Path ---"
NodeCertPath = "--- Node Cert Path ---"
[[Chains]]
ChainName = "optimism"
L2RPCEndpoint = "--- L2 RPC Endpoint optimism ---"
NumberOfAttestationNodes = 1
[[Chains.AttestationNodes]]
BLSKeyAccountID = "--- BLS Key Account ID ---"
ConcurrentFetchers = 8
MetricsEnabled = true
MetricsServerPort = "8080"
HostBindingPort = "8080"
MetricsServiceName = "lagrange-node"
PrometheusRetentionTime = "60s"
[[Chains]]
ChainName = "base"
L2RPCEndpoint = "--- L2 RPC Endpoint base ---"
NumberOfAttestationNodes = 1
[[Chains.AttestationNodes]]
BLSKeyAccountID = "--- BLS Key Account ID ---"
ConcurrentFetchers = 8
MetricsEnabled = true
MetricsServerPort = "8080"
HostBindingPort = "8081"
MetricsServiceName = "lagrange-node"
PrometheusRetentionTime = "60s"
[[Chains]]
ChainName = "arbitrum"
L2RPCEndpoint = "--- L2 RPC Endpoint arbitrum ---"
NumberOfAttestationNodes = 1
[[Chains.AttestationNodes]]
BLSKeyAccountID = "--- BLS Key Account ID ---"
ConcurrentFetchers = 8
MetricsEnabled = true
MetricsServerPort = "8080"
HostBindingPort = "8082"
MetricsServiceName = "lagrange-node"
PrometheusRetentionTime = "60s"