Overview
Real-time metrics · OP_NET Testnet · Updated live
💰 Total Raised
0 tBTC
▲ +14.2% this week
🚀 Active Pools
0
▲ 2 launching soon
👥 Participants
0
▲ +842 today
🏦 TVL Staked
$0M
▲ +6.8% this week
Fundraising Volume (tBTC)
Raised
Target
Participant Growth
Live
Top Funded Projects
Live Market Data
CoinGecko
| Asset | Price | 24h | Mkt Cap |
|---|---|---|---|
| Fetching live data… | |||
Launchpad Pools
Discover & participate in Bitcoin DeFi launches on OP_NET
Stake & Earn
Lock PULSE tokens to boost launch allocations & earn staking rewards
Bronze
1× Alloc
Min: 100 PULSE
Base allocation. Access all public pools. Early whitelist notifications.
Silver
1.5× Alloc
Min: 1,000 PULSE
1.5× allocation. Priority pool access. Reduced platform fees. Community voting rights.
Gold
2× Alloc
Min: 10,000 PULSE
Maximum 2× allocation. Guaranteed spots. Zero fees. Private deal access. DAO advisory.
Stake PULSE Tokens
PULSE
Current TierNone
After Staking—
Est. APY24.7%
Unstaking has a 7-day cooldown period
Your Staking Stats
YOUR STAKED
0
PULSE tokens
REWARDS EARNED
0.00
PULSE earned
PLATFORM TVL
$48M
USD equivalent
ACTIVE STAKERS
4,821
on OP_NET
⚡ Rewards distributed every epoch (~50 min). Gold tier stakers earn bonus fees. All stake/unstake operations execute as real OP_NET transactions.
Live Analytics
Real-time performance across all PulseLaunch activity
Updating Live
Total Volume
$0M
▲ All-time
Projects Launched
0
▲ This quarter
Success Rate
0%
▲ Platform avg
Avg ROI
0%
▲ Post-launch
Monthly Fundraising (tBTC)
Token Distribution
Platform Growth Trajectory
Project Listings
All projects building on Bitcoin DeFi via OP_NET
Security Architecture
PulseLaunch is built on the most secure foundation in existence — Bitcoin Layer 1
🛡️
Security Score: 98 / 100
All smart contracts are open-source, audited, and verifiable on OP_SCAN. Zero admin keys. Fully non-custodial.
🔐
Non-Custodial
PulseLaunch never holds your assets. All funds flow directly through immutable smart contracts. Your private keys remain yours at all times — we have zero access.
⛓️
Bitcoin Layer 1 Security
OP_NET runs on Bitcoin's Layer 1, inheriting 15+ years of battle-tested Proof-of-Work security. The most immutable, censorship-resistant foundation in crypto.
📜
Transparent Contracts
All launchpad contracts are open-source and publicly audited. No admin keys, no upgradeable proxies, no backdoors. Code is law — immutable and verifiable by anyone.
🔍
Verifiable on OP_SCAN
Every transaction is traceable on OP_SCAN — Bitcoin's OP_NET block explorer. Full transparency from satoshi deposit to token distribution with complete on-chain audit trails.
Deployed Contract Addresses (Testnet)
LAUNCHPAD FACTORY
tb1p…pulse…launch…factory
PULSE STAKING CONTRACT
tb1p…pulse…staking…v1
PULSE TOKEN (OP-20)
tb1p…pulse…token…op20
Documentation
Integration guides, smart contract reference, and deployment instructions
🚀 What is PulseLaunch?
PulseLaunch is the premier DeFi launchpad on OP_NET — Bitcoin's native smart contract layer. New projects raise funds transparently, distribute tokens fairly, and bootstrap communities without custodians or intermediaries.
⚡ Wallet Connection
PulseLaunch integrates directly with OP_WALLET — the official Bitcoin DeFi wallet for OP_NET. The wallet injects a provider into the browser that we detect and call.
- Install OP_WALLET from the Chrome Web Store
- Create or import a Bitcoin wallet (Taproot address)
- Switch to "Testnet 3" in wallet settings
- Click "Connect OP_WALLET" in PulseLaunch sidebar
- Approve the connection request in the wallet popup
- Get tBTC from faucet.opnet.org
🔧 OP_NET Integration
OP_NET is a meta-protocol on Bitcoin enabling Turing-complete smart contracts using AssemblyScript (TypeScript-like). All PulseLaunch contracts use OP-20 — Bitcoin's equivalent of ERC-20. Transactions are real Bitcoin transactions with inscribed calldata.
📝 Contract Interaction Code
// Vanilla JS OP_NET wallet integration
// OP_WALLET injects window.opnet (Bitcoin provider)
const getProvider = () => {
return window.opnet ||
window.bitcoin ||
window.unisat; // fallback
};
// Connect wallet
const provider = getProvider();
const accounts = await provider.requestAccounts();
console.log('Address:', accounts[0]);
// Get balance
const balance = await provider.getBalance();
console.log('tBTC balance:', balance);
// Sign & broadcast OP_NET transaction
const tx = await provider.sendBitcoin(
recipientAddress,
amountInSats,
{ feeRate: 10 }
);
console.log('TX:', tx);
🌐 Testnet Deployment
# Install OP_NET toolchain
npm install -g @btc-vision/opnet-cli
npm install @btc-vision/walletconnect
# Configure Testnet 3
opnet config --network testnet3
opnet wallet import --key YOUR_PRIVATE_KEY
# Deploy LaunchPool contract
opnet deploy ./LaunchPool.ts \
--name "NovaBTC" \
--symbol "NBTC" \
--hardcap 1000 \
--softcap 200
# Verify on OP_SCAN
open https://opscan.org/tx/TX_HASH