Skip to main content
Version: 0.96.0

Type Alias: UnsignedSolanaTx

UnsignedSolanaTx = { family: typeof Solana; instructions: TransactionInstruction[]; lookupTables?: AddressLookupTableAccount[]; mainIndex?: number; }

Defined in: solana/types.ts:21

Contains unsigned data for a Solana transaction. instructions - array of instructions; may or may not fit in a single transaction mainIndex - index of the main instruction in the array lookupTables - array of lookupTables to be used in main transaction

Properties

family

family: typeof Solana

Defined in: solana/types.ts:22


instructions

instructions: TransactionInstruction[]

Defined in: solana/types.ts:23


lookupTables?

optional lookupTables: AddressLookupTableAccount[]

Defined in: solana/types.ts:25


mainIndex?

optional mainIndex: number

Defined in: solana/types.ts:24