GIWA Sepolia Testnet API Integration

Overview

GIWA Sepolia is supported by Pocket Network's enterprise-grade infrastructure with guaranteed uptime, global edge network, and developer-first tooling.

Network Information

Property Value
Network Name GIWA Sepolia
Native Token ETH
EVM Chain ID 91342
Pocket Service ID giwa-sepolia-testnet
Block Explorer GIWA Sepolia Explorer

Supported APIs

API Documentation
JSON-RPC view spec

Integration Examples

Quick Setup

// Using ethers.js (for EVM-compatible chains)
import { JsonRpcProvider } from 'ethers';

const provider = new JsonRpcProvider('YOUR_ENDPOINT');

// Get latest block
const blockNumber = await provider.getBlockNumber();
console.log('Latest block:', blockNumber);

// Get account balance
const balance = await provider.getBalance('WALLET_ADDRESS');
console.log('Balance:', balance.toString());

Network Configuration

// MetaMask/Wallet Configuration
const network = {
  chainId: '0x16A0E', // 91342 in hex
  chainName: 'GIWA Sepolia',
  nativeCurrency: {
    name: 'ETH',
    symbol: 'ETH',
    decimals: 18,
  },
  rpcUrls: ['YOUR_ENDPOINT'],
  blockExplorerUrls: ['https://sepolia-explorer.giwa.io'],
};

Developer Resources

📚 Essential Links

🛠️ Tools & SDKs

💬 Community & Support

Public Endpoint

Free public RPC endpoint available with fair use limits. No API key required.