Describes a single account input for a Solana instruction.

1.1.0

interface AccountMeta {
    isSigner: boolean;
    isWritable: boolean;
    pubkey: never;
}

Properties

isSigner: boolean

Must the account sign the transaction?

isWritable: boolean

Will the instruction modify this account's data or lamports?

pubkey: never

Account public key (base58).