Last updated: June 1, 2026
Tradoor is an automated market making aggregator for perpetual futures. It lets non-technical users run a maker bot across multiple venues from a single web interface, without operating any infrastructure.
Tagline: Trade close to your edge.
Tradoor is best categorized as a Perp Aggregator: it does not custody user funds and does not operate its own order book. Instead, it submits quotes and orders on behalf of users on third-party perpetual venues, attributing volume to a builder code so that fee rebates and analytics are tracked at the protocol level.
The flow for a single user session:
Tradoor stores per-user runtime metrics, PnL history and configuration on its own servers. It does not store funds, custody assets, or operate any smart contract of its own.
Tradoor connects to five perpetual venues today:
| Venue | Chain / settlement | Builder address | Builder ID |
|---|---|---|---|
| Hyperliquid | Hyperliquid L1 | 0x92345453cE2000642d7D4ceeae4FcCC6c2E41d23 |
default |
| Kinetiq (HIP-3) | Hyperliquid L1 | 0x92345453cE2000642d7D4ceeae4FcCC6c2E41d23 |
default |
| Trade.xyz | Hyperliquid L1 (TradFi synthetics) | 0x92345453cE2000642d7D4ceeae4FcCC6c2E41d23 |
default |
| Nado | Ink (Optimism Superchain L2) | 0x92345453cE2000642d7D4ceeae4FcCC6c2E41d23 |
2800 |
| Extended | Starknet | 0x145498F409F3952bCb9ab14Be8fF02e4F590becc |
4175 |
Tradoor takes a share of the maker rebate generated by user bots on each venue. There is no deposit fee, no custody fee, and no subscription.
Discount eligibility is checked on demand by reading the holder's balance on HyperEVM at the contract addresses listed in section 5.
Points are the footprint of your activity on Tradoor. Every position your bot opens, every week you stay active, and every user you bring along leaves a mark, recorded as points. They are a living record of who showed up early and kept building.
Three forms of activity move your points balance:
Season 1 begins on Tuesday, June 2, 2026.
To reward early users, 26,000 points have already been distributed retroactively to those who were active before Season 1. If you were here before the spotlight, that loyalty is now written into the ledger.
Tradoor itself deploys no smart contracts. The on-chain identifiers it interacts with are:
| Role | Chain | Address |
|---|---|---|
| Builder (HL / Kinetiq / Trade.xyz / Nado) | Hyperliquid L1 + Ink | 0x92345453cE2000642d7D4ceeae4FcCC6c2E41d23 |
| Builder (Extended) | Starknet | 0x145498F409F3952bCb9ab14Be8fF02e4F590becc |
| Hypurr fee-discount NFT (ERC-721) | HyperEVM | 0x9125E2d6827a00B0F8330D6ef7BEf07730Bac685 |
| Hypurr Echo Edition (ERC-1155) | HyperEVM | 0xc3a23a3fe8eb79213b8c3f11618af2218ad3a7ff |
RPC used for NFT balance reads: https://rpc.hyperliquid.xyz/evm
The numbers are computed from per-session pnl_history records stored server-side. Each completed session emits a session_volume_usd field equal to the cumulative notional of every fill on the bot's account during that session, attributed to Tradoor's builder code.
Aggregation rules:
|px × sz| summed across user_fills_by_time for HL-side venues, balance delta for Nado). This is one-sided volume in the aggregator sense, the same convention DefiLlama uses for DEX aggregators.daily_fees_usd and represents Tradoor's gross fee share, not the venue fee.The canonical machine-readable source is the public endpoint described in the next section.
Two endpoints are publicly readable, JSON, no authentication, CORS open. They are intended for use by external analytics platforms (DefiLlama, OLI consumers, partner dashboards).
Aggregate snapshot: daily volume, daily fees, all-time totals, active users, top wallets (anonymized).
$ curl https://tradoor0.xyz/api/admin/stats/overview
{
"unique_connected_addresses": 0,
"active_users": 0,
"daily_volume_usd": 0.0,
"daily_fees_usd": 0.0,
"all_time_volume_usd": 0.0,
"all_time_fees_usd": 0.0,
"avg_pnl_per_million_usd": 0.0,
"top_wallets": [],
"as_of": "2026-05-14T13:07:44Z"
}
Daily breakdown over N UTC days (minimum 7, maximum 180). This is the canonical source for the DefiLlama adapter.
$ curl "https://tradoor0.xyz/api/admin/stats/daily_volume?days=7"
{
"days": 7,
"series": [
{ "date": "2026-05-08", "volume_usd": 0.0, "fees_usd": 0.0 },
{ "date": "2026-05-09", "volume_usd": 0.0, "fees_usd": 0.0 },
{ "date": "2026-05-10", "volume_usd": 0.0, "fees_usd": 0.0 },
{ "date": "2026-05-11", "volume_usd": 0.0, "fees_usd": 0.0 },
{ "date": "2026-05-12", "volume_usd": 0.0, "fees_usd": 0.0 },
{ "date": "2026-05-13", "volume_usd": 0.0, "fees_usd": 0.0 },
{ "date": "2026-05-14", "volume_usd": 0.0, "fees_usd": 0.0 }
],
"daily_volume_usd": 0.0,
"daily_fees_usd": 0.0,
"all_time_volume_usd": 0.0,
"all_time_fees_usd": 0.0,
"as_of": "2026-05-14T13:07:44Z"
}
Full legal terms are in the Terms of Service.
The block below is the canonical machine-readable label record for Tradoor, intended for publication as attestations on the Open Labels Initiative. Indexers, explorers and analytics platforms may consume it as-is.
{
"owner_project": "tradoor",
"usage_category": "perp_aggregator",
"website": "https://tradoor0.xyz",
"docs": "https://tradoor0.xyz/docs",
"contracts": [
{
"chain": "hyperliquid_l1",
"address": "0x92345453cE2000642d7D4ceeae4FcCC6c2E41d23",
"role": "builder"
},
{
"chain": "ink",
"address": "0x92345453cE2000642d7D4ceeae4FcCC6c2E41d23",
"role": "builder"
},
{
"chain": "starknet",
"address": "0x145498F409F3952bCb9ab14Be8fF02e4F590becc",
"role": "builder"
},
{
"chain": "hyperevm",
"address": "0x9125E2d6827a00B0F8330D6ef7BEf07730Bac685",
"role": "fee_discount_nft_erc721"
},
{
"chain": "hyperevm",
"address": "0xc3a23a3fe8eb79213b8c3f11618af2218ad3a7ff",
"role": "fee_discount_nft_erc1155"
}
]
}