SolanaTransaction

Functions

Link copied to clipboard
open fun getComputeUnitLimit(encodedTx: String): String
Try to find a `ComputeBudgetInstruction::SetComputeUnitLimit` instruction in the given transaction, and returns the specified Unit Limit.
Link copied to clipboard
open fun getComputeUnitPrice(encodedTx: String): String
Try to find a `ComputeBudgetInstruction::SetComputeUnitPrice` instruction in the given transaction, and returns the specified Unit Price.
Link copied to clipboard
open fun setComputeUnitLimit(encodedTx: String, limit: String): String
Adds or updates a `ComputeBudgetInstruction::SetComputeUnitLimit` instruction of the given transaction, and returns the updated transaction.
Link copied to clipboard
open fun setComputeUnitPrice(encodedTx: String, price: String): String
Adds or updates a `ComputeBudgetInstruction::SetComputeUnitPrice` instruction of the given transaction, and returns the updated transaction.
Link copied to clipboard
open fun updateBlockhashAndSign(encodedTx: String, recentBlockhash: String, privateKeys: DataVector): Array<Byte>
Decode Solana transaction, update the recent blockhash and re-sign the transaction.