Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2,970 changes: 2,970 additions & 0 deletions .aider.chat.history.md

Large diffs are not rendered by default.

Binary file added .aider.tags.cache.v3/cache.db
Binary file not shown.
Binary file added .aider.tags.cache.v3/cache.db-shm
Binary file not shown.
Binary file added .aider.tags.cache.v3/cache.db-wal
Binary file not shown.
27 changes: 12 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
[package]
name = "evm-proxy-tools"
author = "snf"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
rust-version = "1.75"
authors = ["snf"]
description = "Detect and read EVM proxy contract implementations (EIP-1167, EIP-1967, EIP-2535, and more)"
license = "MIT"
repository = "https://github.com/snf/evm-proxy-tools"
keywords = ["ethereum", "evm", "proxy", "smart-contracts", "solidity"]
categories = ["cryptography::cryptocurrencies", "development-tools"]
readme = "README.md"

[profile.maxperf]
inherits = "release"
Expand All @@ -25,33 +30,25 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"]}
anyhow = "1.0"
clap = { version = "4", features = ["derive", "env", "unicode", "wrap_help"] }
num-traits = "0.2"
ruint = { version = "1.11", features = ["num-traits"] }
ruint = { version = "1.11.1", features = ["num-traits"] }
thiserror = "1.0"
twoway = "0.2"

## alloy
alloy-primitives = "0.8"
alloy = { version = "1.2", features = ["provider-http", "contract", "rpc-types", "sol-types"] }
alloy-primitives = { version = "1.5.2", features = ["serde"] }

## revm
revm = { version = "14"}
# revm-interpreter = { version = "5.0", features = ["serde"] }
revm = { version = "33.1.0", default-features = false, features = ["optional_block_gas_limit", "std", "secp256k1"] }

bytes = "1.4"
ethers-providers = "2.0"
ethers-core = "2.0"
ethers-signers = "2.0"
ethers-contract = "2.0"
k256 = { version = "0.13", default-features = false, features = ["ecdsa"] }
sha3 = { version = "0.10.7", default-features = false }
hex = { version = "0.4", default-features = false, features = ["alloc"] }
hex-literal = "0.4"
once_cell = "1.18"

## async
tokio = { version = "1.32", features = ["rt-multi-thread", "macros"]}
futures = { version = "0.3"}
async-stream = "0.3.5"
async-recursion = "1.0"

## crypto
# secp256k1 = { version = "0.27.0", default-features = false, features = [
Expand Down
Loading