Developer DocsAPI & Architecture
Watch. Copy. Grow.
Complete reference documentation for the Bloatbot non-custodial copy engine, SDKs, and REST API.
Getting Started
Quickstart in 4 Easy Steps
01
Connect Wallet
Link your wallet in one click. 100% read-only, non-custodial, revocable.
02
Select Targets
Paste any public on-chain address or choose from verified leaderboard wallets.
03
Configure Limits
Set max position size in SOL/ETH, dynamic trailing stop-loss, and per-trade caps.
04
Automatic Execution
Bloat engine listens to raw mempools and executes identical trades sub-second.
Developer Reference
Programmatic Copy API
Execute copy rules, stream mempool signals, and configure automated risk parameters via SDK.
solana
import { Connection, PublicKey } from '@solana/web3.js';
import { BloatClient } from '@bloatbot/sdk';
const client = new BloatClient({ apiKey: process.env.BLOAT_API_KEY });
// Subscribe to real-time copy stream of top whale
const sub = await client.copy.watch({
chain: 'solana',
address: '7a3f89...9c2d',
multiplier: 1.0,
maxSolPerTrade: 2.0,
onTradeCopied: (trade) => console.log('Copied on-chain:', trade.signature)
});Common Questions
Public on-chain data only: native balance, SPL/ERC20 token balances and recent transaction histories. We never request private keys or withdrawal approvals.