Build on YAZIMAO
Everything you need to start building — documentation, SDKs, APIs, and an open-source protocol you can audit and contribute to.
Developer Docs
Protocol guides, architecture decisions, and API references — kept in sync with the code.
ExploreLaunch Testnet
A public testnet is the milestone between protocol development and mainnet. When it launches, you'll get test tokens, faucets, and a full suite of explorer and wallet tooling.
- 01Public RPC endpoints
- 02Faucet for test tokens
- 03Explorer for blocks & transactions
- 04Wallet support (mobile & desktop)
- 05Validator onboarding guide
import { NovaClient } from "@nova/sdk"
const client = new NovaClient{
rpcUrl: process.env.NEXT_PUBLIC_RPC_URL,
network: "testnet",
});
// Amounts are integers — never floats
const tx = await client.transfer{
to: "nova1",
amount: "1000000",
});
const status = await tx.wait();
// pending → accepted → confirmed → finalizedCode that just works
SDKs give you typed, safe interfaces to the protocol. No floats, no magic — amounts are integers, statuses are explicit, and finality is never overstated.
- TypeScript & Rust SDKs
- Typed transaction & event models
- Explicit status: pending / accepted / confirmed / finalized
- Proof & state verification built in
Public RPC & data APIs
Read the chain, submit transactions, and query indexed data through versioned APIs. Public RPC is separated from validator management endpoints.
Public RPC
Submit transactions and query chain state. Versioned, rate-limited, size-bounded.
Indexer API
Blocks, transactions, accounts, and validators — built for explorers and dashboards.
Versioning
/api/v1 → /api/v2. Breaking changes never silently ship.
Developer Docs
Documentation is a first-class deliverable — written alongside the protocol, recorded as architectural decisions, and kept in sync with the code.
Open Source
The YAZIMAO protocol is developed in the open. Read the code, audit the decisions, and contribute. Transparency is part of the security model.
Build the next generation of open apps
Wallets, games, storage apps, compute markets, and AI creator tools — YAZIMAO is infrastructure for builders and creators. Start with the docs, and join the developer community.