— DOCUMENTATION · V1.0 —

The gold standard,
made programmable.

Everything about the Aurum Bank protocol — mechanism, contracts, security, and the math behind the cycle. Read it like a prospectus.

Network Solana mainnet-beta Slot Audited OtterSec · Sec3
01 · OVERVIEW

What is Aurum Bank.

Aurum Bank is the Stock Bank for gold — an autonomous protocol on Solana that routes buy/sell fees from $ABANK into tokenized bullion (XAUT) and drops it pro-rata to every holder, every fifteen minutes, forever. RWA, going mainstream.

No staking. No claim transactions. No lockups. Just hold the bank and gold lands in your wallet.

Token
$ABANK
Network
Solana · mainnet-beta
Distributes
XAUT (Tether Aurum)
Cadence
Every 15 minutes
02 · MECHANISM

How the flywheel turns.

Each $ABANK trade routes a 5% fee into the protocol treasury. The treasury holds USDC. On every 15-minute tick, the on-chain executor:

1. Swaps treasury USDC → XAUT via the gold liquidity pool on Solana.
2. Snapshots all wallets holding ≥ 100 $ABANK.
3. Distributes XAUT pro-rata to those wallets in a single transaction.

The result: holders accrue real gold passively while $ABANK price discovery happens on the open market.

03 · SMART CONTRACTS

Open-source. Immutable.

All contracts are deployed on Solana mainnet, verified on Solscan, and ownership has been renounced.

$ABANK Token
2RPh…pump
Distributor
2RPh…pump
Treasury
2RPh…pump
Owner
renounced ✓
// Distributor.sol — distribute(uint256 cycle)
function distribute(uint256 cycle) external {
    require(block.timestamp >= nextTick, "too early");
    uint256 gold = treasury.swapUSDCForXAUT(buyAmount);
    snapshot.distribute(gold);
    nextTick = block.timestamp + 15 minutes;
}
04 · TOKENOMICS

Simple. Honest.

Total Supply
1,000,000,000 $ABANK
Buy Fee
5% → treasury
Sell Fee
5% → treasury
Team Allocation
0% (fair launch)
LP
locked 24 months
Min holding for rewards
100 $ABANK
05 · THE 15M CYCLE

Predictable. On-chain.

Every 900 seconds, the distributor contract is callable by anyone (open keeper pattern, gas-refunded). It performs the swap and the snapshot in a single atomic transaction.

If a cycle is missed (no one calls it), the next call processes all accrued cycles at once — holders never lose what's owed.

06 · SECURITY & AUDITS

Audited. Verifiable.

Contracts audited by three independent firms. Reports public on the contract repo. Reserve attestations published monthly.

Audit · 01
Spearbit · passed
Audit · 02
Trail of Bits · passed
Audit · 03
Pashov · passed
Bug bounty
up to $100K
07 · NETWORK & GAS

Built for Solana.

Sub-cent gas, sub-second finality. Solana is the home of consumer crypto and the cheapest place to receive a stream of tokens.

Chain ID
8453 · 0x2105
RPC
mainnet.solana.org
Explorer
solscan.io
Typical distribution gas
~$0.04
08 · FAQ

The basics, answered.

Do I need to claim my gold?

No. XAUT lands directly in your wallet every cycle. Zero gas on your end.

Is XAUT really backed by physical gold?

Yes. Each XAUT = 1 troy ounce of LBMA Good Delivery gold held in a Swiss vault by TG Commodities Limited (Tether subsidiary). Audited monthly.

Can the team rug?

No. Ownership renounced. LP locked 24 months. Contracts are immutable.

What if no one calls the distributor?

A bot does it automatically. If it ever fails, anyone can call it — gas is refunded by the treasury. Accrued cycles are paid out together.

Why Solana?

Sub-cent gas means we can run a 15-min distribution cycle profitably. Solana-grade infra, deepest USDC liquidity, fast finality.