|
| 1 | +# This is a TOML config file. |
| 2 | +# For more information, see https://github.com/toml-lang/toml |
| 3 | + |
| 4 | +############################################################################### |
| 5 | +### Base Configuration ### |
| 6 | +############################################################################### |
| 7 | + |
| 8 | +# The minimum gas prices a validator is willing to accept for processing a |
| 9 | +# transaction. A transaction's fees must meet the minimum of any denomination |
| 10 | +# specified in this config (e.g. 0.25token1;0.0001token2). |
| 11 | +minimum-gas-prices = "" |
| 12 | + |
| 13 | +# default: the last 100 states are kept in addition to every 500th state; pruning at 10 block intervals |
| 14 | +# nothing: all historic states will be saved, nothing will be deleted (i.e. archiving node) |
| 15 | +# everything: all saved states will be deleted, storing only the current state; pruning at 10 block intervals |
| 16 | +# custom: allow pruning options to be manually specified through 'pruning-keep-recent', 'pruning-keep-every', and 'pruning-interval' |
| 17 | +pruning = "everything" |
| 18 | + |
| 19 | +# These are applied if and only if the pruning strategy is custom. |
| 20 | +pruning-keep-recent = "0" |
| 21 | +pruning-keep-every = "0" |
| 22 | +pruning-interval = "0" |
| 23 | + |
| 24 | +# HaltHeight contains a non-zero block height at which a node will gracefully |
| 25 | +# halt and shutdown that can be used to assist upgrades and testing. |
| 26 | +# |
| 27 | +# Note: Commitment of state will be attempted on the corresponding block. |
| 28 | +halt-height = 0 |
| 29 | + |
| 30 | +# HaltTime contains a non-zero minimum block time (in Unix seconds) at which |
| 31 | +# a node will gracefully halt and shutdown that can be used to assist upgrades |
| 32 | +# and testing. |
| 33 | +# |
| 34 | +# Note: Commitment of state will be attempted on the corresponding block. |
| 35 | +halt-time = 0 |
| 36 | + |
| 37 | +# MinRetainBlocks defines the minimum block height offset from the current |
| 38 | +# block being committed, such that all blocks past this offset are pruned |
| 39 | +# from Tendermint. It is used as part of the process of determining the |
| 40 | +# ResponseCommit.RetainHeight value during ABCI Commit. A value of 0 indicates |
| 41 | +# that no blocks should be pruned. |
| 42 | +# |
| 43 | +# This configuration value is only responsible for pruning Tendermint blocks. |
| 44 | +# It has no bearing on application state pruning which is determined by the |
| 45 | +# "pruning-*" configurations. |
| 46 | +# |
| 47 | +# Note: Tendermint block pruning is dependant on this parameter in conunction |
| 48 | +# with the unbonding (safety threshold) period, state pruning and state sync |
| 49 | +# snapshot parameters to determine the correct minimum value of |
| 50 | +# ResponseCommit.RetainHeight. |
| 51 | +min-retain-blocks = 0 |
| 52 | + |
| 53 | +# InterBlockCache enables inter-block caching. |
| 54 | +inter-block-cache = true |
| 55 | + |
| 56 | +# IndexEvents defines the set of events in the form {eventType}.{attributeKey}, |
| 57 | +# which informs Tendermint what to index. If empty, all events will be indexed. |
| 58 | +# |
| 59 | +# Example: |
| 60 | +# ["message.sender", "message.recipient"] |
| 61 | +index-events = [] |
| 62 | + |
| 63 | +############################################################################### |
| 64 | +### Telemetry Configuration ### |
| 65 | +############################################################################### |
| 66 | + |
| 67 | +[telemetry] |
| 68 | + |
| 69 | +# Prefixed with keys to separate services. |
| 70 | +service-name = "" |
| 71 | + |
| 72 | +# Enabled enables the application telemetry functionality. When enabled, |
| 73 | +# an in-memory sink is also enabled by default. Operators may also enabled |
| 74 | +# other sinks such as Prometheus. |
| 75 | +enabled = false |
| 76 | + |
| 77 | +# Enable prefixing gauge values with hostname. |
| 78 | +enable-hostname = false |
| 79 | + |
| 80 | +# Enable adding hostname to labels. |
| 81 | +enable-hostname-label = false |
| 82 | + |
| 83 | +# Enable adding service to labels. |
| 84 | +enable-service-label = false |
| 85 | + |
| 86 | +# PrometheusRetentionTime, when positive, enables a Prometheus metrics sink. |
| 87 | +prometheus-retention-time = 0 |
| 88 | + |
| 89 | +# GlobalLabels defines a global set of name/value label tuples applied to all |
| 90 | +# metrics emitted using the wrapper functions defined in telemetry package. |
| 91 | +# |
| 92 | +# Example: |
| 93 | +# [["chain_id", "cosmoshub-1"]] |
| 94 | +global-labels = [ |
| 95 | +] |
| 96 | + |
| 97 | +############################################################################### |
| 98 | +### API Configuration ### |
| 99 | +############################################################################### |
| 100 | + |
| 101 | +[api] |
| 102 | + |
| 103 | +# Enable defines if the API server should be enabled. |
| 104 | +enable = false |
| 105 | + |
| 106 | +# Swagger defines if swagger documentation should automatically be registered. |
| 107 | +swagger = false |
| 108 | + |
| 109 | +# Address defines the API server to listen on. |
| 110 | +address = "tcp://0.0.0.0:1317" |
| 111 | + |
| 112 | +# MaxOpenConnections defines the number of maximum open connections. |
| 113 | +max-open-connections = 1000 |
| 114 | + |
| 115 | +# RPCReadTimeout defines the Tendermint RPC read timeout (in seconds). |
| 116 | +rpc-read-timeout = 10 |
| 117 | + |
| 118 | +# RPCWriteTimeout defines the Tendermint RPC write timeout (in seconds). |
| 119 | +rpc-write-timeout = 0 |
| 120 | + |
| 121 | +# RPCMaxBodyBytes defines the Tendermint maximum response body (in bytes). |
| 122 | +rpc-max-body-bytes = 1000000 |
| 123 | + |
| 124 | +# EnableUnsafeCORS defines if CORS should be enabled (unsafe - use it at your own risk). |
| 125 | +enabled-unsafe-cors = false |
| 126 | + |
| 127 | +############################################################################### |
| 128 | +### gRPC Configuration ### |
| 129 | +############################################################################### |
| 130 | + |
| 131 | +[grpc] |
| 132 | + |
| 133 | +# Enable defines if the gRPC server should be enabled. |
| 134 | +enable = false |
| 135 | + |
| 136 | +# Address defines the gRPC server address to bind to. |
| 137 | +address = "0.0.0.0:9090" |
| 138 | + |
| 139 | +############################################################################### |
| 140 | +### State Sync Configuration ### |
| 141 | +############################################################################### |
| 142 | + |
| 143 | +# State sync snapshots allow other nodes to rapidly join the network without replaying historical |
| 144 | +# blocks, instead downloading and applying a snapshot of the application state at a given height. |
| 145 | +[state-sync] |
| 146 | + |
| 147 | +# snapshot-interval specifies the block interval at which local state sync snapshots are |
| 148 | +# taken (0 to disable). Must be a multiple of pruning-keep-every. |
| 149 | +snapshot-interval = 0 |
| 150 | + |
| 151 | +# snapshot-keep-recent specifies the number of recent snapshots to keep and serve (0 to keep all). |
| 152 | +snapshot-keep-recent = 2 |
0 commit comments