laconicd/server/config/toml.go

38 lines
1.5 KiB
Go
Raw Normal View History

2021-04-18 16:39:15 +00:00
package config
// DefaultConfigTemplate defines the configuration template for the EVM RPC configuration
const DefaultConfigTemplate = `
2021-04-18 16:39:15 +00:00
###############################################################################
### EVM Configuration ###
2021-04-18 16:39:15 +00:00
###############################################################################
[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]
2021-04-18 16:39:15 +00:00
# Enable defines if the gRPC server should be enabled.
enable = {{ .JSONRPC.Enable }}
2021-04-18 16:39:15 +00:00
# Address defines the EVM RPC HTTP server address to bind to.
address = "{{ .JSONRPC.Address }}"
2021-04-18 16:39:15 +00:00
# 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}}"
# EnableUnsafeCORS defines if CORS should be enabled (unsafe - use it at your own risk)
enable-unsafe-cors = "{{ .JSONRPC.EnableUnsafeCORS }}"
2021-04-18 16:39:15 +00:00
`