Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 4, 2024

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

This PR contains the following updates:

Package Change Age Confidence
viem (source) 2.21.342.44.2 age confidence

Release Notes

wevm/viem (viem)

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

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), 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 2 times, most recently from 177cfa1 to c22bbde Compare November 4, 2024 07:26
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.37 fix(deps): update dependency viem to v2.21.38 Nov 4, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from c22bbde to 2680bfa Compare November 5, 2024 09:15
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.38 fix(deps): update dependency viem to v2.21.39 Nov 5, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 2680bfa to ddb11c9 Compare November 6, 2024 06:52
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.39 fix(deps): update dependency viem to v2.21.40 Nov 6, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from ddb11c9 to 3f23970 Compare November 9, 2024 01:00
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.40 fix(deps): update dependency viem to v2.21.41 Nov 9, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 3f23970 to 6dabf32 Compare November 10, 2024 00:44
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.41 fix(deps): update dependency viem to v2.21.42 Nov 10, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 4d63226 to 0e0b98f Compare November 11, 2024 02:02
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.42 fix(deps): update dependency viem to v2.21.43 Nov 11, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 0e0b98f to afdf5dd Compare November 12, 2024 06:15
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.43 fix(deps): update dependency viem to v2.21.44 Nov 12, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from afdf5dd to 85d4607 Compare November 16, 2024 03:47
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.44 fix(deps): update dependency viem to v2.21.45 Nov 16, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 85d4607 to 46395e1 Compare November 20, 2024 04:07
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.45 fix(deps): update dependency viem to v2.21.47 Nov 20, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 46395e1 to 990f553 Compare November 22, 2024 01:24
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.47 fix(deps): update dependency viem to v2.21.48 Nov 22, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 990f553 to b6bbf21 Compare November 24, 2024 22:16
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.48 fix(deps): update dependency viem to v2.21.49 Nov 24, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from b6bbf21 to 1b68eab Compare November 27, 2024 12:59
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.49 fix(deps): update dependency viem to v2.21.50 Nov 27, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 1b68eab to 152faab Compare November 29, 2024 08:00
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.50 fix(deps): update dependency viem to v2.21.51 Nov 29, 2024
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 152faab to b02e7c5 Compare December 1, 2024 13:42
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.21.51 fix(deps): update dependency viem to v2.21.52 Dec 1, 2024
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.40.1 fix(deps): update dependency viem to v2.40.2 Nov 28, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from ca0074d to b852e17 Compare November 28, 2025 23:51
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.40.2 fix(deps): update dependency viem to v2.40.3 Nov 28, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from b852e17 to 1c98c3b Compare December 5, 2025 22:35
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.40.3 fix(deps): update dependency viem to v2.40.4 Dec 5, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 1c98c3b to ae166f8 Compare December 6, 2025 04:22
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.40.4 fix(deps): update dependency viem to v2.41.2 Dec 6, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from ae166f8 to ec7faa0 Compare December 17, 2025 07:01
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.41.2 fix(deps): update dependency viem to v2.42.0 Dec 17, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from ec7faa0 to a959143 Compare December 18, 2025 06:49
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.42.0 fix(deps): update dependency viem to v2.42.1 Dec 18, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from a959143 to 552584c Compare December 20, 2025 03:05
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.42.1 fix(deps): update dependency viem to v2.43.0 Dec 20, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 552584c to b8962bd Compare December 20, 2025 06:41
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.43.0 fix(deps): update dependency viem to v2.43.1 Dec 20, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from b8962bd to ad7c958 Compare December 21, 2025 23:14
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.43.1 fix(deps): update dependency viem to v2.43.2 Dec 21, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from ad7c958 to cddf4dd Compare December 25, 2025 02:31
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.43.2 fix(deps): update dependency viem to v2.43.3 Dec 25, 2025
@renovate renovate bot force-pushed the renovate/viem-2.x branch from cddf4dd to 0b929d8 Compare January 3, 2026 02:38
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.43.3 fix(deps): update dependency viem to v2.43.4 Jan 3, 2026
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 0b929d8 to 57e1ed8 Compare January 6, 2026 06:40
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.43.4 fix(deps): update dependency viem to v2.43.5 Jan 6, 2026
@renovate renovate bot force-pushed the renovate/viem-2.x branch from 57e1ed8 to c7e44d5 Compare January 12, 2026 02:16
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.43.5 fix(deps): update dependency viem to v2.44.0 Jan 12, 2026
@renovate renovate bot force-pushed the renovate/viem-2.x branch from c7e44d5 to fe25d2f Compare January 13, 2026 03:13
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.44.0 fix(deps): update dependency viem to v2.44.1 Jan 13, 2026
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/viem-2.x branch from fe25d2f to 1c8ea07 Compare January 16, 2026 16:36
@renovate renovate bot changed the title fix(deps): update dependency viem to v2.44.1 fix(deps): update dependency viem to v2.44.2 Jan 16, 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