Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 1, 2025

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

This PR contains the following updates:

Package Change Age Confidence
ethers (source) ^6.15.0^6.16.0 age confidence
viem (source) ^2.23.2^2.43.3 age confidence
zod (source) ^4.0.15^4.2.1 age confidence

Release Notes

ethers-io/ethers.js (ethers)

v6.16.0

Compare Source

  • Added utility method to split EIP-7594 BLOb proofs into its cells (88dfe96).
wevm/viem (viem)

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
Patch Changes

v2.33.3

[Compare Source](https://redirect.github.com/wevm


Configuration

📅 Schedule: Branch creation - "before 1am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 requested a review from bbenligiray as a code owner December 1, 2025 00:37
@renovate renovate bot requested review from bbenligiray and hiletmis December 1, 2025 00:37
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch 4 times, most recently from f8b863d to e289293 Compare December 3, 2025 18:08
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch 6 times, most recently from c1db4d3 to 109d769 Compare December 18, 2025 20:40
@renovate renovate bot force-pushed the renovate/dependencies-(non-major) branch from 109d769 to edb657d Compare December 22, 2025 02:36
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