Skip to content

Commit

Permalink
merge in main
Browse files Browse the repository at this point in the history
  • Loading branch information
zerosnacks committed Mar 25, 2024
1 parent 76e7544 commit 02802aa
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
.vscode
.idea
.env
.DS_STORE
.DS_Store
5 changes: 0 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,6 @@ alloy = { git = "https://github.com/alloy-rs/alloy", rev = "fd8f065", features =
"transport-ws",
"pubsub",
] }
# TODO: sol! macro somehow requires this to be present
alloy-sol-types = { version = "0.6.4", default-features = false, features = [
"std",
] }


# async
tokio = "1"
Expand Down
1 change: 0 additions & 1 deletion examples/wallets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ repository.workspace = true

[dev-dependencies]
alloy.workspace = true
alloy-sol-types.workspace = true

eyre.workspace = true
rand = "0.8.5"
Expand Down
3 changes: 2 additions & 1 deletion examples/wallets/examples/sign_permit_hash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
use alloy::{
primitives::{address, keccak256, U256},
signers::{wallet::LocalWallet, Signer},
sol_types::{eip712_domain, sol, SolStruct},
sol,
sol_types::{eip712_domain, SolStruct},
};
use eyre::Result;
use serde::Serialize;
Expand Down

0 comments on commit 02802aa

Please sign in to comment.