Skip to content

Commit aa29688

Browse files
Version Packages
1 parent 0f6b881 commit aa29688

File tree

5 files changed

+38
-41
lines changed

5 files changed

+38
-41
lines changed

.changeset/hot-adults-doubt.md

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

.changeset/khaki-items-tease.md

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

.changeset/sixty-cats-doubt.md

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

packages/thirdweb/CHANGELOG.md

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

3+
## 5.61.0
4+
5+
### Minor Changes
6+
7+
- [#4906](https://github.com/thirdweb-dev/js/pull/4906) [`63d0777`](https://github.com/thirdweb-dev/js/commit/63d0777e6f8effbf02cd773a3f7f03f42b85c781) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - New `useLinkProfile()` hook to link profiles to inapp and ecosystem accounts
8+
9+
- [#4905](https://github.com/thirdweb-dev/js/pull/4905) [`a453d96`](https://github.com/thirdweb-dev/js/commit/a453d96aed12e53561a239f361be1d59a53172db) Thanks [@kien-ngo](https://github.com/kien-ngo)! - Add name & address resolvers for Unstoppable Domains
10+
11+
### Patch Changes
12+
13+
- [#4918](https://github.com/thirdweb-dev/js/pull/4918) [`0f6b881`](https://github.com/thirdweb-dev/js/commit/0f6b881bcaf45c08d1aa7b7c117960e688e1ac42) Thanks [@ElasticBottle](https://github.com/ElasticBottle)! - Add querying for in app wallet user details via externally linked wallet address:
14+
15+
```ts
16+
import { getUser } from "thirdweb";
17+
18+
// this is the wallet address that the user used to connect via SIWE to their in app wallet
19+
const user = await getUser({
20+
client,
21+
externalWalletAddress: "0x123...",
22+
});
23+
```
24+
25+
Add querying for ecosystem wallet user details:
26+
27+
```ts
28+
import { getUser } from "thirdweb";
29+
30+
const user = await getUser({
31+
client,
32+
ecosystem: {
33+
id: "ecosystem.YOUR_ID",
34+
partnerId: "OPTIONAL_PARTNER_ID"
35+
}
36+
37+
});
38+
```
39+
340
## 5.60.1
441

542
### 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.60.1",
3+
"version": "5.61.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/thirdweb-dev/js.git#main"

0 commit comments

Comments
 (0)