Cross-Border Settlements
Multi-currency settlements with instant FX and global reach for international operations. Accept EUR in Europe, pay USD in the US, settle GBP in the UK—all in seconds.
What You Get
A complete cross-border payment infrastructure with instant FX and local on/off-ramps.
Accept payments in EUR, USD, and GBP. Pay recipients in their local currency.
Convert between currencies in seconds via reForge with transparent rates.
SEPA in Europe, ACH in US, Faster Payments in UK—all connected to blockchain rails.
Built-in compliance for each jurisdiction with region-specific KYC/AML.
Implementation Steps
Seven steps to build global cross-border settlement infrastructure.
Enable eUSD, eEUR, and eGBP for your platform. Configure wallets and treasury management for each currency.
// Enable multi-currency support
const currencies = ['eUSD', 'eEUR', 'eGBP'];
for (const currency of currencies) {
await stablecoins.configs.enable({
asset: currency,
autoMint: true,
autoRedeem: true,
chains: ['ethereum', 'polygon']
});
}Integrate reForge for instant currency conversion. Configure rate limits and slippage tolerance.
// Execute cross-border FX
const fx = await reForge.convert({
from: 'eEUR',
to: 'eUSD',
amount: 100000, // 1,000 EUR
slippageTolerance: 0.001
});
console.log({
rate: fx.rate, // e.g., 1.085 USD per EUR
amountReceived: fx.amountReceived, // ~108,500 cents
fee: fx.fee,
settlementTime: '10-15 seconds'
});Build user flow for currency selection and conversion. Show real-time rates and estimated fees.
- Real-time rate display
- Fee breakdown transparency
- Instant settlement confirmation
Connect OpenFinance for region-specific payment rails: SEPA in EU, ACH in US, Faster Payments in UK.
// Create region-specific payment account
const account = await openfinance.accounts.create({
region: 'EU', // or 'US', 'UK'
currency: 'EUR',
type: 'virtual_iban',
holder: { name: 'John Doe', country: 'DE' }
});
// For US users
const usAccount = await openfinance.accounts.create({
region: 'US',
currency: 'USD',
type: 'ach_account',
holder: { name: 'Jane Smith', country: 'US' }
});Implement region-specific KYC/AML flows. Configure limits and requirements per jurisdiction.
- EU: GDPR compliance + SEPA regulations
- US: FinCEN compliance + state-level requirements
- UK: FCA compliance + Faster Payments
Run comprehensive testing covering all currency pairs and regions.
- Test EUR → USD conversion and settlement
- Test GBP → EUR conversion and settlement
- Test local on-ramps (SEPA, ACH, Faster Payments)
- Test local off-ramps per region
- Verify compliance per jurisdiction
Go live with global cross-border settlements. Process first international payments.
- Launch in pilot regions first
- Expand to additional regions based on demand
- Monitor FX rates and adjust spreads
Services Used
This recipe combines all three ARYZE services for complete cross-border capabilities.
Local payment rails for SEPA, ACH, and Faster Payments with region-specific compliance.
Learn MoreMulti-currency stablecoins (eUSD/eEUR/eGBP) for instant cross-border settlements.
Learn MoreInstant FX engine for converting between currencies with transparent pricing.
Learn MoreTechnical Requirements
- POST /reforge/convert
- GET /reforge/rates
- POST /v1/accounts
- POST /assets/{asset}/mint
- payment.received
- fx.converted
- asset.minted
- settlement.confirmed
- Node.js / TypeScript
- Python
Ready to Go Global with Cross-Border Settlements?
Join platforms using ARYZE for instant, multi-currency settlements with local on/off-ramps in every region.