Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.
Open
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
6 changes: 3 additions & 3 deletions site/pages/docs/eip7702/prepareAuthorization.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const authorization = await walletClient.prepareAuthorization({

### chainId (optional)

- **Type:** `Address`
- **Type:** `Address`

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- **Type:** `Address`
- **Type:** `number`

- **Default:** `client.chain.id` or Network chain ID

The Chain ID to scope the Authorization to. If set to zero (`0`), then the Authorization will
Expand Down Expand Up @@ -160,7 +160,7 @@ const authorization = await walletClient.prepareAuthorization({

### nonce (optional)

- **Type:** `Address`
- **Type:** `Address`

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- **Type:** `Address`
- **Type:** `number`

- **Default:** Account's next available nonce.

The nonce to scope the Authorization to.
Expand All @@ -174,4 +174,4 @@ const authorization = await walletClient.prepareAuthorization({
contractAddress: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
nonce: 69, // [!code focus]
})
```
```
6 changes: 3 additions & 3 deletions site/pages/docs/eip7702/signAuthorization.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const authorization = await walletClient.signAuthorization({

### chainId (optional)

- **Type:** `Address`
- **Type:** `Address`

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- **Type:** `Address`
- **Type:** `number`

- **Default:** `client.chain.id` or Network chain ID

The Chain ID to scope the Authorization to.
Expand Down Expand Up @@ -184,7 +184,7 @@ const authorization = await walletClient.signAuthorization({

### nonce (optional)

- **Type:** `Address`
- **Type:** `Address`

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- **Type:** `Address`
- **Type:** `number`

- **Default:** Account's next available nonce.

The nonce to scope the Authorization to.
Expand All @@ -198,4 +198,4 @@ const authorization = await walletClient.signAuthorization({
contractAddress: '0xFBA3912Ca04dd458c843e2EE08967fC04f3579c2',
nonce: 69, // [!code focus]
})
```
```