Skip to content

Commit 2d996cc

Browse files
Version Packages (#5901)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 429e112 commit 2d996cc

File tree

6 files changed

+53
-50
lines changed

6 files changed

+53
-50
lines changed

.changeset/clever-beds-knock.md

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

.changeset/polite-trains-kick.md

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

packages/thirdweb/CHANGELOG.md

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

3+
## 5.82.0
4+
5+
### Minor Changes
6+
7+
- [#5801](https://github.com/thirdweb-dev/js/pull/5801) [`429e112`](https://github.com/thirdweb-dev/js/commit/429e1127b27354386cd2be1838c1b9e25c956117) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Feature: Adds beta support for EIP-7702 authorization lists
8+
9+
```ts
10+
import {
11+
prepareTransaction,
12+
sendTransaction,
13+
signAuthorization,
14+
} from "thirdweb";
15+
16+
const authorization = await signAuthorization({
17+
request: {
18+
address: "0x...",
19+
chainId: 911867,
20+
nonce: 100n,
21+
},
22+
account: myAccount,
23+
});
24+
25+
const transaction = prepareTransaction({
26+
chain: ANVIL_CHAIN,
27+
client: TEST_CLIENT,
28+
value: 100n,
29+
to: TEST_WALLET_B,
30+
authorizationList: [authorization],
31+
});
32+
33+
const res = await sendTransaction({
34+
account,
35+
transaction,
36+
});
37+
```
38+
39+
- [#5845](https://github.com/thirdweb-dev/js/pull/5845) [`b058f68`](https://github.com/thirdweb-dev/js/commit/b058f688a751486de1cffdcd5db4c846db6bb2ab) Thanks [@gregfromstl](https://github.com/gregfromstl)! - Feature: Adds `deploySmartAccount` function to force the deployment of a smart account.
40+
41+
```ts
42+
const account = await deploySmartAccount({
43+
smartAccount,
44+
chain,
45+
client,
46+
accountContract,
47+
});
48+
```
49+
50+
Fix: Uses 1271 signatures if the smart account is already deployed.
51+
352
## 5.81.0
453

554
### Minor 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.81.0",
3+
"version": "5.82.0",
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.1.5
4+
35
## 0.1.4
46

57
## 0.1.3

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

0 commit comments

Comments
 (0)