8000 fix(deps): update dependency viem to ^2.30.1 by renovate[bot] · Pull Request #363 · valora-inc/resolve-kit · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix(deps): update dependency viem to ^2.30.1 #363

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 Mar 25, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
viem (source) ^2.8.16 -> ^2.30.1 age adoption passing confidence

Release Notes

wevm/viem (viem)

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

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

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) March 25, 2024 04:46
@codecov-commenter
Copy link
codecov-commenter commented Mar 25, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 94.82%. Comparing base (abb3633) to head (8e8b57e).

Additional details and impacted files

Impacted file tree graph

@@           Coverage Diff           @@
##             main     #363   +/-   ##
=======================================
  Coverage   94.82%   94.82%           
=======================================
  Files           6        6           
  Lines         116      116           
  Branches       16       16           
=======================================
  Hits          110      110           
  Misses          6        6           

Continue to review full report in Codecov by Sentry.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update abb3633...8e8b57e. Read the comment docs.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot force-pushed the renovate/viem-2.x branch 4 times, most recently from 8ad3c41 to f1a79d1 Compare March 28, 2024 06:45
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.8.18 fix(deps): update dependency viem to ^2.9.0 Mar 28, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch 3 times, most recently from fd68284 to 7a0e466 Compare March 28, 2024 22:57
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.0 fix(deps): update dependency viem to ^2.9.1 Mar 28, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from edb7d0c to 83d2b66 Compare March 29, 2024 08:07
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.1 fix(deps): update dependency viem to ^2.9.2 Mar 29, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from bdecdbb to 6d829e3 Compare March 30, 2024 08:17
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.2 fix(deps): update dependency viem to ^2.9.3 Mar 30, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 9c0b5c4 to 027a706 Compare March 30, 2024 22:46
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.3 fix(deps): update dependency viem to ^2.9.4 Mar 30, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch 3 times, most recently from bad17be to c2fdda9 Compare March 31, 2024 21:56
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.4 fix(deps): update dependency viem to ^2.9.5 Mar 31, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch 4 times, most recently from f3ff44f to 99913a1 Compare April 4, 2024 00:17
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.27.0 fix(deps): update dependency viem to ^2.27.2 Apr 20, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from daad152 to d0d8302 Compare April 24, 2025 22:11
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.27.2 fix(deps): update dependency viem to ^2.27.3 Apr 24, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from d0d8302 to 170de78 Compare April 25, 2025 14:57
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.27.3 fix(deps): update dependency viem to ^2.28.0 Apr 25, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 16ccde3 to e0780d7 Compare May 2, 2025 09:23
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.28.0 fix(deps): update dependency viem to ^2.28.1 May 2, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from e0780d7 to 63baf23 Compare May 5, 2025 04:26
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.28.1 fix(deps): update dependency viem to ^2.28.2 May 5, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 63baf23 to abc3e1c Compare May 5, 2025 09:32
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.28.2 fix(deps): update dependency viem to ^2.28.3 May 5, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from abc3e1c to ab24db9 Compare May 8, 2025 09:28
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.28.3 fix(deps): update dependency viem to ^2.28.4 May 8, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from ab24db9 to 99899bd Compare May 9, 2025 00:33
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.28.4 fix(deps): update dependency viem to ^2.29.0 May 9, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 99899bd to c27a419 Compare May 11, 2025 09:11
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.29.0 fix(deps): update dependency viem to ^2.29.1 May 11, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from c27a419 to e9d9d22 Compare May 13, 2025 16:03
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.29.1 fix(deps): update dependency viem to ^2.29.2 May 13, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from e9d9d22 to 2ffdf84 Compare May 18, 2025 09:15
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.29.2 fix(deps): update dependency viem to ^2.29.3 May 18, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 0d87ed5 to c119779 Compare May 19, 2025 18:33
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.29.3 fix(deps): update dependency viem to ^2.29.4 May 19, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from c119779 to 6ce5de8 Compare May 23, 2025 09:34
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.29.4 fix(deps): update dependency viem to ^2.30.0 May 23, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 6ce5de8 to 8e8b57e Compare May 27, 2025 05:12
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.30.0 fix(deps): update dependency viem to ^2.30.1 May 27, 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.

1 participant
0