Skip to content

Commit 4660e0c

Browse files
Version Packages (#4907)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 5211446 commit 4660e0c

File tree

6 files changed

+40
-46
lines changed

6 files changed

+40
-46
lines changed

.changeset/heavy-camels-help.md

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

.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: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
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+
- [#4919](https://github.com/thirdweb-dev/js/pull/4919) [`d4c423c`](https://github.com/thirdweb-dev/js/commit/d4c423cd971f8d79843f3bf0ac461ad88da611e5) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Fix passing 0n as from/to blocks in getContractEvents
14+
15+
- [#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:
16+
17+
```ts
18+
import { getUser } from "thirdweb";
19+
20+
// this is the wallet address that the user used to connect via SIWE to their in app wallet
21+
const user = await getUser({
22+
client,
23+
externalWalletAddress: "0x123...",
24+
});
25+
```
26+
27+
Add querying for ecosystem wallet user details:
28+
29+
```ts
30+
import { getUser } from "thirdweb";
31+
32+
const user = await getUser({
33+
client,
34+
ecosystem: {
35+
id: "ecosystem.YOUR_ID",
36+
partnerId: "OPTIONAL_PARTNER_ID"
37+
}
38+
email: "user@example.com",
39+
});
40+
```
41+
342
## 5.60.1
443

544
### 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)