ZONA PROTOCOL
  • Welcome to Zona
  • What is ZONA?
  • Core Concepts
  • Network Architecture
  • Getting Started
    • ◼️Setting Up Wallets
    • ◼️Connecting to Testnet
    • ◼️Faucet Access
    • ◼️ZONA RPC & Chain Info
  • Smart Contract Development
    • ◻️EVM Compatibility Overview
    • ◻️Writing Contracts (Solidity)
    • ◻️Deploying to ZONA with Hardhat
    • ◻️Using Remix on ZONA
    • Advanced Topics
  • ◼️Gas Optimization on ZONA
  • ◼️Custom Modules with ZONA SDK
  • ◼️Security & Auditing Guidelines
Powered by GitBook
On this page
  1. Getting Started

ZONA RPC & Chain Info

To interact with the ZONA blockchain using wallets, development frameworks, or Web3 providers, you'll need to connect to the correct RPC endpoint and network configuration.

⚠️ Note: ZONA Testnet & Mainnet are currently in preparation. The following values are placeholders and will be updated upon official release.


🔧 Network Configuration (Coming Soon)

Field

Testnet (TBA)

Mainnet (TBA)

Network Name

ZONA Testnet

ZONA Mainnet

Chain ID

TBA

TBA

Currency Symbol

ZONA

ZONA

RPC URL

https://rpc-testnet.zonaprotocol.org

https://rpc.zonaprotocol.org

Block Explorer

https://testnet-explorer.zonaprotocol.org

https://explorer.zonaprotocol.org


📦 RPC Endpoint Usage

ZONA's RPC endpoints are compatible with:

  • MetaMask / WalletConnect

  • Hardhat / Truffle / Foundry

  • Ethers.js / Web3.js

  • Custom JSON-RPC clients

  • DApps and SDKs

You can use them to:

  • Read/write smart contracts

  • Submit transactions

  • Query balances and blocks

  • Access logs and events

  • Run chain analytics


📡 WebSocket Support (Coming Soon)

For real-time subscription-based actions (e.g., event listening):

  • WSS Endpoint: wss://ws-testnet.zonaprotocol.org (TBA)


📘 Example (Hardhat Config)

jsCopyEditmodule.exports = {
  networks: {
    zonaTestnet: {
      url: "https://rpc-testnet.zonaprotocol.org",
      chainId: TBA , // Replace with actual chain ID
      accounts: [PRIVATE_KEY]
    }
  }
};

🔔 Stay Updated

Finalized RPC endpoints and Chain IDs will be published via:

PreviousFaucet AccessNextEVM Compatibility Overview

Last updated 15 days ago

◼️
📢 Official Announcements
🐦 Twitter/X Updates
🌐 zonaprotocol.org