Coda by Ian Macalinao
    Preparing search index...

    Interface PdaNode<TSeeds>

    A program-derived address: its name, optional program ID override, and the seeds used to derive it.

    interface PdaNode<TSeeds extends PdaSeedNode[] = PdaSeedNode[]> {
        docs?: Docs;
        kind: "pdaNode";
        name: CamelCaseString;
        programId?: string;
        seeds: TSeeds;
    }

    Type Parameters

    Index
    docs?: Docs

    Markdown documentation for the PDA.

    kind: "pdaNode"

    The name of the PDA.

    programId?: string

    The base58-encoded program ID used to derive the PDA. When omitted, the surrounding program is assumed.

    seeds: TSeeds

    The seeds used to derive the PDA, in order.