grapevine 1.1.0

A modern, asynchronous peer-to-peer gossip protocol library and application
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Grapevine Node Configuration
# Copy this file to .env and customize as needed

# Network binding configuration
BIND_HOST=127.0.0.1
BIND_PORT=8000

# Bootstrap peers (comma-separated list of addresses)
# BOOTSTRAP_PEERS=127.0.0.1:8001,127.0.0.1:8002

# Gossip protocol parameters
GOSSIP_INTERVAL_SECS=5
FANOUT=3
MAX_PEERS=50

# Logging level (trace, debug, info, warn, error)
RUST_LOG=info