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

Version Packages #3499

Merged
merged 1 commit into from
Mar 27, 2025
Merged

Version Packages #3499

merged 1 commit into from
Mar 27, 2025

Conversation

github-actions[bot]
Copy link
Contributor

@github-actions github-actions bot commented Mar 25, 2025

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

[email protected]

Minor Changes

  • #3427 2a5ded4eab7febcf2b77a88cfe3c34a621d4dfe7 Thanks @jxom! - Stabilized EIP-7702.

    • Added prepareAuthorization and signAuthorization Actions to the Wallet Client.
    • Added hashAuthorization, recoverAuthorizationAddress, and verifyAuthorization Utilities.
    • Renamed account.experimental_signAuthorization to account.signAuthorization.
  • #3427 2a5ded4eab7febcf2b77a88cfe3c34a621d4dfe7 Thanks @jxom! - BREAKING (Experimental): Removed deprecated walletActionsEip5792 export. Use eip5792Actions instead.

  • #3427 2a5ded4eab7febcf2b77a88cfe3c34a621d4dfe7 Thanks @jxom! - BREAKING (Experimental): Removed deprecated ERC-6492 exports in viem/experimental. These are no longer experimental. Use exports from viem instead.

  • #3427 2a5ded4eab7febcf2b77a88cfe3c34a621d4dfe7 Thanks @jxom! - BREAKING (Experimental): Removed deprecated walletActionsErc7715 export. Use erc7715Actions instead.

  • #3427 2a5ded4eab7febcf2b77a88cfe3c34a621d4dfe7 Thanks @jxom! - BREAKING (Experimental):

    Removed EIP-7702 exports in viem/experimental. These are no longer experimental. Use exports from viem or viem/utils instead.

    Note, there is also a behavioral change in the stable EIP-7702 signAuthorization function. Previously, it was assumed that the signer of the Authorization was also the executor of the Transaction. This is no longer the case.

    If the signer of the Authorization is NOT the executor of the Transaction, you no longer need to pass a sponsor parameter.

    const eoa = privateKeyToAccount('0x...')
    const relay = privateKeyToAccount('0x...')
    
    const authorization = await client.signAuthorization({
      account: eoa,
      contractAddress: '0x...',
    - sponsor: true
    })
    
    const transaction = await client.sendTransaction({
      account: relay,
      authorizationList: [authorization],
    })

    If the signer of the Authorization is ALSO the executor of the Transaction, you will now need to pass the executor parameter with a value of 'self'.

    const eoa = privateKeyToAccount('0x...')
    
    const authorization = await client.signAuthorization({
      account: eoa,
      contractAddress: '0x...',
    + executor: 'self',
    })
    
    const transaction = await client.sendTransaction({
      account: eoa,
      authorizationList: [authorization],
    })

Patch Changes

Copy link

vercel bot commented Mar 25, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated (UTC)
viem 🛑 Canceled (Inspect) Mar 27, 2025 0:11am

Copy link

socket-security bot commented Mar 25, 2025

Removed dependencies detected. Learn more about Socket for GitHub ↗︎

🚮 Removed packages: npm/[email protected]

View full report↗︎

@github-actions github-actions bot changed the title chore: version package Version Packages Mar 25, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 8487590 to 50c2f06 Compare March 25, 2025 20:07
@github-actions github-actions bot changed the title Version Packages chore: version package Mar 26, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 50c2f06 to 5b0d91a Compare March 26, 2025 00:41
@github-actions github-actions bot changed the title chore: version package Version Packages Mar 26, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 5b0d91a to befa963 Compare March 26, 2025 00:57
@github-actions github-actions bot changed the title Version Packages chore: version package Mar 26, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch 4 times, most recently from 9915be5 to a6a617a Compare March 26, 2025 22:15
@github-actions github-actions bot force-pushed the changeset-release/main branch 3 times, most recently from f0df036 to 5cdee0c Compare March 26, 2025 22:47
@github-actions github-actions bot force-pushed the changeset-release/main branch 5 times, most recently from 786efad to 91596fe Compare March 26, 2025 23:37
@github-actions github-actions bot changed the title chore: version package Version Packages Mar 26, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 91596fe to 50a7567 Compare March 26, 2025 23:54
@jxom jxom merged commit 24c04e7 into main Mar 27, 2025
1 check passed
@jxom jxom deleted the changeset-release/main branch March 27, 2025 02:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant