Method Signature
Example
Related Methods
Create Route
Create a new route
Get Route
Get specific route
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List all permanent cross-chain routes for a customer
align.crossChain.listPermanentRoutes(
customerId: string
): Promise<PermanentRouteListResponse>
const response = await align.crossChain.listPermanentRoutes(customerId);
console.log(`Total routes: ${response.items.length}`);
for (const route of response.items) {
console.log(`${route.source_network} → ${route.destination_network}`);
console.log(` Deposit: ${route.deposit_address}`);
}