${?DOMAIN} substitution caused rskj to crash with 'Can't read config'.
Hardcoding the host-specific domain for now (rootstock only runs on
de-31). For multi-host deployment later, would need a per-host
templated node.conf or a proxy that rewrites Host header.
37 lines
1.0 KiB
Plaintext
37 lines
1.0 KiB
Plaintext
blockchain.config.name = "testnet"
|
|
|
|
database.dir = /var/lib/rsk/database/testnet
|
|
|
|
peer.port = 16093
|
|
|
|
rpc {
|
|
providers = {
|
|
web = {
|
|
cors = "*"
|
|
http = {
|
|
enabled = true
|
|
bind_address = "0.0.0.0"
|
|
hosts = ["localhost", "127.0.0.1", "::1", "rpc-de-31.stakesquid.eu"]
|
|
port = 8545
|
|
}
|
|
ws = {
|
|
enabled = true
|
|
bind_address = "0.0.0.0"
|
|
port = 8546
|
|
}
|
|
}
|
|
}
|
|
|
|
modules = {
|
|
eth { version = "1.0", enabled = "true" }
|
|
net { version = "1.0", enabled = "true" }
|
|
rpc { version = "1.0", enabled = "true" }
|
|
web3 { version = "1.0", enabled = "true" }
|
|
evm { version = "1.0", enabled = "true" }
|
|
sco { version = "1.0", enabled = "true" }
|
|
txpool { version = "1.0", enabled = "true" }
|
|
debug { version = "1.0", enabled = "true" }
|
|
personal { version = "1.0", enabled = "true" }
|
|
}
|
|
}
|