Skip to content

feat: use the new EthDisplay impls instead of manual parsing of events #106

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 16, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Revert "chore: use published ethers deps"
This reverts commit 6efb265.
  • Loading branch information
gakonst committed Oct 16, 2021
commit fb2f13d47a6bb263ce8f6130eb5847b97e5864a6
172 changes: 63 additions & 109 deletions Cargo.lock

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,8 @@ opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"


[patch."https://github.com/rust-blockchain/evm"]
# evm = { path = "../evm", features = ["tracing"] }
evm = { git = "https://github.com/gakonst/evm", branch = "feat/events-mut" }
3 changes: 2 additions & 1 deletion dapp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ dapp-utils = { path = "./../utils" }
dapp-solc = { path = "./../solc" }
evm-adapters = { path = "./../evm-adapters", default-features = false }

ethers = { version = "^0.5.0" }
# ethers = { version = "0.5.2" }
ethers = { git = "https://github.com/gakonst/ethers-rs", branch = "master" }
svm = { package = "svm-rs", git = "https://github.com/roynalnaruto/svm-rs" }

eyre = "0.6.5"
Expand Down
3 changes: 2 additions & 1 deletion dapptools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ dapp-solc = { path = "../solc" }
dapp = { path = "../dapp" }
seth = { path = "../seth" }
evm-adapters = { path = "../evm-adapters" }
ethers = { version = "^0.5.0" }
# ethers = "0.5"
ethers = { git = "https://github.com/gakonst/ethers-rs", branch = "master" }
ethers-etherscan = { git = "https://github.com/gakonst/ethers-rs", branch = "master" }
eyre = "0.6.5"
rustc-hex = "2.1.0"
Expand Down
3 changes: 2 additions & 1 deletion evm-adapters/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ sputnik = { package = "evm", git = "https://github.com/rust-blockchain/evm", op

evmodin = { git = "https://github.com/vorot93/evmodin", optional = true }

ethers = { version = "^0.5.0" }
# ethers = { version = "0.5.2" }
ethers = { git = "https://github.com/gakonst/ethers-rs", branch = "master" }
eyre = "0.6.5"
once_cell = "1.8.0"
tracing = "0.1.28"
Expand Down
5 changes: 3 additions & 2 deletions seth/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ license = "MIT OR Apache-2.0"

[dependencies]
dapp-utils = { path = "../utils" }
ethers-core = "^0.5.0"
ethers-providers = { version = "^0.5.0", default-features = false }
# ethers = "0.5"
ethers-core = { git = "https://github.com/gakonst/ethers-rs", branch = "master", default-features = false }
ethers-providers = { git = "https://github.com/gakonst/ethers-rs", branch = "master", default-features = false }
eyre = "0.6.5"
rustc-hex = "2.1.0"
serde_json = "1.0.67"
Expand Down
3 changes: 2 additions & 1 deletion solc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ Incremental, parallel and multi-version Solidity compiler abstraction
[dependencies]
semver = "1.0.4"
eyre = "0.6.5"
ethers = { version = "^0.5.0" }
# ethers = { version = "0.5.2" }
ethers = { git = "https://github.com/gakonst/ethers-rs", branch = "master" }
svm = { package = "svm-rs", git = "https://github.com/roynalnaruto/svm-rs" }
tracing = "0.1.28"
glob = "0.3.0"
Expand Down
3 changes: 2 additions & 1 deletion utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ license = "MIT OR Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ethers-core = "^0.5.0"
# ethers = "0.5"
ethers-core = { git = "https://github.com/gakonst/ethers-rs", branch = "master" }

eyre = { version = "0.6.5", default-features = false }
rustc-hex = { version = "2.1.0", default-features = false }
Expand Down