@gorbchain-xyz/chaindecode
Version:
GorbchainSDK V1.3+ - Complete Solana development toolkit with advanced cryptography, messaging, and collaboration features. Build secure applications with blockchain, DeFi, and end-to-end encryption.
10 lines (9 loc) • 340 B
TypeScript
import type { IInstruction } from '@solana/instructions';
/**
* Decode a single IInstruction using all available decoders
*/
export declare function decodeTransactionInstruction(ix: IInstruction): any;
/**
* Decode an array of IInstructions
*/
export declare function decodeTransactionInstructions(instructions: IInstruction[]): any[];