Vana SDK - v2.2.2
    Preparing search index...

    Interface RelayerWebhookPayload

    Represents a webhook event payload from the relayer.

    Contains event data, timestamp, and signature for verification of webhook authenticity.

    interface RelayerWebhookPayload {
        event: string;
        data: Record<string, unknown>;
        timestamp: number;
        webhookId: string;
        signature: string;
    }
    Index

    Properties

    event: string

    Event type

    data: Record<string, unknown>

    Event data

    timestamp: number

    Timestamp

    webhookId: string

    Webhook ID

    signature: string

    Signature for verification