88 lines
3.5 KiB
Go
88 lines
3.5 KiB
Go
package config
|
|
|
|
// DefaultConfigTemplate defines the configuration template for the EVM RPC configuration
|
|
const DefaultConfigTemplate = `
|
|
###############################################################################
|
|
### EVM Configuration ###
|
|
###############################################################################
|
|
|
|
[evm]
|
|
|
|
# Tracer defines the 'vm.Tracer' type that the EVM will use when the node is run in
|
|
# debug mode. To enable tracing use the '--evm.tracer' flag when starting your node.
|
|
# Valid types are: json|struct|access_list|markdown
|
|
tracer = "{{ .EVM.Tracer }}"
|
|
|
|
# MaxTxGasWanted defines the gas wanted for each eth tx returned in ante handler in check tx mode.
|
|
max-tx-gas-wanted = {{ .EVM.MaxTxGasWanted }}
|
|
|
|
###############################################################################
|
|
### JSON RPC Configuration ###
|
|
###############################################################################
|
|
|
|
[json-rpc]
|
|
|
|
# Enable defines if the gRPC server should be enabled.
|
|
enable = {{ .JSONRPC.Enable }}
|
|
|
|
# Address defines the EVM RPC HTTP server address to bind to.
|
|
address = "{{ .JSONRPC.Address }}"
|
|
|
|
# Address defines the EVM WebSocket server address to bind to.
|
|
ws-address = "{{ .JSONRPC.WsAddress }}"
|
|
|
|
# API defines a list of JSON-RPC namespaces that should be enabled
|
|
# Example: "eth,txpool,personal,net,debug,web3"
|
|
api = "{{range $index, $elmt := .JSONRPC.API}}{{if $index}},{{$elmt}}{{else}}{{$elmt}}{{end}}{{end}}"
|
|
|
|
# GasCap sets a cap on gas that can be used in eth_call/estimateGas (0=infinite). Default: 25,000,000.
|
|
gas-cap = {{ .JSONRPC.GasCap }}
|
|
|
|
# EVMTimeout is the global timeout for eth_call. Default: 5s.
|
|
evm-timeout = "{{ .JSONRPC.EVMTimeout }}"
|
|
|
|
# TxFeeCap is the global tx-fee cap for send transaction. Default: 1eth.
|
|
txfee-cap = {{ .JSONRPC.TxFeeCap }}
|
|
|
|
# FilterCap sets the global cap for total number of filters that can be created
|
|
filter-cap = {{ .JSONRPC.FilterCap }}
|
|
|
|
# FeeHistoryCap sets the global cap for total number of blocks that can be fetched
|
|
feehistory-cap = {{ .JSONRPC.FeeHistoryCap }}
|
|
|
|
# LogsCap defines the max number of results can be returned from single 'eth_getLogs' query.
|
|
logs-cap = {{ .JSONRPC.LogsCap }}
|
|
|
|
# BlockRangeCap defines the max block range allowed for 'eth_getLogs' query.
|
|
block-range-cap = {{ .JSONRPC.BlockRangeCap }}
|
|
|
|
# HTTPTimeout is the read/write timeout of http json-rpc server.
|
|
http-timeout = "{{ .JSONRPC.HTTPTimeout }}"
|
|
|
|
# HTTPIdleTimeout is the idle timeout of http json-rpc server.
|
|
http-idle-timeout = "{{ .JSONRPC.HTTPIdleTimeout }}"
|
|
|
|
# AllowUnprotectedTxs restricts unprotected (non EIP155 signed) transactions to be submitted via
|
|
# the node's RPC when the global parameter is disabled.
|
|
allow-unprotected-txs = {{ .JSONRPC.AllowUnprotectedTxs }}
|
|
|
|
# MaxOpenConnections sets the maximum number of simultaneous connections
|
|
# for the server listener.
|
|
max-open-connections = {{ .JSONRPC.MaxOpenConnections }}
|
|
|
|
# EnableIndexer enables the custom transaction indexer for the EVM (ethereum transactions).
|
|
enable-indexer = {{ .JSONRPC.EnableIndexer }}
|
|
|
|
###############################################################################
|
|
### TLS Configuration ###
|
|
###############################################################################
|
|
|
|
[tls]
|
|
|
|
# Certificate path defines the cert.pem file path for the TLS configuration.
|
|
certificate-path = "{{ .TLS.CertificatePath }}"
|
|
|
|
# Key path defines the key.pem file path for the TLS configuration.
|
|
key-path = "{{ .TLS.KeyPath }}"
|
|
`
|