What is
A programmable IOU on Ergo — a UTxO encoding a payment obligation that can be transferred between agents and redeemed against a Reserve.
In Ergo's agent economy stack, a Note is a bearer instrument implemented as a UTxO box. It references a Reserve box (the collateral backing), contains a value in ERG or tokens, an expiry block height, and an optional acceptance predicate. Notes can be transferred between agents without any issuer involvement — whoever holds the Note can redeem it against the Reserve. The acceptance predicate encodes conditions that must be true at redemption time, enabling trustless payment-for-task flows without off-chain oracles. ChainCash is the production implementation of the Note protocol on Ergo mainnet.
Agent payment for API call with task hash acceptance predicate
Community currency note backed by shared ERG Reserve
Sub-agent credit issued by orchestrator within credit limit
Deferred payment: Note issued now, redeemed after task completion
A Note box in Ergo typically uses registers: R4 = reserve box ID (to verify collateral), R5 = expiry block height, R6 = acceptance predicate hash or inline script. The spending script verifies HEIGHT < R5, that the redemption transaction includes the correct Reserve box, and that any acceptance conditions are satisfied. The Tracker box is also included in the redemption transaction to prevent double-spend.
Common questions about this topic
This is not financial advice. Ergo has strong fundamentals: fair launch (no VC dump risk), innovative technology (eUTXO, Sigma Protocols, NiPoPoWs), active development, and a cypherpunk ethos. It's a smaller market cap project with higher risk/reward than established chains. Research thoroughly, understand the technology, and never invest more than you can afford to lose.
Start by getting a wallet (Nautilus for browser, Terminus for mobile). Back up your seed phrase securely offline. Get some ERG from an exchange (Gate.io, KuCoin) or DEX (Spectrum). Make a test transaction. Then explore: try DeFi on Spectrum, check out NFTs, or dive into the technology if you're a builder.
Connect your Nautilus wallet to Spectrum Finance, select tokens to swap, review the rate and slippage, then confirm. Spectrum uses AMM liquidity pools for instant trades. You can also provide liquidity to earn fees. All trades are atomic - they complete fully or not at all, with no front-running possible.
NiPoPoWs (Non-Interactive Proofs of Proof-of-Work) are cryptographic proofs that compress blockchain history. Instead of downloading gigabytes of blocks, light clients can verify the chain with just kilobytes of data. This enables true trustless light wallets, efficient cross-chain bridges, and sidechains - all without trusting third parties.