diff --git a/Cargo.toml b/Cargo.toml index 984cb02..d732251 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,10 +5,10 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -alloy = { version = "0.6.1", features = ["contract", "rpc-types"] } +alloy = { version = "0.7.3", features = ["contract", "rpc-types"] } [dev-dependencies] -alloy = { version = "0.6.1", features = ["signer-local"] } -alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy.git", rev = "d68a6b7" } +alloy = { version = "0.7.3", features = ["signer-local"] } +alloy-node-bindings = { git = "https://github.com/alloy-rs/alloy.git", tag = "v0.7.3" } regex = "1" tokio = { version = "1", features = ["full"] } diff --git a/README.md b/README.md index a06f11f..999c680 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Universal Etheruem signature verification with ERC-6492 +# Universal Rust Etheruem signature verification with ERC-6492 This crate verifies any Ethereum signature including: diff --git a/src/test_helpers.rs b/src/test_helpers.rs index 6280431..3715a1e 100644 --- a/src/test_helpers.rs +++ b/src/test_helpers.rs @@ -42,6 +42,7 @@ pub async fn deploy_contract( let key_encoded = hex::encode(signer.to_bytes()); let mut args = vec![ "create", + "--broadcast", "--contracts=contracts", contract_name, "--rpc-url",