Parses an incoming Universal Bridge webhook payload.
function parse( payload: string, headers: Record<string, string>, secret: string, tolerance: number,): Promise<WebhookPayload>;
The raw text body received from thirdweb.
let payload: string;
The webhook headers received from thirdweb.
let headers: Record<string, string>;
The webhook secret to verify the payload with.
let secret: string;
The tolerance in seconds for the timestamp verification.
let tolerance: number;
let returnType: Exclude< z.infer<typeof webhookSchema>, { version: 1 }>;