Skip to content
Merged
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 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ let mut evm = evm.with_inspector(tracer);
let out = evm.inspect_tx(tx);
```

The Evm Framework API is somewhat complex to use, but this document provides a detailed explanation. It enables users to extend logic, incorporate various context types, and offers built-in support for inspection. For a practical example, you can refer to the [op-revm crate](https://github.com/op-rs/op-revm).
The EVM Framework API is somewhat complex to use, but this document provides a detailed explanation. It enables users to extend logic, incorporate various context types, and offers built-in support for inspection. For a practical example, you can refer to the [op-revm crate](https://github.com/op-rs/op-revm).

### Users:

Expand Down
2 changes: 1 addition & 1 deletion book/src/contact.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

The git repository can be found at [https://github.com/bluealloy/revm/](https://github.com/bluealloy/revm/)

For questions please open a github issue or join the public telegram group: [https://t.me/+Ig4WDWOzikA3MzA0](https://t.me/+Ig4WDWOzikA3MzA0)
For questions please open a github issue or join the public [telegram group](https://t.me/+Ig4WDWOzikA3MzA0)

### Licence

Expand Down
6 changes: 3 additions & 3 deletions crates/revm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ optional_no_base_fee = ["context/optional_no_base_fee"]

# Precompiles features: Please look at the comments in `precompile` crate for more information.

secp256k1 = ["precompile/secp256k1"] # See comments in `precompile`
secp256k1 = ["precompile/secp256k1"] # See comments in `precompile` use it with caution
c-kzg = ["precompile/c-kzg"]

# blst will enabled both for bls precompiles and for kzg precompile.
# blst will be enabled both for bls precompiles and for kzg precompile.
blst = ["precompile/blst"]
bn = ["precompile/bn"]
asm-sha2 = ["precompile/asm-sha2"]
Expand All @@ -108,5 +108,5 @@ asm-sha2 = ["precompile/asm-sha2"]
portable = ["precompile/portable"]

# use gmp for modexp precompile.
# It is faster library but licences as GPL code, if enabled please make sure to follow the license.
# It is faster library but licenced as GPL code, if enabled please make sure to follow the license.
gmp = ["precompile/gmp"]
Loading