🎉 Publish Wallets Release - #132
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/develop
branch
7 times, most recently
from
July 30, 2026 12:01
eb4960d to
0c4f388
Compare
github-actions
Bot
force-pushed
the
changeset-release/develop
branch
from
August 21, 2026 18:26
0c4f388 to
5c90a09
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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 develop, this PR will be updated.
Releases
@swapkit/wallets@4.11.0
Minor Changes
#105
c400162Thanks @towanTG! - Replace the injected-provider MetaMask path with the new MetaMask multichain connector.#108
61a7689Thanks @GiMa-SwapKit! - Add TON Connect as a wallet option (@swapkit/wallets/tonconnect).TON Connect is the standard wallet connection protocol for the TON blockchain and supports only
Chain.Ton, including its native token and Jettons. The integration wraps@tonconnect/uifor the connect modal, universal links, and bridge sessions, and delegates message building, balances, and fee estimation to the signerless@swapkit/toolboxes/tontoolbox. Signing and broadcasting are routed through the connected wallet'ssendTransaction.Notes:
tonconnect-manifest.json(manifestUrl), or an existingTonConnectUIinstance can be injected.CARRY_ALL_REMAINING_BALANCE) are rejected: the TON Connect protocol does not carry a send mode, the wallet chooses it.sign) is not supported by the protocol; usesignAndBroadcastTransaction/transfer.#45
c1c5159Thanks @towanTG! - Reuse compatible WalletConnect sessions and pairings instead of force-resetting sessions on every connect.Patch Changes
#135
e3f47a4Thanks @towanTG! - MetaMask multichain connect now connects the granted subset of requested chains instead of failing the whole connect when the wallet approves only some scopes; it throws only when nothing was granted.#136
91fed78Thanks @towanTG! - Retry stale WalletConnect pairings with a fresh QR pairing instead of failing the connect.#138
90ac313Thanks @towanTG! - Adapt to the SwapKit SDK 5.0.0 release surface:shipped without it (swapkit/sdk#346 is unmerged).
TON_CONNECTis now a localliteral wallet option (
@swapkit/wallets/tonconnectoption.ts); runtimevalues and connected-wallet shapes are unchanged, and the registry adoption
can be restored once a helpers release carries it again.
getDefaultChainFee(Chain.Cosmos)instead of a numeric gas multiplier — the toolboxes 5.0.0 cosmos client
(backed by
@swapkit/cosmos-signer) accepts only an explicitStdFee.@swapkit/cosmos-signerto 0.1.0: toolboxes 5.0.0 peers on0.2.0, which was never published (release-run npm E404). 0.1.0 exports every
symbol toolboxes imports; drop the override once 0.2.0 is on npm.
#134
d68f8e7Thanks @towanTG! - Update SwapKit SDK dependencies:7f99d74Thanks @ice-chillios! - ESM-only packages. CommonJS output (.cjs) andrequireexport conditions have been removed; every package now ships ESM only (code-splitting stays enabled), with a uniform{ default, types }exports shape.buildPackagefrom@swapkit/tools-builderno longer emits CJS and the unusedesmOnlyoption has been removed.41505dcThanks @ice-chillios! - Replace@cosmjs/{amino,crypto,proto-signing,stargate}@0.39.0with native@swapkit/cosmos-signerpackage. The new signer is ESM-native (no CJS↔ESM-only-noble breakage), uses only@noble/curves,@noble/hashes,@scure/{base,bip32,bip39}+cosmjs-typesfor proto encoders. No@cosmjs/*runtime dependency. (via @swapkit/toolboxes@5.0.0)3017621Thanks @ice-chillios! - Speed upcreateTransactionacross toolboxes by removing serial and redundant network round-trips from the build path. Two techniques, both backward-compatible: (via @swapkit/toolboxes@5.0.0)d6061d5Thanks @ice-chillios! - Add HyperCoresendAssetpayin support. (via @swapkit/toolboxes@5.0.0)fd1d5d7Thanks @ice-chillios! - Removeethersand@near-js/providersfrom@swapkit/helpers. EVM address checksum/validation now uses an in-house EIP-55 implementation backed by@noble/hashes, ERC-20 symbol decoding reuses the existing dynamic-string ABI decoder, and NEAR token metadata is fetched via JSON-RPC throughRequestClient. Public behaviour is preserved (ethers-parity semantics, including throw-on-bad-checksum). (via @swapkit/toolboxes@5.0.0)2d00760Thanks @towanTG! - Update generated token lists (prod and dev). Remove the hand-maintained hypercore token list and itshype/hypercorelist names — the api serves no HYPE provider, so the documented exception from 4.4.0 is retired and static lists are again 100% provider-generated. (via @swapkit/toolboxes@5.0.0)8d21eefThanks @towanTG! - Refresh generated token lists (prod and dev) — dev flashnet now carries the HyperEVM assets (HYPEREVM.HYPE,USDC,USDe,USDT0) alongsideHYPE.USDC. Lists mirror provider output verbatim; no identifiers are filtered. (via @swapkit/toolboxes@5.0.0)d724200Thanks @towanTG! - Support the Zcash NU6.3 "Ironwood" network upgrade (mainnet activation at block 3,428,143, ~2026-07-28; testnet activated 2026-07-01). (via @swapkit/utxo-signer@2.3.0)13fc5d3Thanks @towanTG! - Load environment-specific static assets and add the SwapKit token search endpoint. (via @swapkit/helpers@4.20.0)b93b9cdThanks @towanTG! - Allow already-fetched Aleo records to be passed directly tounshield({ records })as an alternative to the transaction-scopedunshield({ transactionId })form. Callers that fetch records for display (e.g. a wallet UI showing shielded balances from known swap-delivery transactions viagetRecords) can unshield those exact records without a second lookup. Spent records are filtered out; the split/fee-record/prove/broadcast flow and thesplitTransactionIdresume semantics are unchanged. (via @swapkit/toolboxes@4.27.0)#65
4c8dcdaThanks @towanTG! - Enable WalletConnect direct signing support for Cosmos, Kujira, Maya, Near, THORChain, and Tron.#133
14374d1Thanks @towanTG! - Derive WalletConnect direct-signing support from the approved session methods and accounts.Updated dependencies [
90ac313,d68f8e7,90ac313]:@swapkit/sdk@4.6.47
Patch Changes
d68f8e7Thanks @towanTG! - Update SwapKit SDK dependencies:c400162Thanks @towanTG! - Replace the injected-provider MetaMask path with the new MetaMask multichain connector. (via @swapkit/wallets@4.11.0)61a7689Thanks @GiMa-SwapKit! - Add TON Connect as a wallet option (@swapkit/wallets/tonconnect). (via @swapkit/wallets@4.11.0)c1c5159Thanks @towanTG! - Reuse compatible WalletConnect sessions and pairings instead of force-resetting sessions on every connect. (via @swapkit/wallets@4.11.0)e3f47a4Thanks @towanTG! - MetaMask multichain connect now connects the granted subset of requested chains instead of failing the whole connect when the wallet approves only some scopes; it throws only when nothing was granted. (via @swapkit/wallets@4.11.0)91fed78Thanks @towanTG! - Retry stale WalletConnect pairings with a fresh QR pairing instead of failing the connect. (via @swapkit/wallets@4.11.0)90ac313Thanks @towanTG! - Adapt to the SwapKit SDK 5.0.0 release surface: (via @swapkit/wallets@4.11.0)4c8dcdaThanks @towanTG! - Enable WalletConnect direct signing support for Cosmos, Kujira, Maya, Near, THORChain, and Tron. (via @swapkit/wallets@4.11.0)14374d1Thanks @towanTG! - Derive WalletConnect direct-signing support from the approved session methods and accounts. (via @swapkit/wallets@4.11.0)@swapkit/wallet-extensions@4.5.29
Patch Changes
#138
90ac313Thanks @towanTG! - Adapt to the SwapKit SDK 5.0.0 release surface:shipped without it (swapkit/sdk#346 is unmerged).
TON_CONNECTis now a localliteral wallet option (
@swapkit/wallets/tonconnectoption.ts); runtimevalues and connected-wallet shapes are unchanged, and the registry adoption
can be restored once a helpers release carries it again.
getDefaultChainFee(Chain.Cosmos)instead of a numeric gas multiplier — the toolboxes 5.0.0 cosmos client
(backed by
@swapkit/cosmos-signer) accepts only an explicitStdFee.@swapkit/cosmos-signerto 0.1.0: toolboxes 5.0.0 peers on0.2.0, which was never published (release-run npm E404). 0.1.0 exports every
symbol toolboxes imports; drop the override once 0.2.0 is on npm.
#134
d68f8e7Thanks @towanTG! - Update SwapKit SDK dependencies:7f99d74Thanks @ice-chillios! - ESM-only packages. CommonJS output (.cjs) andrequireexport conditions have been removed; every package now ships ESM only (code-splitting stays enabled), with a uniform{ default, types }exports shape.buildPackagefrom@swapkit/tools-builderno longer emits CJS and the unusedesmOnlyoption has been removed.41505dcThanks @ice-chillios! - Replace@cosmjs/{amino,crypto,proto-signing,stargate}@0.39.0with native@swapkit/cosmos-signerpackage. The new signer is ESM-native (no CJS↔ESM-only-noble breakage), uses only@noble/curves,@noble/hashes,@scure/{base,bip32,bip39}+cosmjs-typesfor proto encoders. No@cosmjs/*runtime dependency. (via @swapkit/toolboxes@5.0.0)3017621Thanks @ice-chillios! - Speed upcreateTransactionacross toolboxes by removing serial and redundant network round-trips from the build path. Two techniques, both backward-compatible: (via @swapkit/toolboxes@5.0.0)d6061d5Thanks @ice-chillios! - Add HyperCoresendAssetpayin support. (via @swapkit/toolboxes@5.0.0)fd1d5d7Thanks @ice-chillios! - Removeethersand@near-js/providersfrom@swapkit/helpers. EVM address checksum/validation now uses an in-house EIP-55 implementation backed by@noble/hashes, ERC-20 symbol decoding reuses the existing dynamic-string ABI decoder, and NEAR token metadata is fetched via JSON-RPC throughRequestClient. Public behaviour is preserved (ethers-parity semantics, including throw-on-bad-checksum). (via @swapkit/toolboxes@5.0.0)2d00760Thanks @towanTG! - Update generated token lists (prod and dev). Remove the hand-maintained hypercore token list and itshype/hypercorelist names — the api serves no HYPE provider, so the documented exception from 4.4.0 is retired and static lists are again 100% provider-generated. (via @swapkit/toolboxes@5.0.0)8d21eefThanks @towanTG! - Refresh generated token lists (prod and dev) — dev flashnet now carries the HyperEVM assets (HYPEREVM.HYPE,USDC,USDe,USDT0) alongsideHYPE.USDC. Lists mirror provider output verbatim; no identifiers are filtered. (via @swapkit/toolboxes@5.0.0)d724200Thanks @towanTG! - Support the Zcash NU6.3 "Ironwood" network upgrade (mainnet activation at block 3,428,143, ~2026-07-28; testnet activated 2026-07-01). (via @swapkit/utxo-signer@2.3.0)13fc5d3Thanks @towanTG! - Load environment-specific static assets and add the SwapKit token search endpoint. (via @swapkit/helpers@4.20.0)b93b9cdThanks @towanTG! - Allow already-fetched Aleo records to be passed directly tounshield({ records })as an alternative to the transaction-scopedunshield({ transactionId })form. Callers that fetch records for display (e.g. a wallet UI showing shielded balances from known swap-delivery transactions viagetRecords) can unshield those exact records without a second lookup. Spent records are filtered out; the split/fee-record/prove/broadcast flow and thesplitTransactionIdresume semantics are unchanged. (via @swapkit/toolboxes@4.27.0)@swapkit/wallet-hardware@4.9.31
Patch Changes
#138
90ac313Thanks @towanTG! - Adapt to the SwapKit SDK 5.0.0 release surface:shipped without it (swapkit/sdk#346 is unmerged).
TON_CONNECTis now a localliteral wallet option (
@swapkit/wallets/tonconnectoption.ts); runtimevalues and connected-wallet shapes are unchanged, and the registry adoption
can be restored once a helpers release carries it again.
getDefaultChainFee(Chain.Cosmos)instead of a numeric gas multiplier — the toolboxes 5.0.0 cosmos client
(backed by
@swapkit/cosmos-signer) accepts only an explicitStdFee.@swapkit/cosmos-signerto 0.1.0: toolboxes 5.0.0 peers on0.2.0, which was never published (release-run npm E404). 0.1.0 exports every
symbol toolboxes imports; drop the override once 0.2.0 is on npm.
#134
d68f8e7Thanks @towanTG! - Update SwapKit SDK dependencies:7f99d74Thanks @ice-chillios! - ESM-only packages. CommonJS output (.cjs) andrequireexport conditions have been removed; every package now ships ESM only (code-splitting stays enabled), with a uniform{ default, types }exports shape.buildPackagefrom@swapkit/tools-builderno longer emits CJS and the unusedesmOnlyoption has been removed.41505dcThanks @ice-chillios! - Replace@cosmjs/{amino,crypto,proto-signing,stargate}@0.39.0with native@swapkit/cosmos-signerpackage. The new signer is ESM-native (no CJS↔ESM-only-noble breakage), uses only@noble/curves,@noble/hashes,@scure/{base,bip32,bip39}+cosmjs-typesfor proto encoders. No@cosmjs/*runtime dependency. (via @swapkit/toolboxes@5.0.0)3017621Thanks @ice-chillios! - Speed upcreateTransactionacross toolboxes by removing serial and redundant network round-trips from the build path. Two techniques, both backward-compatible: (via @swapkit/toolboxes@5.0.0)d6061d5Thanks @ice-chillios! - Add HyperCoresendAssetpayin support. (via @swapkit/toolboxes@5.0.0)fd1d5d7Thanks @ice-chillios! - Removeethersand@near-js/providersfrom@swapkit/helpers. EVM address checksum/validation now uses an in-house EIP-55 implementation backed by@noble/hashes, ERC-20 symbol decoding reuses the existing dynamic-string ABI decoder, and NEAR token metadata is fetched via JSON-RPC throughRequestClient. Public behaviour is preserved (ethers-parity semantics, including throw-on-bad-checksum). (via @swapkit/toolboxes@5.0.0)2d00760Thanks @towanTG! - Update generated token lists (prod and dev). Remove the hand-maintained hypercore token list and itshype/hypercorelist names — the api serves no HYPE provider, so the documented exception from 4.4.0 is retired and static lists are again 100% provider-generated. (via @swapkit/toolboxes@5.0.0)8d21eefThanks @towanTG! - Refresh generated token lists (prod and dev) — dev flashnet now carries the HyperEVM assets (HYPEREVM.HYPE,USDC,USDe,USDT0) alongsideHYPE.USDC. Lists mirror provider output verbatim; no identifiers are filtered. (via @swapkit/toolboxes@5.0.0)d724200Thanks @towanTG! - Support the Zcash NU6.3 "Ironwood" network upgrade (mainnet activation at block 3,428,143, ~2026-07-28; testnet activated 2026-07-01). (via @swapkit/utxo-signer@2.3.0)13fc5d3Thanks @towanTG! - Load environment-specific static assets and add the SwapKit token search endpoint. (via @swapkit/helpers@4.20.0)b93b9cdThanks @towanTG! - Allow already-fetched Aleo records to be passed directly tounshield({ records })as an alternative to the transaction-scopedunshield({ transactionId })form. Callers that fetch records for display (e.g. a wallet UI showing shielded balances from known swap-delivery transactions viagetRecords) can unshield those exact records without a second lookup. Spent records are filtered out; the split/fee-record/prove/broadcast flow and thesplitTransactionIdresume semantics are unchanged. (via @swapkit/toolboxes@4.27.0)@swapkit/wallet-mobile@4.3.22
Patch Changes
#134
d68f8e7Thanks @towanTG! - Update SwapKit SDK dependencies:7f99d74Thanks @ice-chillios! - ESM-only packages. CommonJS output (.cjs) andrequireexport conditions have been removed; every package now ships ESM only (code-splitting stays enabled), with a uniform{ default, types }exports shape.buildPackagefrom@swapkit/tools-builderno longer emits CJS and the unusedesmOnlyoption has been removed.41505dcThanks @ice-chillios! - Replace@cosmjs/{amino,crypto,proto-signing,stargate}@0.39.0with native@swapkit/cosmos-signerpackage. The new signer is ESM-native (no CJS↔ESM-only-noble breakage), uses only@noble/curves,@noble/hashes,@scure/{base,bip32,bip39}+cosmjs-typesfor proto encoders. No@cosmjs/*runtime dependency. (via @swapkit/toolboxes@5.0.0)3017621Thanks @ice-chillios! - Speed upcreateTransactionacross toolboxes by removing serial and redundant network round-trips from the build path. Two techniques, both backward-compatible: (via @swapkit/toolboxes@5.0.0)d6061d5Thanks @ice-chillios! - Add HyperCoresendAssetpayin support. (via @swapkit/toolboxes@5.0.0)fd1d5d7Thanks @ice-chillios! - Removeethersand@near-js/providersfrom@swapkit/helpers. EVM address checksum/validation now uses an in-house EIP-55 implementation backed by@noble/hashes, ERC-20 symbol decoding reuses the existing dynamic-string ABI decoder, and NEAR token metadata is fetched via JSON-RPC throughRequestClient. Public behaviour is preserved (ethers-parity semantics, including throw-on-bad-checksum). (via @swapkit/toolboxes@5.0.0)2d00760Thanks @towanTG! - Update generated token lists (prod and dev). Remove the hand-maintained hypercore token list and itshype/hypercorelist names — the api serves no HYPE provider, so the documented exception from 4.4.0 is retired and static lists are again 100% provider-generated. (via @swapkit/toolboxes@5.0.0)8d21eefThanks @towanTG! - Refresh generated token lists (prod and dev) — dev flashnet now carries the HyperEVM assets (HYPEREVM.HYPE,USDC,USDe,USDT0) alongsideHYPE.USDC. Lists mirror provider output verbatim; no identifiers are filtered. (via @swapkit/toolboxes@5.0.0)d724200Thanks @towanTG! - Support the Zcash NU6.3 "Ironwood" network upgrade (mainnet activation at block 3,428,143, ~2026-07-28; testnet activated 2026-07-01). (via @swapkit/utxo-signer@2.3.0)13fc5d3Thanks @towanTG! - Load environment-specific static assets and add the SwapKit token search endpoint. (via @swapkit/helpers@4.20.0)b93b9cdThanks @towanTG! - Allow already-fetched Aleo records to be passed directly tounshield({ records })as an alternative to the transaction-scopedunshield({ transactionId })form. Callers that fetch records for display (e.g. a wallet UI showing shielded balances from known swap-delivery transactions viagetRecords) can unshield those exact records without a second lookup. Spent records are filtered out; the split/fee-record/prove/broadcast flow and thesplitTransactionIdresume semantics are unchanged. (via @swapkit/toolboxes@4.27.0)