Variable SchemasConst

Schemas: {
    lotusSignature: ZodObject<
        { Data: ZodString; Type: ZodUnion<[ZodLiteral<1>, ZodLiteral<2>]> },
        "strip",
        { Data: string; Type: 1 | 2 },
        { Data: string; Type: 1 | 2 },
    >;
    signature: ZodObject<
        {
            data: ZodEffects<
                ZodType<BufferSource, BufferSource>,
                Uint8Array,
                BufferSource,
            >;
            type: ZodEnum<["SECP256K1", "BLS"]>;
        },
        "strip",
        { data: Uint8Array; type: "SECP256K1"
        | "BLS" },
        { data: BufferSource; type: "SECP256K1" | "BLS" },
    >;
} = ...

Type declaration

  • lotusSignature: ZodObject<
        { Data: ZodString; Type: ZodUnion<[ZodLiteral<1>, ZodLiteral<2>]> },
        "strip",
        { Data: string; Type: 1 | 2 },
        { Data: string; Type: 1 | 2 },
    >
  • signature: ZodObject<
        {
            data: ZodEffects<
                ZodType<BufferSource, BufferSource>,
                Uint8Array,
                BufferSource,
            >;
            type: ZodEnum<["SECP256K1", "BLS"]>;
        },
        "strip",
        { data: Uint8Array; type: "SECP256K1"
        | "BLS" },
        { data: BufferSource; type: "SECP256K1" | "BLS" },
    >