Update to ethers 2

This commit is contained in:
Luke Parker
2023-03-16 20:16:57 -04:00
parent ab1e5c372e
commit f374cd7398
2 changed files with 101 additions and 62 deletions

View File

@@ -16,8 +16,8 @@ rustdoc-args = ["--cfg", "docsrs"]
thiserror = "1"
rand_core = "0.6"
serde_json = "1.0"
serde = "1.0"
serde_json = "1"
serde = "1"
sha2 = "0.10"
sha3 = "0.10"
@@ -28,10 +28,10 @@ frost = { package = "modular-frost", path = "../../crypto/frost", features = ["s
eyre = "0.6"
ethers = { version = "1", features = ["abigen", "ethers-solc"] }
ethers = { version = "2", features = ["abigen", "ethers-solc"] }
[build-dependencies]
ethers-solc = "1"
ethers-solc = "2"
[dev-dependencies]
tokio = { version = "1", features = ["macros"] }