Type Alias SearchCriteria

SearchCriteria: {
    activityTypes: Web3_activityTypes[];
    cursor?: string;
    fromBlock?: number;
    limit?: number;
    toBlock?: number;
}

Type declaration

  • activityTypes: Web3_activityTypes[]

    The activities to be searched for, must match the types listed here

  • Optionalcursor?: string

    The page to search from

  • OptionalfromBlock?: number

    The block to start the search from

  • Optionallimit?: number

    The number of items to search for

  • OptionaltoBlock?: number

    The block to end the search at