Coda by Ian Macalinao
    Preparing search index...

    Interface PdaValueNode<TSeeds, TProgram>

    interface PdaValueNode<
        TSeeds extends PdaSeedValueNode[] = PdaSeedValueNode[],
        TProgram extends
            AccountValueNode | ArgumentValueNode | undefined =
            | AccountValueNode
            | ArgumentValueNode
            | undefined,
    > {
        kind: "pdaValueNode";
        pda: | PdaLinkNode<ProgramLinkNode | undefined>
        | PdaNode<RegisteredPdaSeedNode[]>;
        programId?: TProgram;
        seeds: TSeeds;
    }

    Type Parameters

    Index

    Properties

    kind: "pdaValueNode"
    programId?: TProgram
    seeds: TSeeds