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

    Interface Webhook

    A Helius webhook subscription.

    interface Webhook {
        accountAddresses: string[];
        authHeader: string;
        transactionTypes: string[];
        wallet: string;
        webhookID: string;
        webhookType: string;
        webhookURL: string;
    }
    Index

    Properties

    accountAddresses: string[]

    Array of base58-encoded Solana account addresses being monitored for events.

    authHeader: string

    Authorization header value sent with each webhook delivery request.

    transactionTypes: string[]

    Transaction types this webhook is subscribed to.

    wallet: string

    Wallet address that owns this webhook.

    webhookID: string

    UUIDv4 that uniquely identifies the webhook.

    webhookType: string

    Delivery format for webhook payloads: enhanced, raw, discord, enhancedDevnet, rawDevnet, or discordDevnet.

    webhookURL: string

    The URL receiving webhook POST requests.