Welcome to the Vernachain documentation! This guide will help you get started with running nodes, using the CLI, and developing on Vernachain.
# Install dependencies
pip install -r requirements.txt
# Start a bootstrap node
python -m src.cli start-bootstrap --host localhost --port 5000
# Start a regular node
python -m src.cli start --host localhost --port 5001 --bootstrap-host localhost --bootstrap-port 5000
# Create a wallet
python -m src.wallet.cli create
# Send a transaction
python -m src.wallet.cli send FROM_ADDRESS TO_ADDRESS AMOUNT
We welcome contributions! Please see our Contributing Guide for details.