app.toml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # This is a TOML config file.
  2. # For more information, see https://github.com/toml-lang/toml
  3. ##### main base config options #####
  4. # The minimum gas prices a validator is willing to accept for processing a
  5. # transaction. A transaction's fees must meet the minimum of any denomination
  6. # specified in this config (e.g. 0.25token1;0.0001token2).
  7. minimum-gas-prices = "0.00506uluna,0.0015uusd,0.00102usdr,1.7805ukrw,4.31626umnt"
  8. # default: the last 100 states are kept in addition to every 500th state; pruning at 10 block intervals
  9. # nothing: all historic states will be saved, nothing will be deleted (i.e. archiving node)
  10. # everything: all saved states will be deleted, storing only the current state; pruning at 10 block intervals
  11. # custom: allow pruning options to be manually specified through 'pruning-keep-recent', 'pruning-keep-every', and 'pruning-interval'
  12. pruning = "default"
  13. # These are applied if and only if the pruning strategy is custom.
  14. pruning-keep-recent = "0"
  15. pruning-keep-every = "0"
  16. pruning-interval = "0"
  17. # HaltHeight contains a non-zero block height at which a node will gracefully
  18. # halt and shutdown that can be used to assist upgrades and testing.
  19. #
  20. # Note: Commitment of state will be attempted on the corresponding block.
  21. halt-height = 0
  22. # HaltTime contains a non-zero minimum block time (in Unix seconds) at which
  23. # a node will gracefully halt and shutdown that can be used to assist upgrades
  24. # and testing.
  25. #
  26. # Note: Commitment of state will be attempted on the corresponding block.
  27. halt-time = 0
  28. # InterBlockCache enables inter-block caching.
  29. inter-block-cache = true