This guide will help you set up and run your first Vernachain node, create a wallet, and perform basic operations.
git clone https://github.com/BronzonTech-Cloud/vernachain.git
cd vernachain
# Install Python dependencies
pip install -r requirements.txt
# Install frontend dependencies
cd src/frontend && npm install && cd ../..
vernachain/
├── src/ # Source code
├── docs/ # Documentation
├── tests/ # Test files
├── requirements.txt # Python dependencies
└── start.sh/bat # Startup scripts
./start.sh --dev # Unix systems
start.bat --dev # Windows
./start.sh --bootstrap
./start.sh --bootstrap \
--node-port 5001 \
--api-port 8000 \
--explorer-port 8001
python -m src.wallet.cli create -l "My Wallet"
python -m src.wallet.cli balance
python -m src.wallet.cli list
python -m src.wallet.cli send --to ADDRESS --amount VALUE
python -m src.wallet.cli stake --amount VALUE
python -m src.cli deploy-contract --file path/to/contract.py
For more detailed information, refer to the specific documentation sections or join our community channels.