Type alias ParsedMessageAccount

ParsedMessageAccount: {
    pubkey: PublicKey;
    signer: boolean;
    source?: "transaction" | "lookupTable";
    writable: boolean;
}

A parsed transaction message account

Type declaration

  • pubkey: PublicKey

    Public key of the account

  • signer: boolean

    Indicates if the account signed the transaction

  • Optional source?: "transaction" | "lookupTable"

    Indicates if the account key came from the transaction or a lookup table

  • writable: boolean

    Indicates if the account is writable for this transaction

Generated using TypeDoc