Solana Transaction
Define and simulate Solana transactions using the Aeon SDK’sAeonClient.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Learn how to simulate Solana transactions with the Aeon SDK.
AeonClient.
AeonClient.requestSimulatedTransaction("solana", params) (Conceptual)// Example of queuing a Solana transaction simulation
const aeonClient = new AeonClient({ simulationUrl: "..." });
const solanaTransaction = {
/* ... Assembled Solana Transaction (e.g., using @solana/web3.js) ... */
};
aeonClient.requestSimulatedTransaction("solana", {
transaction: solanaTransaction,
// feePayer: "SOLANA_FEE_PAYER_PUBKEY" // if not part of transaction object
});
// Later, to process the queue and get the assembled TXB:
// const assembledTxData = await aeonClient.build();