Coda by Ian Macalinao
    Preparing search index...

    Interface InstructionAccountNode<TDefaultValue>

    interface InstructionAccountNode<
        TDefaultValue extends
            InstructionInputValueNode
            | undefined = InstructionInputValueNode | undefined,
    > {
        defaultValue?: TDefaultValue;
        docs?: Docs;
        isOptional?: boolean;
        isSigner: boolean
        | "either";
        isWritable: boolean;
        kind: "instructionAccountNode";
        name: CamelCaseString;
    }

    Type Parameters

    Index

    Properties

    defaultValue?: TDefaultValue
    docs?: Docs
    isOptional?: boolean
    isSigner: boolean | "either"
    isWritable: boolean
    kind: "instructionAccountNode"