Private Development Environment

PRIVATEDIVI NETWORKS

Isolated blockchain environments for development, testing, and experimentation. Fast block times, full control, zero risk.

Scroll to explore

Network Status

Live endpoints and connection details for both private networks.

Privatenet Testnet
Active
Service Port Description
Node 1-5 P2P 17001-17005 Peer-to-peer connections
RPC Proxy 17080 Load-balanced RPC endpoint
Explorer 17100 Block explorer interface
Faucet 17110 Test coin faucet (1000 PRIVDIVI/hour)
HAProxy Stats 17090 Load balancer statistics (user: admin)
Privatenet Mainnet
Active
Service Port Description
Node 1-5 P2P 18001-18005 Peer-to-peer connections
RPC Proxy 18080 Load-balanced RPC endpoint
Explorer 18100 Block explorer interface
Faucet 18110 Test coin faucet (1000 PRIVDIVI/hour)
HAProxy Stats 18090 Load balancer statistics (user: admin)

Getting Started

Get test coins instantly to start building on the private networks.

🌊 Faucet - Free Test Coins

The faucets provide free test PRIVDIVI coins for development and testing. No account or authentication required.

•
Payout: 1000 PRIVDIVI per request
•
Rate Limit: 1 request per IP address per hour
•
Network: Choose testnet for development, mainnet for pre-production testing
💧

Testnet Faucet

Development environment

Get Test Coins
🌊

Mainnet Faucet

Pre-production testing

Get Test Coins

How to Connect

Follow these steps to connect your local PrivateDivi node to a private network.

1

Download PrivateDivi

Get the latest PrivateDivi Core release from the official GitHub repository.

Download Link
https://github.com/DiviDomains/PrivateDivi/releases/tag/v3.0.0
2

Create divi.conf

Create a configuration file with the appropriate network settings. Choose your target network below.

divi.conf - Testnet
regtest=1
server=1
listen=1
dnsseed=0
addnode=15.204.243.46:17001
addnode=15.204.243.46:17002
addnode=15.204.243.46:17003
addnode=15.204.243.46:17004
addnode=15.204.243.46:17005
rpcuser=yourusername
rpcpassword=yourpassword
divi.conf - Mainnet
regtest=1
server=1
listen=1
dnsseed=0
addnode=15.204.243.46:18001
addnode=15.204.243.46:18002
addnode=15.204.243.46:18003
addnode=15.204.243.46:18004
addnode=15.204.243.46:18005
rpcuser=yourusername
rpcpassword=yourpassword
3

Start divid

Launch the PrivateDivi daemon with your configuration file and a dedicated data directory.

Terminal
divid -conf=/path/to/divi.conf -datadir=/path/to/data
4

Verify Connection

Confirm your node has connected to the private network and is syncing blocks.

Terminal
# Check peer connections
divi-cli -regtest getconnectioncount

# Check current block height
divi-cli -regtest getblockcount

# Get network info
divi-cli -regtest getnetworkinfo

RPC API

The public RPC endpoint provides read-only access to blockchain data. The following methods are available.

getblockcount
getblockhash
getblock
getblockheader
getblockchaininfo
getchaintips
getdifficulty
getmempoolinfo
getrawmempool
gettxout
gettxoutproof
verifytxoutproof
getinfo
getnetworkinfo
getpeerinfo
getconnectioncount
getrawtransaction
decoderawtransaction
decodescript
validateaddress
getbestblockhash
getmininginfo
getnetworkhashps
estimatefee

Example: Query Block Count

Use curl to query the RPC endpoint. Replace the URL with your target network.

curl - Testnet
curl -X POST http://vps1.divi.domains:17100 \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"1.0","method":"getblockcount","params":[],"id":1}'
Response
{
  "result": 12345,
  "error": null,
  "id": 1
}
Copied to clipboard!