Vana SDK - v0.1.0
    Preparing search index...

    Interface RelayerWebhookConfig

    Relayer webhook configuration

    interface RelayerWebhookConfig {
        url: string;
        events: (
            "transaction_confirmed"
            | "transaction_failed"
            | "storage_complete"
        )[];
        secret?: string;
        active: boolean;
    }
    Index

    Properties

    url: string

    Webhook URL

    events: ("transaction_confirmed" | "transaction_failed" | "storage_complete")[]

    Events to subscribe to

    secret?: string

    Webhook secret for signature verification

    active: boolean

    Whether webhook is active