|
| 1 | +abci = "socket" |
| 2 | +db_backend = "goleveldb" |
| 3 | +db_dir = "data" |
| 4 | +filter_peers = false |
| 5 | +genesis_file = "config/genesis.json" |
| 6 | +log_format = "plain" |
| 7 | +log_level = "info" |
| 8 | +moniker = "nilchaind" |
| 9 | +node_key_file = "config/node_key.json" |
| 10 | +priv_validator_key_file = "config/priv_validator_key.json" |
| 11 | +priv_validator_laddr = "" |
| 12 | +priv_validator_state_file = "data/priv_validator_state.json" |
| 13 | +proxy_app = "tcp://0.0.0.0:26658" |
| 14 | +version = "0.38.6" |
| 15 | + |
| 16 | +[blocksync] |
| 17 | +version = "v0" |
| 18 | + |
| 19 | +[consensus] |
| 20 | +create_empty_blocks = true |
| 21 | +create_empty_blocks_interval = "0s" |
| 22 | +double_sign_check_height = 0 |
| 23 | +peer_gossip_sleep_duration = "100ms" |
| 24 | +peer_query_maj23_sleep_duration = "2s" |
| 25 | +skip_timeout_commit = true |
| 26 | +timeout_commit = "200ms" |
| 27 | +timeout_precommit = "200ms" |
| 28 | +timeout_precommit_delta = "500ms" |
| 29 | +timeout_prevote = "200ms" |
| 30 | +timeout_prevote_delta = "500ms" |
| 31 | +timeout_propose = "200ms" |
| 32 | +timeout_propose_delta = "500ms" |
| 33 | +wal_file = "data/cs.wal/wal" |
| 34 | + |
| 35 | +[instrumentation] |
| 36 | +max_open_connections = 3 |
| 37 | +namespace = "cometbft" |
| 38 | +prometheus = false |
| 39 | +prometheus_listen_addr = ":26660" |
| 40 | + |
| 41 | +[mempool] |
| 42 | +broadcast = true |
| 43 | +cache_size = 10000 |
| 44 | +experimental_max_gossip_connections_to_non_persistent_peers = 0 |
| 45 | +experimental_max_gossip_connections_to_persistent_peers = 0 |
| 46 | +keep-invalid-txs-in-cache = false |
| 47 | +max_batch_bytes = 0 |
| 48 | +max_tx_bytes = 1048576 |
| 49 | +max_txs_bytes = 1073741824 |
| 50 | +recheck = true |
| 51 | +size = 5000 |
| 52 | +type = "flood" |
| 53 | +wal_dir = "" |
| 54 | + |
| 55 | +[p2p] |
| 56 | +addr_book_file = "config/addrbook.json" |
| 57 | +addr_book_strict = true |
| 58 | +allow_duplicate_ip = false |
| 59 | +dial_timeout = "3s" |
| 60 | +external_address = "" |
| 61 | +flush_throttle_timeout = "100ms" |
| 62 | +handshake_timeout = "20s" |
| 63 | +laddr = "tcp://0.0.0.0:26656" |
| 64 | +max_num_inbound_peers = 40 |
| 65 | +max_num_outbound_peers = 10 |
| 66 | +max_packet_msg_payload_size = 1024 |
| 67 | +persistent_peers = "" |
| 68 | +persistent_peers_max_dial_period = "0s" |
| 69 | +pex = true |
| 70 | +private_peer_ids = "" |
| 71 | +recv_rate = 5120000 |
| 72 | +seed_mode = false |
| 73 | +seeds = "" |
| 74 | +send_rate = 5120000 |
| 75 | +unconditional_peer_ids = "" |
| 76 | + |
| 77 | +[rpc] |
| 78 | +cors_allowed_headers = ["Origin", "Accept", "Content-Type", "X-Requested-With", "X-Server-Time"] |
| 79 | +cors_allowed_methods = ["HEAD", "GET", "POST"] |
| 80 | +cors_allowed_origins = [] |
| 81 | +experimental_close_on_slow_client = false |
| 82 | +experimental_subscription_buffer_size = 200 |
| 83 | +experimental_websocket_write_buffer_size = 200 |
| 84 | +grpc_laddr = "" |
| 85 | +grpc_max_open_connections = 900 |
| 86 | +laddr = "tcp://0.0.0.0:26648" |
| 87 | +max_body_bytes = 1000000 |
| 88 | +max_header_bytes = 1048576 |
| 89 | +max_open_connections = 900 |
| 90 | +max_subscription_clients = 100 |
| 91 | +max_subscriptions_per_client = 5 |
| 92 | +pprof_laddr = "localhost:6060" |
| 93 | +timeout_broadcast_tx_commit = "10s" |
| 94 | +tls_cert_file = "" |
| 95 | +tls_key_file = "" |
| 96 | +unsafe = false |
| 97 | + |
| 98 | +[statesync] |
| 99 | +chunk_fetchers = "4" |
| 100 | +chunk_request_timeout = "10s" |
| 101 | +discovery_time = "15s" |
| 102 | +enable = false |
| 103 | +rpc_servers = "" |
| 104 | +temp_dir = "" |
| 105 | +trust_hash = "" |
| 106 | +trust_height = 0 |
| 107 | +trust_period = "168h0m0s" |
| 108 | + |
| 109 | +[storage] |
| 110 | +discard_abci_responses = false |
| 111 | + |
| 112 | +[tx_index] |
| 113 | +indexer = "kv" |
| 114 | +psql-conn = "" |
0 commit comments