From b08e845dbbcfc7b6e00b87a94922235fae32668e Mon Sep 17 00:00:00 2001 From: CalDescent Date: Fri, 14 Apr 2023 16:24:27 +0100 Subject: [PATCH] Updated docs to include sending of foreign coins --- Q-Apps.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Q-Apps.md b/Q-Apps.md index 67b4b86a..3cc48b26 100644 --- a/Q-Apps.md +++ b/Q-Apps.md @@ -454,6 +454,17 @@ await qortalRequest({ }); ``` +### Send foreign coin to address +_Requires user approval_ +``` +await qortalRequest({ + action: "SEND_COIN", + coin: "LTC", + destinationAddress: "LSdTvMHRm8sScqwCi6x9wzYQae8JeZhx6y", + amount: 1.00000000, // 1 LTC + fee: 0.00000020 // fee per byte +}); + ### Search or list chat messages ```