Skip to content

Commit f410ab4

Browse files
authored
Update README.md
1 parent fdea589 commit f410ab4

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

README.md

+23
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,7 @@ function deleteL2Outputs(uint256 _l2OutputIndex) external virtual;
314314
```
315315
Finally, confirm that all outputs have been deleted by calling nextOutputIndex again.
316316

317+
---
317318
#### Change the Inbox Address
318319
Manually update the inbox address in addresses.json and deploy-config.json.
319320

@@ -333,6 +334,7 @@ Ensure that no transactions have ever been sent to this address, as required. As
333334

334335
Once all changes are made, please restart your system by following the steps in the [Launch Your Verse](#3-launch-your-verse) section.
335336

337+
---
336338
### go-ethereum client causes `transaction type not supported` error
337339
When using the official [go-ethereum](https://github.com/ethereum/go-ethereum) client to fetch a L2 block data, you may get a `transaction type not supported` error.
338340

@@ -382,3 +384,24 @@ go mod edit -replace "github.com/ethereum/go-ethereum=github.com/oasysgames/oasy
382384
```
383385

384386
If you are using a programming language other than Golang, please make the appropriate fixes for each language.
387+
388+
---
389+
### What `channel_timeout` Means?
390+
channel_timeout defines the expiration time of a valid channel. L2 transactions are batched together to improve compression and reduce L1 gas costs when submitting data. These batches are referred to as a channel. Since a channel can become too large to fit within an L1 transaction, it is split into smaller chunks called frames.
391+
392+
A channel is considered timed out if:
393+
```
394+
current_l1_block.number > channel.open_l1_block.number + CHANNEL_TIMEOUT
395+
```
396+
Where:
397+
- current_l1_block is the latest known L1 block.
398+
- channel.open_l1_block is the L1 block number where the channel was first opened.
399+
400+
References:
401+
- [L2 Chain Derivation Specification: Timeouts](https://specs.optimism.io/protocol/derivation.html#timeouts)
402+
- [L2 Chain Derivation Specification: Batch Submission Wire Format](https://specs.optimism.io/protocol/derivation.html#batch-submission-wire-format)
403+
404+
405+
406+
407+

0 commit comments

Comments
 (0)