c7a2fb97c7
* Problem: No way to limit total number of filters that can be created Solution: Add a config parameter to set the total number of filters that can be created * Add defer statement for releasing locks * Change default value for filter cap to 200 * Changed data type of filter cap to int32 * Add changelog entry * Update CHANGELOG.md * Fix struct alignment Co-authored-by: Federico Kunze Küllmer <31522760+fedekunze@users.noreply.github.com>
53 lines
2.1 KiB
Go
53 lines
2.1 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 '--trace' flag when starting your node.
|
|
# Valid types are: json|struct|access_list|markdown
|
|
tracer = "{{ .EVM.Tracer }}"
|
|
|
|
###############################################################################
|
|
### 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 }}
|
|
|
|
# FilterCap sets the global cap for total number of filters that can be created
|
|
filter-cap = {{ .JSONRPC.FilterCap }}
|
|
|
|
###############################################################################
|
|
### 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 }}"
|
|
`
|