A list of contract events with pagination information

Export

ContractEventList

interface ContractEventList {
    data: ContractEvent[];
    has_more: boolean;
    next_page: string;
}

Properties

An array of ContractEvent objects

Memberof

ContractEventList

has_more: boolean

True if this list has another page of items after this one that can be fetched

Memberof

ContractEventList

next_page: string

The page token to be used to fetch the next page

Memberof

ContractEventList