Skip to main content

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": "CMdJ6h2qMCr69t17Fq8br3t4Q9zFRVKGP3EdTDHsApGf",
"currency": "SOL",
"amount": "1",
"comment": "my transaction",
}
}

Response

{
"id": 1,
"jsonrpc": "2.0",
"result": <TRANSACTION_OBJECT>,
}