Schemas: {
    lotusPrivateKey: ZodObject<
        {
            PrivateKey: ZodString;
            Type: ZodUnion<[ZodLiteral<"bls">, ZodLiteral<"secp256k1">]>;
        },
        "strip",
        ZodTypeAny,
        { PrivateKey: string; Type: "bls"
        | "secp256k1" },
        { PrivateKey: string; Type: "bls" | "secp256k1" },
    >;
} = ...

Schemas

Type declaration

  • lotusPrivateKey: ZodObject<
        {
            PrivateKey: ZodString;
            Type: ZodUnion<[ZodLiteral<"bls">, ZodLiteral<"secp256k1">]>;
        },
        "strip",
        ZodTypeAny,
        { PrivateKey: string; Type: "bls"
        | "secp256k1" },
        { PrivateKey: string; Type: "bls" | "secp256k1" },
    >