diff --git a/packages/evm/CHANGELOG.md b/packages/evm/CHANGELOG.md index 915d84c3b8..d24c8d91a4 100644 --- a/packages/evm/CHANGELOG.md +++ b/packages/evm/CHANGELOG.md @@ -25,7 +25,7 @@ const evm = await EVM.create({ common, bls }) ### Verkle Dependency Decoupling -We have relatively light-heartedly added a new `@ethereumjs/verkle` main dependency to the VM/EVM stack in the `v7.2.1` release, which added an additional burden to the bundle size by several 100 KB and additionally draw in non-necessary WASM code. Coupling with Verkle has been refactored in PR [#3462](https://github.com/ethereumjs/ethereumjs-monorepo/pull/3462) and the direct dependency has been removed again. +We have relatively light-heartedly added a new `@ethereumjs/verkle` main dependency to the VM/EVM stack in the `v7.2.1` release, which added an additional burden to the bundle size by several hundred KB and additionally draws in unnecessary WASM code. Coupling with Verkle has been refactored in PR [#3462](https://github.com/ethereumjs/ethereumjs-monorepo/pull/3462) and the direct dependency has been removed again. An update to this release is therefore strongly recommended even if other fixes or features are not that relevant for you right now. @@ -2066,7 +2066,7 @@ vm.runTx( // Handle errors appropriately } // Do something with the result - } + }, ) ``` diff --git a/packages/vm/CHANGELOG.md b/packages/vm/CHANGELOG.md index 4505c328bf..e514ba606b 100644 --- a/packages/vm/CHANGELOG.md +++ b/packages/vm/CHANGELOG.md @@ -22,7 +22,7 @@ This EIP will be activated along the Prague hardfork. Note that this EIP has no ### Verkle Dependency Decoupling -We have relatively light-heartedly added a new `@ethereumjs/verkle` main dependency to the VM/EVM stack in the `v7.2.1` release, which added an additional burden to the bundle size by several 100 KB and additionally draw in non-necessary WASM code. Coupling with Verkle has been refactored in PR [#3462](https://github.com/ethereumjs/ethereumjs-monorepo/pull/3462) and the direct dependency has been removed again. +We have relatively light-heartedly added a new `@ethereumjs/verkle` main dependency to the VM/EVM stack in the `v7.2.1` release, which added an additional burden to the bundle size by several hundred KB and additionally draws in unnecessary WASM code. Coupling with Verkle has been refactored in PR [#3462](https://github.com/ethereumjs/ethereumjs-monorepo/pull/3462) and the direct dependency has been removed again. An update to this release is therefore strongly recommended even if other fixes or features are not that relevant for you right now. @@ -2081,7 +2081,7 @@ vm.runTx( // Handle errors appropriately } // Do something with the result - } + }, ) ```