Skip to content
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changelog/cast-events.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
cast: minor
foundry-common: patch
foundry-evm-traces: minor
---

Added `cast events` to fetch and decode events from transaction receipts or filtered log queries.
1 change: 1 addition & 0 deletions crates/cast/src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -947,6 +947,7 @@ pub async fn run_command(args: CastArgs) -> Result<()> {
generate(shell, &mut CastArgs::command(), "cast", &mut std::io::stdout())
}
CastSubcommand::Logs(cmd) => cmd.run().await?,
CastSubcommand::Events(cmd) => cmd.run().await?,
CastSubcommand::DecodeTransaction { tx, network } => {
let tx = stdin::unwrap_line(tx)?;
let decoded_tx = match network {
Expand Down
Loading
Loading