Skip to content

Commit

Permalink
release 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
cdump committed Feb 18, 2025
1 parent cb9bfe0 commit b92d912
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "evmole"
version = "0.7.0"
version = "0.7.1"
edition = "2021"
description = "Extracts function selectors and arguments from EVM bytecode"
authors = ["Maxim Andreev <andreevmaxim@gmail.com>"]
Expand Down
2 changes: 1 addition & 1 deletion benchmark/providers/evmole-rs/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion javascript/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "evmole",
"description": "Extracts function selectors and arguments from EVM bytecode",
"version": "0.7.0",
"version": "0.7.1",
"license": "MIT",
"collaborators": [
"Maxim Andreev <andreevmaxim@gmail.com>"
Expand Down
7 changes: 3 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
//! Analyzes EVM bytecode to extract contract information, even for unverified contracts.
//!
//! The library can extract function selectors, function arguments, state mutability, and storage layout.
//! Use the [`contract_info()`] function with its builder pattern to analyze contracts.
//!
//! Use the [`contract_info()`] function with its builder pattern to analyze contracts. See its documentation for usage examples.
//!
//! Accuracy and speed comparison with other tools, as well as Python and JavaScript implementations, are available on [GitHub](https://github.com/cdump/evmole/tree/master#benchmark)
//! Accuracy and speed comparison with other tools, as well as Python and JavaScript libraries,
//! are available on [GitHub](https://github.com/cdump/evmole/tree/master#benchmark)
pub use contract_info::contract_info;
pub use contract_info::{Contract, ContractInfoArgs, Function};
Expand Down

0 comments on commit b92d912

Please sign in to comment.