Skip to content

fix(deps): update dependency viem to ^2.52.2#786

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/viem-2.x
Open

fix(deps): update dependency viem to ^2.52.2#786
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/viem-2.x

Conversation

@renovate

@renovate renovate Bot commented Feb 22, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
viem (source) ^2.23.2^2.52.2 age confidence

Release Notes

wevm/viem (viem)

v2.52.2

Compare Source

Patch Changes

v2.52.0

Compare Source

Minor Changes

v2.51.3

Compare Source

Patch Changes

v2.51.2

Compare Source

Patch Changes

v2.51.0

Compare Source

Minor Changes
Patch Changes

v2.50.4

Compare Source

Patch Changes

v2.50.3

Compare Source

Patch Changes

v2.49.3

Compare Source

Patch Changes

v2.49.2

Compare Source

Patch Changes

v2.49.0

Compare Source

Minor Changes
Patch Changes
  • #​4608 0e282d69d534e7fc277300260e31c07c4d8cb325 Thanks @​jxom! - viem/tempo: Updated Actions.wallet.send parameters to match the latest wallet RPC schema: renamed value to amount, added an optional memo field (UTF-8, max 32 bytes; rejected for non-TIP-20 tokens), and widened token to also accept curated tokenlist symbols.

    await Actions.wallet.send(client, {
    +  amount: '1.5',
    +  memo: 'thanks',
       to: '0x...',
    -  token: '0x...',
    +  token: 'pathUsd',
    -  value: '1.5',
    })

v2.48.11

Compare Source

Patch Changes

v2.48.8

Compare Source

Patch Changes

v2.48.7

Compare Source

Patch Changes

v2.48.6

Compare Source

Patch Changes

v2.48.4

Compare Source

Patch Changes
  • #​4532 cb3206e1039b21e45e4ed17898aa1ff561cdecb4 Thanks @​jxom! - viem/tempo: Added virtual address actions for the TIP-1022 Address Registry precompile: virtualAddress.getMasterAddress, virtualAddress.resolve, virtualAddress.registerMaster, virtualAddress.registerMasterSync. Re-exported VirtualAddress and VirtualMaster from ox/tempo.

v2.48.3

Compare Source

Patch Changes

v2.48.2

Compare Source

Patch Changes

v2.48.1

Compare Source

Patch Changes

v2.48.0

Compare Source

Minor Changes

v2.47.19

Compare Source

Patch Changes

v2.47.18

Compare Source

Patch Changes

v2.47.17

Compare Source

Patch Changes

v2.47.16

Compare Source

Patch Changes

v2.47.15

Compare Source

Patch Changes

v2.47.14

Compare Source

Patch Changes

v2.47.12

Compare Source

Patch Changes

v2.47.11

Compare Source

Patch Changes

v2.47.10

Compare Source

Patch Changes

v2.47.6

Compare Source

Patch Changes

v2.47.5

Compare Source

Patch Changes

v2.47.4

Compare Source

Patch Changes

v2.47.2

Compare Source

Patch Changes

v2.47.1

Compare Source

Patch Changes

v2.47.0

Compare Source

Minor Changes
  • 1adb83804d5f6c3f36d5f293de88532330d52dc7 Thanks @​jxom! - Breaking (viem/tempo): chainId is now required when signing access key authorizations with signKeyAuthorization. It is recommended to use client.accessKey.signAuthorization instead for inferred chain ID.

    import { client } from './viem.config'
    import { Account } from 'viem/tempo'
    
    const account = Account.from({ privateKey: '0x...' })
    const accessKey = Account.fromP256(generatePrivateKey(), {
      access: account,
    })
    
    - const keyAuthorization = await account.signKeyAuthorization(accessKey)
    + const keyAuthorization = await client.accessKey.signAuthorization({
    +   account,
    +   accessKey,
    + })
Patch Changes

v2.46.3

Compare Source

Patch Changes

v2.46.2

Compare Source

Patch Changes

v2.46.1

Compare Source

Patch Changes

v2.46.0

Compare Source

Minor Changes
  • #​4304 b6b50d40fb6bbadc851377b74b2dd4da584958b0 Thanks @​jxom! - Breaking (viem/tempo): Renamed nonceKey: 'random' to nonceKey: 'expiring' to align with TIP-1009 terminology.

    TIP-1009 defines "expiring nonces" as time-based replay protection using validBefore timestamps. The name 'expiring' better describes the mechanism than 'random'.

    await sendTransaction(client, {
      account,
    - nonceKey: 'random',
    + nonceKey: 'expiring',
      to: '0x...',
    })

v2.45.3

Compare Source

Patch Changes

v2.45.2

Compare Source

Patch Changes

v2.45.1

Compare Source

Patch Changes

v2.45.0

Compare Source

Minor Changes
Patch Changes

v2.44.4

Compare Source

Patch Changes

v2.44.2

Compare Source

Patch Changes

v2.44.1

Compare Source

Patch Changes

v2.44.0

Compare Source

Minor Changes
  • #​4201 0268ca88c67c7851ae03d8d41508657f2b62729d Thanks @​jxom! - ### viem/tempo Extension

    Added support for Tempo Moderato testnet.

    • (Breaking): Renamed tempoTestnettempoModerato. The old export is deprecated but still available as an alias.
    • (Breaking): Renamed reward.startreward.distribute: Renamed for distributing rewards (no longer supports streaming).
    • (Breaking): Renamed reward.getTotalPerSecondreward.getGlobalRewardPerToken: Returns the global reward per token value instead of per-second rate.
    • (Breaking): Renamed reward.watchRewardScheduledreward.watchRewardDistributed: Watches for reward distributed events.
    • (Breaking): Removed nonce.getNonceKeyCount.
    • (Breaking): Removed nonce.watchActiveKeyCountChanged.
    • (Breaking): Removed amm.watchFeeSwap (FeeSwap event no longer emitted by protocol).
    • (Breaking): OrderPlaced event now includes isFlipOrder and flipTick fields. The FlipOrderPlaced event has been removed and merged into OrderPlaced.
    • (Breaking): Renamed Address.stablecoinExchangeAddress.stablecoinDex.
    • (Breaking): Renamed Abis.stablecoinExchangeAbis.stablecoinDex.
    • Added dex.cancelStale action to cancel stale orders from restricted makers.
    • Added salt parameter to token.create.
Patch Changes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • "after 8:00 before 23:00 every weekday except on Friday"

🚦 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 fb37253 to 5729d8a Compare March 28, 2025 05:54
@renovate renovate Bot changed the title fix(deps): update dependency viem to ^2.23.14 fix(deps): update dependency viem to ^2.23.15 Mar 28, 2025
@renovate renovate Bot force-pushed the renovate/viem-2.x branch from 5729d8a to 62d9588 Compare March 30, 2025 02:58
@renovate renovate Bot changed the title fix(deps): update dependency viem to ^2.23.15 fix(deps): update dependency viem to ^2.24.0 Mar 30, 2025
@renovate renovate Bot force-pushed the renovate/viem-2.x branch from 62d9588 to 9c5185a Compare March 30, 2025 05:53
@renovate renovate Bot changed the title fix(deps): update dependency viem to ^2.24.0 fix(deps): update dependency viem to ^2.24.1 Mar 30, 2025
@renovate renovate Bot force-pushed the renovate/viem-2.x branch 5 times, most recently from e79e2ce to df5207b Compare March 31, 2025 23:23
@renovate renovate Bot changed the title fix(deps): update dependency viem to ^2.24.1 fix(deps): update dependency viem to ^2.24.2 Mar 31, 2025
@renovate renovate Bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 8eb40c1 to c1fd369 Compare April 3, 2025 22:31
@renovate renovate Bot changed the title fix(deps): update dependency viem to ^2.24.2 fix(deps): update dependency viem to ^2.24.3 Apr 3, 2025
@renovate renovate Bot force-pushed the renovate/viem-2.x branch from c1fd369 to 50334d6 Compare April 6, 2025 06:04
@renovate renovate Bot changed the title fix(deps): update dependency viem to ^2.24.3 fix(deps): update dependency viem to ^2.25.0 Apr 6, 2025
@renovate renovate Bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 85e7317 to bf447aa Compare April 10, 2025 03:37
@renovate renovate Bot changed the title fix(deps): update dependency viem to ^2.25.0 fix(deps): update dependency viem to ^2.26.0 Apr 10, 2025
@renovate renovate Bot force-pushed the renovate/viem-2.x branch from bf447aa to e1d8afd Compare April 10, 2025 22:12
@renovate renovate Bot changed the title fix(deps): update dependency viem to ^2.26.0 fix(deps): update dependency viem to ^2.26.1 Apr 10, 2025
@renovate renovate Bot force-pushed the renovate/viem-2.x branch from e1d8afd to 1eabbbe Compare April 11, 2025 10:07
@renovate renovate Bot changed the title fix(deps): update dependency viem to ^2.26.1 fix(deps): update dependency viem to ^2.26.2 Apr 11, 2025
@renovate renovate Bot force-pushed the renovate/viem-2.x branch from 1eabbbe to 050ffa3 Compare April 14, 2025 03:48
@renovate renovate Bot changed the title fix(deps): update dependency viem to ^2.26.2 fix(deps): update dependency viem to ^2.26.3 Apr 14, 2025
@renovate renovate Bot force-pushed the renovate/viem-2.x branch 3 times, most recently from acb5202 to 2e899ff Compare April 17, 2025 03:47
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