Skip to main content

Start Here

Orbinum is a Substrate chain with a shielded pool: balances and transfers inside it are private, verified by zero-knowledge proofs rather than by anyone being able to read them. It is EVM-compatible, so the same account works with MetaMask and with Substrate tooling.

Two properties shape everything else in these docs:

  • Nothing on-chain reveals who owns what. A note is a commitment — a hash. Finding your own notes means trial-decrypting memos with your viewing key, which is why discovery has its own design.
  • Private transactions carry no signature. The fee lives inside the proof, so someone with no public balance can still spend. That is why validators, not the sender, submit them.

Where to go next

If you want to…Read
Try it nowQuick Start — get testnet ORB and make a private transfer
Understand the idea firstVision and Use Cases
Know how privacy worksPrivacy Architecture, then Note Discovery
Build on itSDK, or the EVM precompiles if you work from Solidity
Run a nodeRunning a Node — four roles, pick one
Secure the networkBecoming a Validator
Understand the tokenNetwork Economy

Using the shielded pool

The three operations, and what each reveals:

OperationMovesPublic
Shieldpublic balance → a private notethat you shielded, and how much
Private transfernote → notenothing but that a transfer happened
Unshieldnote → public balancethe recipient and the amount

Shielding and unshielding are the visible edges; what happens between them is not. A transfer publishes a nullifier and new commitments with no link between them — see Private Vault for the walkthrough.

Testnet only

Orbinum is in testnet. Tokens have no economic value, the chain may be reset, and mainnet is not live.


Next Steps

  • Quick Start — a private transfer in five steps
  • Faucet — 10 ORB every 24 hours
  • Vision — the problem this is solving