Back to Home
Developer Reference
API Reference
Complete reference for the PezkuwiChain RPC API, Rust SDK, TypeScript client, and pallet dispatchables.
Open Full DocsStable
RPC Endpoints
JSON-RPC and WebSocket endpoints for querying chain state, submitting extrinsics, and subscribing to events.
View referencev1.0
Rust SDK (pezsp)
Full Rust API — structs, enums, traits, and dispatchables for every pallet module. 343 pages of docs.
View referenceBeta
TypeScript SDK
High-level TypeScript client for web and Node.js — built on top of subxt and polkadot.js.
View referenceReference
Pallet Dispatchables
Every callable extrinsic across all 14 pallets — parameters, weights, events, and errors.
View referenceQuick Start
# Install the TypeScript SDK
npm install @pezkuwichain/sdk
# Connect to testnet
import { PezkuwiApi } from '@pezkuwichain/sdk';
const api = await PezkuwiApi.create({
endpoint: 'wss://rpc.testnet.pezkuwichain.io'
});
# Query balance
const balance = await api.query.system.account(address);
console.log(balance.data.free.toHuman());