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.memo
: (string) [optional] Arbitrary data attached to the transaction on the blockchain.
Returns
A transaction object
.
Example
Request
{
"id": 1,
"jsonrpc": "2.0",
"method": "send",
"params": {
"recipient": "TDZi5przyzJPFVidaU68PNsWsoe3F5wcmv",
"currency": "TRX",
"amount": "1",
"comment": "my transaction",
}
}
Response
{
"id": 1,
"jsonrpc": "2.0",
"result": <TRANSACTION_OBJECT>,
}