diff --git a/README.md b/README.md index d6f1a174..8b326121 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,8 @@ cargo run --example mnemonic_signer - [ ] UniswapV2 pair - [ ] Transactions - [x] Subscriptions - - [x] [Watch blocks](./examples/subscriptions/examples/watch_blocks.rs) - - [x] [Watch logs](./examples/subscriptions/examples/watch_logs.rs) + - [x] [Subscribe and watch blocks](./examples/subscriptions/examples/subscribe_blocks.rs) + - [x] [Subscribe contract events and watch logs](./examples/subscriptions/examples/watch_contract_event.rs) - [ ] Transactions - [ ] Call override - [ ] Create raw transaction diff --git a/examples/subscriptions/examples/watch_contract_event.rs b/examples/subscriptions/examples/watch_contract_event.rs index 623f15d9..ccf00e2f 100644 --- a/examples/subscriptions/examples/watch_contract_event.rs +++ b/examples/subscriptions/examples/watch_contract_event.rs @@ -1,4 +1,4 @@ -//! Example of subscribing to contract events and watching contract events. +//! Example of subscribing to contract events and watching logs. use alloy_network::Ethereum; use alloy_node_bindings::{Anvil, AnvilInstance};