Skip to content

fix(deps): update dependency viem to v2.31.7 #33

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 4, 2024

This PR contains the following updates:

Package Change Age Confidence
viem (source) 2.21.34 -> 2.31.7 age confidence

Release Notes

wevm/viem (viem)

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

v2.23.14

Compare Source

Patch Changes

v2.23.13

Compare Source

Patch Changes

v2.23.12

Compare Source

Patch Changes

v2.23.11

Compare Source

Patch Changes

v2.23.10

Compare Source

Patch Changes

v2.23.9

Compare Source

Patch Changes

v2.23.8

Compare Source

Patch Changes

v2.23.7

Compare Source

Patch Changes

v2.23.6

[Compare Source](https://redirect.github.com/wevm/viem/compare/[email protected]@2.2


Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 force-pushed the renovate/viem-2.x branch 2 times, most recently from 177cfa1 to c22bbde Compare November 4, 2024 07:26
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.37 fix(deps): update dependency viem to v2.21.38 Nov 4, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from c22bbde to 2680bfa Compare November 5, 2024 09:15
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.38 fix(deps): update dependency viem to v2.21.39 Nov 5, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 2680bfa to ddb11c9 Compare November 6, 2024 06:52
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.39 fix(deps): update dependency viem to v2.21.40 Nov 6, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from ddb11c9 to 3f23970 Compare November 9, 2024 01:00
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.40 fix(deps): update dependency viem to v2.21.41 Nov 9, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 3f23970 to 6dabf32 Compare November 10, 2024 00:44
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.41 fix(deps): update dependency viem to v2.21.42 Nov 10, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 4d63226 to 0e0b98f Compare November 11, 2024 02:02
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.42 fix(deps): update dependency viem to v2.21.43 Nov 11, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 0e0b98f to afdf5dd Compare November 12, 2024 06:15
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.43 fix(deps): update dependency viem to v2.21.44 Nov 12, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from afdf5dd to 85d4607 Compare November 16, 2024 03:47
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.44 fix(deps): update dependency viem to v2.21.45 Nov 16, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 85d4607 to 46395e1 Compare November 20, 2024 04:07
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.45 fix(deps): update dependency viem to v2.21.47 Nov 20, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 46395e1 to 990f553 Compare November 22, 2024 01:24
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.47 fix(deps): update dependency viem to v2.21.48 Nov 22, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 990f553 to b6bbf21 Compare November 24, 2024 22:16
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.48 fix(deps): update dependency viem to v2.21.49 Nov 24, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from b6bbf21 to 1b68eab Compare November 27, 2024 12:59
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.49 fix(deps): update dependency viem to v2.21.50 Nov 27, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 1b68eab to 152faab Compare November 29, 2024 08:00
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.50 fix(deps): update dependency viem to v2.21.51 Nov 29, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 152faab to b02e7c5 Compare December 1, 2024 13:42
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.51 fix(deps): update dependency viem to v2.21.52 Dec 1, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from da5f85f to de5b69e Compare May 19, 2025 19:28
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.29.3 fix(deps): update dependency viem to v2.29.4 May 19, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from de5b69e to 11e4c65 Compare May 23, 2025 09:52
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.29.4 fix(deps): update dependency viem to v2.30.0 May 23, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 11e4c65 to 94d6f96 Compare May 27, 2025 05:21
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.30.0 fix(deps): update dependency viem to v2.30.1 May 27, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 94d6f96 to 86faedd Compare May 31, 2025 11:18
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.30.1 fix(deps): update dependency viem to v2.30.3 May 31, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 86faedd to f3ed3b8 Compare May 31, 2025 14:39
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.30.3 fix(deps): update dependency viem to v2.30.4 May 31, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from f3ed3b8 to 7bae103 Compare May 31, 2025 18:57
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.30.4 fix(deps): update dependency viem to v2.30.5 May 31, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 7bae103 to bad8a23 Compare June 6, 2025 22:29
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.30.5 fix(deps): update dependency viem to v2.30.6 Jun 6, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from bad8a23 to fedea65 Compare June 11, 2025 15:41
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.30.6 fix(deps): update dependency viem to v2.31.0 Jun 11, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from fedea65 to 2d86af4 Compare June 15, 2025 23:25
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.31.0 fix(deps): update dependency viem to v2.31.1 Jun 15, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 2d86af4 to 4774c1d Compare June 16, 2025 18:11
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.31.1 fix(deps): update dependency viem to v2.31.2 Jun 16, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 4774c1d to 57459d7 Compare June 19, 2025 14:15
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.31.2 fix(deps): update dependency viem to v2.31.3 Jun 19, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 57459d7 to 05408bd Compare June 24, 2025 18:31
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.31.3 fix(deps): update dependency viem to v2.31.4 Jun 24, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 05408bd to 421f558 Compare July 3, 2025 09:03
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.31.4 fix(deps): update dependency viem to v2.31.6 Jul 3, 2025
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 421f558 to 34efa31 Compare July 7, 2025 18:46
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.31.6 fix(deps): update dependency viem to v2.31.7 Jul 7, 2025
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.

0 participants