Skip to content

Interface: BatchTransactionResult

Result of sending a single transaction within a batch.

Extended by

Properties

PropertyTypeDescription
confirmedbooleanConvenience flag: true when status is 'fulfilled'.
error?unknownThe error that occurred, present when status is 'rejected'.
groupIndicesnumber[]The indices of the original groups this transaction carried, in order — the bridge back from a per-transaction result to the per-group input you submitted. For example groupIndices: [6, 7] means this transaction packed groups[6] and groups[7], so both share this transaction's status/signature/error. When every group is a single instruction, groupIndices[k] corresponds to instructions[k].
instructionsInstruction<string, readonly (AccountLookupMeta<string, string> | AccountMeta<string>)[]>[]The instructions that made up this transaction (the packed bucket).
signature?SignatureThe transaction signature, present when status is 'fulfilled'.
status"fulfilled" | "rejected"Whether the transaction was sent and confirmed successfully.