Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jan 3, 2024

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

This PR contains the following updates:

Package Change Age Confidence
viem (source) ^1.21.4 -> ^2.43.1 age confidence

Release Notes

wevm/viem (viem)

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

Patch Changes

v2.33.2

Compare Source

Patch Changes

v2.33.1

Compare Source

Patch Changes

v2.33.0

Compare Source

Minor Changes
Patch Changes

v2.32.1

Compare Source

Patch Changes

v2.32.0

Compare Source

Minor Changes
  • [#

Configuration

📅 Schedule: Branch creation - "every 7 day" (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 requested a review from Hebilicious as a code owner January 3, 2024 21:50
@renovate renovate bot force-pushed the renovate/viem-2.x branch 5 times, most recently from 1c0301c to 50af044 Compare January 11, 2024 21:20
@renovate renovate bot force-pushed the renovate/viem-2.x branch 7 times, most recently from fd96632 to cc04f61 Compare January 22, 2024 04:53
@renovate renovate bot force-pushed the renovate/viem-2.x branch from cc04f61 to e5d7fb0 Compare January 23, 2024 01:26
@renovate renovate bot force-pushed the renovate/viem-2.x branch 6 times, most recently from 8083094 to f0f2132 Compare February 6, 2024 01:41
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 7eb1a98 to a2ac207 Compare February 14, 2024 00:45
@renovate renovate bot force-pushed the renovate/viem-2.x branch 4 times, most recently from 572343d to 03070f2 Compare February 22, 2024 22:51
@renovate renovate bot force-pushed the renovate/viem-2.x branch 3 times, most recently from 3c9975e to b4592e2 Compare February 28, 2024 23:14
@renovate renovate bot force-pushed the renovate/viem-2.x branch from b4592e2 to 47394f9 Compare March 3, 2024 07:09
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 6c360e0 to 85ef7dd Compare September 20, 2025 08:33
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from a47f640 to df213ed Compare September 28, 2025 08:36
@renovate renovate bot force-pushed the renovate/viem-2.x branch 5 times, most recently from 6396d92 to 49bc690 Compare October 7, 2025 06:16
@renovate renovate bot force-pushed the renovate/viem-2.x branch 3 times, most recently from 2464861 to 45f03b7 Compare October 16, 2025 21:58
@renovate renovate bot force-pushed the renovate/viem-2.x branch 3 times, most recently from 5e9274f to 71e2661 Compare October 28, 2025 08:56
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 71e2661 to 415e173 Compare November 1, 2025 12:57
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 4547051 to 558eb7d Compare November 12, 2025 05:01
@renovate renovate bot force-pushed the renovate/viem-2.x branch 5 times, most recently from 469ea2a to d455070 Compare November 25, 2025 00:25
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 9387957 to 2577c51 Compare December 2, 2025 21:09
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 2577c51 to 0e3b4d0 Compare December 3, 2025 03:43
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from b281b67 to 3ed1614 Compare December 15, 2025 10:42
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 3ed1614 to 5ea00c9 Compare December 17, 2025 06:27
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