Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump @ethereumjs/tx from 5.3.0 to 5.4.0 in /packages/shared #2853

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2024

Bumps @ethereumjs/tx from 5.3.0 to 5.4.0.

Release notes

Sourced from @​ethereumjs/tx's releases.

@​ethereumjs/tx v5.4.0

EOA 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 EOACodeEIP7702Transaction with one autorization list item:

// ./examples/EOACodeTx.ts
import { Chain, Common, Hardfork } from '@​ethereumjs/common'
import { EOACodeEIP7702Transaction } from '@​ethereumjs/tx'
import type { PrefixedHexString } from '@​ethereumjs/util'
const ones32 = 0x${'01'.repeat(32)} as PrefixedHexString
const 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-7702 and 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

  • Update kzg-wasm to 0.4.0, PR #3358
  • Shift Verkle to osaka hardfork, PR #3371

Other Features

  • Extend BlobEIP4844Transaction.networkWrapperToJson() to also include the 4844 fields, PR #3365
  • 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)

... (truncated)

Commits
  • 27e2c02 New Minor Releases (Prague Outlook, Bundle Fixes, Bugfixes) (#3527)
  • 3deff95 Monorepo: Add missing Import File Extensions / debug Import Fixes (v8 port) (...
  • 17b4650 EVM: Vite visualize:bundle Adjustments (maintenance-v8) (#3493)
  • c6ff99a Add trie.del (#3486)
  • e08c229 EVM: Generic BLS Interface / Use JS Implementation (@​noble/curves) as Default...
  • 4947a7e Optimize storage of default values in VerkleNode (#3476)
  • 3171920 Fix statemanager empty code bug (#3483)
  • 8d5bca0 Implement EIP 7702 (#3470)
  • cc2848a Fix Browser CI (#3369)
  • 436bcc9 VM: EVM Opts Chaining for better DevEx (#3481)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will 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.

dependabot bot and others added 2 commits October 14, 2024 14:16
Bumps [@ethereumjs/tx](https://github.com/ethereumjs/ethereumjs-monorepo) from 5.3.0 to 5.4.0.
- [Release notes](https://github.com/ethereumjs/ethereumjs-monorepo/releases)
- [Commits](https://github.com/ethereumjs/ethereumjs-monorepo/compare/@ethereumjs/[email protected]...@ethereumjs/[email protected])

---
updated-dependencies:
- dependency-name: "@ethereumjs/tx"
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@jeeanribeiro jeeanribeiro force-pushed the dependabot/npm_and_yarn/packages/shared/ethereumjs/tx-5.4.0 branch from cd4ccf2 to 366fee6 Compare October 14, 2024 20:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant