Method Signature
Parameters
string
required
The unique customer identifier
string
required
The unique transfer identifier
Example
Related Methods
Create Transfer
Create a cross-chain transfer
Complete Transfer
Submit tx hash
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieve cross-chain transfer details and status
align.crossChain.getTransfer(
customerId: string,
transferId: string
): Promise<CrossChainTransfer>
const transfer = await align.crossChain.getTransfer(
"123e4567-e89b-12d3-a456-426614174000",
"xc_123e4567-e89b-12d3-a456-426614174000"
);
console.log(`Status: ${transfer.status}`);
console.log(
`Source: ${transfer.source_network} → ${transfer.destination_network}`
);