Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 28, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
viem (source) 2.23.142.44.4 age confidence

Release Notes

wevm/viem (viem)

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

v2.43.5

Compare Source

Patch Changes

v2.43.4

Compare Source

Patch Changes

v2.43.3

Compare Source

Patch Changes

v2.43.2

Compare Source

Patch Changes

v2.43.1

Compare Source

Patch Changes

v2.43.0

Compare Source

Minor Changes
  • #​4107 b423fc17eba4f9f0648f72f5358a8e5ed9d5f092 Thanks @​tmm! - Added experimental named tuple support for contract-related actions and utilities.

  • #​4147 734d99d9da4b76f9aa985a800213b4ba581607df Thanks @​jxom! - Added first-class support and extension for Tempo.


    Attaching a Tempo chain to your client grants your transaction actions with Tempo superpowers like batched calls and external fee payer capabilities.

    import { createClient, http } from "viem";
    import { privateKeyToAccount } from "viem/accounts";
    import { tempoTestnet } from "viem/chains";
    
    const client = createClient({
      account: privateKeyToAccount("0x…"),
      chain: tempoTestnet.extend({
        feeToken: "0x20c00000000000000000000000000000000000fa",
      }),
      transport: http(),
    });
    
    const receipt = client.sendTransactionSync({
      calls: [
        { data: "0x…", to: "0x…" },
        { data: "0x…", to: "0x…" },
        { data: "0x…", to: "0x…" },
      ],
      feePayer: privateKeyToAccount("0x…"),
    });

    You can also use Tempo Actions to call to enshrined protocol features like the Stablecoin Token Factory:

    import { createClient, http } from "viem";
    import { privateKeyToAccount } from "viem/accounts";
    import { tempoTestnet } from "viem/chains";
    import { tempoActions } from "viem/tempo";
    
    const client = createClient({
      account: privateKeyToAccount("0x…"),
      chain: tempoTestnet,
      transport: http(),
    }).extend(tempoActions());
    
    const { receipt, token } = await client.token.createSync({
      currency: "USD",
      name: "My Company USD",
      symbol: "CUSD",
    });
Patch Changes

v2.42.1

Compare Source

Patch Changes

v2.42.0

Compare Source

Minor Changes
  • #​4134 d9d666beeccf748157d1292849f5a0d18768baf7 Thanks @​mikelxc! - Added EntryPoint v0.9 support for Account Abstraction (ERC-4337).

    • Added entryPoint09Abi and entryPoint09Address constants
    • Added '0.9' to EntryPointVersion type
    • Added UserOperation<'0.9'> with new paymasterSignature field for parallelizable paymaster signing
    • Updated getUserOperationHash to support v0.9 (uses EIP-712 typed data like v0.8)
    • Updated toPackedUserOperation to handle paymasterSignature
    • Updated prepareUserOperation type definitions for v0.9
Patch Changes

v2.41.2

Compare Source

Patch Changes

v2.41.1

Compare Source

Minor Changes
Patch Changes

v2.40.4

Compare Source

Patch Changes

v2.40.3

Compare Source

Patch Changes

v2.40.2

Compare Source

Patch Changes

v2.40.1

Compare Source

Patch Changes

v2.40.0

Compare Source

Minor Changes
Patch Changes

v2.39.3

Compare Source

Patch Changes

v2.39.2

Compare Source

Patch Changes

v2.39.0

Compare Source

Minor Changes
Patch Changes

v2.38.6

Compare Source

Patch Changes

v2.38.5

Compare Source

Patch Changes

v2.38.4

Compare Source

Patch Changes

v2.38.3

Compare Source

Patch Changes

v2.38.2

Compare Source

Patch Changes

v2.38.1

Compare Source

Patch Changes

v2.38.0

Compare Source

Minor Changes

v2.37.13

Compare Source

Patch Changes

v2.37.12

Compare Source

Patch Changes

v2.37.11

Compare Source

Patch Changes

v2.37.10

Compare Source

Patch Changes

v2.37.9

Compare Source

Patch Changes

v2.37.8

Compare Source

Patch Changes

v2.37.7

Compare Source

Patch Changes

v2.37.6

Compare Source

Patch Changes

v2.37.5

Compare Source

Patch Changes

v2.37.4

Compare Source

Patch Changes

v2.37.3

Compare Source

Patch Changes

v2.37.2

Compare Source

Patch Changes

v2.37.1

Compare Source

Patch Changes

v2.37.0

Compare Source

Minor Changes

v2.36.1

Compare Source

Patch Changes

v2.36.0

Compare Source

Minor Changes
Patch Changes

v2.35.1

Compare Source

Patch Changes

v2.35.0

Compare Source

Minor Changes
Patch Changes

v2.34.0

Compare Source

Minor Changes

Configuration

📅 Schedule: Branch creation - "on Friday,every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 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 force-pushed the renovate/viem-2.x branch from 32d6947 to b5b3e32 Compare March 29, 2025 01:33
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.24.1 chore(deps): update dependency viem to v2.24.2 Mar 29, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from b5b3e32 to 07a1dca Compare March 31, 2025 22:45
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.24.2 chore(deps): update dependency viem to v2.24.3 Mar 31, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 07a1dca to 623f415 Compare April 3, 2025 06:00
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.24.3 chore(deps): update dependency viem to v2.25.0 Apr 3, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 623f415 to b30101b Compare April 7, 2025 02:58
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.25.0 chore(deps): update dependency viem to v2.26.0 Apr 7, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from b30101b to 1d4bf5f Compare April 7, 2025 23:29
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.26.0 chore(deps): update dependency viem to v2.26.1 Apr 7, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 9e8cf4f to 4442dae Compare April 12, 2025 11:38
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.26.1 chore(deps): update dependency viem to v2.26.3 Apr 12, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 4442dae to 478b5cd Compare April 14, 2025 06:29
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.26.3 chore(deps): update dependency viem to v2.26.5 Apr 14, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 478b5cd to e27d977 Compare April 15, 2025 02:06
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.26.5 chore(deps): update dependency viem to v2.27.0 Apr 15, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from e27d977 to e51899d Compare April 17, 2025 10:45
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.27.0 chore(deps): update dependency viem to v2.27.2 Apr 17, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from e51899d to dd6423a Compare April 21, 2025 22:06
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.27.2 chore(deps): update dependency viem to v2.27.3 Apr 21, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from dd6423a to e9cf29d Compare April 22, 2025 10:48
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.27.3 chore(deps): update dependency viem to v2.28.0 Apr 22, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from e9cf29d to bcfc93f Compare April 29, 2025 07:13
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.28.0 chore(deps): update dependency viem to v2.28.1 Apr 29, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from bcfc93f to 0d6b2d5 Compare May 2, 2025 02:20
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.28.1 chore(deps): update dependency viem to v2.28.2 May 2, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 0d6b2d5 to eff7508 Compare May 2, 2025 11:19
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.28.2 chore(deps): update dependency viem to v2.28.3 May 2, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from eff7508 to c6feb6f Compare May 5, 2025 10:50
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.40.1 chore(deps): update dependency viem to v2.40.2 Nov 25, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 92c0035 to 8a51af5 Compare November 26, 2025 02:25
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.40.2 chore(deps): update dependency viem to v2.40.3 Nov 26, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 8a51af5 to 8f35bff Compare December 2, 2025 22:04
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.40.3 chore(deps): update dependency viem to v2.40.4 Dec 2, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 8f35bff to b3ac8d7 Compare December 3, 2025 03:26
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.40.4 chore(deps): update dependency viem to v2.41.2 Dec 3, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from b3ac8d7 to 2b989dd Compare December 14, 2025 04:49
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.41.2 chore(deps): update dependency viem to v2.42.0 Dec 14, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 2b989dd to 200abff Compare December 15, 2025 05:52
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.42.0 chore(deps): update dependency viem to v2.42.1 Dec 15, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 200abff to c7d60b1 Compare December 17, 2025 06:29
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.42.1 chore(deps): update dependency viem to v2.43.1 Dec 17, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from c7d60b1 to ecb14f6 Compare December 18, 2025 21:43
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.43.1 chore(deps): update dependency viem to v2.43.2 Dec 18, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from ecb14f6 to 3b7b2f8 Compare December 22, 2025 02:09
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.43.2 chore(deps): update dependency viem to v2.43.3 Dec 22, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 3b7b2f8 to 7db641e Compare December 31, 2025 02:09
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.43.3 chore(deps): update dependency viem to v2.43.4 Dec 31, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 7db641e to 77a7c2f Compare January 3, 2026 04:57
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.43.4 chore(deps): update dependency viem to v2.43.5 Jan 3, 2026
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 77a7c2f to 0913206 Compare January 8, 2026 23:37
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.43.5 chore(deps): update dependency viem to v2.44.0 Jan 8, 2026
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 0913206 to 28f9923 Compare January 10, 2026 05:03
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.44.0 chore(deps): update dependency viem to v2.44.1 Jan 10, 2026
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 28f9923 to f634b3b Compare January 13, 2026 16:54
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.44.1 chore(deps): update dependency viem to v2.44.2 Jan 13, 2026
@renovate renovate bot force-pushed the renovate/viem-2.x branch from f634b3b to 0402883 Compare January 15, 2026 22:24
@renovate renovate bot changed the title chore(deps): update dependency viem to v2.44.2 chore(deps): update dependency viem to v2.44.4 Jan 15, 2026
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.

1 participant