Skip to content

Conversation

@github-actions
Copy link
Contributor

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

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm 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

[email protected]

Minor Changes

  • #129 c17b66c Thanks @jxom! - Breaking: As of [email protected], tempo.ts/chains and tempo.ts/viem have been upstreamed into Viem, and are no longer maintained in this repository.

    Modify chain configuration

    The tempo chain has been renamed to tempoTestnet, and now becomes a standard chain object that can be .extended with a fee token, instead of a function.

    const client = createClient({
    - chain: tempo({
    -   feeToken: '0x20c0000000000000000000000000000000000001'
    - }),
    + chain: tempoTestnet.extend({
    +   feeToken: '0x20c0000000000000000000000000000000000001'
    + }),
      transport: http(),
    })

    Removed tempo chain

    The tempo chain has been removed. Use tempoTestnet instead.

    - import { tempo } from 'tempo.ts/chains'
    + import { tempoTestnet } from 'viem/chains'

    Account#assignKeyAuthorization has been removed

    The Account#assignKeyAuthorization function has been removed. Instead, you will need to assign the key authorization on a transaction manually on the next transaction.

    const accessKey = Account.fromP256(generatePrivateKey(), {
      access: account,
    })
    
    const keyAuthorization = await account.signKeyAuthorization(accessKey)
    - await account.assignKeyAuthorization(keyAuthorization)
    
    const receipt = await client.sendTransactionSync({
      account: accessKey,
    + keyAuthorization,
    })

@jxom jxom force-pushed the changeset-release/main branch 2 times, most recently from b724591 to 1960bc9 Compare December 21, 2025 23:55
@jxom jxom force-pushed the changeset-release/main branch from 1960bc9 to 4f069af Compare December 22, 2025 00:17
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