Coda by Ian Macalinao
    Preparing search index...

    Interface ConstantPdaSeedNode<TType, TValue>

    A PDA seed with a constant value (e.g. a UTF-8 string or a fixed byte sequence).

    interface ConstantPdaSeedNode<
        TType extends TypeNode = TypeNode,
        TValue extends ConstantPdaSeedValue = ConstantPdaSeedValue,
    > {
        kind: "constantPdaSeedNode";
        type: TType;
        value: TValue;
    }

    Type Parameters

    Index
    kind: "constantPdaSeedNode"
    type: TType

    The type of the seed value.

    value: TValue

    The constant value to use as the seed — either a literal value or the program ID placeholder.