Skip to content

fix(deps): update dependency viem to ^2.46.0#8

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

fix(deps): update dependency viem to ^2.46.0#8
renovate[bot] wants to merge 1 commit intomainfrom
chore/viem-2.x

Conversation

@renovate
Copy link

@renovate renovate bot commented Mar 27, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
viem (source) ^2.9.3^2.46.0 age confidence

Release Notes

wevm/viem (viem)

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 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
  • #​3921 [`fbd71b713fc38c07aad3004f99f938cac94d221

Configuration

📅 Schedule: 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 becomes conflicted, 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.

@vercel
Copy link

vercel bot commented Mar 27, 2024

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
linum-labs Error Error Feb 15, 2026 11:17am

@renovate renovate bot requested a review from meness March 27, 2024 21:35
@renovate renovate bot force-pushed the chore/viem-2.x branch from 04a1c9c to 0aa58c5 Compare March 29, 2024 08:39
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.4 fix(deps): update dependency viem to ^2.9.5 Mar 29, 2024
@renovate renovate bot force-pushed the chore/viem-2.x branch from 0aa58c5 to 07a2f45 Compare April 1, 2024 08:23
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.5 fix(deps): update dependency viem to ^2.9.6 Apr 1, 2024
@renovate renovate bot force-pushed the chore/viem-2.x branch from 07a2f45 to 150bdd6 Compare April 3, 2024 02:42
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.6 fix(deps): update dependency viem to ^2.9.7 Apr 3, 2024
@renovate renovate bot force-pushed the chore/viem-2.x branch from 150bdd6 to d1fc09a Compare April 5, 2024 03:01
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.7 fix(deps): update dependency viem to ^2.9.9 Apr 5, 2024
@renovate renovate bot force-pushed the chore/viem-2.x branch from d1fc09a to c96e708 Compare April 7, 2024 08:49
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.9 fix(deps): update dependency viem to ^2.9.12 Apr 7, 2024
@renovate renovate bot force-pushed the chore/viem-2.x branch from c96e708 to 709552d Compare April 10, 2024 00:31
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.12 fix(deps): update dependency viem to ^2.9.15 Apr 10, 2024
@renovate renovate bot force-pushed the chore/viem-2.x branch from 709552d to a9a3e71 Compare April 12, 2024 23:48
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.15 fix(deps): update dependency viem to ^2.9.16 Apr 12, 2024
@renovate renovate bot force-pushed the chore/viem-2.x branch from a9a3e71 to 46e2c5e Compare April 16, 2024 20:57
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.16 fix(deps): update dependency viem to ^2.9.19 Apr 16, 2024
@renovate renovate bot force-pushed the chore/viem-2.x branch from 46e2c5e to e2b261a Compare April 17, 2024 20:52
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.9.19 fix(deps): update dependency viem to ^2.9.20 Apr 17, 2024
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.43.2 fix(deps): update dependency viem to ^2.43.3 Dec 22, 2025
@renovate renovate bot force-pushed the chore/viem-2.x branch from afc91b3 to 75bd601 Compare January 1, 2026 00:09
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.43.3 fix(deps): update dependency viem to ^2.43.4 Jan 1, 2026
@renovate renovate bot force-pushed the chore/viem-2.x branch from 75bd601 to 9a7fd53 Compare January 3, 2026 07:55
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.43.4 fix(deps): update dependency viem to ^2.43.5 Jan 3, 2026
@renovate renovate bot force-pushed the chore/viem-2.x branch from 9a7fd53 to 3ce23b7 Compare January 9, 2026 15:42
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.43.5 fix(deps): update dependency viem to ^2.44.0 Jan 9, 2026
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.44.0 fix(deps): update dependency viem to ^2.44.1 Jan 10, 2026
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.44.1 fix(deps): update dependency viem to ^2.44.2 Jan 13, 2026
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.44.2 fix(deps): update dependency viem to ^2.44.4 Jan 15, 2026
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.44.4 fix(deps): update dependency viem to ^2.45.0 Jan 25, 2026
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.45.0 fix(deps): update dependency viem to ^2.45.1 Jan 30, 2026
@renovate renovate bot changed the title fix(deps): update dependency viem to ^2.45.1 fix(deps): update dependency viem to ^2.46.0 Feb 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