Skip to main content
POST
Send Batch Transactions
Submit multiple signed transactions to be processed together on the Solana network.

headers

string
required
The API key created from Altude

Request Body

string
required
The base64-encoded signed batch transaction containing multiple operations
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 batch transaction was sent successfully
array
Array of transaction signatures for each transaction in the batch

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