Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions config.yaml.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
---
# 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
# Default: 208 (mainnet)
# Preview: 4
# Preprod: 4
shelley_trans_epoch: 208

# Byron genesis configuration
byron_genesis:
# End slot of the Byron era
# Mainnet: 4492799
# Preview: 0 (no Byron era)
# Preprod: 86399
end_slot: 4492799

# Byron epoch length in slots
# Mainnet: 21600
# Preview/Preprod: 21600 (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: 86400
# Preprod: 86400
epoch_length: 432000

# Plugin options
plugins:

# Input plugin options
input:
# Chainsync input plugin options
chainsync:
network: preview
# Alternatively, specify socket path and network magic:
#socket_path: /path/to/node.socket
#network_magic: 42

# Output plugin options
output:
# Log output plugin options
log:
# Logging level
level: info
43 changes: 0 additions & 43 deletions configs/adder.yaml.example

This file was deleted.