Updated docs to include sending of foreign coins

This commit is contained in:
CalDescent 2023-04-14 16:24:27 +01:00
parent e60cd96514
commit b08e845dbb

View File

@ -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 ### Search or list chat messages
``` ```