Skip to content

Commit 8abf3cc

Browse files
Version Packages (#7231)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent f10fbc8 commit 8abf3cc

File tree

9 files changed

+37
-46
lines changed

9 files changed

+37
-46
lines changed

.changeset/bridge-tokens-function.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

.changeset/dark-dancers-hammer.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/loose-tools-move.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/shaggy-tables-care.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/two-bugs-rescue.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/thirdweb/CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,38 @@
11
# thirdweb
22

3+
## 5.102.3
4+
5+
### Patch Changes
6+
7+
- [#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
8+
9+
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.
10+
11+
```typescript
12+
import { Bridge } from "thirdweb";
13+
14+
// Get all supported tokens
15+
const tokens = await Bridge.tokens({
16+
client: thirdwebClient,
17+
});
18+
19+
// Filter tokens by chain and symbol
20+
const ethTokens = await Bridge.tokens({
21+
chainId: 1,
22+
symbol: "USDC",
23+
limit: 50,
24+
client: thirdwebClient,
25+
});
26+
```
27+
28+
- [#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
29+
30+
- [#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
31+
32+
- [#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
33+
34+
- [#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
35+
336
## 5.102.2
437

538
### Patch Changes

packages/thirdweb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thirdweb",
3-
"version": "5.102.2",
3+
"version": "5.102.3",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

packages/wagmi-adapter/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# @thirdweb-dev/wagmi-adapter
22

3+
## 0.2.89
4+
35
## 0.2.88
46

57
## 0.2.87

packages/wagmi-adapter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@thirdweb-dev/wagmi-adapter",
3-
"version": "0.2.88",
3+
"version": "0.2.89",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

0 commit comments

Comments
 (0)