diff --git a/Cargo.toml b/Cargo.toml index 647b0912..4e080ad9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/examples/wallets/Cargo.toml b/examples/wallets/Cargo.toml index 9fe49233..ab9023bf 100644 --- a/examples/wallets/Cargo.toml +++ b/examples/wallets/Cargo.toml @@ -12,7 +12,6 @@ repository.workspace = true [dev-dependencies] alloy.workspace = true -alloy-sol-types.workspace = true eyre.workspace = true reqwest.workspace = true diff --git a/examples/wallets/examples/sign_permit_hash.rs b/examples/wallets/examples/sign_permit_hash.rs index cab7c093..4c1045a0 100644 --- a/examples/wallets/examples/sign_permit_hash.rs +++ b/examples/wallets/examples/sign_permit_hash.rs @@ -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;