Developers
Ship on Duckpot in one config block
Standard EVM tooling, an agent-aware RPC layer, and SDKs for TypeScript, Rust, Go and Python.
Chain configuration
- Network name
- Duckpot Testnet
- Chain ID
- 2026001
- Currency
- DUCK (DUCK)
- Decimals
- 18
- RPC URL
- https://rpc.duckpot.xyz
- WebSocket
- Explorer
Quickstart · viem
import { createPublicClient, http } from "viem";
export const duckpotTestnet = {
id: 2026001,
name: "Duckpot Testnet",
nativeCurrency: { name: "DUCK", symbol: "DUCK", decimals: 18 },
rpcUrls: { default: { http: ["https://rpc.duckpot.xyz"] } },
};
const client = createPublicClient({
chain: duckpotTestnet,
transport: http(),
});
const block = await client.getBlockNumber();JavaScript SDKTypeScript SDKRust SDKGo SDKPython SDK
Testnet faucet
Claim 100 test DUCK every 12 hours per address.
REST + WebSocket API
Indexed blocks, txs, tokens and NFT events with cursor pagination and live subscriptions.
Contract deployment
Hardhat and Foundry presets, verification API and gas profiling out of the box.
