The event_filter parameter specifies the criteria to filter events from the blockchain. It allows filtering events by contract address, sender address and receiver address. For a single event filter, not all of the properties need to be presented.

Export

WebhookEventFilter

interface WebhookEventFilter {
    contract_address?: string;
    from_address?: string;
    to_address?: string;
}

Properties

contract_address?: string

The onchain contract address of the token for which the events should be tracked.

Memberof

WebhookEventFilter

from_address?: string

The onchain address of the sender. Set this filter to track all transfer events originating from your address.

Memberof

WebhookEventFilter

to_address?: string

The onchain address of the receiver. Set this filter to track all transfer events sent to your address.

Memberof

WebhookEventFilter