Skip to content

Commit 1c597dc

Browse files
authored
Merge branch 'main' into fix/feedback-api-endpoints
2 parents 074522f + 79e3694 commit 1c597dc

File tree

8 files changed

+49
-6
lines changed

8 files changed

+49
-6
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/settings/ProjectGeneralSettingsPage.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,12 @@ function AllowedDomainsSetting(props: {
539539

540540
return (
541541
<SettingsCard
542-
bottomText="This is only applicable for web applications"
542+
bottomText={
543+
<>
544+
This is only applicable for web applications. Changes to domain
545+
restrictions may take up to 5 minutes to take effect
546+
</>
547+
}
543548
errorText={form.getFieldState("domains", form.formState).error?.message}
544549
header={{
545550
description:

packages/nebula/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @thirdweb-dev/nebula
22

3+
## 0.2.44
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`ef15ba7`](https://github.com/thirdweb-dev/js/commit/ef15ba7c434f8c9bde3b6d45d43d90e74f20616b)]:
8+
9+
10+
## 0.2.43
11+
12+
### Patch Changes
13+
14+
- Updated dependencies [[`1759112`](https://github.com/thirdweb-dev/js/commit/1759112d722e11d2d9a902f2221e70636188015e)]:
15+
16+
317
## 0.2.42
418

519
### Patch Changes

packages/nebula/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@
5757
"type": "module",
5858
"types": "./dist/types/exports/thirdweb.d.ts",
5959
"typings": "./dist/types/exports/thirdweb.d.ts",
60-
"version": "0.2.42"
60+
"version": "0.2.44"
6161
}

packages/thirdweb/CHANGELOG.md

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

3+
## 5.105.44
4+
5+
### Patch Changes
6+
7+
- [#8036](https://github.com/thirdweb-dev/js/pull/8036) [`ef15ba7`](https://github.com/thirdweb-dev/js/commit/ef15ba7c434f8c9bde3b6d45d43d90e74f20616b) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - pass through authorizationList for injected providers
8+
9+
## 5.105.43
10+
11+
### Patch Changes
12+
13+
- [#8029](https://github.com/thirdweb-dev/js/pull/8029) [`1759112`](https://github.com/thirdweb-dev/js/commit/1759112d722e11d2d9a902f2221e70636188015e) Thanks [@joaquim-verges](https://github.com/joaquim-verges)! - Add signAuthorization support to 1193 provider
14+
315
## 5.105.42
416

517
### Patch Changes

packages/thirdweb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,5 +417,5 @@
417417
}
418418
},
419419
"typings": "./dist/types/exports/thirdweb.d.ts",
420-
"version": "5.105.42"
420+
"version": "5.105.44"
421421
}

packages/thirdweb/src/wallets/injected/index.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import * as ox__Authorization from "ox/Authorization";
12
import type { EIP1193Provider } from "viem";
23
import {
34
getTypesForEIP712Domain,
@@ -14,6 +15,7 @@ import {
1415
import type { Chain } from "../../chains/types.js";
1516
import { getCachedChain, getChainMetadata } from "../../chains/utils.js";
1617
import type { ThirdwebClient } from "../../client/client.js";
18+
import type { AuthorizationRequest } from "../../transaction/actions/eip7702/authorization.js";
1719
import { getAddress } from "../../utils/address.js";
1820
import {
1921
type Hex,
@@ -197,9 +199,8 @@ function createAccount({
197199
};
198200
const params = [
199201
{
202+
...tx,
200203
...gasFees,
201-
accessList: tx.accessList,
202-
data: tx.data,
203204
from: this.address,
204205
gas: tx.gas ? numberToHex(tx.gas) : undefined,
205206
nonce: tx.nonce ? numberToHex(tx.nonce) : undefined,
@@ -265,6 +266,13 @@ function createAccount({
265266
params: [messageToSign, getAddress(account.address)],
266267
});
267268
},
269+
async signAuthorization(authorization: AuthorizationRequest) {
270+
const payload = ox__Authorization.getSignPayload(authorization);
271+
return await provider.request({
272+
method: "eth_sign",
273+
params: [getAddress(account.address), payload],
274+
});
275+
},
268276
async signTypedData(typedData) {
269277
if (!provider || !account.address) {
270278
throw new Error("Provider not setup");

packages/wagmi-adapter/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# @thirdweb-dev/wagmi-adapter
22

3+
## 0.2.141
4+
5+
## 0.2.140
6+
37
## 0.2.139
48

59
## 0.2.138

packages/wagmi-adapter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@
5555
"type": "module",
5656
"types": "./dist/types/exports/thirdweb.d.ts",
5757
"typings": "./dist/types/exports/thirdweb.d.ts",
58-
"version": "0.2.139"
58+
"version": "0.2.141"
5959
}

0 commit comments

Comments
 (0)