@ethereumjs/tx v3.5.1
·
1539 commits
to master
since this release
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 ] })