bloom
bloom copied to clipboard
chore(deps): bump @ethereumjs/tx from 5.3.0 to 5.4.0 in /packages/shared
Bumps @ethereumjs/tx from 5.3.0 to 5.4.0.
Release notes
Sourced from @ethereumjs/tx's releases.
@ethereumjs/txv5.4.0EOA Code Transaction (EIP-7702) (outdated)
This release introduces support for a non-final version of EIP-7702 EOA code transactions, see PR #3470. This tx type allows to run code in the context of an EOA and therefore extend the functionality which can be "reached" from respectively integrated into the scope of an otherwise limited EOA account.
The following is a simple example how to use an
EOACodeEIP7702Transactionwith one autorization list item:// ./examples/EOACodeTx.tsimport { Chain, Common, Hardfork } from '
@ethereumjs/common' import { EOACodeEIP7702Transaction } from '@ethereumjs/tx' import type { PrefixedHexString } from '@ethereumjs/util'const ones32 =
0x${'01'.repeat(32)}as PrefixedHexStringconst common = new Common({ chain: Chain.Mainnet, hardfork: Hardfork.Cancun, eips: [7702] }) const tx = EOACodeEIP7702Transaction.fromTxData( { authorizationList: [ { chainId: '0x1', address:
0x${'20'.repeat(20)}, nonce: ['0x1'], yParity: '0x1', r: ones32, s: ones32, }, ], }, { common } )console.log(
EIP-7702 EOA code tx created with ${tx.authorizationList.length} authorization list item(s).)Note: Things move fast with
EIP-7702and the released implementation is based on this commit and therefore already outdated. An up-to-date version will be released along our breaking release round planned for early September 2024.Verkle Updates
Other Features
... (truncated)
Commits
27e2c02New Minor Releases (Prague Outlook, Bundle Fixes, Bugfixes) (#3527)3deff95Monorepo: Add missing Import File Extensions / debug Import Fixes (v8 port) (...17b4650EVM: Vite visualize:bundle Adjustments (maintenance-v8) (#3493)c6ff99aAddtrie.del(#3486)e08c229EVM: Generic BLS Interface / Use JS Implementation (@noble/curves) as Default...4947a7eOptimize storage of default values inVerkleNode(#3476)3171920Fix statemanager empty code bug (#3483)8d5bca0Implement EIP 7702 (#3470)cc2848aFix Browser CI (#3369)436bcc9VM: EVM Opts Chaining for better DevEx (#3481)- Additional commits viewable in compare view
You can trigger a rebase of this PR by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Note Automatic rebases have been disabled on this pull request as it has been open for over 30 days.