Skip to content

fix(deps): update dependency viem to v2.28.0 #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 Adoption Passing Confidence
viem (source) 2.21.34 -> 2.28.0 age adoption passing confidence

Release Notes

wevm/viem (viem)

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

Patch Changes

v2.23.5

Compare Source

Patch Changes

v2.23.4

Compare Source

Patch Changes

v2.23.3

Compare Source

Patch Changes

v2.23.2

Compare Source

Patch Changes

v2.23.1

Compare Source

Patch Changes

v2.23.0

Compare Source

Minor Changes
Patch Changes

v2.22.23

Compare Source

Patch Changes

v2.22.22

Compare Source

Patch Changes

v2.22.21

Compare Source

Patch Changes

v2.22.20

Compare Source

Patch Changes

v2.22.19

Compare Source

Patch Changes

v2.22.17

Compare Source

Patch Changes

v2.22.16

Compare Source

Patch Changes

v2.22.15

Compare Source

Patch Changes

v2.22.14

Compare Source

Patch Changes

v2.22.13

Compare Source

Patch Changes

v2.22.12

Compare Source

Patch Changes

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 369fc9b to a708f7b Compare March 30, 2025 05:01
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.23.15 fix(deps): update dependency viem to v2.24.1 Mar 30, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from a708f7b to 86e104e Compare April 1, 2025 00:30
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.24.1 fix(deps): update dependency viem to v2.24.2 Apr 1, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 86e104e to 72024e0 Compare April 5, 2025 19:53
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.24.2 fix(deps): update dependency viem to v2.24.3 Apr 5, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 72024e0 to ddada89 Compare April 6, 2025 04:52
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.24.3 fix(deps): update dependency viem to v2.25.0 Apr 6, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from ddada89 to 46f14e3 Compare April 10, 2025 00:35
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.25.0 fix(deps): update dependency viem to v2.26.0 Apr 10, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 46f14e3 to 658f3a1 Compare April 11, 2025 01:00
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.26.0 fix(deps): update dependency viem to v2.26.1 Apr 11, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 658f3a1 to b215bcc Compare April 11, 2025 09:17
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.26.1 fix(deps): update dependency viem to v2.26.2 Apr 11, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from b215bcc to 8c4027e Compare April 14, 2025 01:03
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.26.2 fix(deps): update dependency viem to v2.26.3 Apr 14, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 8c4027e to 1b9d712 Compare April 17, 2025 05:08
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.26.3 fix(deps): update dependency viem to v2.26.4 Apr 17, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 1b9d712 to 3f6cd08 Compare April 17, 2025 09:06
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.26.4 fix(deps): update dependency viem to v2.26.5 Apr 17, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 3f6cd08 to a58d5e3 Compare April 18, 2025 01:03
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.26.5 fix(deps): update dependency viem to v2.27.0 Apr 18, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from a58d5e3 to 8a79c98 Compare April 20, 2025 09:07
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.27.0 fix(deps): update dependency viem to v2.27.2 Apr 20, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 8a79c98 to 6b48d0f Compare April 25, 2025 01:32
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.27.2 fix(deps): update dependency viem to v2.27.3 Apr 25, 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 6b48d0f to dfffb05 Compare April 25, 2025 11:05
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.27.3 fix(deps): update dependency viem to v2.28.0 Apr 25, 2025
Copy link

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Addedtailwindcss-animate@​1.0.710010010076100
Addedwagmi@​2.12.251001007696100
Addedpostcss@​8.5.3991008184100
Addedreact@​18.3.11001008397100
Addedtailwind-merge@​2.6.01001008494100
Addedtailwindcss@​3.4.17981008698100
Addedtypescript@​5.8.310010089100100
Addedreact-dom@​18.3.11001009197100
Addedviem@​2.28.010010010097100

View full report

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