SVP CHAIN PORTALEverything you need to build on SVP Chain.
Quick starts, full SDKs, agent-ready RPCs, and Cookbook recipes — plus a Discord that answers in minutes, not weeks.
QuickstartYour first transaction in 3 steps.
Runs on Testnet. Mainnet is not yet live.
01 — ADD NETWORKConnect, fund, send.
Add the testnet to MetaMask, claim SVP from the faucet, then send your first transaction.
Full quickstart →
# 1. point cast at the testnet RPC
$ export RPC=https://svp-dataseed1-testnet.svpchain.org
$ export PK=0x... # testnet key only
# 2. send your first transaction
$ cast send 0xRecipient... --value 0.01ether \
--rpc-url $RPC --private-key $PK
# 3. verify it landed
$ cast tx <txhash> --rpc-url $RPC
1Add the networkManually in MetaMask, or one-click via Chainlist.
2Fund an addressClaim SVP from the faucet — 1 request / hour.
3Send a transactionMetaMask Send or cast send, then confirm.
Wallet SetupNetwork parameters.
MetaMask is officially supported; other EVM wallets should work too.
| Field | Testnet | Mainnet (when live) |
|---|
| Network name | SVPChain Testnet | SVPChain Mainnet |
| RPC URL | https://svp-dataseed1-testnet.svpchain.org | https://svp-dataseed1.svpchain.org |
| Chain ID | 2517 | 2518 |
| Currency symbol | SVP | SVP |
| Block explorer | https://explorer.svpchain.com |
ADD PROGRAMMATICALLYPrompt users from your dApp.
Add SVPChain from your frontend with wallet_addEthereumChain.
Wallet setup →
await window.ethereum.request({
method: 'wallet_addEthereumChain',
params: [{
chainId: '0x9d5', // 2517 testnet
chainName: 'SVPChain Testnet',
nativeCurrency: { name: 'SVP', symbol: 'SVP', decimals: 18 },
rpcUrls: ['https://svp-dataseed1-testnet.svpchain.org'],
blockExplorerUrls: ['https://explorer.svpchain.com'],
}],
});
Dev EnvironmentRun a local devnet.
Build svpchaind and boot a single-node devnet. Prereqs: Go 1.23.8+, git (SSH), make.
02 — LOCAL NODEClone, install, boot.
Clone with submodules, install the binary, and start a node with EVM JSON-RPC enabled.
Dev environment →
$ git clone --recurse-submodules \
git@github.com:svpchain/protocol.git
$ cd protocol
$ export PATH="$(go env GOPATH)/bin:$PATH"
$ make install
# boot single-node devnet (EVM JSON-RPC on)
$ ./scripts/local_node_evm.sh -y
| Surface | Local endpoint |
|---|
| CometBFT RPC | localhost:26657 |
| Cosmos REST | localhost:1317 |
| Cosmos gRPC | localhost:9090 |
| EVM JSON-RPC | localhost:8545 |
Deploy a ContractSolidity, unchanged.
You need an RPC endpoint, a funded address, and the chain ID — 2517 (testnet) or 2518 (mainnet).
Foundry
$ export SVP_RPC=https://svp-dataseed1-testnet.svpchain.org
$ export SVP_CHAIN_ID=2517
$ export PRIVATE_KEY=0x...
$ forge create src/Counter.sol:Counter --rpc-url $SVP_RPC \
--chain-id $SVP_CHAIN_ID \
--private-key $PRIVATE_KEY \
--broadcast
Hardhat
// hardhat.config.ts
networks: {
svpTestnet: {
url: "https://svp-dataseed1-testnet.svpchain.org",
chainId: 2517,
accounts: [process.env.PRIVATE_KEY!],
},
}
$ npx hardhat run scripts/deploy.ts --network svpTestnet
1Min gas price2 Gwei — below this fails with tx underpriced.
2EIP-1559Supported; base fee ≈ 1.9 Gwei.
3CREATE2Network-agnostic — same address as on Ethereum.
Deploy & verify → Run a NodeServe your own RPC.
A full node serves JSON-RPC without public rate limits. It does not sign blocks — that's a validator (partnership only).
| Resource | Recommended |
|---|
| CPU | 8+ cores |
| RAM | 32 GB (64 GB with an indexer) |
| Disk | NVMe SSD, 1 TB+ (--pruning default) |
| OS | Ubuntu 22.04 LTS (x86-64) |
| Network | Stable public IP; port 26656 (P2P) inbound |
1Build the binaryInstall Go 1.23.8, clone the repo, make install.
2Init & genesissvpchaind init, fetch & validate genesis.
3Start under systemdConfigure peers + EVM JSON-RPC, then start.
Run a node →