Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 22, 2025

This PR contains the following updates:

Package Change Age Confidence
viem (source) ^2.23.2 -> ^2.34.0 age confidence

Release Notes

wevm/viem (viem)

v2.34.0

Compare Source

Minor Changes
Patch Changes

v2.33.3

Compare Source

Patch Changes

v2.33.2

Compare Source

Patch Changes

v2.33.1

Compare Source

Patch Changes

v2.33.0

Compare Source

Minor Changes
Patch Changes

v2.32.1

Compare Source

Patch Changes

v2.32.0

Compare Source

Minor Changes
  • #​3799 32f388b97126f3a30aa2f5c1ec04eae1fb52d23d Thanks @​jxom! - Types (Breaking): Added version property to toCoinbaseSmartAccount, and add version: '1.1'.

    To migrate to this new type change in a current implementation, add version: '1' as a property to toCoinbaseSmartAccount.

Patch Changes

v2.31.7

Compare Source

Patch Changes

v2.31.6

Compare Source

Patch Changes

v2.31.4

Compare Source

Patch Changes

v2.31.3

Compare Source

Patch Changes

v2.31.2

Compare Source

Patch Changes

v2.31.1

Compare Source

Patch Changes

v2.31.0

Compare Source

Minor Changes
Patch Changes

v2.30.6

Compare Source

Patch Changes

v2.30.5

Compare Source

Patch Changes

v2.30.4

Compare Source

Patch Changes

v2.30.3

Compare Source

v2.30.2

Compare Source

Patch Changes

v2.30.1

Compare Source

Patch Changes

v2.30.0

Compare Source

Minor Changes
Patch Changes

v2.29.4

Compare Source

Patch Changes

v2.29.3

Compare Source

Patch Changes

v2.29.2

Compare Source

Patch Changes

v2.29.1

Compare Source

Patch Changes

v2.29.0

Compare Source

Minor Changes
Patch Changes

v2.28.4

Compare Source

Patch Changes

v2.28.3

Compare Source

Patch Changes

v2.28.2

Compare Source

Patch Changes

v2.28.1

Compare Source

Patch Changes

v2.28.0

Compare Source

Minor Changes
Patch Changes

v2.27.3

Compare Source

Patch Changes

v2.27.2

Patch Changes

v2.27.0

Compare Source

Minor Changes
Patch Changes

v2.26.5

Compare Source

Patch Changes

v2.26.4

Compare Source

Patch Changes

v2.26.3

Compare Source

Patch Changes

v2.26.2

Compare Source

Patch Changes

v2.26.1

Compare Source

Patch Changes

v2.26.0

Compare Source

Minor Changes
getCallsStatus
```diff
const result = await client.getCallsStatus({ id })
//    ^?
      {
+       atomic: boolean
+       chainId: number
+       id: string
        receipts: Receipt[]
-       status: 'PENDING' | 'CONFIRMED'
+       status: 'pending' | 'success' | 'failure' | undefined
+       statusCode: number
+       version: string
}
```
sendCalls
```diff
const result = await client.sendCalls({ calls })
//    ^?
-     string
+     { id: string, capabilities?: Capabilities }
```
waitForCallsStatus
```diff
const result = await client.waitForCallsStatus({ id })
//    ^?
      {
+       atomic: boolean
+       chainId: number
+       id: string
        receipts: Receipt[]
-       status: 'PENDING' | 'CONFIRMED'
+       status: 'pending' | 'success' | 'failure' | undefined
+       statusCode: number
+       version: string
}
```
Patch Changes

v2.25.0

Compare Source

Minor Changes
Patch Changes

v2.24.3

Compare Source

Patch Changes

v2.24.2

Compare Source

Patch Changes

v2.24.1

Compare Source

Patch Changes

v2.24.0

Compare Source

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 relay = privateKeyToAccount('0x...')
    
    const authorization = await client.signAuthorization({
      account: eoa,
      contractAddress: '0x...',
    + executor: 'self',
    })
    
    const transaction = await client.sendTransaction({
    - account: relay,
    + account: eoa,
      authorizationList: [authorization],
    })
Patch Changes

v2.23.15

Compare Source

Patch Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "after 8:00 before 23:00 every weekday except on Friday" in timezone UTC.

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot enabled auto-merge (squash) February 22, 2025 05:33
@renovate renovate bot force-pushed the renovate/viem-2.x branch from c0bef25 to 4740b59 Compare February 24, 2025 11:40
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.23.3 fix(deps): update dependency viem to ^2.23.4 Feb 24, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from edeac77 to 4950fad Compare February 27, 2025 02:38
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.23.4 fix(deps): update dependency viem to ^2.23.5 Feb 27, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from cf2914d to 1e84135 Compare March 7, 2025 06:51
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.23.5 fix(deps): update dependency viem to ^2.23.6 Mar 7, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 1e84135 to 01039c6 Compare March 10, 2025 06:49
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.23.6 fix(deps): update dependency viem to ^2.23.7 Mar 10, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch 3 times, most recently from f5d6189 to 5559765 Compare March 11, 2025 06:08
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.23.7 fix(deps): update dependency viem to ^2.23.8 Mar 11, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 5559765 to dd6f83c Compare March 12, 2025 23:03
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.23.8 fix(deps): update dependency viem to ^2.23.9 Mar 12, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from dd6f83c to 59212b9 Compare March 15, 2025 02:55
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.23.9 fix(deps): update dependency viem to ^2.23.10 Mar 15, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from b4e77e2 to 25a4c3c Compare March 18, 2025 01:53
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.23.10 fix(deps): update dependency viem to ^2.23.11 Mar 18, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch 6 times, most recently from 3fae51f to 4e906e3 Compare March 19, 2025 16:44
@renovate renovate bot force-pushed the renovate/viem-2.x branch from ef71109 to 9b353c6 Compare June 11, 2025 16:54
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.30.6 fix(deps): update dependency viem to ^2.31.0 Jun 11, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 9b353c6 to 9c26319 Compare June 15, 2025 22:49
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.31.0 fix(deps): update dependency viem to ^2.31.1 Jun 15, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 9c26319 to 8f6cd32 Compare June 16, 2025 14:07
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.31.1 fix(deps): update dependency viem to ^2.31.2 Jun 16, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 8f6cd32 to d16e7ca Compare June 19, 2025 15:42
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.31.2 fix(deps): update dependency viem to ^2.31.3 Jun 19, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from d16e7ca to 261e5f0 Compare June 24, 2025 20:24
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.31.3 fix(deps): update dependency viem to ^2.31.4 Jun 24, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 261e5f0 to a8c3d5a Compare July 3, 2025 11:45
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.31.4 fix(deps): update dependency viem to ^2.31.6 Jul 3, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from a8c3d5a to 25b77f2 Compare July 7, 2025 20:48
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.31.6 fix(deps): update dependency viem to ^2.31.7 Jul 7, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 25b77f2 to e8a7f11 Compare July 19, 2025 18:03
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.31.7 fix(deps): update dependency viem to ^2.32.0 Jul 19, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from e8a7f11 to ae3c1ab Compare July 22, 2025 06:44
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.32.0 fix(deps): update dependency viem to ^2.32.1 Jul 22, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from ae3c1ab to 1aeb24c Compare July 23, 2025 20:00
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.32.1 fix(deps): update dependency viem to ^2.33.0 Jul 23, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 1aeb24c to 55ac0ec Compare July 28, 2025 18:39
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.33.0 fix(deps): update dependency viem to ^2.33.1 Jul 28, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 55ac0ec to fb96445 Compare August 3, 2025 12:54
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.33.1 fix(deps): update dependency viem to ^2.33.2 Aug 3, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from fb96445 to 6f265d3 Compare August 10, 2025 08:31
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.33.2 fix(deps): update dependency viem to ^2.33.3 Aug 10, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 6f265d3 to 80c83bd Compare August 19, 2025 13:00
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 80c83bd to 22ff1bb Compare August 21, 2025 17:59
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.33.3 fix(deps): update dependency viem to ^2.34.0 Aug 21, 2025
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.

0 participants