Skip to content

Commit bcf231f

Browse files
Version Packages
1 parent 5574c15 commit bcf231f

File tree

3 files changed

+24
-23
lines changed

3 files changed

+24
-23
lines changed

.changeset/odd-coats-cheer.md

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

packages/thirdweb/CHANGELOG.md

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

3+
## 5.74.1
4+
5+
### Patch Changes
6+
7+
- [#5487](https://github.com/thirdweb-dev/js/pull/5487) [`5574c15`](https://github.com/thirdweb-dev/js/commit/5574c15ec887c963a148cb54f04e5c0b5d3cff8e) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - BETA support for 7579 modular smart accounts
8+
9+
You can now create modular smart wallets using the 7579 preset.
10+
11+
Keep in mind that this is in BETA, and there might be breaking API changes.
12+
13+
```typescript
14+
import { sepolia } from "thirdweb/chains";
15+
import { smartWallet, Config } from "thirdweb/wallets/smart";
16+
const modularSmartWallet = smartWallet(
17+
Config.erc7579({
18+
chain: sepolia,
19+
sponsorGas: true,
20+
factoryAddress: "0x...", // the 7579 factory address
21+
validatorAddress: "0x...", // the default validator module address
22+
}),
23+
});
24+
```
25+
326
## 5.74.0
427

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

0 commit comments

Comments
 (0)