Skip to content
This repository was archived by the owner on May 20, 2026. It is now read-only.
Merged
Changes from all commits
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
28 changes: 19 additions & 9 deletions build/config.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
# Bee config template
# Date of generation: 16 November 2020
# Date of generation: 26 March 2021

# HTTP API listen address (default ":1633")
api-addr: :1633
# initial nodes to connect to (default [/dnsaddr/bootnode.ethswarm.org])
bootnode: [/dnsaddr/bootnode.ethswarm.org]
# cause the node to always accept incoming connections
bootnode-mode: false
# enable clef signer
clef-signer-enable: false
# clef signer endpoint
Expand All @@ -17,6 +19,14 @@ cors-allowed-origins: []
data-dir: /home/bee/.bee
# db capacity in chunks, multiply by 4096 to get approximate capacity in bytes
db-capacity: 5000000
# number of open files allowed by database
db-open-files-limit: 200
# size of block cache of the database in bytes
db-block-cache-capacity: 33554432
# size of the database write buffer in bytes
db-write-buffer-size: 33554432
# disables db compactions triggered by seeks
db-disable-seeks-compaction: false
# debug HTTP API listen address (default ":1635")
debug-api-addr: :1635
# enable debug HTTP API
Expand All @@ -39,12 +49,12 @@ p2p-ws-enable: false
password: ""
# path to a file that contains password for decrypting keys
password-file: "/home/bee/.password"
# amount in BZZ below the peers payment threshold when we initiate settlement (default 10000)
payment-early: 10000
# threshold in BZZ where you expect to get paid from your peers (default 100000)
payment-threshold: 100000
# excess debt above payment threshold in BZZ where you disconnect from your peer (default 10000)
payment-tolerance: 10000
# amount in BZZ below the peers payment threshold when we initiate settlement (default 1000000000000)
payment-early: 1000000000000
# threshold in BZZ where you expect to get paid from your peers (default 10000000000000)
payment-threshold: 10000000000000
# excess debt above payment threshold in BZZ where you disconnect from your peer (default 50000000000000)
payment-tolerance: 50000000000000
# ENS compatible API endpoint for a TLD and with contract address, can be repeated, format [tld:][contract-addr@]url
resolver-options: []
# whether we want the node to start with no listen addresses for p2p
Expand All @@ -55,8 +65,8 @@ swap-enable: true
swap-endpoint: http://localhost:8545
# swap factory address
swap-factory-address: ""
# initial deposit if deploying a new chequebook (default 100000000)
swap-initial-deposit: 100000000
# initial deposit if deploying a new chequebook (default 100000000000000000)
swap-initial-deposit: 100000000000000000
# enable tracing
tracing-enable: false
# endpoint to send tracing data (default "127.0.0.1:6831")
Expand Down