Coda by Ian Macalinao
    Preparing search index...

    Interface InstructionRemainingAccountsNode<TValue>

    interface InstructionRemainingAccountsNode<
        TValue extends
            ArgumentValueNode
            | ResolverValueNode = ArgumentValueNode | ResolverValueNode,
    > {
        docs?: Docs;
        isOptional?: boolean;
        isSigner?: boolean
        | "either";
        isWritable?: boolean;
        kind: "instructionRemainingAccountsNode";
        value: TValue;
    }

    Type Parameters

    Index

    Properties

    docs?: Docs
    isOptional?: boolean
    isSigner?: boolean | "either"
    isWritable?: boolean
    kind: "instructionRemainingAccountsNode"
    value: TValue