Dashboard
Vaults
DAO
Analytics
Security
Protocol Dashboard
Overview · OP_NET Testnet
BTC
ETH
Total Value Locked
$48.2M
↑ 12.4% this epoch
Total Stakers
14,823
↑ 847 new today
Rewards Distributed
2.14M PILL
↑ 38K this epoch
Active Positions
38,491
↑ 2.1K this week
🧪
OP_NET Testnet — Get Test Tokens
Claim 1,000 PILL tokens to start testing the protocol
TVL Growth Last 30 days
Live Activity
LIVE
Vault Utilization % capacity
Reward Emissions PILL / epoch
Genesis Vault
GENESIS
Flexible staking, no lock period
4.5%
Annual Percentage Yield
Lock Period
Flexible
TVL
$18.4M
Stakers
8,241
Min Stake
10 PILL
Strategist Vault
STRATEGIST
Fixed staking, 14-day commitment
12.8%
Annual Percentage Yield
Lock Period
14 Days
TVL
$21.7M
Stakers
4,392
Min Stake
50 PILL
Oracle Vault
ORACLE
Premium vault, 30-day commitment
38.5%
Annual Percentage Yield
🔮 2× Governance Multiplier
Lock Period
30 Days
TVL
$8.1M
Stakers
2,190
Min Stake
100 PILL
Your Voting Power: 0 PILL
🔮
Oracle Vault: 2× Governance Multiplier Active
Stake in the Oracle vault to double your voting power on all proposals
Protocol Revenue
$284K
↑ 18.2% MoM
Avg. APY Weighted
16.3%
↑ 1.2pp
PILL Price
$0.284
↑ 8.4%
Governance Votes
42,900
↑ 12.8%
BTC / ETH Prices Live from CoinGecko · 10s
Bitcoin
loading...
Ethereum
loading...
Vault Distribution
🔒
Non-Custodial
You retain full ownership of your assets at all times. Aura Finance smart contracts never take custody — your keys, your coins, always.
Secured by Bitcoin L1
Built on OP_NET, all staking positions are anchored to Bitcoin's proof-of-work consensus — the most battle-tested security in crypto.
📋
Transparent Contracts
Every line of the AuraStaking contract is open source. No proxies, no upgradeable logic. What you see is what runs — verified on OP_NET Explorer.
🛡
Audited Protocol
Smart contracts have undergone independent security reviews. All critical math uses SafeMath libraries with overflow protection enabled.
Emergency Pause
A multi-sig protected emergency pause allows the DAO to halt staking & unstaking in the event of a critical vulnerability, protecting user funds.
DAO Governed
All protocol parameter changes — APY adjustments, fee structures, vault additions — must pass a full governance vote with 72-hour timelock.
Contract Addresses — OP_NET Testnet
AuraStaking.ts
Staking Protocol
0x4f8a...c931 View Explorer ↗
PILL Token
Governance & Reward Token
0x8b2d...7f14 View Explorer ↗
What is Aura Finance?
Aura Finance is a non-custodial staking protocol built on OP_NET, providing institutional-grade Bitcoin liquidity infrastructure. Users can stake PILL tokens across three vaults with varying risk/reward profiles.
Getting Started
1. Install OPWallet browser extension from the official OP_NET website.
2. Switch to OP_NET Testnet in your wallet settings.
3. Claim test PILL tokens using the faucet on the Dashboard page.
4. Navigate to Staking Vaults and choose a vault that matches your strategy.
// Example: Stake 100 PILL in GENESIS vault (vault index 0) await auraStaking.stake(0, 100_00000000n); // 100 PILL with 8 decimals // Claim accumulated rewards await auraStaking.claimRewards(0); // Enable auto-compounding await auraStaking.toggleAutoCompound(0);
Vault Specifications
GENESIS Vault | APY: 4.5% | Lock: None | Min: 10 PILL STRATEGIST | APY: 12.8% | Lock: 14 days | Min: 50 PILL ORACLE Vault | APY: 38.5% | Lock: 30 days | Min: 100 PILL | 2× governance multiplier
Deploy to OP_NET Testnet
npm install @btc-vision/opnet @btc-vision/btc-runtime npm install -g @btc-vision/opnet-cli # Compile contract opnet compile ./contracts/AuraStaking.ts # Deploy to testnet opnet deploy --network testnet --contract ./dist/AuraStaking.wasm # Verify opnet verify --network testnet --address <DEPLOYED_ADDRESS>
Reward Calculation
reward = principal × elapsed_seconds × apy_bps ───────────────────────────────────────── seconds_per_year × 10000 Where apy_bps: GENESIS=450, STRATEGIST=1280, ORACLE=3850