OpenChainGraph Suite · Remittance and FX Corridors · Guide Hub

Remittance Corridors and Stablecoin Economics

Three composable tools for the full remittance stack: mandatory CFPB Reg E subpart B disclosure arithmetic, World Bank RPW corridor cost benchmarking against the SDG 10.c 3% target, and stablecoin corridor all-in economics (Felix/Circle USDC case study). Run them standalone or chain them for end-to-end compliance plus cost analysis.

Audience
Compliance officers verifying Reg E pre-transfer receipt fields (12 CFR 1005.31/1005.32). Fintech product and payments engineers building USDC remittance corridors. Policy analysts tracking SDG 10.c 3% corridor cost targets. MCP agent pipelines needing deterministic, auditable remittance arithmetic.
01

The Remittance Cost Problem

Sending money across borders costs too much. The World Bank Remittance Prices Worldwide (RPW) database tracks average total costs per corridor every quarter. The Q1 2026 global SmaRT average sits at 6.36% of the send amount. The UN Sustainable Development Goal 10.c (SDG 10.c) calls for reducing costs to 3% or below by 2030. Most corridors are still 2x above that target.

The cost comes from two sources: the provider fee (flat or percentage) and the FX markup (the spread between the rate applied and the interbank mid-market rate). Transparency of both is the core of CFPB Reg E subpart B, which requires senders to receive a written disclosure of the transfer amount, exchange rate, fees, taxes, and the amount that will be received before each transfer.

6.36%SmaRT global avgRPW Q1 2026
3.0%SDG 10.c targetUN 2030 Agenda
2.99%US-MX $500 avgRPW Q1 2026
18Corridors in RPW tableThis tool set

FX markup alone accounts for roughly 35% of traditional MTO corridor cost, yet it is invisible to consumers who only see the displayed rate. The World Bank RPW methodology captures it explicitly: total_cost_pct = fee_pct + fx_margin_pct, where fx_margin_pct = (mid_rate - applied_rate) / mid_rate. This is the field set replicated in compare_corridor_cost.

02

The Felix Case Study

Felix is the send-to-Mexico product built on Circle USDC and the Stellar network, with Bitso handling Mexican peso off-ramp and SPEI local rail delivery. It demonstrates how a stablecoin corridor can achieve costs well below both the RPW corridor average and the SDG 3% target at typical consumer send amounts.

Felix / Circle USDC Corridor · US to MX · Reference Case
USD cash or ACH Circle: USD to USDC Stellar network Bitso: USDC to MXN SPEI instant rail MXN bank account

At $1,000 send amount with a $2.99 flat fee and a competitive FX rate (17.15 vs mid 17.21), the total cost works out to approximately 0.65% -- well under the RPW $500 corridor average of 2.99% and the SDG 3% target.

$2.99Fee on $1,000
0.65%Total cost pct
2.34%Below RPW $500 avg
YESMeets SDG 3%
17,098MXN received
EXACTDisclosure type

The stablecoin rail compresses cost in two ways. First, near-zero chain fees on Stellar (fractions of a cent per transaction) replace correspondent pre-funding cost. Second, Bitso's direct liquidity access means the FX spread is tighter than a traditional MTO's banked spread. The model_stablecoin_corridor_economics tool lets you parameterise all four cost components and compute the exact break-even send amount where stablecoin rails become cheaper than a traditional MTO benchmark.

Break-Even Logic

Break-even occurs where the fixed chain fee per transaction is outweighed by the variable cost savings vs traditional MTO. Formula: break_even = chain_fee_usd * 100 / (mto_cost_pct - stablecoin_variable_pct). With Stellar fees near $0.01 and a 6% MTO baseline, break-even occurs around $1.00 -- meaning stablecoin rails are cheaper for virtually all consumer send amounts.

03

Reg E Subpart B: What the Disclosure Requires

Any person who provides remittance transfers in the normal course of business is a remittance transfer provider under CFPB Reg E subpart B (12 CFR 1005.30 et seq.). Before each transfer is made, the provider must give the sender a written disclosure containing specific fields.

Disclosure FieldReg E CitationTool Output Field
Transfer amount (in USD)12 CFR 1005.31(b)(1)(i)transfer_amount_usd
Exchange rate12 CFR 1005.31(b)(1)(ii)exchange_rate_disclosed
Fees charged by provider12 CFR 1005.31(b)(1)(iii)provider_fee, third_party_fees
Any taxes collected12 CFR 1005.31(b)(1)(iv)taxes
Total amount to sender12 CFR 1005.31(b)(1)(v)total_to_sender_usd
Amount to be received12 CFR 1005.31(b)(2)amount_received_dest
Accounting identity checkยง1005.31(b) internal consistencyaccounting_identity_ok

The estimate_permissible flag governs which statutory path applies. Under 12 CFR 1005.32, a provider may use estimates if it cannot determine the exact exchange rate at the time of disclosure (e.g., certain banking institution exemptions or situations where the exchange rate fluctuates). When estimate_permissible=true, disclosure_type is set to ESTIMATED. The gated chain remittance-disclosure-and-corridor-cost gates on this flag: if true, the chain exits after the disclosure step with the ESTIMATED receipt. If false (the default exact-disclosure path), it proceeds to corridor cost benchmarking.

Anchor Surface

The anchor_surface field in compute_remittance_disclosure output points to https://anchor.ainumbers.co/mcp. This enables a pre-transfer tamper-evident receipt: the disclosure artifact can be timestamped immediately after computation, creating a verifiable record for 12 CFR 1005.33 error-resolution purposes without storing any PII.

04

Tools in This Cluster

Three OCG nodes cover the remittance and FX-corridor space. Each is standalone via MCP or browser, and they compose naturally via the two chains below.

ART-248 · Compliance Mandate
Computes all required CFPB Reg E 1005.31/1005.32 disclosure fields: transfer amount, exchange rate, destination amount, fees, total to sender, disclosure type (EXACT or ESTIMATED), and accounting identity check. Gate node for the Reg E chain. Anchor surface for pre-transfer timestamping.
12 CFR 1005.3112 CFR 1005.32Gate NodeZero PII
ART-249 · Analytics Mandate
Benchmarks total cost (fee % + FX margin %) against the World Bank RPW Q1 2026 snapshot for 18 major corridors, the SmaRT global average (6.36%), and the SDG 10.c 3% target. Returns meets_sdg_target, vs_rpw_benchmark, cost_at_200_usd, cost_at_500_usd.
World Bank RPW Q1 2026SDG 10.cSmaRT 6.36%Zero PII
ART-250 · Analytics Mandate
Models the all-in cost of a USDC-based remittance corridor: on-ramp fee, chain/gas fee, off-ramp/local-rail fee, FX spread, and pre-funding float savings. Returns gross/net cost in bps and %, savings vs traditional MTO, and break-even send amount. Rail-agnostic; Felix/Circle defaults.
USDC CorridorFelix/CircleBreak-EvenRail-Agnostic
05

Runnable Chains

Two OpenChainGraph chains compose the tools above into end-to-end workflows.

Chain · Gated · 2 Steps · Compliance
Reg E disclosure arithmetic (art-248), gated on estimate_permissible. If true: chain exits with ESTIMATED receipt (12 CFR 1005.32 path). If false (default): proceeds to corridor cost benchmarking against RPW Q1 2026 and SDG 10.c target (art-249). Use for Reg E exam readiness and corridor cost transparency in a single run.
Chain · Linear · 2 Steps · Analytics
USDC corridor economics (art-250) into RPW benchmarking (art-249). Both steps always run. Step 1 models all-in stablecoin cost and break-even; Step 2 benchmarks against RPW Q1 2026 and SDG 3% target. Use for competitor analysis, product costing, and SDG gap measurement.
06

Regulatory Context

Reg E Subpart B (12 CFR 1005.30 through 1005.36) was finalized by the CFPB in 2012 and applies to remittance transfers sent from the United States to foreign countries. It requires pre-transfer and receipt disclosures, error resolution within defined timelines (12 CFR 1005.33), and cancellation rights within 30 minutes. The estimate_permissible flag (12 CFR 1005.32) allows providers in certain categories to disclose estimated exchange rates under specific conditions; the exact vs estimated distinction matters for error-resolution liability.

SDG 10.c is part of the UN 2030 Agenda for Sustainable Development (Goal 10: Reduce Inequality Within and Among Countries). Target 10.c reads: "By 2030, reduce to less than 3 per cent the transaction costs of migrant remittances and eliminate remittance corridors with costs higher than 5 per cent." The World Bank RPW database is the primary tracking mechanism. As of Q1 2026, the global SmaRT average remains at 6.36%, and no major corridor has reached the 3% target through traditional MTO rails alone.

World Bank SmaRT Methodology measures total cost as the sum of fee % (provider fee as a percentage of the send amount) and FX margin % (the spread between the mid-market rate and the applied rate, as a percentage of the mid-market rate). The RPW database samples multiple service providers per corridor at $200 and $500 send amounts each quarter. compare_corridor_cost replicates this computation exactly.

Disambiguation

compare_corridor_cost uses World Bank RPW cross-corridor benchmarking (fee % + FX margin %). For protocol-specific economics, use: model_x402_settlement (x402 protocol), model_tempo_payment_economics (Tempo Network), model_arc_cpn_economics (Arc Protocol CPN). For Reg E disclosure arithmetic, use compute_remittance_disclosure.