PayOrder Flow Overview
End-to-End Payment Flow
Detailed Flow Steps
1. PayOrder Creation
const payOrder = await apiClient.createDepositPayOrder({
destination_currency: {
address: null, // null for native token
chain_id: ChainId.SUI,
},
receiving_address: "0xYourWalletAddress",
destination_amount: "10",
});2. Payment Method Selection
3. Quote Generation
4. Quote Selection & Payment Details
5. User Payment
6. Backend Execution
7. Settlement & Completion
Provider Chaining Example
Learn More
Last updated