From f6755087aa089ef394cb7d11036b6afe4a26ae25 Mon Sep 17 00:00:00 2001 From: Mudassir Shabbir Date: Tue, 11 Feb 2025 15:17:11 +0500 Subject: [PATCH] docs: update destination arg description in ICA transfer --- packages/orchestration/src/orchestration-api.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/orchestration/src/orchestration-api.ts b/packages/orchestration/src/orchestration-api.ts index d258b56aa62..576bdc78fe7 100644 --- a/packages/orchestration/src/orchestration-api.ts +++ b/packages/orchestration/src/orchestration-api.ts @@ -193,8 +193,9 @@ export interface OrchestrationAccountCommon { * Transfer an amount to another account, typically on another chain. * The promise settles when the transfer is complete. * @param amount - the amount to transfer. Can be provided as pure data using denoms or as ERTP Amounts. - * @param destination - the account to transfer the amount to. - * @param [opts] - an optional memo to include with the transfer, which could drive custom PFM behavior, and timeout parameters + * @param destination - the account to transfer the amount to. The denom in the destination arg has to be + * registered with `chainHub` via {@link `registerAsset`} API. + * @param [opts] - an optional memo to include with the transfer, which could drive custom PFM behavior, and timeout parameters * @returns void * @throws {Error} if route is not determinable, asset is not recognized, or * the transfer is rejected (insufficient funds, timeout)