Solana wallet endpoints
Transfer Solana tokens to another wallet
Transfer Solana tokens to another wallet. Authentication with an API key is required.
post/user/{address}/wallet/solana/transfer
Path parameters
addressstring required
The address to initiate the transfer
Headers
Authorizationstring required
The JWT access token that authorizes the request
Request body
Example request
{
"destinationWalletAddress": "The Base-58 encoded recipient address",
"tokenAddress": "(Optional) Contract address address of SPL token",
"tokenAmount": 1
}Response
Transfer result
Example response
[
{
"hash": "The Base-58 encoded transaction hash"
}
]