Skip to content

Commit 83d900a

Browse files
Version Packages
1 parent d1716fc commit 83d900a

File tree

5 files changed

+28
-33
lines changed

5 files changed

+28
-33
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.

.changeset/strong-beans-pump.md

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

packages/thirdweb/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
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+
28+
- [#5641](https://github.com/thirdweb-dev/js/pull/5641) [`d1716fc`](https://github.com/thirdweb-dev/js/commit/d1716fc793d8cc57908192674f3aefe8ee66a5f8) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Support ERC6492 for smart account signatures
29+
330
## 5.74.0
431

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