0Bit Documentation

Cross-border liquidity

How approved partners can use 0Pools for cross-border fiat-to-stablecoin liquidity without overclaiming corridor coverage.

Cross-border products need liquidity at the border between local money and internet-native money. 0Pools gives approved partners a way to quote and execute that conversion without building a full liquidity desk inside their product.

Before and after

Before 0PoolsWith 0Pools
Partner manually coordinates bank rails, exchange accounts, and stablecoin wallets.Partner calls an approved pool quote and tracks one trade lifecycle.
Corridor availability is buried in operations chat.Entitled pools and capabilities drive product UI.
Users see uncertain rates.Users see a time-limited firm quote.
Finance reconciles from multiple sources.Finance joins quote, trade, balance, event, and request ids.

Example flow

Good use cases

Use caseWhy 0Pools helps
Contractor payoutsPartner can fund stablecoin delivery with quote/state records.
Treasury movementBusiness can move between fiat and stablecoin inventory with audit trail.
Marketplace settlementPlatform can quote approved corridors before committing user balance.
Wallet fundingNative wallet UX can hide liquidity operations while preserving status.

Guardrails

  • Do not claim global coverage.
  • Do not show unsupported countries or currencies.
  • Do not promise settlement timing unless approved.
  • Do not expose provider or bank route details.
  • Do not update user balance until terminal state.

Records to keep

Store source currency, destination asset, network, destination address, quote id, trade id, status, request id, and user order id.

Cross-border operating model

0Pools is not a country-coverage claim by itself. It is an infrastructure layer that can support approved corridors by giving the partner a consistent conversion and status lifecycle.

Example product patterns

PatternHow 0Pools fitsWhat remains outside 0Pools
Freelancer payoutConverts source fiat value into stablecoin for an approved destination workflow.Recipient onboarding, local tax/disclosure, payout policy.
Marketplace seller settlementGives the platform a quoted conversion before updating seller balance.Marketplace ledger and seller support rules.
Neobank cross-border balanceConverts fiat wallet value into a stablecoin balance or next-hop asset.Account model, card/banking UX, compliance decisions.
Treasury corridorLets a business move approved liquidity between fiat/stablecoin positions.Treasury policy, approvals, internal accounting treatment.

User experience before and after

User problem before 0PoolsProduct pattern with 0Pools
"What rate am I getting?"Show a quote with rate, fees/spread where returned, and expiry.
"Why did the amount change?"Require fresh quote after expiry; preserve accepted quote terms.
"Where is my transfer?"Map trade status into pending, completed, failed, or support-review states.
"Who can trace this?"Give support one joined record chain: order, quote, trade, event, ledger.

Corridor review checklist

  • Is the partner approved to own the customer journey?
  • Is the pool entitled for this partner and environment?
  • Are the side, network, amount limits, and destination rules enabled?
  • Is user-facing corridor copy reviewed by product/compliance?
  • Does finance know which ids close the reconciliation loop?
  • Is the failure/return state mapped before launch?

Do not launch a new cross-border corridor by editing copy alone. It needs entitlement, liquidity, compliance, monitoring, support, and reconciliation review.

Corridor implementation model

A corridor is a product promise only when the partner is approved for the relevant pool, side, country/user profile, asset, network, limits, and settlement model.

Corridor fieldExampleProduct rule
Source currencyEURFormat and validate source amount.
Destination assetUSDTExplain stablecoin outcome.
NetworkpolygonValidate destination.
SidebuyDo not show unsupported off-ramp flows.
Limit band50 to 25000Pre-validate before quote.
AvailabilityRuntime responseDo not promise always-on corridor access.

Corridor scenario

{
  "corridor": "EUR-to-USDT",
  "sender_country": "FR",
  "product": "contractor_payout_wallet",
  "pool_id": "EUR-USDT",
  "network": "polygon",
  "quote_id": "pq_live_01J4",
  "status": "reserved"
}

Social infrastructure claim discipline

It is safe to say 0Pools helps approved products reuse liquidity infrastructure. Do not claim universal country coverage, guaranteed settlement time, or unlimited volume unless that exact promise is approved for the partner surface.

Implementation depth

This page is about using 0Pools in cross-border products without overclaiming corridor coverage. For developers, the durable boundary is simple: your product should depend on approved corridor-like pool lanes, quote terms, status, and ledger outcomes; it should not depend on settlement partners, source depth, and route mechanics per corridor. That boundary is what lets 0Pools improve liquidity operations without forcing every partner to rebuild product code.

Product scenario

A remittance app lets a sender fund EUR and deliver stablecoin value to a recipient-side wallet or balance. The product uses 0Pools for bounded conversion and keeps local payout logic separate.

Before and after in practice

Before 0PoolsWith 0Pools
Each country pair becomes a bespoke payment project with unclear quote and reconciliation records.The app uses the same pool lifecycle for the conversion layer and builds local experience around the returned states.
Product teams infer liquidity behavior from provider-specific screens or manual notes.Product teams branch on 0Pools objects: pool, quote, trade, balance, webhook, and ledger.
Support asks engineering to reconstruct state from logs.Support starts from request id, quote id, trade id, event id, and ledger id.

System flow

Records to keep

RecordWhy it mattersExample
corridor_labelProduct label, not a universal promise.EU to stablecoin
pool_idActual 0Pools lane used.EUR-USDT
recipient_referencePartner-side recipient id.recipient_123
delivery_stateYour product delivery outcome.credited

A useful implementation stores these records before adding optional analytics. Analytics can be rebuilt from durable state; missing ids usually cannot be reconstructed after a customer-impacting failure.

Example product record

{
  "product_area": "cross-border-liquidity",
  "partner_reference": "partner_order_123",
  "pool_id": "EUR-USDT",
  "quote_id": "pq_test_123",
  "transact_id": "pt_test_456",
  "status": "reserved",
  "request_id": "req_01HZY0POOLS",
  "reconciliation_state": "open"
}

This record is intentionally partner-facing. It references 0Pools objects and your own product ids, but it does not include private liquidity routes, treasury balances, raw provider payloads, or customer secrets.

Failure modes and recovery

Failure modeProduct response
Unsupported corridor shownRender only approved lanes.
Payout promise tied to pool quoteSeparate conversion state from local delivery.
FX claim too broadUse quote-specific terms.
Missing recipient ledgerJoin partner recipient records to trade ids.

Use-case patterns

PatternHow 0Pools helps
RemittanceConvert sender fiat to stablecoin-backed value.
Global payrollFund worker balances across markets.
Marketplace sellersPrepare stablecoin liquidity for payouts.

Developer checklist

  • Read runtime discovery and capabilities before rendering enabled actions.
  • Create firm quotes only when the user is ready to accept the terms.
  • Execute from your server with an idempotency key.
  • Treat webhooks and status reads as the source of truth for settlement state.
  • Reconcile by durable ids first, then by amount and timestamp.
  • Do not branch product behavior on provider names, route names, reserve balances, or treasury assumptions.

On this page