00 / Overview

Read the
instrument.

Vellum turns an ERC-20 balance into a bearer note: a transferable ERC-721 that carries the deposited amount and a chosen term, and that its current holder can redeem at any time.

What is Vellum

#

Vellum is a small, non-upgradeable vault protocol. You deposit an exact ERC-20 balance into the VellumVault contract and receive one ERC-721 token — a note. The note is the claim on that balance. Whoever holds the note can transfer it like any other NFT, and whoever holds it at the moment of redemption receives the underlying tokens.

Nothing else happens to the deposit. There are no fees, no yield strategies, no admin withdrawal path and no way to change a note after it is minted. The vault records the token, the amount and a term (a reference maturity date), then waits for the holder to claim.

STANDARDERC-721 note
CUSTODYVault-held, 1:1
TRANSFERPermissionless
CLAIMAny time, holder only
The one thing to understand

The term is metadata, not a lock. A note minted with a 90-day term is claimable in the same block it is minted. The term describes the horizon the depositor chose; it never delays redemption.

In one minute

#
01

Wrap

Approve the vault for an ERC-20 amount and call wrap(token, amount, termSeconds). The vault verifies it received exactly that amount and mints note #tokenId to you.

02

Carry

Hold the note or move it with transferFrom / safeTransferFrom. The tokens never leave the vault during a transfer; only the claim changes hands.

03

Claim

The current holder calls claim(tokenId). The note is burned and the full underlying balance is sent to the caller. A note can be claimed exactly once.

Everything the note represents is readable from the contract: positions(tokenId) returns the token, amount, maturity and claimed flag; ownerOf(tokenId) returns the current claimant; isClaimable(tokenId) tells you whether the note is still live.

Who this is for

#
  • Holders who want to move a position between wallets — or sell it OTC — without unwinding the underlying balance. Start with Using the app.
  • Counterparties who need to verify what a note actually contains before accepting it. Start with Core concepts and the contract reference.
  • Integrators building gates, collateral logic or allocation tooling on top of notes. Start with the developer guide.
  • Reviewers auditing the guarantees. Start with the security model.

Documentation map

#