@solana/web3.js
    Preparing search index...

    Type Alias ParsedMessageAccount

    A parsed transaction message account

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

    Public key of the account

    signer: boolean

    Indicates if the account signed the transaction

    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