mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-08 03:43:56 -05:00
* feat: update trace-limits and besu images * update prover image * feat: update trace-limits ROM to the power of 2 * feat: update trace-limits to be at max 2147483647 --------- Co-authored-by: gusiri <dreamerty@postech.ac.kr>
59 lines
1.6 KiB
TOML
59 lines
1.6 KiB
TOML
# Chain
|
|
genesis-file="genesis/genesis.sepolia.json" # Path to the custom genesis file
|
|
|
|
# data
|
|
data-path="/data"
|
|
node-private-key-file="/data/key"
|
|
|
|
# logging
|
|
# Settings for logging are defined in "/opt/log4j/besu-log-config.xml"
|
|
|
|
# Sync mode and data layer implementation
|
|
sync-mode="SNAP"
|
|
data-storage-format="BONSAI"
|
|
Xbonsai-full-flat-db-enabled=true
|
|
|
|
# Boot nodes and static nodes
|
|
bootnodes=["enode://6f20afbe4397e51b717a7c1ad3095e79aee48c835eebd9237a3e8a16951ade1fe0e66e981e30ea269849fcb6ba03d838da37f524fabd2a557474194a2e2604fa@18.221.100.27:31002,enode://ce1e0d8e0500cb5c0ac56bdcdafb2d6320c3a2c5125b5ccf12f5dfc9b47ee74acbcafc32559017613136c9c36a0ce74ba4f83b7fb8244f099f3b15708d9d3129@3.23.75.47:31000,enode://1b026a5eb0ae74300f58987d235ef0e3a550df963345cb3574be3b0b54378bd11f14dfd515a8976f2c2d2826090e9507b8ccc24f896a9ffffffcabcfd996a733@3.129.120.128:31001"]
|
|
static-nodes-file="config/static-nodes.sepolia.json"
|
|
|
|
# Min gas price
|
|
min-gas-price=1000
|
|
|
|
# Host allow list
|
|
host-allowlist=["*"]
|
|
|
|
# rpc
|
|
rpc-http-enabled=true
|
|
rpc-http-host="0.0.0.0"
|
|
rpc-http-port=8545
|
|
rpc-http-api=["ADMIN","NET","ETH","WEB3","TXPOOL"]
|
|
rpc-http-cors-origins=["all"]
|
|
|
|
|
|
# ws
|
|
rpc-ws-enabled=true
|
|
rpc-ws-api=["NET","ETH","WEB3"]
|
|
rpc-ws-host="0.0.0.0"
|
|
rpc-ws-port=8546
|
|
|
|
# graphql
|
|
graphql-http-enabled=true
|
|
graphql-http-host="0.0.0.0"
|
|
graphql-http-port=8547
|
|
graphql-http-cors-origins=["all"]
|
|
|
|
|
|
# p2p
|
|
p2p-port=30303
|
|
fast-sync-min-peers=1
|
|
Xdns-enabled=true
|
|
|
|
# metrics
|
|
metrics-enabled=true
|
|
metrics-host="0.0.0.0"
|
|
metrics-port=9545
|
|
|
|
### Plugin Configuration ###
|
|
# Disable external plugins
|
|
Xplugins-external-enabled=false |