Variable vestingResponseConst
vestingResponse: ZodObject<
{
address_book: ZodOptional<
ZodRecord<ZodString, ZodObject<{ user_friendly: ZodString }, $strip>>,
>;
vesting_contracts: ZodArray<
ZodObject<
{
address: ZodString;
cliff_duration: ZodNumber;
owner_address: ZodString;
sender_address: ZodString;
start_time: ZodNumber;
total_amount: ZodString;
total_duration: ZodNumber;
unlock_period: ZodNumber;
whitelist: ZodArray<ZodString>;
},
$strip,
>,
>;
},
$strip,
> = ...