Skip to content

Commit 9d88b81

Browse files
Version Packages
1 parent ed0886a commit 9d88b81

File tree

4 files changed

+26
-28
lines changed

4 files changed

+26
-28
lines changed

.changeset/blue-bees-ring.md

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

.changeset/odd-coats-cheer.md

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

packages/thirdweb/CHANGELOG.md

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

3+
## 5.74.1
4+
5+
### Patch Changes
6+
7+
- [#5639](https://github.com/thirdweb-dev/js/pull/5639) [`ed0886a`](https://github.com/thirdweb-dev/js/commit/ed0886a89f06f4c4065e37aa791d99eff2ce59d1) Thanks [@jnsdls](https://github.com/jnsdls)! - default account components to not retry on failure
8+
9+
- [#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
10+
11+
You can now create modular smart wallets using the 7579 preset.
12+
13+
Keep in mind that this is in BETA, and there might be breaking API changes.
14+
15+
```typescript
16+
import { sepolia } from "thirdweb/chains";
17+
import { smartWallet, Config } from "thirdweb/wallets/smart";
18+
const modularSmartWallet = smartWallet(
19+
Config.erc7579({
20+
chain: sepolia,
21+
sponsorGas: true,
22+
factoryAddress: "0x...", // the 7579 factory address
23+
validatorAddress: "0x...", // the default validator module address
24+
}),
25+
});
26+
```
27+
328
## 5.74.0
429

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