Advertisement
iron-from-sf

config-toml

Mar 4th, 2025
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.08 KB | None | 0 0
  1. proxy_app = "tcp://127.0.0.1:26658"
  2.  
  3. # IMPORTANT! Replace the placeholder below with your actual moniker
  4. moniker = "STAKECRAFT"
  5.  
  6. fast_sync = true
  7. db_backend = "pebbledb"
  8. db_dir = "data"
  9. log_level = "info"
  10. log_format = "plain"
  11. genesis_file = "config/genesis.json"
  12. priv_validator_key_file = "config/priv_validator_key.json"
  13. priv_validator_state_file = "data/priv_validator_state.json"
  14. priv_validator_laddr = ""
  15. node_key_file = "config/node_key.json"
  16. abci = "socket"
  17. filter_peers = false
  18.  
  19. [rpc]
  20. laddr = "tcp://127.0.0.1:26657"
  21. cors_allowed_origins = []
  22. cors_allowed_methods = ["HEAD", "GET", "POST", ]
  23. cors_allowed_headers = ["Origin", "Accept", "Content-Type", "X-Requested-With", "X-Server-Time", ]
  24. grpc_laddr = ""
  25. grpc_max_open_connections = 900
  26. unsafe = false
  27. max_open_connections = 900
  28. max_subscription_clients = 100
  29. max_subscriptions_per_client = 5
  30. experimental_subscription_buffer_size = 200
  31. experimental_websocket_write_buffer_size = 200
  32. experimental_close_on_slow_client = false
  33. timeout_broadcast_tx_commit = "10s"
  34. max_body_bytes = 1000000
  35. max_header_bytes = 1048576
  36. tls_cert_file = ""
  37. tls_key_file = ""
  38. pprof_laddr = "localhost:6060"
  39.  
  40. [p2p]
  41. laddr = "tcp://0.0.0.0:26656"
  42.  
  43. # IMPORTANT! Replace the placeholder below with your actual external IP address
  44. external_address = "208.91.107.251:26656"
  45. seeds = "[email protected]:26656"
  46. persistent_peers = ""
  47. upnp = false
  48. addr_book_file = "config/addrbook.json"
  49. addr_book_strict = true
  50. max_num_inbound_peers = 120
  51. max_num_outbound_peers = 60
  52. unconditional_peer_ids = ""
  53. persistent_peers_max_dial_period = "0s"
  54. flush_throttle_timeout = "100ms"
  55. max_packet_msg_payload_size = 1024
  56. send_rate = 5120000
  57. recv_rate = 5120000
  58. pex = true
  59. seed_mode = false
  60. private_peer_ids = ""
  61. allow_duplicate_ip = true
  62. handshake_timeout = "20s"
  63. dial_timeout = "3s"
  64.  
  65. [mempool]
  66. version = "v0"
  67. recheck = true
  68. broadcast = true
  69. wal_dir = ""
  70.  
  71. size = 5000
  72. max_txs_bytes = 1073741824
  73. cache_size = 10000
  74. keep-invalid-txs-in-cache = false
  75. max_tx_bytes = 1048576
  76. max_batch_bytes = 0
  77. ttl-duration = "0s"
  78. ttl-num-blocks = 0
  79.  
  80. [statesync]
  81. enable = "false"
  82. rpc_servers = "35.224.53.42:26657,35.224.53.42:26657"
  83. trust_height = 2408321
  84. trust_hash = "158BCCE0874C8E6C1C5B9D442DF5C08C1ED3DBA5844A635CBB1365530AE1A751"
  85. trust_period = "168h0m0s"
  86. discovery_time = "15s"
  87. temp_dir = ""
  88. chunk_request_timeout = "10s"
  89. chunk_fetchers = "4"
  90.  
  91. [fastsync]
  92. version = "v0"
  93.  
  94. [consensus]
  95. wal_file = "data/cs.wal/wal"
  96. timeout_propose = "3s"
  97. timeout_propose_delta = "500ms"
  98. timeout_prevote = "1s"
  99. timeout_prevote_delta = "500ms"
  100. timeout_precommit = "1s"
  101. timeout_precommit_delta = "500ms"
  102. timeout_commit = "5s"
  103. double_sign_check_height = 0
  104. skip_timeout_commit = false
  105. create_empty_blocks = true
  106. create_empty_blocks_interval = "0s"
  107. peer_gossip_sleep_duration = "100ms"
  108. peer_query_maj23_sleep_duration = "2s"
  109.  
  110. [storage]
  111. discard_abci_responses = false
  112.  
  113. [tx_index]
  114. indexer = "kv"
  115. psql-conn = ""
  116.  
  117. [instrumentation]
  118. prometheus = true
  119. prometheus_listen_addr = ":26660"
  120. max_open_connections = 3
  121. namespace = "tendermint"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement