diff --git a/.changeset/heavy-camels-help.md b/.changeset/heavy-camels-help.md deleted file mode 100644 index bbdca61adc3..00000000000 --- a/.changeset/heavy-camels-help.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"thirdweb": patch ---- - -Fix passing 0n as from/to blocks in getContractEvents diff --git a/.changeset/hot-adults-doubt.md b/.changeset/hot-adults-doubt.md deleted file mode 100644 index f55fdeb739e..00000000000 --- a/.changeset/hot-adults-doubt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"thirdweb": minor ---- - -New `useLinkProfile()` hook to link profiles to inapp and ecosystem accounts diff --git a/.changeset/khaki-items-tease.md b/.changeset/khaki-items-tease.md deleted file mode 100644 index 7fbd72903c1..00000000000 --- a/.changeset/khaki-items-tease.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"thirdweb": minor ---- - -Add name & address resolvers for Unstoppable Domains diff --git a/.changeset/sixty-cats-doubt.md b/.changeset/sixty-cats-doubt.md deleted file mode 100644 index 30debd87128..00000000000 --- a/.changeset/sixty-cats-doubt.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -"thirdweb": patch ---- - -Add querying for in app wallet user details via externally linked wallet address: - -```ts -import { getUser } from "thirdweb"; - -// this is the wallet address that the user used to connect via SIWE to their in app wallet -const user = await getUser({ - client, - externalWalletAddress: "0x123...", -}); -``` - -Add querying for ecosystem wallet user details: - -```ts -import { getUser } from "thirdweb"; - -const user = await getUser({ - client, - ecosystem: { - id: "ecosystem.YOUR_ID", - partnerId: "OPTIONAL_PARTNER_ID" - } - email: "user@example.com", -}); -``` diff --git a/packages/thirdweb/CHANGELOG.md b/packages/thirdweb/CHANGELOG.md index c572253636a..cde58822f97 100644 --- a/packages/thirdweb/CHANGELOG.md +++ b/packages/thirdweb/CHANGELOG.md @@ -1,5 +1,44 @@ # thirdweb +## 5.61.0 + +### Minor Changes + +- [#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 + +- [#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 + +### Patch Changes + +- [#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 + +- [#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: + + ```ts + import { getUser } from "thirdweb"; + + // this is the wallet address that the user used to connect via SIWE to their in app wallet + const user = await getUser({ + client, + externalWalletAddress: "0x123...", + }); + ``` + + Add querying for ecosystem wallet user details: + + ```ts + import { getUser } from "thirdweb"; + + const user = await getUser({ + client, + ecosystem: { + id: "ecosystem.YOUR_ID", + partnerId: "OPTIONAL_PARTNER_ID" + } + email: "user@example.com", + }); + ``` + ## 5.60.1 ### Patch Changes diff --git a/packages/thirdweb/package.json b/packages/thirdweb/package.json index bc126a263cd..ba37f93cf70 100644 --- a/packages/thirdweb/package.json +++ b/packages/thirdweb/package.json @@ -1,6 +1,6 @@ { "name": "thirdweb", - "version": "5.60.1", + "version": "5.61.0", "repository": { "type": "git", "url": "git+https://github.com/thirdweb-dev/js.git#main"