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 an open-source prototype reference implementation of the Note protocol on Ergo — testnet-first, not audited, not production-ready.
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.
Providing liquidity on Ergo depends on the current active DEX or AMM venue. In general, you deposit equal value of two assets into a pool, receive LP tokens representing your share, and earn a portion of trading fees. Spectrum Finance is historical/frozen since February 2024, so verify the active venue, contracts, liquidity depth, and withdrawal process before depositing funds.
Start by getting a wallet (Nautilus for browser, Terminus for mobile). Back up your seed phrase securely offline. Get some ERG from a current exchange or verified venue, then make a small test transaction. After that, explore NFTs, mining, DeFi references, or the developer stack if you're a builder.
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.