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

    Type Alias AccountMeta

    Account metadata used to define instructions

    type AccountMeta = {
        isSigner: boolean;
        isWritable: boolean;
        pubkey: PublicKey;
    }
    Index
    isSigner: boolean

    True if an instruction requires a transaction signature matching pubkey

    isWritable: boolean

    True if the pubkey can be loaded as a read-write account.

    pubkey: PublicKey

    An account's public key