Skip to content

Schemas

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

Defined in: packages/iso-filecoin/src/wallet.js:23

Schemas

Type declaration

lotusPrivateKey

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