You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is necessary so we can implement a paginator on the UI since we need to
know how many pages there are (or at the very least, we need to know if there's
a next page).
/// Returns the logs of all requests captured by the keeper.
39
45
///
40
46
/// This endpoint allows you to filter the logs by a specific network ID, a query string (which can be a transaction hash, sender address, or sequence number), and a time range.
41
47
/// This is useful for debugging and monitoring the requests made to the Entropy contracts on various chains.
42
48
#[utoipa::path(
43
49
get,
44
50
path = "/v1/logs",
45
-
responses((status = 200, description = "A list of Entropy request logs", body = Vec<RequestStatus>)),
51
+
responses((status = 200, description = "A list of Entropy request logs", body = ExplorerResponse)),
0 commit comments