Inazuma logoINAZUMA

A chain of our own, built from the metal up.

Inazuma Core is written from scratch in Rust — our own consensus, our own state machine, our own token layer. 400ms blocks, fees measured in fractions of a cent.

Everyday apps

Wallets, tools, and services that feel native.

Tokens

Launch and transfer assets for a fraction of a cent.

Simple JSON-RPC

One endpoint, plain JSON, no SDK needed to build.

< 1s

Finality

< $0.01

Average fee

11,100,000

Total INAZ minted

400ms

block time

Why Inazuma

Infrastructure that gets out of the way

Sub-second finality

400ms blocks with instant confirmation, so apps feel like they run on a server, not a chain.

Fees you can ignore

Transactions settle for a fraction of a cent. Sponsor your users' gas without thinking twice.

Tokens in the protocol

Create, mint, transfer and burn native assets as first-class chain operations — no contract to deploy.

Validator-secured

A staked validator set with deterministic finality and no reorgs after confirmation.

Built for builders

Your stack already works here

Inazuma speaks a small, readable JSON-RPC. Sign with ed25519, post the transaction, read the block — no SDK, no toolchain, nothing to learn beyond HTTP.

  • Base58 ed25519 accounts, Solana-style addresses
  • Native token create / mint / transfer / burn
  • Stake and unstake as protocol transactions
  • Native explorer with live blocks and validators
chains/inazuma.ts
// Talk to Inazuma with plain JSON-RPC — no SDK required
const res = await fetch("https://rpc.inazuma.network", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    jsonrpc: "2.0", id: 1, method: "inaz_chainInfo",
  }),
});

// { blockTimeMs: 400, symbol: "INAZ", ... }
$ inazuma send --to <address> --amount 10

Ecosystem

Being built right now

View all projects
V
DeFi

Voltex

Perps and spot in one margin account.

S
DeFi

Surge AMM

Concentrated liquidity, sub-cent swaps.

K
DeFi

Kaminari Lend

Isolated money markets for long-tail assets.

B
Gaming

Boltfall

Fully on-chain arena battler.

S
Gaming

Storm Riders

Racing game with on-chain physics ticks.

A
NFTs

Arc Studio

Creator-first mint and royalty tooling.

Community

From the people building

Posted a transaction with fetch and it was in a block before the response finished rendering. 400ms is real.
@raiden_builds
First chain where an on-chain game loop actually feels playable. Fees are noise.
@gamedev_ellie
Validator setup took one afternoon. Docs are refreshingly boring — in a good way.
@nodeoperator

Start building on Inazuma

Grab test INAZ from the faucet, point your RPC, and ship your first contract in minutes.