-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemq.toml
More file actions
25 lines (21 loc) · 715 Bytes
/
memq.toml
File metadata and controls
25 lines (21 loc) · 715 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Memq Configuration
# See docs/architecture.md for details.
[zmq]
# bitcoind ZMQ endpoints — must match bitcoin.conf
rawtx_endpoint = "tcp://127.0.0.1:28332"
# zmqpubsequence provides total-ordered mempool events (A/R/C/D)
sequence_endpoint = "tcp://127.0.0.1:28333"
rawblock_endpoint = "tcp://127.0.0.1:28334"
# ZMQ high-water mark (buffer size before dropping)
hwm = 10000
[rpc]
# Bitcoin Core JSON-RPC (used for initial sync and block reconciliation only — not hot path)
url = "http://127.0.0.1:18443"
user = "bitcoin"
password = "bitcoin"
[grpc]
# gRPC server listen address
listen_addr = "[::1]:50051"
[pipeline]
# Bounded channel capacity — backpressure kicks in when full
channel_capacity = 65536