Gnosis Chain - Ethereum Sidechain
Complete guide to Gnosis Chain integration with Dwellir RPC. Learn how to build on Gnosis Chain, access JSON-RPC methods, and optimize your dApp performance.
Gnosis RPC
With Dwellir, you get access to our global Gnosis network which always routes your API requests to the nearest available location, ensuring low latency and the fastest speeds.
Get your API keyWhy Build on Gnosis Chain?
Gnosis Chain is a community-owned, fully decentralized Ethereum sidechain designed for stable and accessible DeFi. Built and maintained by the Gnosis community, Gnosis Chain offers:
Predictable Transaction Costs
- xDAI native token - USD-pegged stablecoin for stable gas fees
- 5-second block times - Fast and predictable confirmations
- Low-cost transactions - Typical fees under $0.01
True Decentralization
- 140,000+ validators - World's most decentralized Proof-of-Stake network
- Community governance - No single entity controls the chain
- Battle-tested security - Over 3 years of continuous operation
Mature Ecosystem
- $200M+ TVL - Established DeFi protocols
- EVM compatibility - Full Ethereum tooling support
- Bridge ecosystem - Native bridges to Ethereum and other chains
Quick Start with Gnosis Chain
Connect to Gnosis Chain in seconds with Dwellir's optimized endpoints:
curl -sS -X POST https://api-gnosis-mainnet.n.dwellir.com/<API_Keys_Are_Not_Made_for_Bots> \ -H 'Content-Type: application/json' \ -d '{"jsonrpc":"2.0","method":"eth_blockNumber","params":[],"id":1}'import { JsonRpcProvider } from 'ethers';const provider = new JsonRpcProvider( 'https://api-gnosis-mainnet.n.dwellir.com/<API_Keys_Are_Not_Made_for_Bots>');const latest = await provider.getBlockNumber();console.log('block', latest);import requestsurl = 'https://api-gnosis-mainnet.n.dwellir.com/<API_Keys_Are_Not_Made_for_Bots>'payload = { 'jsonrpc': '2.0', 'id': 1, 'method': 'eth_blockNumber', 'params': []}resp = requests.post(url, json=payload)print(resp.json())package mainimport ( "bytes" "fmt" "io" "net/http")func main() { url := "https://api-gnosis-mainnet.n.dwellir.com/<API_Keys_Are_Not_Made_for_Bots>" payload := []byte(`{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}`) resp, err := http.Post(url, "application/json", bytes.NewBuffer(payload)) if err != nil { panic(err) } defer resp.Body.Close() body, _ := io.ReadAll(resp.Body) fmt.Println(string(body))}Installation & Setup
Network Information
| Parameter | Value | Details |
|---|---|---|
| Chain ID | 100 | Mainnet |
| Block Time | 5 seconds | Average |
| Gas Token | xDAI | USD-pegged |
| RPC Standard | Ethereum | JSON-RPC 2.0 |
API Reference
Gnosis Chain supports the full Ethereum JSON-RPC API specification with sidechain-specific optimizations.
Common Integration Patterns
Transaction Monitoring
Monitor pending and confirmed transactions efficiently:
// Watch for transaction confirmation on Gnosis Chain
async function waitForTransaction(txHash) {
const receipt = await provider.waitForTransaction(txHash, 1);
// Gnosis Chain has 5-second blocks for fast confirmations
console.log('Transaction confirmed in ~5 seconds');
return receipt;
}Gas Optimization
Optimize gas costs on Gnosis Chain:
// Gas estimation on Gnosis Chain
const gasEstimate = await provider.estimateGas(tx);
// xDAI has predictable pricing (~$1.00)
const gasPrice = await provider.getGasPrice();
const costInXDAI = gasEstimate * gasPrice / BigInt(1e18);
console.log(`Transaction cost: ${costInXDAI} xDAI (~$${costInXDAI})`);Event Filtering
Efficiently query contract events:
// Query events with automatic retry and pagination
async function getEvents(contract, eventName, fromBlock = 0) {
const filter = contract.filters[eventName]();
const events = [];
const batchSize = 3000; // Gnosis Chain recommended batch size
for (let i = fromBlock; i <= currentBlock; i += batchSize) {
const batch = await contract.queryFilter(
filter,
i,
Math.min(i + batchSize - 1, currentBlock)
);
events.push(...batch);
}
return events;
}Performance Best Practices
1. Batch Requests
Combine multiple RPC calls for optimal performance:
const batch = [
{ method: 'eth_blockNumber', params: [] },
{ method: 'eth_gasPrice', params: [] },
{ method: 'eth_getBalance', params: [address, 'latest'] }
];
const results = await provider.send(batch);2. Connection Pooling
Reuse provider instances to minimize connection overhead:
// Singleton pattern for provider
class GnosisProvider {
static instance = null;
static getInstance() {
if (!this.instance) {
this.instance = new JsonRpcProvider(
'https://api-gnosis-mainnet.n.dwellir.com/YOUR_API_KEY'
);
}
return this.instance;
}
}3. Smart Caching
Cache immutable data to reduce API calls:
const cache = new Map();
async function getCachedBlockData(blockNumber) {
const key = `block_${blockNumber}`;
if (!cache.has(key)) {
const block = await provider.getBlock(blockNumber);
cache.set(key, block);
}
return cache.get(key);
}Troubleshooting Common Issues
Error: "Insufficient funds"
Gnosis Chain transactions require xDAI for gas:
// Check xDAI balance before transactions
const balance = await provider.getBalance(address);
const gasEstimate = await provider.estimateGas(tx);
const gasPrice = await provider.getGasPrice();
const totalRequired = gasEstimate * gasPrice + tx.value;
if (balance < totalRequired) {
const shortage = ethers.formatEther(totalRequired - balance);
throw new Error(`Need ${shortage} more xDAI`);
}Error: "Transaction underpriced"
Gnosis Chain uses EIP-1559 pricing:
// Get current fee data
const feeData = await provider.getFeeData();
const tx = {
to: recipient,
value: amount,
maxFeePerGas: feeData.maxFeePerGas,
maxPriorityFeePerGas: feeData.maxPriorityFeePerGas,
gasLimit: 21000n
};Error: "Rate limit exceeded"
Implement exponential backoff for resilient applications:
async function callWithRetry(fn, maxRetries = 3) {
for (let i = 0; i < maxRetries; i++) {
try {
return await fn();
} catch (error) {
if (error.code === 429 && i < maxRetries - 1) {
await new Promise(r => setTimeout(r, 2 ** i * 1000));
} else {
throw error;
}
}
}
}Migration Guide
From Ethereum Mainnet
Moving from L1 to Gnosis Chain requires minimal changes:
// Before (Ethereum)
const provider = new JsonRpcProvider('https://eth-rpc.example.com');
// After (Gnosis Chain)
const provider = new JsonRpcProvider(
'https://api-gnosis-mainnet.n.dwellir.com/YOUR_API_KEY'
);
// Smart contracts work identically
// Same tooling and libraries
// Note: Different chain ID (100)
// Note: Native token is xDAI (not ETH)
// Note: 5-second block times (faster than Ethereum)Resources & Tools
Official Resources
Developer Tools
Need Help?
- Email: support@dwellir.com
- Docs: You're here!
- Dashboard: dashboard.dwellir.com
Related Reading
Start building on Gnosis Chain with Dwellir's enterprise-grade RPC infrastructure. Get your API key
eth_coinbase
Check the legacy eth_coinbase compatibility method on Flow EVM Gateway. Public endpoints may return an address, `unimplemented`, or another unsupported-method response depending on the client.
eth_blockNumber
Get the current block height on Gnosis. Essential for syncing dApps, monitoring transaction confirmations, and blockchain state tracking.

