-
Notifications
You must be signed in to change notification settings - Fork 594
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Component
rpc
Describe the feature you would like
alloy/crates/contract/src/event.rs
Lines 52 to 57 in 5896ca9
| /// Queries the blockchain for the selected filter and returns a vector of matching event logs. | |
| pub async fn query(&self) -> Result<Vec<(E, Log)>, Error> { | |
| let logs = self.query_raw().await?; | |
| logs.into_iter().map(|log| Ok((decode_log(&log)?, log))).collect() | |
| } |
@stevencartavia similar to how you implemented this on foundry
Additional context
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Type
Projects
Status
Done