send
Transfer tokens from the wallets available balance to a recipient.
Parameters
recipient
: (string) [required] The address of who will receive the tokens.currency
: (string) [required] The currency of tokens to send.amount
: (string) [required] The amount of tokens to send.comment
: (string) [optional] An optional comment only visible to you.
Returns
A transaction object
.
Example
Request
{
"id": 1,
"jsonrpc": "2.0",
"method": "send",
"params": {
"recipient": "3G3wZkpE9Azh4uJco4YuCH6z68MCLXFTGJ",
"currency": "BTC",
"amount": "1",
"comment": "my transaction",
}
}
Response
{
"id": 1,
"jsonrpc": "2.0",
"result": <TRANSACTION_OBJECT>,
}