Skip to main content

Venues & Transports

QTG supports two families of transfer lanes: CEX lanes for exchange-to-exchange transfers, and Bridge lanes for on-chain cross-chain transfers. Each lane compiles into a specific DAG shape with a known number of steps. You can combine lanes into multi-hop routes when a single lane cannot reach the destination.

CEX Lane

A CEX lane moves funds between two exchange accounts using the exchanges’ own withdrawal and deposit infrastructure. Every CEX transfer compiles into the same 3-node pipeline:
  1. Withdraw — QTG calls the source exchange’s withdrawal API with the destination address, amount, and any required fields (memo, network, travel rule data).
  2. Observe Withdrawal — QTG polls the source exchange until the withdrawal is confirmed as sent. This catches rejections, holds, and AML review states.
  3. Observe Deposit — QTG polls the destination exchange until the deposit arrives and is credited. The transfer is not marked complete until the funds are confirmed on the receiving side.
The 3-node pipeline means QTG tracks both sides of the transfer. If an exchange holds a withdrawal for review, you will see it in the observe step rather than wondering where the funds went.

Supported CEX Venues

Exchange-Specific Considerations

Different exchanges have different quirks that QTG handles transparently:
  • Korean venues (Upbit, OKX) require travel rule fields: exchange name, receiver type, and receiver names in Korean and English.
  • Binance sub-accounts are signed through the master account’s API key. QTG never holds sub-account trading keys.
  • Bybit requires a manual internal transfer from the Unified Trading wallet to the Funding wallet before QTG can initiate a withdrawal. This is a Bybit platform requirement, not a QTG limitation.

Bridge Lane

A Bridge lane moves funds across blockchains using an on-chain protocol. Unlike CEX lanes where the exchange handles custody, bridge lanes require QTG to sign and broadcast transactions using your KMS key.

CCTP (Cross-Chain Transfer Protocol)

CCTP is Circle’s native USDC bridge. It compiles into a 5-node pipeline:
  1. Burn — QTG signs and submits a USDC burn transaction on the source chain via your KMS.
  2. Attest — QTG waits for Circle’s attestation service to confirm the burn.
  3. Mint — QTG submits the mint transaction on the destination chain using the attestation proof.
  4. Observe Receipt — QTG confirms the destination address actually received the USDC, matching amount and token contract.
  5. Observe Finality — QTG waits for the mint transaction to reach finality.
CCTP is live on mainnet (Base, Arbitrum) with V2 support. CCIP is a Free bridge lane for cross-chain token transfers signed via KMS. It runs through a sidecar client when MG_CCIP_ENABLED is set.

USDT0 / LayerZero

USDT0 is a Free bridge lane built on LayerZero V2’s OFT standard. QTG signs and broadcasts the OFT send transaction via KMS, then observes destination delivery. It is enabled with MG_USDT0_ENABLED.

Circle Gateway

Circle Gateway provides a managed deposit and transfer flow through Circle’s infrastructure. Live with balance and movement tests.

Hyperliquid

Hyperliquid transfers use CCTP-backed mainnet topup and drain flows, signed via KMS. This is how you move funds into and out of Hyperliquid’s L1 from EVM chains.

Stargate (Pro)

Stargate is a Pro bridge lane. It is part of the Pro package, enabled through Pro configuration, and is not part of the Free distribution.

Bridge Lane Summary

Choosing the Right Lane

Multi-Hop Routes

Some transfers require combining lanes. For example, moving USDC from Upbit to Hyperliquid might require:
  1. CEX lane: Withdraw USDC from Upbit to Arbitrum
  2. Bridge lane: Topup Hyperliquid from Arbitrum via CCTP
QTG templates can express multi-hop routes as a single DAG. The nodes execute in dependency order — the bridge step waits for the CEX withdrawal to complete before starting.
For the full executor architecture and implementation details, see Executors Overview. For details on the CEX 3-node pipeline internals, see CEX Lane. For bridge lane internals, see CCTP Lane and CCIP Bridge. The Stargate (Pro) lane is documented separately in the Pro reference.