diff --git a/crates/interpreter/CHANGELOG.md b/crates/interpreter/CHANGELOG.md index 7bb22feaf0..83e4530be6 100644 --- a/crates/interpreter/CHANGELOG.md +++ b/crates/interpreter/CHANGELOG.md @@ -48,7 +48,7 @@ Full git log: * eb6a9f0 - Revert "feat: alloy migration (#535)" (#616) (6 weeks ago) * c1bad0d - chore: spell check (#615) (6 weeks ago) * f95b7a4 - feat: alloy migration (#535) (6 weeks ago) -* bc4d203 - feat: remove unneccesary var and if branch in gas calc (#592) (7 weeks ago) +* bc4d203 - feat: remove unnecessary var and if branch in gas calc (#592) (7 weeks ago) * ef57a46 - feat: State with account status (#499) (7 weeks ago) * 157ef36 - feat: introduce initcode size limit check taking config into account (#587) (7 weeks ago) * 12558c5 - fix: fix mcopy memory expansion. Add eth tests to ci (#586) (7 weeks ago) diff --git a/crates/revm/CHANGELOG.md b/crates/revm/CHANGELOG.md index 447ed8cb1e..60208fea7c 100644 --- a/crates/revm/CHANGELOG.md +++ b/crates/revm/CHANGELOG.md @@ -298,7 +298,7 @@ Very small release. Exposes one field and added prevrandao to remove footgun of # v2.2.0 date: 12.11.2022 -Small release that contains consensus bug fix. Additionaly added few small feature flags needed for hardhat, opcode utility function and removal of web3db block number check. +Small release that contains consensus bug fix. Additionally added few small feature flags needed for hardhat, opcode utility function and removal of web3db block number check. * dc3414a - Added OEF spec for tests. Skip HighGasPrice (4 minutes ago) * f462f9d - Bugfix: if returndatacopy is len 0 return after initial cost (#259) (4 minutes ago) diff --git a/crates/revm/src/db/states/state.rs b/crates/revm/src/db/states/state.rs index 293b49e420..fe74d373cc 100644 --- a/crates/revm/src/db/states/state.rs +++ b/crates/revm/src/db/states/state.rs @@ -28,7 +28,7 @@ pub type StateDBBox<'a, E> = State>; pub struct State { /// Cached state contains both changed from evm execution and cached/loaded account/storages /// from database. This allows us to have only one layer of cache where we can fetch data. - /// Additionaly we can introduce some preloading of data from database. + /// Additionally we can introduce some preloading of data from database. pub cache: CacheState, /// Optional database that we use to fetch data from. If database is not present, we will /// return not existing account and storage. diff --git a/documentation/src/crates/precompile/point_evaluation.md b/documentation/src/crates/precompile/point_evaluation.md index 4622af6126..9356a89a9f 100644 --- a/documentation/src/crates/precompile/point_evaluation.md +++ b/documentation/src/crates/precompile/point_evaluation.md @@ -3,4 +3,4 @@ This precompile is introduced in [EIP4844](https://eips.ethereum.org/EIPS/eip-4844) and is used to verify KZG commitments of blobspace. The precompile allows for efficient verification of commitments to blog transactions. The blob-space transaction contains a large amount of data that cannot be accessed by EVM execution, but has a commitment that can be accessed and verified. The EIP is designed to be forward compatible with danksharding architecture while giving L2s access to cheaper L1 commitments. This precompiled contract resides at the hardcoded Ethereum address `0x000000000000000000000000000000000000000A`. -A useful resource is the python refrence implementation for the precompile, which can be found [here](https://github.com/ethereum/consensus-specs/blob/86fb82b221474cc89387fa6436806507b3849d88/specs/deneb/polynomial-commitments.md). This implementation uses the [c-kzg](https://github.com/ethereum/c-kzg-4844) audited foreign function interface bindings from the Ethereum Foundation. \ No newline at end of file +A useful resource is the python reference implementation for the precompile, which can be found [here](https://github.com/ethereum/consensus-specs/blob/86fb82b221474cc89387fa6436806507b3849d88/specs/deneb/polynomial-commitments.md). This implementation uses the [c-kzg](https://github.com/ethereum/c-kzg-4844) audited foreign function interface bindings from the Ethereum Foundation. \ No newline at end of file diff --git a/documentation/src/introduction.md b/documentation/src/introduction.md index aa8e5ae880..ebdf477813 100644 --- a/documentation/src/introduction.md +++ b/documentation/src/introduction.md @@ -27,4 +27,4 @@ cargo run --profile ethtests -p revme -- \ - `revm-test`: test binaries with contracts; used mostly to check performance -If you are interested in contributing, be sure to run the statetests. It is recommeded to read about the [ethereum tests](https://ethereum-tests.readthedocs.io/en/latest/). +If you are interested in contributing, be sure to run the statetests. It is recommended to read about the [ethereum tests](https://ethereum-tests.readthedocs.io/en/latest/).