TransactionPlanResultContext

type TransactionPlanResultContext = object;

The context object associated with a SingleTransactionPlanResult.

This type defines the shape of the context that can be attached to transaction plan results. It always allows arbitrary additional properties and optionally includes the transaction message, the transaction signature, and the full transaction object.

See

Indexable

[key: string | number | symbol]: unknown

Properties

message?

optional message: TransactionMessage & TransactionMessageWithFeePayer;

signature?

optional signature: Signature;

transaction?

optional transaction: Transaction;

On this page