A list of onchain events with pagination information

Export

OnchainNameList

interface OnchainNameList {
    data: OnchainName[];
    has_more?: boolean;
    next_page: string;
    total_count?: number;
}

Properties

data: OnchainName[]

A list of onchain name objects

Memberof

OnchainNameList

has_more?: boolean

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

Memberof

OnchainNameList

next_page: string

The page token to be used to fetch the next page.

Memberof

OnchainNameList

total_count?: number

The total number of payload signatures for the address.

Memberof

OnchainNameList