diff --git a/.changeset/bridge-tokens-function.md b/.changeset/bridge-tokens-function.md deleted file mode 100644 index 69b826b43fb..00000000000 --- a/.changeset/bridge-tokens-function.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -"thirdweb": patch ---- - -Add `Bridge.tokens()` function to retrieve supported Universal Bridge tokens - -New function allows fetching and filtering tokens supported by the Universal Bridge service. Supports filtering by chain ID, token address, symbol, name, and includes pagination with limit/offset parameters. - -```typescript -import { Bridge } from "thirdweb"; - -// Get all supported tokens -const tokens = await Bridge.tokens({ - client: thirdwebClient, -}); - -// Filter tokens by chain and symbol -const ethTokens = await Bridge.tokens({ - chainId: 1, - symbol: "USDC", - limit: 50, - client: thirdwebClient, -}); -``` diff --git a/.changeset/dark-dancers-hammer.md b/.changeset/dark-dancers-hammer.md deleted file mode 100644 index 586593d7456..00000000000 --- a/.changeset/dark-dancers-hammer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"thirdweb": patch ---- - -Optimize fiat conversion query diff --git a/.changeset/loose-tools-move.md b/.changeset/loose-tools-move.md deleted file mode 100644 index 98cc9fee1b8..00000000000 --- a/.changeset/loose-tools-move.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"thirdweb": patch ---- - -Fixes token pricing in PayEmbed diff --git a/.changeset/shaggy-tables-care.md b/.changeset/shaggy-tables-care.md deleted file mode 100644 index f67fe36eabb..00000000000 --- a/.changeset/shaggy-tables-care.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"thirdweb": patch ---- - -Fallback to insight response if RPC request fails in ERC721 & ERC1155 `getNFTs` extension diff --git a/.changeset/two-bugs-rescue.md b/.changeset/two-bugs-rescue.md deleted file mode 100644 index a99f339ac94..00000000000 --- a/.changeset/two-bugs-rescue.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"thirdweb": patch ---- - -Handle smart account detection for inApp and ecosystem wallets diff --git a/packages/thirdweb/CHANGELOG.md b/packages/thirdweb/CHANGELOG.md index ab5bf77677c..7f64d8c1cd5 100644 --- a/packages/thirdweb/CHANGELOG.md +++ b/packages/thirdweb/CHANGELOG.md @@ -1,5 +1,38 @@ # thirdweb +## 5.102.3 + +### Patch Changes + +- [#7240](https://github.com/thirdweb-dev/js/pull/7240) [`ad8cc9a`](https://github.com/thirdweb-dev/js/commit/ad8cc9a1d2740eb6ae4a89f57ef475857fb16c21) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Add `Bridge.tokens()` function to retrieve supported Universal Bridge tokens + + New function allows fetching and filtering tokens supported by the Universal Bridge service. Supports filtering by chain ID, token address, symbol, name, and includes pagination with limit/offset parameters. + + ```typescript + import { Bridge } from "thirdweb"; + + // Get all supported tokens + const tokens = await Bridge.tokens({ + client: thirdwebClient, + }); + + // Filter tokens by chain and symbol + const ethTokens = await Bridge.tokens({ + chainId: 1, + symbol: "USDC", + limit: 50, + client: thirdwebClient, + }); + ``` + +- [#7242](https://github.com/thirdweb-dev/js/pull/7242) [`f10fbc8`](https://github.com/thirdweb-dev/js/commit/f10fbc8383166552400c48257de47facecd20600) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Optimize fiat conversion query + +- [#7230](https://github.com/thirdweb-dev/js/pull/7230) [`8245c06`](https://github.com/thirdweb-dev/js/commit/8245c06b3e7f53379929c430ce4fb7cbe76e9a1b) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Fixes token pricing in PayEmbed + +- [#7234](https://github.com/thirdweb-dev/js/pull/7234) [`4e93539`](https://github.com/thirdweb-dev/js/commit/4e935392fa4d3415a0f86774a17e41fdfd1e8a25) Thanks [@MananTank](https://github.com/MananTank)! - Fallback to insight response if RPC request fails in ERC721 & ERC1155 `getNFTs` extension + +- [#7241](https://github.com/thirdweb-dev/js/pull/7241) [`38627d3`](https://github.com/thirdweb-dev/js/commit/38627d352bc33b465657994d67245906abb63f63) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Handle smart account detection for inApp and ecosystem wallets + ## 5.102.2 ### Patch Changes diff --git a/packages/thirdweb/package.json b/packages/thirdweb/package.json index 6ba0ae9a617..f4e6080a95b 100644 --- a/packages/thirdweb/package.json +++ b/packages/thirdweb/package.json @@ -1,6 +1,6 @@ { "name": "thirdweb", - "version": "5.102.2", + "version": "5.102.3", "repository": { "type": "git", "url": "git+https://github.com/thirdweb-dev/js.git#main" diff --git a/packages/wagmi-adapter/CHANGELOG.md b/packages/wagmi-adapter/CHANGELOG.md index 49d20ab139a..13f8eaf1bc0 100644 --- a/packages/wagmi-adapter/CHANGELOG.md +++ b/packages/wagmi-adapter/CHANGELOG.md @@ -1,5 +1,7 @@ # @thirdweb-dev/wagmi-adapter +## 0.2.89 + ## 0.2.88 ## 0.2.87 diff --git a/packages/wagmi-adapter/package.json b/packages/wagmi-adapter/package.json index df26f65a57c..9646464f774 100644 --- a/packages/wagmi-adapter/package.json +++ b/packages/wagmi-adapter/package.json @@ -1,6 +1,6 @@ { "name": "@thirdweb-dev/wagmi-adapter", - "version": "0.2.88", + "version": "0.2.89", "repository": { "type": "git", "url": "git+https://github.com/thirdweb-dev/js.git#main"