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