Interface GetProtocolFeaturesParams

interface GetProtocolFeaturesParams {
    limit?: UInt32Type;
    lower_bound?: number | UInt32;
    reverse?: boolean;
    search_by_block_num?: boolean;
    upper_bound?: number | UInt32;
}

Properties

limit?: UInt32Type

How many rows to fetch, defaults to 10 if unset.

lower_bound?: number | UInt32

Lower lookup bound.

reverse?: boolean

Whether to iterate records in reverse order.

search_by_block_num?: boolean

Flag to indicate it is has to search by block number

upper_bound?: number | UInt32

Upper lookup bound.