Whitelabel trading infrastructure

Your bank, your brand.
Crypto-native infrastructure beneath.

A complete mobile + web super app - spot, perps, custody, on/off-ramp - themed to your brand and live in days. No engineering tax.

Stage Private beta Onboarding design partners
Modules 6 Spot, perps, RWAs, earn, predictions, custody
Time-to-launch ~2 weeks From kickoff to a themed white-label app
Stack One SDK Web, iOS, Android - your tokens, your domain
Beyond crypto

Tokenized assets, perps and yield - one stack.

Live across all partner deployments

BlackRock BUIDL

BUIDL · USD Money Market · daily NAV
RWA
$1.0001 NAV per share · settled 16:00 ET
Daily dividend accrual +$0.00014
MonTueWedThuFriMonTue
Underlying
T-Bills · 1–3mo 64%
Repo agreements 28%
Cash equivalents 8%
7d yield5.42%
AUM$2.84B
CustodianBNY Mellon
Subscribe to BUIDL

WTI Crude Oil

OIL-PERP · 25× max leverage · USDC margin
Perp
$84.62 +$1.53 · +1.84% 24h
● Live · 64 trades/min
Trader bias 62L · 38S
Next funding +0.0124%
02:14:38
Open int.$184M
24h vol$612M
Mark - Index+$0.04
Trade OIL-PERP

BTC > $80,000 by Jun 1, 2026

BTC-80K-JUN26 · resolves 23:59 UTC
Prediction
Yes $0.42 42% probability
No $0.58 58% probability
Yes price · 30D −6¢
Resolves in BTC now $64,128
37days 14hr 22min
Volume$2.1M
Liquidity$340K
OracleChainlink
Trade Yes / No
What you ship

Everything a modern desk expects - without the engineering tax.

Six modules · pick what you need
01
Spot & perps

Deep liquidity, sub-100ms latency, 50× leverage. White-glove onboarding for institutional flow.

320 markets
02
Custody & wallets

MPC custody, hardware key fallbacks, gas-abstracted self-custody - toggle per segment.

SOC 2 Type II
03
On / off ramp

Bank rails in 38 countries, virtual IBANs, FX desk on demand. T+0 settlement on USDC.

38 countries
04
Earn & staking

Curated yield strategies, ETH/SOL native staking, no rehypothecation by default.

4.2 - 11.8% APY
05
Compliance

KYC/KYB, travel rule, market surveillance, transaction monitoring - out of the box.

11 frameworks
06
Brand & theme

Single CSS layer - colors, type, radius. Per-segment theming. Mobile + web parity.

1 token file
Module

Highlight
Book a demo
For developers

One SDK. Web, iOS, Android.

Powered by the same engine as perps.studio. Your tokens, your domain, your sessions - we route orders, custody and settlement to Hyperliquid, Aster and more underneath.

import { createAdapter, PerpsAdapterProvider } from '@perpsstudio/perps-sdk'
import { useTrading, useMarkPrice } from '@perpsstudio/perps-sdk/hooks'

const adapter = createAdapter({
  provider: 'hyperliquid',   // or 'aster'
  account:  userAddress,
})

function Trade() {
  const { placeMarketOrder } = useTrading()
  const { price } = useMarkPrice('BTC-PERP')

  return (
    <PerpsAdapterProvider adapter={adapter}>
      <button onClick={() => placeMarketOrder({
        symbol:   'BTC-PERP',
        side:     'long',
        size:     '0.05',
        leverage: 10,
      })}>
        Long BTC at {price}
      </button>
    </PerpsAdapterProvider>
  )
}