Skip to content

Commit b98c228

Browse files
Version Packages (#6280)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 5a08176 commit b98c228

File tree

10 files changed

+50
-49
lines changed

10 files changed

+50
-49
lines changed

.changeset/popular-ligers-taste.md

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

.changeset/sweet-items-compare.md

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

.changeset/tall-buckets-build.md

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

.changeset/weak-kids-love.md

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

apps/login/CHANGELOG.md

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

3+
## 0.1.9
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`b182302`](https://github.com/thirdweb-dev/js/commit/b182302f590e75c9881cebd0ca1cc8b1425d50b8), [`5a08176`](https://github.com/thirdweb-dev/js/commit/5a08176eb0eb6d258d1d521a1e7a44c08145a043), [`a0f3557`](https://github.com/thirdweb-dev/js/commit/a0f355717ad3c829f3d692183be46a43187eca49), [`45ca033`](https://github.com/thirdweb-dev/js/commit/45ca0334bb4e8378fefd683e48aef95e4ce8b886)]:
8+
- thirdweb@5.88.6
9+
310
## 0.1.8
411

512
### Patch Changes

apps/login/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "thirdweb-login",
3-
"version": "0.1.8",
3+
"version": "0.1.9",
44
"private": true,
55
"scripts": {
66
"preinstall": "npx only-allow pnpm",

packages/thirdweb/CHANGELOG.md

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

3+
## 5.88.6
4+
5+
### Patch Changes
6+
7+
- [#6274](https://github.com/thirdweb-dev/js/pull/6274) [`b182302`](https://github.com/thirdweb-dev/js/commit/b182302f590e75c9881cebd0ca1cc8b1425d50b8) Thanks [@kumaryash90](https://github.com/kumaryash90)! - bytes32 salt for deterministic deployment
8+
9+
- [#6283](https://github.com/thirdweb-dev/js/pull/6283) [`5a08176`](https://github.com/thirdweb-dev/js/commit/5a08176eb0eb6d258d1d521a1e7a44c08145a043) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Respect supportedTokens override in PayEmbed
10+
11+
- [#6281](https://github.com/thirdweb-dev/js/pull/6281) [`a0f3557`](https://github.com/thirdweb-dev/js/commit/a0f355717ad3c829f3d692183be46a43187eca49) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Fix text wrapping for long balances in token selector
12+
13+
- [#6282](https://github.com/thirdweb-dev/js/pull/6282) [`45ca033`](https://github.com/thirdweb-dev/js/commit/45ca0334bb4e8378fefd683e48aef95e4ce8b886) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Deprecated `viemAdapter.walletClient` in favor of `viemAdapter.wallet` to take wallet instances instead of accounts
14+
15+
BEFORE:
16+
17+
```ts
18+
import { viemAdapter } from "thirdweb/adapters/viem";
19+
20+
const walletClient = viemAdapter.walletClient.toViem({
21+
account, // Account
22+
chain,
23+
client,
24+
});
25+
```
26+
27+
AFTER:
28+
29+
```ts
30+
import { viemAdapter } from "thirdweb/adapters/viem";
31+
32+
const walletClient = viemAdapter.wallet.toViem({
33+
wallet, // now pass a connected Wallet instance instead of an account
34+
chain,
35+
client,
36+
});
37+
```
38+
39+
This allows for full wallet lifecycle management with the viem adapter, including switching chains, adding chains, events and more.
40+
341
## 5.88.5
442

543
### 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.88.5",
3+
"version": "5.88.6",
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.20
4+
35
## 0.2.19
46

57
### Patch Changes

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

0 commit comments

Comments
 (0)