Umi — API References - v1.3.0
    Preparing search index...

    Type Alias AccountMeta

    Defines an account required by an instruction. It includes its public key, whether it is signing the transaction and whether the account should be writable.

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

    Properties

    isSigner: boolean
    isWritable: boolean
    pubkey: PublicKey