Protocol Launching Q4 2026

Reserve Status

USDAO is architected to be supported by USD cash in a licensed custodian bank. Reserve status will be visible here once the protocol launches on mainnet.

On-Chain Oracle Initializing

The Chainlink Proof of Reserves oracle network is currently being configured for the USDAO mainnet launch. Live balances will appear here automatically.

Target Launch: Q4 2026
Status: Pre-Launch Initializing
Oracle Architecture

How we prove
reserves on-chain.

1

Custodian Bank Records

The licensed custodian bank provides access to verify the USD balance held for protocol backing and redemption.

2

Independent Node Verification

Multiple oracle nodes query the balance. This ensures data integrity.

3

System Consensus

Oracle nodes must reach consensus on the balance before the data is accepted on-chain.

4

Protocol Transparency

The verified balance is published to the USDAO smart contracts, accessible for public oversight.

Don't Trust. Verify.

Read the reserves yourself.

You do not need to trust our dashboard. The data lives on Ethereum and stays verifiable by anyone, forever.

Using Etherscan

  1. 1Go to the ReserveVault contract on Etherscan
  2. 2Click "Read Contract"
  3. 3Call custodianBalance() (USD held at custodian)
  4. 4Go to USDaoToken contract
  5. 5Call totalSupply() (USDAO in circulation)
  6. 6Divide: custodianBalance / totalSupply = reserve ratio

Using Code (viem)

// Read reserves on Ethereum mainnet
import { createPublicClient, http } from 'viem'
const client = createPublicClient({
chain: mainnet,
transport: http()
});
// Reads USD balance from contract
const balance = await client.readContract({
address: RESERVE_VAULT_ADDRESS,
abi: RESERVE_VAULT_ABI,
functionName: 'custodianBalance'
});
Developer Documentation
Monthly Attestations

Independent audit, every month.

Beyond the real-time oracle, an independent licensed audit firm reviews and signs off on reserve balances monthly.

Launch attestations
Monthly attestation reports will be published beginning at mainnet launch (Q4 2026). The attestation archive will be available at docs.usdao.io/attestations. All reports are signed PDFs from the independent auditor and will never be removed from the archive.