-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfig.default.toml
More file actions
33 lines (26 loc) · 1.28 KB
/
config.default.toml
File metadata and controls
33 lines (26 loc) · 1.28 KB
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
26
27
28
29
30
31
32
33
# Snapshot bootstrapper default configuration
# Epoch to bootstrap to
epoch = 509
# Base directory for storing network data, snapshots, and configuration files.
# Network-specific files will be stored in a subdirectory: <data-dir>/<network>/
# Expected files: config.json (network config) and snapshots.json (snapshot metadata)
data-dir = "./data"
# Topic for publishing snapshot data during processing.
# Publishes a Startup message when snapshot processing begins, followed by
# snapshot content (UTXOs, pools, accounts, DReps, governance proposals).
snapshot-topic = "cardano.snapshot"
# Topic to subscribe to for genesis bootstrap completion.
# The bootstrapper waits for a GenesisComplete message on this topic
# before proceeding with snapshot processing.
bootstrapped-subscribe-topic = "cardano.sequence.bootstrapped"
# Topic for publishing the command to start fetching and publishing
# blocks from the peer network interface.
sync-command-topic = "cardano.sync.command"
[download]
# Total request timeout in seconds (default: 5 minutes)
timeout-secs = 300
# Connection timeout in seconds
connect-timeout-secs = 30
# How often to log download progress, measured in number of bytes received.
# Lower values provide more frequent updates but will increase log volume.
progress-log-interval = 200