Posted By : Ashutosh
1. Introduction to Solana Transactions
Solana is a high-performance blockchain that supports smart contracts and decentralized applications (dApps). One of the cornerstones of Solana's efficiency is its parallel processing of transactions via the Proof of History (PoH) approach combined with the Tower BFT consensus.
Key aspects of Solana transactions:
Solana has a limit on the overall size of the transaction (including signatures, account addresses, instruction data, etc.).
Batch Transactions in the context of Solana refer to creating a single transaction that includes multiple instructions. By bundling several instructions or even sub-transactions together into one "batch," you can reduce overhead, save on network fees, and ensure atomicity for related operations.
An instruction specifies which on-chain program to invoke, which accounts to pass to that program, and what data the program should receive. A transaction can hold multiple instructions.
Solana programs require accounts to store both code (the program itself) and data (the state used by the program). For a batch transaction, you must ensure all required accounts are included in the transaction for each instruction.
Each transaction must be signed by the account(s) that have the authority for the instructions included.
Solana transactions have size limits (currently around 1232 bytes). While you can include multiple instructions, you must keep the total size under this limit.
If one instruction in the batch fails, the entire transaction is rolled back. This is beneficial for many use-cases where partial execution doesn't make sense (e.g., token swaps, multi-step state changes).
@solana/web3.js
in JavaScript/TypeScript), you start with creating a Transaction
instance.Transaction
.sendAndConfirmTransaction
or similar methods.
Below is a simplified TypeScript example that demonstrates a batch transaction using the @solana/web3.js
library. We'll show two hypothetical instructions:
Install the Solana web3 library (if not already installed):
npm install @solana/web3.js
Make sure you have a funded Keypair in your local environment or a connected wallet for the signer.
import {
Connection,
PublicKey,
Keypair,
SystemProgram,
Transaction,
sendAndConfirmTransaction,
LAMPORTS_PER_SOL
} from "@solana/web3.js";
// For demonstration, we generate a new keypair (in practice, use your own)
const payer = Keypair.generate();
const recipient = Keypair.generate();
(async () => {
// 1. Establish a connection to the cluster
const connection = new Connection("https://api.devnet.solana.com", "confirmed");
// Airdrop to the payer so it has some SOL to pay for fees and transfers
// This step is only for Devnet usage. On Mainnet you have to purchase or receive SOL.
const airdropSignature = await connection.requestAirdrop(
payer.publicKey,
2 * LAMPORTS_PER_SOL // 2 SOL
);
await connection.confirmTransaction(airdropSignature);
// 2. Create a Transaction
let transaction = new Transaction();
// 3. Build Instruction #1: Transfer some SOL to another account
const transferInstruction = SystemProgram.transfer({
fromPubkey: payer.publicKey,
toPubkey: recipient.publicKey,
lamports: 0.5 * LAMPORTS_PER_SOL, // transferring 0.5 SOL
});
// 4. Build Instruction #2: Example of calling a program (SystemProgram as placeholder)
// Here, we'll do a transfer of 0.1 SOL to the same account,
// just to demonstrate multiple instructions in one transaction.
const anotherTransferInstruction = SystemProgram.transfer({
fromPubkey: payer.publicKey,
toPubkey: recipient.publicKey,
lamports: 0.1 * LAMPORTS_PER_SOL,
});
// 5. Add both instructions to the transaction
transaction.add(transferInstruction).add(anotherTransferInstruction);
// 6. Send and confirm the transaction
try {
const txSignature = await sendAndConfirmTransaction(
connection,
transaction,
[payer] // List all signers here
);
console.log("Transaction Signature: ", txSignature);
} catch (error) {
console.error("Error sending batch transaction:", error);
}
})();
Explanation:
SystemProgram.transfer
.Transaction
.payer
Keypair and send it.
If you wanted to call a custom program (e.g., an Anchor-based program), you would construct the instruction using that program's IDL (Interface Definition Language) and client code, then add it the same way.
Batch transactions in Solana are a powerful feature that can improve efficiency, reduce fees, and ensure atomic operations. By combining multiple instructions into a single transaction, dApp developers can streamline user workflows and create more robust decentralized applications. However, it's crucial to plan carefully, manage transaction size, handle signers correctly, and consider the atomic nature of the batch.
When used correctly, batch transactions can greatly enhance the user experience and reliability of your Solana-based applications.
DG-18-009, Tower B,
Emaar Digital Greens,
Sector 61,
Gurugram, Haryana 122011.
Unit- 117-120, First Floor,
Welldone Tech Park,
Sector 48, Sohna road,
Gurugram, Haryana 122018.
30N, Gloud St STR E,
Sheridan, Wyoming (USA) - 82801
10 Anson Road, #13-09,
International Plaza Singapore 079903.
April 3, 2025 at 10:45 am
Your comment is awaiting moderation.