Skip to content

chore: version package#4171

Merged
jxom merged 1 commit intomainfrom
changeset-release/main
Dec 17, 2025
Merged

chore: version package#4171
jxom merged 1 commit intomainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Dec 15, 2025

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

viem@2.43.0

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

@github-actions github-actions bot force-pushed the changeset-release/main branch from 66d3ef4 to ad71cb8 Compare December 15, 2025 20:26
@github-actions github-actions bot changed the title chore: version package Version Packages Dec 15, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from ad71cb8 to 286684b Compare December 15, 2025 20:53
@github-actions github-actions bot changed the title Version Packages chore: version package Dec 16, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 286684b to b7b254c Compare December 16, 2025 00:26
@github-actions github-actions bot changed the title chore: version package Version Packages Dec 16, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from b7b254c to a72a92f Compare December 16, 2025 00:51
@github-actions github-actions bot changed the title Version Packages chore: version package Dec 16, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from a72a92f to 38b0b0b Compare December 16, 2025 02:03
@github-actions github-actions bot changed the title chore: version package Version Packages Dec 16, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 38b0b0b to 66cbffa Compare December 16, 2025 02:26
@github-actions github-actions bot changed the title Version Packages chore: version package Dec 16, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch 3 times, most recently from 39a97dc to 793074a Compare December 16, 2025 19:24
@github-actions github-actions bot changed the title chore: version package Version Packages Dec 16, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 793074a to 3d32e09 Compare December 16, 2025 19:58
@github-actions github-actions bot changed the title Version Packages chore: version package Dec 16, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from 3d32e09 to 1ecf355 Compare December 16, 2025 22:47
@github-actions github-actions bot force-pushed the changeset-release/main branch 3 times, most recently from b0115a4 to a4b920c Compare December 16, 2025 23:30
@github-actions github-actions bot changed the title chore: version package Version Packages Dec 16, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from a4b920c to c921487 Compare December 16, 2025 23:59
@github-actions github-actions bot changed the title Version Packages chore: version package Dec 17, 2025
@github-actions github-actions bot force-pushed the changeset-release/main branch from c921487 to c6cc34d Compare December 17, 2025 00:30
@github-actions github-actions bot force-pushed the changeset-release/main branch from c6cc34d to 2f81b10 Compare December 17, 2025 00:32
@jxom jxom merged commit c56fe69 into main Dec 17, 2025
5 checks passed
@jxom jxom deleted the changeset-release/main branch December 17, 2025 00:40
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

Comments