Skip to content

chore(deps): update dependency viem to v2.56.0 - #73

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

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

Conversation

@renovate

@renovate renovate Bot commented Jul 6, 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.41.22.56.0 age confidence

Release Notes

wevm/viem (viem)

v2.56.0

Compare Source

Minor Changes
Patch Changes

v2.55.19

Compare Source

Patch Changes

v2.55.18

Compare Source

Patch Changes

v2.55.17

Compare Source

Patch Changes

v2.55.16

Compare Source

Patch Changes

v2.55.15

Compare Source

Patch Changes

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
  • [#

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 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 review from a team as code owners July 6, 2026 17:22
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 0367360 to 444b69f Compare July 10, 2026 13:42
@renovate renovate Bot changed the title chore(deps): update dependency viem to v2.54.6 chore(deps): update dependency viem to v2.55.0 Jul 10, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 444b69f to 2d3c6cc Compare July 10, 2026 13:58
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 2d3c6cc to d21864f Compare July 18, 2026 00:08
@renovate renovate Bot changed the title chore(deps): update dependency viem to v2.55.0 chore(deps): update dependency viem to v2.55.2 Jul 18, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from d21864f to 6c5583b Compare July 20, 2026 14:54
@renovate renovate Bot changed the title chore(deps): update dependency viem to v2.55.2 chore(deps): update dependency viem to v2.55.4 Jul 20, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 6c5583b to 4d1b62a Compare July 25, 2026 19:12
@renovate renovate Bot changed the title chore(deps): update dependency viem to v2.55.4 chore(deps): update dependency viem to v2.55.8 Jul 25, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 4d1b62a to bdebd74 Compare July 29, 2026 03:57
@renovate renovate Bot changed the title chore(deps): update dependency viem to v2.55.8 chore(deps): update dependency viem to v2.55.10 Jul 29, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from bdebd74 to 00d90af Compare August 7, 2026 08:10
@renovate renovate Bot changed the title chore(deps): update dependency viem to v2.55.10 chore(deps): update dependency viem to v2.55.11 Aug 7, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 00d90af to 7920f02 Compare August 15, 2026 11:31
@renovate renovate Bot changed the title chore(deps): update dependency viem to v2.55.11 chore(deps): update dependency viem to v2.55.16 Aug 15, 2026
@renovate renovate Bot changed the title chore(deps): update dependency viem to v2.55.16 chore(deps): update dependency viem to v2.55.17 Aug 17, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch 2 times, most recently from 5c2171a to 68b26f5 Compare August 22, 2026 04:00
@renovate renovate Bot changed the title chore(deps): update dependency viem to v2.55.17 chore(deps): update dependency viem to v2.55.19 Aug 22, 2026
@renovate
renovate Bot force-pushed the renovate/viem-2.x branch from 68b26f5 to a37918d Compare August 29, 2026 16:01
@renovate renovate Bot changed the title chore(deps): update dependency viem to v2.55.19 chore(deps): update dependency viem to v2.56.0 Aug 29, 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.

0 participants