Variable SnapshotEntryInputConst

SnapshotEntryInput: ZodObject<{
    address: ZodUnion<[ZodType<string, ZodTypeDef, string>, ZodType<`0x${string}`, ZodTypeDef, `${string}.eth` | `${string}.cb.id`>]>;
    currencyAddress: ZodOptional<ZodDefault<ZodUnion<[ZodType<string, ZodTypeDef, string>, ZodType<`0x${string}`, ZodTypeDef, `${string}.eth` | `${string}.cb.id`>]>>>;
    maxClaimable: ZodDefault<ZodDefault<ZodUnion<[ZodEffects<ZodUnion<[ZodString, ZodNumber]>, string, string | number>, ZodLiteral<"unlimited">]>>>;
    price: ZodOptional<ZodDefault<ZodUnion<[ZodEffects<ZodUnion<[ZodString, ZodNumber]>, string, string | number>, ZodLiteral<"unlimited">]>>>;
}, "strip", ZodTypeAny, {
    address: string;
    currencyAddress?: string;
    maxClaimable: string;
    price?: string;
}, {
    address: string;
    currencyAddress?: string;
    maxClaimable?: string | number;
    price?: string | number;
}> = ...

Type declaration

  • address: ZodUnion<[ZodType<string, ZodTypeDef, string>, ZodType<`0x${string}`, ZodTypeDef, `${string}.eth` | `${string}.cb.id`>]>
  • currencyAddress: ZodOptional<ZodDefault<ZodUnion<[ZodType<string, ZodTypeDef, string>, ZodType<`0x${string}`, ZodTypeDef, `${string}.eth` | `${string}.cb.id`>]>>>
  • maxClaimable: ZodDefault<ZodDefault<ZodUnion<[ZodEffects<ZodUnion<[ZodString, ZodNumber]>, string, string | number>, ZodLiteral<"unlimited">]>>>
  • price: ZodOptional<ZodDefault<ZodUnion<[ZodEffects<ZodUnion<[ZodString, ZodNumber]>, string, string | number>, ZodLiteral<"unlimited">]>>>

Type declaration

  • address: string
  • Optional currencyAddress?: string
  • maxClaimable: string
  • Optional price?: string

Type declaration

  • address: string
  • Optional currencyAddress?: string
  • Optional maxClaimable?: string | number
  • Optional price?: string | number

Generated using TypeDoc