Solana wallet endpoints
Sign a transaction with a Solana wallet
Sign a transaction with a Solana wallet. Authentication with an API key is required.
post/user/{address}/wallet/solana/transaction
Path parameters
addressstring required
The address with which to sign the transaction
Headers
Authorizationstring required
The JWT access token that authorizes the request
Request body
Example request
{
"txSerialized": "The serialized transaction to sign"
}Response
Transaction result
Example response
[
{
"hash": "The Base-58 encoded transaction hash"
}
]