forked from blinklabs-io/adder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yaml.example
More file actions
82 lines (67 loc) · 1.64 KB
/
config.yaml.example
File metadata and controls
82 lines (67 loc) · 1.64 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
# Example config
# Api server address
api:
address: 0.0.0.0
port: 8080
# Logging options
logging:
# Log level
level: info
# Debug options
debug:
# Debug listener address
address: localhost
# Debug listener port
# Set this to a non-zero value to enable debug listener
port: 0
# Input plugin to use
input: chainsync
# Output plugin to use
output: log
# Kupo URL for querying UTxOs (optional)
#kupo_url: http://localhost:1442
# Shelley transition epoch
# Mainnet: 208
# Preview testnet: 4
# Preprod testnet: 4
shelley_trans_epoch: 208
# Byron genesis configuration
byron_genesis:
# End slot of the Byron era
# Mainnet: 4492799
# Preview testnet: 0 (no Byron era)
# Preprod testnet: 86399
end_slot: 4492799
# Byron epoch length in slots
# Mainnet: 21600
# Preview/Preprod testnets: 86400 (or 0 if no Byron)
epoch_length: 21600
# Byron slots per epoch
# Usually same as epoch_length
byron_slots_per_epoch: 21600
# Shelley genesis configuration
shelley_genesis:
# Shelley epoch length in slots
# Mainnet: 432000
# Preview testnet: 86400
# Preprod testnet: 86400
epoch_length: 432000
# Plugin options
plugins:
# Input plugin options
input:
# Chainsync input plugin options
chainsync:
# Network to connect to (mainnet, preview, or preprod)
network: mainnet
# For testnet use: network: preview or network: preprod
# Alternatively, specify socket path and network magic:
#socket_path: /path/to/node.socket
#network_magic: 764824073 # mainnet magic
# Output plugin options
output:
# Log output plugin options
log:
# Logging level
level: info