All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog (modification: no type change headlines) and this project adheres to Semantic Versioning.
This is a first round of alpha
releases for our upcoming breaking release round with a focus on bundle size (tree shaking) and security (dependencies down + no WASM (by default)). Note that alpha
releases are not meant to be fully API-stable yet and are for early testing only. This release series will be then followed by a beta
release round where APIs are expected to be mostly stable. Final releases can then be expected for late October/early November 2024.
We have renamed the previously called DefaultStateManager
to a more neutral MerkleStateManager
, see PR #3641, to reflect the rising importance of other state managers and align with future (at least) dual Merkle/Verkle state world:
DefaultStateManager
->MerkleStateManager
The names for the core state manager methods to access and write state have been simplified, see PR #3541:
getContractCode()
->getCode()
putContractCode()
->putCode()
getContractCodeSize()
->getCodeSize()
getContractStorage()
->getStorage()
putContractStorage()
->putStorage()
clearContractStorage()
->clearStorage()
The following proof methods have been taken out of the core classes and made standalone-methods (tree shaking + keep core classes limited to core state functionality), see PR #3672:
-
MerkleStateManager.getProof()
->getMerkleStateProof()
-
MerkleStateManager.fromProof()
->fromMerkleStateProof()
-
MerkleStateManager.addStorageProof()
->addMerkleStateStorageProof()
-
MerkleStateManager.addProofData()
->addMerkleStateProofData()
-
MerkleStateManager.verifyProof()
->verifyMerkleStateProof()
-
RPCStateManager.getProof()
->getRPCStateProof()
-
VerkleStateManager.getProof()
->getVerkleStateProof()
-
VerkleStateManager.verifyVerkleProof()
->verifyVerkleStateProof()
There is a new Common API for simplification and better tree shaking, see PR #3545. Change your Common
initializations as follows (see Common
release for more details):
// old
import { Chain, Common } from '@ethereumjs/common'
const common = new Common({ chain: Chain.Mainnet })
// new
import { Common, Mainnet } from '@ethereumjs/common'
const common = new Common({ chain: Mainnet })
We have added a new < 200 LoC state manager SimpleStateManager
, which has less dependencies (no tree backend) and allows for easier state reasoning and debugging, since there is no code or cache usage overhead. This new state manager is now also the default state manager for the EVM
. Note that this state manager is meant to be used for simple use cases and should be replaced by a cache-backed state manager (in most cases atm: MerkleStateManager
) for things like mainnet tx execution.
The new state manager can be used like this:
import { Account, createAddressFromPrivateKey, randomBytes } from '@ethereumjs/util'
import { SimpleStateManager } from '@ethereumjs/statemanager'
const main = async () => {
const sm = new SimpleStateManager()
const address = createAddressFromPrivateKey(randomBytes(32))
const account = new Account(0n, 0xfffffn)
await sm.putAccount(address, account)
console.log(await sm.getAccount(address))
}
void main()
There is a new abstraction layer for the account, code and storage caches for all state managers, called Caches
, see PRs #3554, #3569 and #3596.
This allows for a cleaner separation of cache and pure state access code and also enables tree shaking for use cases where the caches are not needed.
The API along cache initialization slightly changes along with this. There is a new caches
option and a a Caches
object must be created and passed in explicitly along state manager initialization if caches should be used:
import { Caches, MerkleStateManager } from '@ethereumjs/statemanager'
const sm = new MerkleStateManager({ caches: new Caches() })
The StateManagerInterface, which all state managers implement, is located in the @ethereumjs/common
package for re-usability reasons. Along the breaking release work, this interface as been strongly simplified, see PRs #3543 and #3541. A dedicated EVMStateManagerInterface
has been removed, which allows for easier state manager usage within the EVM package.
Somewhat non-core functionality is now marked as optional (with a ?
), so if you make custom usage of the state manager you might need to add some !
in your TypeScript code. Have a look at the interface linked above to see what has changed.
- Do not throw calling
getContractStorage()
on non-existing accounts, PR #3536 - Renaming all camel-case
Rpc
->RPC
andJson
->JSON
names, PR #3638
- Upgrade to TypeScript 5, PR #3607
- Node 22 support, PR #3669
- Upgrade
ethereum-cryptography
to v3, PR #3668 - kaustinen7 verkle testnet preparation (update verkle leaf structure -> BASIC_DATA), PR #3433
- Switch
js-sdsl
tojs-sdsl/orderedMap
sub package, PR #3528
- Various fixes for Kaustinen4 support (partial account integration,
getContractCodeSize()
, other), PR #3269 - Kaustinen5 related fixes, PR #3343
- Kaustinen6 adjustments,
verkle-cryptography-wasm
migration, PRs #3355 and #3356 - Missing beaconroot account verkle fix, PR #3421
- Verkle decoupling, PR #3462
- Stricter prefixed hex typing, PRs #3348, #3427 and #3357 (some changes removed in PR #3382 for backwards compatibility reasons, will be reintroduced along upcoming breaking releases)
- Modify RPCStateManager
getAccount()
, PR #3345
- Fixes an issue where under certain deployment conditions wrong storage values could be provided, PR #3434
- Fixes statemanager empty code bug, PR #3483
Shortly following the "Dencun Hardfork Support" release round from last month, this is now the first round of releases where the EthereumJS libraries are now fully browser compatible regarding the new 4844 functionality, see PRs #3294 and #3296! 🎉
Our WASM wizard @acolytec3 has spent the last two weeks and created a WASM build of the c-kzg library which we have released under the kzg-wasm
name on npm (and you can also use independently for other projects). See the newly created GitHub repository for some library-specific documentation.
This WASM KZG library can now be used for KZG initialization (replacing the old recommended c-kzg
initialization), see the respective README section from the tx library for usage instructions (which is also accurate for the other using upstream libraries like block or EVM).
Note that kzg-wasm
needs to be added manually to your own dependencies and the KZG initialization code needs to be adopted like the following (which you will likely want to do in most cases, so if you deal with post Dencun EVM bytecode and/or 4844 blob txs in any way):
import { loadKZG } from 'kzg-wasm'
import { Chain, Common, Hardfork } from '@ethereumjs/common'
const kzg = await loadKZG()
// Instantiate `common`
const common = new Common({
chain: Chain.Mainnet,
hardfork: Hardfork.Cancun,
customCrypto: { kzg },
})
Manual addition is necessary because we did not want to bundle our libraries with WASM code by default, since some projects are then prevented from using our libraries.
Note that passing in the KZG setup file is not necessary anymore, since this is now defaulting to the setup file from the official KZG ceremony (which is now bundled with the KZG library).
Since this fits well also to be placed here relatively prominently for awareness: we had a relatively nasty bug in the @ethereumjs/trie
library with a Node.js
web stream import also affecting browser compatibility, see PR #3280. This bug has been fixed along with these releases and this library now references the updated trie library version.
- Properly apply statemanager
opts
infromProof()
, PR #3276 - New optional
getAppliedKey()
method for the interface (see interface definition in@ethereumjs/common
), PR #3143 - Fix inconsistency between the normal and the RPC statemanager regarding empty account return values, PR #3323
- Fix a type error related to the
lru-cache
dependency, PR #3285 - Add tests for verkle statemanager, PR #3257
- Hotfix release moving the
@ethereumjs/verkle
dependency from a peer dependency to the main dependencies (note that this decision might be temporary)
- Hotfix release adding a missing
debug
dependency to the@ethereumjs/trie
package (dependency), PR #3271
Coming with the work from PR #3186 it is now possible to instantiate a new state manager from an EIP-1186 conformant proof with the new DefaultStateManager.fromProof()
static constructor.
Together with the existing createProof()
functionality it is now extremely handy to create proofs on a very high (in the sense of: abstract) API level for account and storage data without having to deal with the underlying trie proof functionality.
See trie README for a comprehensive example on this.
This release replaces the specific EthersStateManager
, which can be used to RPC-retrieve state data for (still somewhat experimental) on-chain block execution, with a more generic RPCStateManager
(which still can be used well in conjunction with Ethers, dependency has been removed though), see PR #3167.
This new RPCStateManager
can now be used with any type of JSON-RPC provider that supports the eth
namespace (e.g. an Infura endpoint). See README for an example on how to use the extended provider capabilities.
Note: we have decided to plainly rename, since it seemed unlikely to us that this part of the code base is already hard-wired into production code. If this causes problems for you let us know (Discord).
With this release round there is a new way to replace the native JS crypto primitives used within the EthereumJS ecosystem by custom/other implementations in a controlled fashion, see PR #3192.
This can e.g. be used to replace time-consuming primitives like the commonly used keccak256
hash function with a more performant WASM based implementation, see @ethereumjs/common
README for some detailed guidance on how to use.
All code examples in EthereumJS
monorepo library README files are now self-contained and can be executed "out of the box" by simply copying them over and running "as is", see tracking issue #3234 for an overview. Additionally all examples can now be found in the respective library examples folder (in fact the README examples are now auto-embedded from over there). As a nice side effect all examples are now run in CI on new PRs and so do not risk to get outdated or broken over time.
- Export
originalStorageCache
to ease implementation of own state managers, PR #3161 - This release integrates a new
StatelessVerkleStateManager
. This code is still very experimental and so do not tell anyone 😋, but if you dug so deep and found this note here you are likely eligible for early testing and experimentation, PRs #3139 and #3179
This release introduces a new code cache implementation, see PR #3022 and #3080. The new cache complements the expanded account and storage caches and now also tracks stored/deployed-code-changes along commits and reverts and so only keeps code in the cache which made it to the final state change.
The new cache is substantially more robust towards various type of revert-based attacks and grows a more-used cache over time, since never-applied values are consecutively sorted out.
This release introduces a new option prefixStorageTrieKeys
which triggers the underlying trie to store storage key values with a prefix based on the account address, see PR #3023. This significantly increases performance for consecutive storage accesses for the same account on especially larger tries, since trie node accesses get noticeably faster when performed by the underlying key-value store since values are stored close to each other.
While this option is deactivated by default it is recommended for most use cases for it to be activated. Note that this option is not backwards-compatible with existing databases and therefore can't be used if access to existing DBs needs to be guaranteed.
- Fix for
dumpStorage()
forEthersStateManager
, PR #3009
- Allow for users to decide if to either downlevel (so: adopt them for a short-lived scenario) caches or not on
shallowCopy()
by adding a newdownlevelCaches
parameter (default:true
), PR #3063 - Return zero values for
getProof()
as0x0
, PR #3038 - Deactivate storage/account caches for cache size 0, PR #3012
Final release version from the breaking release round from Summer 2023 on the EthereumJS libraries, thanks to the whole team for this amazing accomplishment! ❤️ 🥳
See RC1 release notes for the main change description.
Following additional changes since RC1:
Breaking
: newdumpStorageRangeAt()
implementation + EVMStateManager interface addition (in @ethereumjs/common), PR #2922
This is the release candidate (RC1) for the upcoming breaking releases on the various EthereumJS libraries. The associated release notes below are the main source of information on the changeset, also for the upcoming final releases, where we'll just provide change addition summaries + references to these RC1 notes.
At time of the RC1 releases there is/was no plan for a second RC round and breaking releases following relatively shorty (2-3 weeks) after the RC1 round. Things may change though depending on the feedback we'll receive.
This round of breaking releases brings the EthereumJS libraries to the browser. Finally! 🤩
While you could use our libraries in the browser libraries before, there had been caveats.
WE HAVE ELIMINATED ALL OF THEM.
The largest two undertakings: First: we have rewritten all (half) of our API and eliminated the usage of Node.js specific Buffer
all over the place and have rewritten with using Uint8Array
byte objects. Second: we went through our whole stack, rewrote imports and exports, replaced and updated dependencies all over and are now able to provide a hybrid CommonJS/ESM build, for all libraries. Both of these things are huge.
Together with some few other modifications this now allows to run each (maybe adding an asterisk for client and devp2p) of our libraries directly in the browser - more or less without any modifications - see the examples/browser.html
file in each package folder for an easy to set up example.
This is generally a big thing for Ethereum cause this brings the full Ethereum Execution Layer (EL) protocol stack to the browser in an easy accessible way for developers, for the first time ever! 🎉
This will allow for easy-to-setup browser applications both around the existing as well as the upcoming Ethereum EL protocol stack in the future. 🏄🏾♂️ We are beyond excitement to see what you guys will be building with this for "Browser-Ethereum". 🤓
Browser is not the only thing though why this release round is exciting: default Shanghai hardfork, full Cancun support, significantly smaller bundle sizes for various libraries, new database abstractions, a simpler to use EVM, API clean-ups throughout the whole stack. These are just the most prominent additional things here to mention which will make the developer heart beat a bit faster hopefully when you are scanning to the vast release notes for every of the 15 (!) releases! 🧑🏽💻
So: jump right in and enjoy. We can't wait to hear your feedback and see if you agree that these releases are as good as we think they are. 🙂 ❤️
The EthereumJS Team
The Shanghai hardfork is now the default HF in @ethereumjs/common
and therefore for all libraries who use a Common-based HF setting internally (e.g. Tx, Block or EVM), see PR #2655.
Also the Merge HF has been renamed to Paris (Hardfork.Paris
) which is the correct HF name on the execution side, see #2652. To set the HF to Paris in Common you can do:
import { Chain, Common, Hardfork } from '@ethereumjs/common'
const common = new Common({ chain: Chain.Mainnet, hardfork: Hardfork.Paris })
And third on hardforks 🙂: the upcoming Cancun hardfork is now fully supported and all EIPs are included (see PRs #2659 and #2892). The Cancun HF can be activated with:
import { Chain, Common, Hardfork } from '@ethereumjs/common'
const common = new Common({ chain: Chain.Mainnet, hardfork: Hardfork.Cancun })
Note that not all Cancun EIPs are in a FINAL
EIP state though and particularly EIP-4844
will likely still receive some changes.
With this release the StateManager has been completely refactored, see PR #2630 and #2634. While the overall API has been preserved for the most part, the API DOES come with some changes where things needed a clean-up, which will need some adoption. The cache backend has been completely rewritten and there is now a cleaner separation between the StateManager and the account and storage caches. The BaseStateManager
class - being rather restrictive than useful - has been removed.
All this makes it significantly easier to write an own StateManager implementation or customize the existing implementation.
To integrate an already existing StateManager implementation it is likely best to start from the updated statemanager.ts
file including the DefaultStateManager
class and re-include the own functionality parts in the existing methods there, or to inherit from this class if your changes are not so extensive.
This release comes with a significantly more elaborate caching mechanism for account and storage caches, see PR #2630, #2634 and #2618.
There are now two cache options available: an unbounded cache (CacheType.ORDERED_MAP
) for short-lived usage scenarios (this one is the default cache) and a fixed-size cache (CacheType.LRU
) for a long-lived large cache scenario.
Caches now "survive" a flush operation and especially long-lived usage scenarios will benefit from increased performance by a growing and more "knowing" cache leading to less and less trie reads.
Have a loot at the extended CacheOptions
on how to use and leverage the new cache system.
Also along PR #2630 and #2634: the StateManager API has been significantly cleaned up with one of the major changes being getAccount()
not returning an empty account any more if no result was found. While this needs some adoption this one single change makes state handling a lot cleaner.
API Change Summary:
getAccount(address: Address): Promise<Account> // old
getAccount(address: Address): Promise<Account | undefined> // new
putAccount(address: Address, account: Account): Promise<void> // old
putAccount(address: Address, account: Account | undefined): Promise<void> // new (now also allows for deletion)
accountIsEmpty(address: Address): Promise<boolean> // removed
setStateRoot(stateRoot: Uint8Array): Promise<void> // old
setStateRoot(stateRoot: Uint8Array, clearCache?: boolean): Promise<void> // new
clearCaches(): void // new
The StateManagerInterface
has now been moved to the @ethereum/common
package for more universal access and should be loaded from there with:
import type { StateManagerInterface } from '@ethereumjs/common'
We now provide both a CommonJS and an ESM build for all our libraries. 🥳 This transition was a huge undertaking and should make the usage of our libraries in the browser a lot more straight-forward, see PR #2685, #2783, #2786, #2764, #2804 and #2809 (and others). We rewrote the whole set of imports and exports within the libraries, updated or completely removed a lot of dependencies along the way and removed the usage of all native Node.js primitives (like https
or util
).
There are now two different build directories in our dist
folder, being dist/cjs
for the CommonJS and dist/esm
for the ESM
build. That means that direct imports (which you generally should try to avoid, rather open an issue on your import needs), need an update within your code (do a dist
or the like code search).
Both builds have respective separate entrypoints in the distributed package.json
file.
A CommonJS import of our libraries can then be done like this:
const { Chain, Common } = require('@ethereumjs/common')
const common = new Common({ chain: Chain.Mainnet })
And this is how an ESM import looks like:
import { Chain, Common } from '@ethereumjs/common'
const common = new Common({ chain: Chain.Mainnet })
Using ESM will give you additional advantages over CJS beyond browser usage like static code analysis / Tree Shaking which CJS can not provide.
Side note: along this transition we also rewrote our whole test suite (yes!!!) to now work with Vitest instead of Tape
.
With these releases we remove all Node.js specific Buffer
usages from our libraries and replace these with Uint8Array representations, which are available both in Node.js and the browser (Buffer
is a subclass of Uint8Array
). While this is a big step towards interoperability and browser compatibility of our libraries, this is also one of the most invasive operations we have ever done, see the huge changeset from PR #2566 and #2607. 😋
We nevertheless think this is very much worth it and we tried to make transition work as easy as possible.
For this library you should check if you use one of the following constructors, methods, constants or types and do a search and update input and/or output values or general usages and add conversion methods if necessary:
// statemanager / StateManagerInterface (in @ethereumjs/common)
StateManager.putContractCode(address: Address, value: Uint8Array): Promise<void>
StateManager.getContractCode(address: Address): Promise<Uint8Array>
StateManager.getContractStorage(address: Address, key: Uint8Array): Promise<Uint8Array>
StateManager.putContractStorage(address: Address, key: Uint8Array, value: Uint8Array): Promise<void>
StateManager.clearContractStorage(address: Address): Promise<void>
StateManager.getStateRoot(): Promise<Uint8Array>
StateManager.setStateRoot(stateRoot: Uint8Array, clearCache?: boolean): Promise<void>
StateManager.getProof?(address: Address, storageSlots: Uint8Array[]): Promise<Proof>
We have converted existing Buffer conversion methods to Uint8Array conversion methods in the @ethereumjs/util bytes
module, see the respective README section for guidance.
The mixed usage of prefixed and unprefixed hex strings is a constant source of errors in byte-handling code bases.
We have therefore decided to go "prefixed" by default, see PR #2830 and #2845.
The hexToBytes
and bytesToHex
methods, also similar methods like intToHex
, now take 0x
-prefixed hex strings as input and output prefixed strings. The corresponding unprefixed methods are marked as deprecated
and usage should be avoided.
Please therefore check you code base on updating and ensure that values you are passing to constructors and methods are prefixed with a 0x
.
- Support for
Node.js 16
has been removed (minimal version:Node.js 18
), PR #2859 EthersStateManager
now usesEthers
v6
, PR #2720- Integrate an
OriginalStorage
cache, other VM/EVM EEI refactoring related changes, PR #2702 - Breaking: The
copy()
method has been renamed toshallowCopy()
(same underlying state DB), PR #2826 - Breaking:
StateManager._common
property has been renamed toStateManager.common
and made public, PR #2857
- Update ethereum-cryptography from 1.2 to 2.0 (switch from noble-secp256k1 to noble-curves), PR #2641
- Bump
@ethereumjs/util
@chainsafe/ssz
dependency to 0.11.1 (no WASM, native SHA-256 implementation, ES2019 compatible, explicit imports), PRs #2622, #2564 and #2656
- Pinned
@ethereumjs/util
@chainsafe/ssz
dependency tov0.9.4
due to ES2021 features used inv0.10.+
causing compatibility issues, PR #2555
DEPRECATED: Release is deprecated due to broken dependencies, please update to the subsequent bugfix release version.
Maintenance release with dependency updates, PR #2521
Added EthersStateManager
to direct exports (if you use please fix our deep imports), see PR #2419.
Import is now simplified to:
import { EthersStateManager } from '@ethereumjs/statemanager'
There is a new dedicated state manager EthersStateManager
added to the library. This new state manager gets its state via Ethers RPC calls and allows e.g. for a stateless execution of selected mainnet (or other Ethereum network) blocks and transactions, see PR #2315.
There are some caveats and therefore the new state manager is marked as experimental
for now:
- No
stateRoot
calculation for now, only secondary measures likegasUsed
- Performance is rather slow (when using a remote provider for state data), particularly for more recent
mainnet
blocks - The API of this new state manager might change in future (bugfix or minor) releases
This should nevertheless be useful for a certain number of use cases, if there is e.g. the need for some quick analysis of certain mainnet (EVM) behavior e.g.. The StateManager
package README contains a new dedicated section on how to use the new state manager.
Note: Usage of this StateManager can cause a heavy load regarding state request API calls, so be careful (or at least: aware) if used in combination with an Ethers provider connecting to a third-party API service like Infura!
- Migrated from
rbtree
to js-sdsl package for caching functionality (maintained, better performance), PR #2285
Final release - tada 🎉 - of a wider breaking release round on the EthereumJS monorepo libraries, see the Beta 1 release notes for the main long change set description as well as the Beta 2, Beta 3 and Release Candidate (RC) 1 release notes for notes on some additional changes (CHANGELOG).
- Internal refactor: removed ambiguous boolean checks within conditional clauses, PR #2251
Release candidate 1 for the upcoming breaking release round on the EthereumJS monorepo libraries, see the Beta 1 release notes for the main long change set description as well as the Beta 2 and 3 release notes for notes on some additional changes (CHANGELOG).
- **Attention:" Removed unused
common
option fromStateManager
, PR #2197 - Added
prefixCodeHashes
flag defaulting totrue
which allows to deactivate prefix code hashes saved in the DB (see PR #1438 for context), PR #2179
- Added
engine
field topackage.json
limiting Node versions to v14 or higher, PR #2164 - Replaced
nyc
(code coverage) configurations withc8
configurations, PR #2192 - Code formats improvements by adding various new linting rules, see Issue #1935
Beta 3 release for the upcoming breaking release round on the EthereumJS monorepo libraries, see the Beta 1 release notes for the main long change set description as well as the Beta 2 release notes for notes on some additional changes (CHANGELOG).
Since the Merge HF is getting close we have decided to directly jump on the Merge
HF (before: Istanbul
) as default in the underlying @ethereumjs/common
library and skip the London
default HF as we initially intended to set (see Beta 1 CHANGELOG), see PR #2087.
This change should not directly affect this library but might be relevant since it is not recommended to use different Common library versions between the different EthereumJS libraries.
- Upgrades the
@ethereumjs/trie
library to Beta 3 which allows to pass in a custom hash function/library (for performance), PR #2043
Beta 2 release for the upcoming breaking release round on the EthereumJS monorepo libraries, see the Beta 1 release notes (CHANGELOG) for the main change set description.
The change with the biggest effect on UX since the last Beta 1 releases is for sure that we have removed default exports all across the monorepo, see PR #2018, we even now added a new linting rule that completely disallows using.
Default exports were a common source of error and confusion when using our libraries in a CommonJS context, leading to issues like Issue #978.
Now every import is a named import and we think the long term benefits will very much outweigh the one-time hassle of some import adoptions.
Since our @ethereumjs/common library is used all across our libraries for chain and HF instantiation this will likely be the one being the most prevalent regarding the need for some import updates.
So Common import and usage is changing from:
import Common, { Chain, Hardfork } from '@ethereumjs/common'
const common = new Common({ chain: Chain.Mainnet, hardfork: Hardfork.Merge })
to:
import { Common, Chain, Hardfork } from '@ethereumjs/common'
const common = new Common({ chain: Chain.Mainnet, hardfork: Hardfork.Merge })
The main DefaultStateManager
class import has been updated, so import changes from:
import DefaultStateManager from '@ethereumjs/statemanager'
to:
import { DefaultStateManager } from '@ethereumjs/statemanager'
- Added
ESLint
strict boolean expressions linting rule, PR #2030
This release is part of a larger breaking release round where all EthereumJS monorepo libraries (VM, Tx, Trie, other) get major version upgrades. This round of releases has been prepared for a long time and we are really pleased with and proud of the result, thanks to all team members and contributors who worked so hard and made this possible! 🙂 ❤️
We have gotten rid of a lot of technical debt and inconsistencies and removed unused functionality, renamed methods, improved on the API and on TypeScript typing, to name a few of the more local type of refactoring changes. There are also broader structural changes like a full transition to native JavaScript BigInt
values as well as various somewhat deep-reaching refactorings, both within a single package as well as some reaching beyond the scope of a single package. Also two completely new packages - @ethereumjs/evm
(in addition to the existing @ethereumjs/vm
package) and @ethereumjs/statemanager
- have been created, leading to a more modular Ethereum JavaScript VM.
We are very much confident that users of the libraries will greatly benefit from the changes being introduced. However - along the upgrade process - these releases require some extra attention and care since the changeset is both so big and deep reaching. We highly recommend to closely read the release notes, we have done our best to create a full picture on the changes with some special emphasis on delicate code and API parts and give some explicit guidance on how to upgrade and where problems might arise!
So, enjoy the releases (this is a first round of Beta releases, with final releases following a couple of weeks after if things go well)! 🎉
The EthereumJS Team
The StateManager
has been extracted from the VM
and is now a separate package, see PR #1817. The new package can be installed separately with:
npm i @ethereumjs/statemanager
The @ethereumjs/vm
package still has this package added as a dependency and it is automatically integrated. The StateManager
provides a high-level interface to an underlying state storage solution. This is classically a Trie
(in our case: an @ethereumjs/trie
) instance, but can also be something else, e.g. a plain database, an underlying RPC connection or a Verkle Tree in the future.
The extraction of this module allows to easier customize a StateManager
and provide or use your own implementations in the future. It is now also possible to use the StateManager
standalone for high-level state access in a non-VM context.
A StateManager
must adhere to a predefined interface StateManager
and implement a certain set of state access methods like getAccount()
, putContractCode()
,... Such an implementation is then guaranteed to work e.g. in the @ethereumjs/vm
implementation.
Along with the package extraction parts of the old StateManager
has also been reworked. So if you are building on the old StateManager
class/interface it is likely not enough to just change on the import statement but do some adjustments to get things working. Here is a summary of the changes.
Methods added:
flush()
Methods removed:
touchAccount()
(EVM-specific, remained inEVMStateAccess
interface in EVM)- All methods from
EIP2929StateManager
(removed as separate interface) (EVM-specific, remained inEVMStateAccess
interface in EVM) getOriginalContractStorage()
(EVM-specific, remained inEVMStateAccess
interface in EVM)hasGenesisState()
(removed)generateGenesis()
(removed)generateCanonicalGenesis()
(EVM-specific, remained inEVMStateAccess
interface in EVM)cleanupTouchedAccounts()
(EVM-specific, remained inEVMStateAccess
interface in EVM)clearOriginalStorageCache()
(EVM-specific, remained inEVMStateAccess
interface in EVM)
Other Changes:
- New partial parent interface
StateAccess
with just the access focused functionality
So overall the StateManager
interface got a lot leaner requiring fewer methods to be implemented which should make an implementation and/or adoption a lot easier.
The StateManager
package ships with a Trie-based StateManager
implementation extending from a BaseStateManager
which might be a suitable starting point for your own implementations. This will very much depend on the specific needs though.
With this round of breaking releases the whole EthereumJS library stack removes the BN.js library and switches to use native JavaScript BigInt values for large-number operations and interactions.
This makes the libraries more secure and robust (no more BN.js v4 vs v5 incompatibilities) and generally comes with substantial performance gains for the large-number-arithmetic-intense parts of the libraries (particularly the VM).
To allow for BigInt support our build target has been updated to ES2020. We feel that some still remaining browser compatibility issues on the edges (old Safari versions e.g.) are justified by the substantial gains this step brings along.
See #1671 and #1771 for the core BigInt
transition PRs.
The above TypeScript options provide some semantic sugar like allowing to write an import like import React from "react"
instead of import * as React from "react"
, see esModuleInterop and allowSyntheticDefaultImports docs for some details.
While this is convenient, it deviates from the ESM specification and forces downstream users into using these options, which might not be desirable, see this TypeScript Semver docs section for some more detailed argumentation.
Along with the breaking releases we have therefore deactivated both of these options and you might therefore need to adapt some import statements accordingly. Note that you still can activate these options in your bundle and/or transpilation pipeline (but now you also have the option not to, which you didn't have before).