Skip to main content
POST
Send Transaction
Submit a signed transaction to be processed on the Solana network.

headers

string
required
The API key created from Altude

Request Body

string
required
The base64-encoded signed transaction to send
For a step-by-step example that builds and partially signs a transaction to send SPL tokens—including creating the ATA if missing, setting any required authorities, partial local signing, and submission to Altude’s signing endpoint—see the Send example: Send example. This Send example is provided as an example only.

Response

boolean
Indicates if the transaction was sent successfully
string
The transaction signature

Example

This example demonstrates how to build a Solana transaction that transfers SPL tokens for a given mint and sets the associated token account (ATA) owner (the authority) to a specified public key. The fee payer covers account creation and transaction fees. The sample walks through building the transaction, partially signing it locally, and submitting the partially-signed transaction to the Altude signing endpoint for final submission.

Install library

Copy and paste this to your project

Implementation