From d90ef382fb00198532fbe40bceedc2421ad85d2b Mon Sep 17 00:00:00 2001 From: Mudassir Shabbir Date: Tue, 10 Sep 2024 17:27:54 +0500 Subject: [PATCH] chore: merged key concepts and API in orch --- main/guides/orchestration/getting-started/key-concepts.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main/guides/orchestration/getting-started/key-concepts.md b/main/guides/orchestration/getting-started/key-concepts.md index 2f2881def..64e300433 100644 --- a/main/guides/orchestration/getting-started/key-concepts.md +++ b/main/guides/orchestration/getting-started/key-concepts.md @@ -71,7 +71,8 @@ const balance = await orchestrationAccount.getBalance('uatom'); - `send` transfers an amount to another account on the same chain. - `transfer` transfers an amount to another account, typically on another chain. - `transferSteps` transfers an amount in multiple steps, handling complex transfer paths. -- `deposit` deposits payment from Zoe to the account. For remote accounts, an IBC Transfer will be executed to transfer funds there. +- `deposit` deposits payment from Zoe to the account. For remote accounts, an IBC Transfer + will be executed to transfer funds there. ```javascript await orchestrationAccount.send(receiverAddress, amount);