wasm.toml 650 B

1234567891011121314151617
  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 maximum gas amount can be spent for contract query.
  5. # The contract query will invoke contract execution vm,
  6. # so we need to restrict the max usage to prevent DoS attack
  7. contract-query-gas-limit = "3000000"
  8. # Storing instances in the LRU will have no effect on the results
  9. # (still deterministic), but should lower execution time at
  10. # the cost of increased memory usage. We cannot pick universal
  11. # parameters for this, so we should allow node operators to set it.
  12. lru-size = "0"
  13. contract-logging-whitelist = "*"