Skip to content
Developers

Build on YAZIMAO

Everything you need to start building — documentation, SDKs, APIs, and an open-source protocol you can audit and contribute to.

In Development

Developer Docs

Protocol guides, architecture decisions, and API references — kept in sync with the code.

Explore
Planned

SDKs

Client libraries for building on Nova — TypeScript, Rust, and more.

Coming Soon
Planned

API

Public RPC and indexer APIs for reading and writing the chain.

Coming Soon
Live

GitHub

Open-source protocol, node, and tools — audit and contribute.

Explore
Testnet

Launch 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.

Join Testnet WaitlistTestnet not launched yet
Testnet checklist
  • 01Public RPC endpoints
  • 02Faucet for test tokens
  • 03Explorer for blocks & transactions
  • 04Wallet support (mobile & desktop)
  • 05Validator onboarding guide
app.ts
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 → finalized
SDK

Code 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
API

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.

Protocol guidesWASM contract guideValidator guideNode guideAPI reference

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.

Core protocolNode clientWalletsSDKsDocs

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.