Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 0 additions & 27 deletions .changeset/silent-areas-melt.md

This file was deleted.

28 changes: 28 additions & 0 deletions packages/thirdweb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# thirdweb

## 5.98.0

### Minor Changes

- [#6874](https://github.com/thirdweb-dev/js/pull/6874) [`e96ebba`](https://github.com/thirdweb-dev/js/commit/e96ebba2cba7ec63ba04d0d0a47c177059d6a19e) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - EIP7702 support for in-app wallets

You can now turn your in-app wallets into smart accounts with 7702!

This lets you:

- sponsor transactions
- batch transactions
- add session keys
- and more!

simply pass the executionMode "EIP7702" to get started:

```ts
const wallet = inAppWallet({
executionMode: {
mode: "EIP7702",
sponsorGas: true,
},
});
```

Keep in mind that this will only work on chains that support 7702.

## 5.97.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/thirdweb/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "thirdweb",
"version": "5.97.3",
"version": "5.98.0",
"repository": {
"type": "git",
"url": "git+https://github.com/thirdweb-dev/js.git#main"
Expand Down
2 changes: 2 additions & 0 deletions packages/wagmi-adapter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# @thirdweb-dev/wagmi-adapter

## 0.2.73

## 0.2.72

## 0.2.71
Expand Down
2 changes: 1 addition & 1 deletion packages/wagmi-adapter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@thirdweb-dev/wagmi-adapter",
"version": "0.2.72",
"version": "0.2.73",
"repository": {
"type": "git",
"url": "git+https://github.com/thirdweb-dev/js.git#main"
Expand Down
Loading