@yoroi/claim
Version:
The Claim (proof-of-onboarding) package of Yoroi SDK
48 lines • 1.37 kB
TypeScript
import { z } from 'zod';
export declare const ClaimTokensApiResponseSchema: z.ZodUnion<[z.ZodObject<{
lovelaces: z.ZodString;
tokens: z.ZodRecord<z.ZodString, z.ZodString>;
status: z.ZodLiteral<"accepted">;
queue_position: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
status: "accepted";
lovelaces: string;
tokens: Record<string, string>;
queue_position: number;
}, {
status: "accepted";
lovelaces: string;
tokens: Record<string, string>;
queue_position: number;
}>, z.ZodObject<{
lovelaces: z.ZodString;
tokens: z.ZodRecord<z.ZodString, z.ZodString>;
status: z.ZodLiteral<"claimed">;
tx_hash: z.ZodString;
}, "strip", z.ZodTypeAny, {
tx_hash: string;
status: "claimed";
lovelaces: string;
tokens: Record<string, string>;
}, {
tx_hash: string;
status: "claimed";
lovelaces: string;
tokens: Record<string, string>;
}>, z.ZodObject<{
lovelaces: z.ZodString;
tokens: z.ZodRecord<z.ZodString, z.ZodString>;
status: z.ZodLiteral<"queued">;
queue_position: z.ZodNumber;
}, "strip", z.ZodTypeAny, {
status: "queued";
lovelaces: string;
tokens: Record<string, string>;
queue_position: number;
}, {
status: "queued";
lovelaces: string;
tokens: Record<string, string>;
queue_position: number;
}>]>;
//# sourceMappingURL=validators.d.ts.map