The Synapseia Network compute node β contribute CPU/GPU cycles to autonomous AI agents and earn SYN tokens on Solana.
π‘ Status: Closed Beta β Devnet only
β οΈ Beta capacity is capped. New node registrations may be rejected with a[BETA_LIMIT_REACHED]message when the network is full. If that happens, your node exits cleanly β try again later, or wait for mainnet launch.
Synapseia is a peer-to-peer compute layer for autonomous AI agents. Operators run nodes that contribute training, inference, and research workloads to a decentralized coordinator. In exchange, nodes earn SYN β an SPL token on Solana.
This package is the operator-side runtime: a CLI you install globally and run as a long-lived process.
- Node.js β₯ 20 (
node --versionto check). - ~2 GB RAM free, stable internet.
- Ollama (only if you plan to run inference workloads) β install from ollama.com.
- Solana wallet with devnet SOL β the node generates one for you on first run; you fund it from a faucet.
npm i -g @synapseia-network/node
synapseia start # creates a wallet, prints the address, then waits
# In another terminal β fund the wallet on devnet:
solana airdrop 1 <YOUR_ADDRESS> --url devnet
# Re-run:
synapseia startThe node talks to the official Synapseia coordinator automatically β no URL flags needed. For the full walkthrough, keep reading.
npm i -g @synapseia-network/node
synapseia --versionYou can use synapseia or its short alias syn interchangeably.
The first run prompts you for a node name and a vault passphrase (min 12 characters). The passphrase encrypts your wallet at rest using the hardened EncryptedKeystore (scrypt + AES-256-GCM) β there is no recovery if you forget it, but the on-screen recovery phrase (BIP39 mnemonic) lets you restore the wallet on another machine.
synapseia startOutput looks like:
[Keystore] new wallet encrypted at ~/.synapseia/wallet.keystore.json (mode 0600)
π IMPORTANT β write down this recovery phrase NOW:
<12 BIP39 words>
Wallet address: 3xK...nQ8
Keystore file: ~/.synapseia/wallet.keystore.json
The mnemonic is the ONLY way to recover this wallet if the keystore
file is lost or corrupted. Store it offline (paper or hardware) and
never share it.
Copy the wallet address AND the recovery phrase now. The address gets pasted into the faucets below; the recovery phrase goes on paper / hardware backup.
Non-interactive boot (Docker, systemd, fly-machines): mount the passphrase at a mode-0600 file owned by the current uid and set
SYNAPSEIA_KEYSTORE_PASSPHRASE_FILE=/path/to/file.synapseia startwill skip the prompt.
Copy the wallet address now. You'll paste it into two faucets in the next steps.
Your node needs a small amount of SOL on Solana devnet to pay for on-chain operations (registration, staking transactions). This is test SOL β it has no real value.
Option A β Solana CLI (recommended if installed):
solana airdrop 1 <YOUR_ADDRESS> --url devnetOption B β Web faucet:
- Open https://faucet.solana.com.
- Select Devnet from the network dropdown.
- Paste your wallet address.
- Click Confirm Airdrop.
Verify the balance arrived:
solana balance <YOUR_ADDRESS> --url devnetYou should see 1 SOL within a few seconds.
SYN is the network's reward token. You can run a node without staking, but staking unlocks higher reward tiers.
- Open
https://dashboard.synapseia.network/faucet. - Paste your wallet address.
- Click Request 10 SYN.
Limits: 10 SYN per request, 1 request per 24 h per wallet.
synapseia startThe node will:
- Connect to the official Synapseia coordinator.
- Register on the first heartbeat.
- Heartbeat every ~30 seconds.
- Wait for incoming work orders (training, inference, research).
You should see logs like:
[heartbeat] registered as <peerId>
[heartbeat] tier=0 caps=cpu_inference,research
Open https://dashboard.synapseia.network/nodes and search for your wallet address. Your node should appear in the list within ~1 minute. If it doesn't, check the Troubleshooting table below.
Prefer a desktop app over the CLI? node-ui is a cross-platform Tauri app that wraps the same runtime, uses the same wallet (~/.synapseia/wallet.keystore.json), and points at the same coordinator.
Download from https://github.com/erscoder/synapseia-node-ui/releases:
- macOS:
synapseia-node-ui_<version>_aarch64.dmg(Apple Silicon) or_x64.dmg(Intel). - Windows:
synapseia-node-ui_<version>_x64.msi. - Linux:
synapseia-node-ui_<version>_amd64.AppImage.
Run the installer, follow the prompts, and on first launch the app will create or import the same ~/.synapseia/wallet.keystore.json used by the CLI. Click Start to bring the node online β the GUI shows live logs and status.
| Message / Symptom | What it means | Fix |
|---|---|---|
[BETA_LIMIT_REACHED] Beta tester limit reached. |
Coordinator beta cap is full. CLI exits with code 0. | Wait for the next slot bump or for mainnet. Re-run synapseia start later. |
Wallet not funded / insufficient SOL |
Wallet has 0 SOL on devnet. | Re-do Step 3 (devnet SOL faucet). |
Coordinator unreachable / ECONNREFUSED |
Network problem reaching the official coordinator. | Check your internet connection. Status: status.synapseia.network. |
Cannot find module 'X' |
Global npm install was incomplete. | npm i -g --force @synapseia-network/node. |
| Modal "Beta tester limit reached" in node-ui | Same as the CLI message above. | Same fix β re-try later. |
| Vault passphrase forgotten | The keystore is encrypted; there is no passphrase recovery path. | Restore from the BIP39 recovery phrase you saved at Step 2: delete ~/.synapseia/wallet.keystore.json (and the legacy ~/.synapseia/wallet.json if present), then run synapseia start and pick Restore from mnemonic at the prompt. Without the mnemonic you must delete both files and fund a brand-new address. |
Main loop β registers the node, heartbeats, executes work orders.
| Flag | Description | Default |
|---|---|---|
--model <name> |
Ollama model for inference workloads | recommended for hardware |
--llm-key <key> |
External LLM API key (optional) | β |
--max-iterations <n> |
Maximum work order iterations | infinite |
--inference |
Enable inference mode (expose GPU as AI inference provider) | off |
--inference-models <models> |
Comma-separated list of models to serve (e.g. ollama/qwen2.5:7b,ollama/llama3:8b) |
β |
--lat <n> --lng <n> |
Geolocation override (else IP-based) | β |
--set-name <name> |
Node display name | β |
synapseia statusβ current runtime status of your node.synapseia balanceβ wallet SOL + SYN balance.synapseia config --showβ print current config.--set-name,--set-model,--set-llm-keyto edit.synapseia stake/unstake/stake-infoβ stake / unstake SYN, view tier multiplier.synapseia claim-rewards/claim-wo-rewardsβ claim accrued rewards.synapseia deposit-sol/deposit-syn/withdraw-sol/withdraw-synβ wallet transfers.synapseia system-infoβ hardware detection report.synapseia export-keyβ export the wallet private key (prompts for password).synapseia wallet-create/wallet-verifyβ wallet provisioning helpers.synapseia stopβ stop a running node.
Run any command with --help for the full option list.
- Wallet:
~/.synapseia/wallet.keystore.json(scrypt + AES-256-GCM, encrypted with your vault passphrase). A legacy~/.synapseia/wallet.jsonmay also exist on operators that upgraded from pre-0.6.x; both contain the same keypair but the keystore is the only path the runtime reads on fresh installs. - Config:
~/.synapseia/config.json. - Logs: stdout / stderr. Redirect to file with:
synapseia start 2>&1 | tee node.log
- Override home dir: set
SYNAPSEIA_HOME=/path/to/dir.
This software is licensed under the Functional Source License v1.1 with Apache-2.0 future grant (FSL-1.1-Apache-2.0).
- You can: use it personally, modify it, run nodes for your own use, fork it for non-competing internal purposes.
- You cannot (until 2028-05-07): operate a service or distributed network that competes with Synapseia.
- After 2028-05-07 the license auto-converts to Apache-2.0 β anyone can use it for any purpose, including competing networks.
Full text: see the LICENSE file in this directory.
- Network dashboard: https://dashboard.synapseia.network
- Solana devnet faucet: https://faucet.solana.com
- Solana CLI install: https://docs.solana.com/cli/install
- Ollama install: https://ollama.com
- Issues: https://github.com/erscoder/synapseia-node/issues
Found a bug? Have a feature request? File an issue on GitHub. PRs welcome β please open an issue first to discuss non-trivial changes.