Getting Started
One account. Multiple chains. Your keys.
Why Vortum?
Vortum is the first non-custodial exchange to achieve CEX-grade performance — powered by ICP's unique canister architecture.
| Feature | Description |
|---|---|
| ⚡ CEX-Grade Speed | ~400ns matching with 1-2 second finality |
| 🔐 Self-Custody | Your keys, your funds — no counterparty risk |
| 🌐 Chain Fusion | Native BTC, SOL, ICP — no bridges or wrapped tokens |
| ✅ Fully On-Chain | All execution happens in ICP canisters |
Built on ICP
Vortum leverages Internet Computer's unique capabilities: web-speed smart contracts, Chain Fusion for native multi-chain, and threshold cryptography for secure key management.
Quick Start
Install the SDK
bash
npm install @vortum/sdkbash
pnpm add @vortum/sdkbash
yarn add @vortum/sdkConnect and Trade
typescript
import { VortumClient } from '@vortum/sdk'
// Connect
const client = await VortumClient.create()
await client.auth.loginWithII()
// Check balances
const balances = await client.wallet.getBalances()
// Place a limit order
await client.trading.placeOrder({
marketId: 'BTC-USD',
side: 'buy',
type: { limit: 50000_00000000n },
quantity: 1000000n,
})Build on Vortum
| Use Case | Description |
|---|---|
| Trading Bots | Automated strategies with programmatic access |
| Portfolio Apps | Real-time P&L, positions, and analytics |
| Custom UIs | Build your own trading interface |
| DeFi Integrations | Connect Vortum liquidity to your protocol |
Next Steps
- Performance Benchmarks — See the numbers
- SDK Reference — Complete API documentation
- Architecture — How Vortum works
- Security — Our security model