115 lines
4.1 KiB
TOML
115 lines
4.1 KiB
TOML
# This is a TOML config file.
|
|
# For more information, see https://github.com/toml-lang/toml
|
|
|
|
###############################################################################
|
|
### Base Configuration ###
|
|
###############################################################################
|
|
|
|
# The minimum gas prices a validator is willing to accept for processing a
|
|
# transaction. A transaction's fees must meet the minimum of any denomination
|
|
# specified in this config (e.g. 0.25token1;0.0001token2).
|
|
minimum-gas-prices = ""
|
|
|
|
# default: the last 100 states are kept in addition to every 500th state; pruning at 10 block intervals
|
|
# nothing: all historic states will be saved, nothing will be deleted (i.e. archiving node)
|
|
# everything: all saved states will be deleted, storing only the current state; pruning at 10 block intervals
|
|
# custom: allow pruning options to be manually specified through 'pruning-keep-recent', 'pruning-keep-every', and 'pruning-interval'
|
|
pruning = "default"
|
|
|
|
# These are applied if and only if the pruning strategy is custom.
|
|
pruning-keep-recent = "0"
|
|
pruning-keep-every = "0"
|
|
pruning-interval = "0"
|
|
|
|
# HaltHeight contains a non-zero block height at which a node will gracefully
|
|
# halt and shutdown that can be used to assist upgrades and testing.
|
|
#
|
|
# Note: Commitment of state will be attempted on the corresponding block.
|
|
halt-height = 0
|
|
|
|
# HaltTime contains a non-zero minimum block time (in Unix seconds) at which
|
|
# a node will gracefully halt and shutdown that can be used to assist upgrades
|
|
# and testing.
|
|
#
|
|
# Note: Commitment of state will be attempted on the corresponding block.
|
|
halt-time = 0
|
|
|
|
# InterBlockCache enables inter-block caching.
|
|
inter-block-cache = true
|
|
|
|
###############################################################################
|
|
### Telemetry Configuration ###
|
|
###############################################################################
|
|
|
|
[telemetry]
|
|
|
|
# Prefixed with keys to separate services.
|
|
service-name = ""
|
|
|
|
# Enabled enables the application telemetry functionality. When enabled,
|
|
# an in-memory sink is also enabled by default. Operators may also enabled
|
|
# other sinks such as Prometheus.
|
|
enabled = false
|
|
|
|
# Enable prefixing gauge values with hostname.
|
|
enable-hostname = false
|
|
|
|
# Enable adding hostname to labels.
|
|
enable-hostname-label = false
|
|
|
|
# Enable adding service to labels.
|
|
enable-service-label = false
|
|
|
|
# PrometheusRetentionTime, when positive, enables a Prometheus metrics sink.
|
|
prometheus-retention-time = 0
|
|
|
|
# GlobalLabels defines a global set of name/value label tuples applied to all
|
|
# metrics emitted using the wrapper functions defined in telemetry package.
|
|
#
|
|
# Example:
|
|
# [["chain_id", "cosmoshub-1"]]
|
|
global-labels = [
|
|
]
|
|
|
|
###############################################################################
|
|
### API Configuration ###
|
|
###############################################################################
|
|
|
|
[api]
|
|
|
|
# Enable defines if the API server should be enabled.
|
|
enable = true
|
|
|
|
# Swagger defines if swagger documentation should automatically be registered.
|
|
swagger = false
|
|
|
|
# Address defines the API server to listen on.
|
|
address = "tcp://0.0.0.0:1317"
|
|
|
|
# MaxOpenConnections defines the number of maximum open connections.
|
|
max-open-connections = 1000
|
|
|
|
# RPCReadTimeout defines the Tendermint RPC read timeout (in seconds).
|
|
rpc-read-timeout = 10
|
|
|
|
# RPCWriteTimeout defines the Tendermint RPC write timeout (in seconds).
|
|
rpc-write-timeout = 0
|
|
|
|
# RPCMaxBodyBytes defines the Tendermint maximum response body (in bytes).
|
|
rpc-max-body-bytes = 1000000
|
|
|
|
# EnableUnsafeCORS defines if CORS should be enabled (unsafe - use it at your own risk).
|
|
enabled-unsafe-cors = true
|
|
|
|
###############################################################################
|
|
### gRPC Configuration ###
|
|
###############################################################################
|
|
|
|
[grpc]
|
|
|
|
# Enable defines if the gRPC server should be enabled.
|
|
enable = true
|
|
|
|
# Address defines the gRPC server address to bind to.
|
|
address = "0.0.0.0:9090"
|