Coda by Ian Macalinao
    Preparing search index...

    Interface VariablePdaSeedNode<TType>

    A PDA seed whose value is provided at derivation time, identified by name.

    interface VariablePdaSeedNode<TType extends TypeNode = TypeNode> {
        docs?: Docs;
        kind: "variablePdaSeedNode";
        name: CamelCaseString;
        type: TType;
    }

    Type Parameters

    Index
    docs?: Docs

    Markdown documentation for the seed variable.

    kind: "variablePdaSeedNode"

    The name of the seed variable.

    type: TType

    The expected type of the seed value.