Skip to content

chore(deps): update dependency viem to v2.55.13 - #6

Open
p2p-renovate[bot] wants to merge 1 commit into
mainfrom
renovate/viem-2.x-lockfile
Open

chore(deps): update dependency viem to v2.55.13#6
p2p-renovate[bot] wants to merge 1 commit into
mainfrom
renovate/viem-2.x-lockfile

Conversation

@p2p-renovate

@p2p-renovate p2p-renovate Bot commented Jul 22, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
viem (source) 2.40.32.55.13 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

wevm/viem (viem)

v2.55.13

Compare Source

Patch Changes

v2.55.11

Compare Source

Patch Changes

v2.55.10

Compare Source

Patch Changes

v2.55.8

Compare Source

Patch Changes

v2.55.7

Compare Source

Patch Changes

v2.55.5

Compare Source

Patch Changes

v2.55.4

Compare Source

Patch Changes

v2.55.2

Compare Source

Patch Changes

v2.55.1

Compare Source

Patch Changes

v2.55.0

Compare Source

Minor Changes
Patch Changes

v2.54.6

Compare Source

Patch Changes
  • #​4807 f1ac4480d0c1c6f29bf709f116068e903643ecad Thanks @​jxom! - viem/tempo: Supported calling token .call builders without a Client (restores the pre-2.54 call signature). When the Client is omitted, token must be a TIP20 token id or contract address, and formatted amounts require explicit decimals.

v2.54.5

Compare Source

Patch Changes

v2.54.4

Compare Source

Patch Changes

v2.54.3

Compare Source

Patch Changes

v2.54.2

Compare Source

Patch Changes

v2.54.1

Compare Source

Patch Changes

v2.54.0

Compare Source

Minor Changes
  • #​4767 0def05663277a93e645bc28740a78bfc916810ec Thanks @​jxom! - Breaking (viem/tempo): Changed Tempo token balance and allowance reads to return Amount objects.

    -const balance = await client.token.getBalance({ token })
    -// ^? bigint
    +const balance = await client.token.getBalance({ token })
    +// ^? { amount: bigint; decimals: number; formatted: string }
    
    -const allowance = await client.token.getAllowance({ account, spender, token })
    -// ^? bigint
    +const allowance = await client.token.getAllowance({ account, spender, token })
    +// ^? { amount: bigint; decimals: number; formatted: string }
  • #​4767 0def05663277a93e645bc28740a78bfc916810ec Thanks @​jxom! - Breaking (viem/tempo): Changed Tempo token .call helpers to take the client before their action arguments.

    -Actions.token.transfer.call({ token, to, amount })
    +Actions.token.transfer.call(client, { token, to, amount })
    
    -Actions.token.getBalance.call({ account, token })
    +Actions.token.getBalance.call(client, { account, token })
  • #​4767 0def05663277a93e645bc28740a78bfc916810ec Thanks @​jxom! - Breaking: Changed ERC-20 token actions to resolve token symbols from the Client tokens array instead of built-in chain tokens config.

     import { createPublicClient, http } from 'viem'
     import { mainnet } from 'viem/chains'
    +import { usdc } from 'viem/tokens'
    
    -const client = createPublicClient({ chain: mainnet, transport: http() })
    +const client = createPublicClient({
    +  chain: mainnet,
    +  tokens: [usdc],
    +  transport: http(),
    +})
    
     const balance = await client.token.getBalance({ account, token: 'usdc' })
  • #​4767 0def05663277a93e645bc28740a78bfc916810ec Thanks @​jxom! - Added viem/tokens entrypoint.

Patch Changes

v2.53.1

Compare Source

Patch Changes

v2.52.2

Compare Source

Patch Changes

v2.52.0

Compare Source

Minor Changes

v2.51.3

Compare Source

Patch Changes

v2.51.2

Compare Source

Patch Changes

v2.51.0

Compare Source

Minor Changes
Patch Changes

v2.50.4

Compare Source

Patch Changes

v2.50.3

Compare Source

Patch Changes

v2.49.3

Compare Source

Patch Changes

v2.49.2

Compare Source

Patch Changes

v2.49.0

Compare Source

Minor Changes
Patch Changes
  • #​4608 0e282d69d534e7fc277300260e31c07c4d8cb325 Thanks @​jxom! - viem/tempo: Updated Actions.wallet.send parameters to match the latest wallet RPC schema: renamed value to amount, added an optional memo field (UTF-8, max 32 bytes; rejected for non-TIP-20 tokens), and widened token to also accept curated tokenlist symbols.

    await Actions.wallet.send(client, {
    +  amount: '1.5',
    +  memo: 'thanks',
       to: '0x...',
    -  token: '0x...',
    +  token: 'pathUsd',
    -  value: '1.5',
    })

v2.48.11

Compare Source

Patch Changes

v2.48.8

Compare Source

Patch Changes

v2.48.7

Compare Source

Patch Changes

v2.48.6

Compare Source

Patch Changes

v2.48.4

Compare Source

Patch Changes
  • #​4532 cb3206e1039b21e45e4ed17898aa1ff561cdecb4 Thanks @​jxom! - viem/tempo: Added virtual address actions for the TIP-1022 Address Registry precompile: virtualAddress.getMasterAddress, virtualAddress.resolve, virtualAddress.registerMaster, virtualAddress.registerMasterSync. Re-exported VirtualAddress and VirtualMaster from ox/tempo.

v2.48.3

Compare Source

Patch Changes

v2.48.2

Compare Source

Patch Changes

v2.48.1

Compare Source

Patch Changes

v2.48.0

Compare Source

Minor Changes

v2.47.19

Compare Source

Patch Changes

v2.47.18

Compare Source

Patch Changes

v2.47.17

Compare Source

Patch Changes

v2.47.16

Compare Source

Patch Changes

v2.47.15

Compare Source

Patch Changes

v2.47.14

Compare Source

Patch Changes

v2.47.12

Compare Source

Patch Changes

v2.47.11

Compare Source

Patch Changes

v2.47.10

Compare Source

Patch Changes

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • 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 has been generated by Mend Renovate.

@p2p-renovate
p2p-renovate Bot force-pushed the renovate/viem-2.x-lockfile branch from bd7fd67 to 5f9e508 Compare July 22, 2026 10:00
@p2p-renovate p2p-renovate Bot changed the title chore(deps): update dependency viem to v2.55.2 chore(deps): update dependency viem to v2.55.4 Jul 22, 2026
@p2p-renovate
p2p-renovate Bot force-pushed the renovate/viem-2.x-lockfile branch from 5f9e508 to 7f3c576 Compare July 25, 2026 01:55
@p2p-renovate p2p-renovate Bot changed the title chore(deps): update dependency viem to v2.55.4 chore(deps): update dependency viem to v2.55.5 Jul 25, 2026
@p2p-renovate
p2p-renovate Bot force-pushed the renovate/viem-2.x-lockfile branch from 7f3c576 to 52ebb6f Compare July 25, 2026 20:54
@p2p-renovate p2p-renovate Bot changed the title chore(deps): update dependency viem to v2.55.5 chore(deps): update dependency viem to v2.55.7 Jul 25, 2026
@p2p-renovate
p2p-renovate Bot force-pushed the renovate/viem-2.x-lockfile branch from 52ebb6f to 8317f19 Compare July 26, 2026 08:41
@p2p-renovate p2p-renovate Bot changed the title chore(deps): update dependency viem to v2.55.7 chore(deps): update dependency viem to v2.55.8 Jul 26, 2026
@p2p-renovate
p2p-renovate Bot force-pushed the renovate/viem-2.x-lockfile branch from 8317f19 to 6ea26f0 Compare July 30, 2026 13:28
@p2p-renovate p2p-renovate Bot changed the title chore(deps): update dependency viem to v2.55.8 chore(deps): update dependency viem to v2.55.10 Jul 30, 2026
@p2p-renovate
p2p-renovate Bot force-pushed the renovate/viem-2.x-lockfile branch from 6ea26f0 to 31fe7e8 Compare August 8, 2026 10:56
@p2p-renovate p2p-renovate Bot changed the title chore(deps): update dependency viem to v2.55.10 chore(deps): update dependency viem to v2.55.11 Aug 8, 2026
@p2p-renovate
p2p-renovate Bot force-pushed the renovate/viem-2.x-lockfile branch from 31fe7e8 to a16e068 Compare August 13, 2026 14:13
@p2p-renovate p2p-renovate Bot changed the title chore(deps): update dependency viem to v2.55.11 chore(deps): update dependency viem to v2.55.13 Aug 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants