-
Notifications
You must be signed in to change notification settings - Fork 0
GETTING_STARTED
krewdev edited this page Jul 17, 2026
·
1 revision
MeshChain wallets and services run on the Meshtastic network.
git clone https://github.com/krewdev/meshchain.git
cd meshchain
cargo build -p mesh -p meshchain-node./target/debug/mesh testnet-setup # chain_id = meshchain-testnet-1
./target/debug/mesh testnet-info
./target/debug/mesh demotMESH has no cash value. See TESTNET.md.
Each wallet gets a memorable mesh name derived from its key (unique, not pickable):
MVGQK7-82943-QJC
- Starts with
M - Crockford base32 (no confusing I / O / L)
- 1:1 with the secure 8-byte short id
- Hex id still works for power users
mesh new-wallet
# → Mesh name: MVGQK7-82943-QJC
mesh send MVGQK7-82943-QJC 5./target/debug/mesh testnet-setup # public testnet (preferred)
./target/debug/mesh demo # practice transfers
./target/debug/mesh new-wallet # create a wallet + mesh name
./target/debug/mesh address # show mesh name
./target/debug/mesh balance --wallet alice.json
./target/debug/mesh new-cold-key # quantum-safe cold key
./target/debug/mesh how-cold-works
./target/debug/mesh security| Command | What it does |
|---|---|
mesh new-wallet |
Create a wallet + show mesh name |
mesh address |
Show mesh name + hex id |
mesh balance |
Show how much MESH you have |
mesh send <name> <amount> |
Pay a mesh name (or hex) |
mesh status |
Network height & supply |
mesh new-cold-key |
Long-term cold storage key |
- Flash devices with Meshtastic firmware.
- Use a private channel for funds (not public LongFast for real value).
- Run
tools/meshtastic_bridge.pywith a USB/TCP node. - Keep cold keys offline — radio off while holding.
Do not put large real value on this software without an audit.
Read Security hardening and Hybrid lock.