Skip to content

Update dependency viem to ^2.53.1#375

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

Update dependency viem to ^2.53.1#375
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/viem-2.x

Conversation

@renovate

@renovate renovate Bot commented Dec 2, 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.38.6^2.53.1 age confidence

Release Notes

wevm/viem (viem)

v2.53.1

Compare Source

Patch Changes

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 `flipT

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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 8 times, most recently from 1a89d01 to d82965d Compare December 8, 2025 02:02
@renovate renovate Bot changed the title Update dependency viem to ^2.39.0 Update dependency viem to ^2.39.2 Dec 8, 2025
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from d82965d to 7ea0fdc Compare December 9, 2025 03:10
@renovate renovate Bot changed the title Update dependency viem to ^2.39.2 Update dependency viem to ^2.39.3 Dec 9, 2025
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 7ea0fdc to f3c3152 Compare December 13, 2025 22:39
@renovate renovate Bot changed the title Update dependency viem to ^2.39.3 Update dependency viem to ^2.40.0 Dec 13, 2025
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from f3c3152 to 8150b65 Compare December 14, 2025 22:13
@renovate renovate Bot changed the title Update dependency viem to ^2.40.0 Update dependency viem to ^2.40.1 Dec 14, 2025
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 8150b65 to 925a3f5 Compare December 15, 2025 02:07
@renovate renovate Bot changed the title Update dependency viem to ^2.40.1 Update dependency viem to ^2.40.2 Dec 15, 2025
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 925a3f5 to 15309d8 Compare December 16, 2025 03:46
@renovate renovate Bot changed the title Update dependency viem to ^2.40.2 Update dependency viem to ^2.40.3 Dec 16, 2025
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 879b2f4 to 629b6d5 Compare December 22, 2025 21:44
@renovate renovate Bot changed the title Update dependency viem to ^2.40.3 Update dependency viem to ^2.40.4 Dec 22, 2025
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 6c16ef2 to 79c7561 Compare December 23, 2025 04:45
@renovate renovate Bot changed the title Update dependency viem to ^2.40.4 Update dependency viem to ^2.41.2 Dec 23, 2025
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch 2 times, most recently from e8ed480 to d7f4aea Compare January 3, 2026 06:06
@renovate renovate Bot changed the title Update dependency viem to ^2.41.2 Update dependency viem to ^2.42.0 Jan 3, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from d7f4aea to d320c70 Compare January 4, 2026 08:43
@renovate renovate Bot changed the title Update dependency viem to ^2.42.0 Update dependency viem to ^2.42.1 Jan 4, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 7b54434 to 1a7776c Compare January 20, 2026 00:43
@renovate renovate Bot changed the title Update dependency viem to ^2.43.3 Update dependency viem to ^2.43.4 Jan 20, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch 6 times, most recently from 760e14a to c53df1e Compare January 23, 2026 05:55
@renovate renovate Bot changed the title Update dependency viem to ^2.43.4 Update dependency viem to ^2.43.5 Jan 23, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch 4 times, most recently from bee0845 to 36faa1d Compare January 29, 2026 02:24
@renovate renovate Bot changed the title Update dependency viem to ^2.43.5 Update dependency viem to ^2.44.0 Jan 29, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 36faa1d to 90f5de3 Compare January 30, 2026 05:29
@renovate renovate Bot changed the title Update dependency viem to ^2.44.0 Update dependency viem to ^2.44.1 Jan 30, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 90f5de3 to 3d6ec4c Compare February 2, 2026 13:10
@renovate renovate Bot changed the title Update dependency viem to ^2.44.1 Update dependency viem to ^2.44.2 Feb 2, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 3d6ec4c to 77f6d20 Compare February 4, 2026 21:32
@renovate renovate Bot changed the title Update dependency viem to ^2.44.2 Update dependency viem to ^2.44.4 Feb 4, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 63c500d to d21729c Compare February 14, 2026 12:39
@renovate renovate Bot changed the title Update dependency viem to ^2.44.4 Update dependency viem to ^2.45.0 Feb 14, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 27663fa to 0c75868 Compare February 19, 2026 00:34
@renovate renovate Bot changed the title Update dependency viem to ^2.45.0 Update dependency viem to ^2.45.1 Feb 19, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 13889b7 to a9d934e Compare February 27, 2026 08:59
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