← Back to app

Tradoor Docs

Last updated: June 1, 2026

1. Overview

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.

2. How it works

The flow for a single user session:

  1. Wallet connect: the user authenticates with a wallet signature. The signature is verified server-side and bound to a session token.
  2. Venue setup: the user funds their own account directly on the target venue (Hyperliquid, Kinetiq, Trade.xyz, Nado, Extended). Tradoor never holds user collateral.
  3. Bot launch: the user picks a symbol, leverage and parameters. The server spawns a per-user, per-slot bot subprocess.
  4. Quoting: the bot quotes both sides of the book on the chosen venue. Quote computation happens off-chain.
  5. Settlement: fills settle on the venue itself (on-chain for Hyperliquid HIP-3, Ink for Nado, Starknet for Extended).
  6. Attribution: every order is tagged with Tradoor's builder code so the venue tracks volume and any maker rebate.

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.

3. Supported venues

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

4. Fees

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.

5. Points

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.

How points are earned

Three forms of activity move your points balance:

Distribution

Season 1 begins on Tuesday, June 2, 2026.

Retroactive points

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.

Formula

The exact formula used to calculate points is kept entirely private, regardless of any user's strategy or usage. Keeping the weighting confidential protects the program from farming and keeps points a fair reflection of real activity rather than a checklist to exploit. Please do not request the precise formula.

6. Smart contracts

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

7. Volume methodology

Daily volume is the sum of user-side notional traded by Tradoor user bots across all supported venues, denominated in USD, aggregated by UTC day. Each fill is counted once on the bot user's side; the counterparty's leg is never added.

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:

The canonical machine-readable source is the public endpoint described in the next section.

8. Public stats API

Two endpoints are publicly readable, JSON, no authentication, CORS open. They are intended for use by external analytics platforms (DefiLlama, OLI consumers, partner dashboards).

GET /api/admin/stats/overview

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"
}

GET /api/admin/stats/daily_volume?days=N

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"
}

9. Risks

Full legal terms are in the Terms of Service.

10. Open Labels (OLI)

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"
    }
  ]
}