Skip to content

@ethereumjs/tx v3.5.1

Compare
Choose a tag to compare
@holgerd77 holgerd77 released this 23 Mar 12:32
· 1539 commits to master since this release
7330c4a

EIP-3860 Support: Limit and Meter Initcode

Support for EIP-3860 has been added to the Tx library. This EIP limits the maximum size of initcode to 49152, see PR #1619.

Note that this EIP is not part of a specific hardfork yet and is considered EXPERIMENTAL (implementation can change along bugfix releases).

For now the EIP has to be activated manually which can be done by using a respective Common instance:

const common = new Common({ chain: Chain.Mainnet, hardfork: Hardfork.London, eips: [ 3860 ] })