Testnet

Synorix Core public test network (testnet3). For development, integrations, and learning—never treat test coins as real value.

This page summarizes how to connect to the Synorix testnet using -testnet with synorixd and synorix-cli. Parameters follow Bitcoin-style testnet conventions where noted.

Important: Testnet coins have no monetary value and must not be used for production or as a stand-in for real funds. They can be reset or inflated by the network at any time.

Network parameters

P2P port18333
RPC (default local)127.0.0.1:18332

Default RPC port is Bitcoin-compatible testnet-style 18332 (not 18322) when running synorixd -testnet.

Bech32 (native segwit) prefixtsnrx (addresses tsnrx1…)
DNS seedtestnet-seed.synorixcoin.com

Run a node (quick start)

Use a dedicated datadir for testnet so it does not mix with mainnet state.

# Daemon (testnet)
synorixd -testnet -datadir=/path/to/synorix-testnet-data

# CLI (same datadir)
synorix-cli -testnet -datadir=/path/to/synorix-testnet-data getblockchaininfo

Security

  • Do not expose RPC to the public internet. Keep rpcbind on 127.0.0.1 unless you fully understand firewall rules, authentication, and the risks of remote RPC.
  • Testnet wallets and keys are for testing only; do not reuse testnet practices (weak passwords, open ports) on mainnet setups.

Source code

Build instructions and full node source live in the public Synorix Core repository.

GitHub repository URL: add SYNORIX_CORE_REPO_URL in lib/site.ts when the repo is public (or open a PR against this site’s README with the link).