v1

latestOpenAPI 3.0.0raw.githubusercontent.com2026-04-107095124.5 KB
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

txSerializedstring

A serialized transaction

waitForConfirmationboolean

Wait for on-chain confirmation after broadcasting the transaction

Example request

{
  "txSerialized": "The serialized transaction to sign"
}

Response

Transaction result

hashstring

Result of a transaction operation

confirmedboolean

Indicates whether the transaction is confirmed on-chain

Example response

[
  {
    "hash": "The Base-58 encoded transaction hash"
  }
]