You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+23
Original file line number
Diff line number
Diff line change
@@ -314,6 +314,7 @@ function deleteL2Outputs(uint256 _l2OutputIndex) external virtual;
314
314
```
315
315
Finally, confirm that all outputs have been deleted by calling nextOutputIndex again.
316
316
317
+
---
317
318
#### Change the Inbox Address
318
319
Manually update the inbox address in addresses.json and deploy-config.json.
319
320
@@ -333,6 +334,7 @@ Ensure that no transactions have ever been sent to this address, as required. As
333
334
334
335
Once all changes are made, please restart your system by following the steps in the [Launch Your Verse](#3-launch-your-verse) section.
335
336
337
+
---
336
338
### go-ethereum client causes `transaction type not supported` error
337
339
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.
338
340
@@ -382,3 +384,24 @@ go mod edit -replace "github.com/ethereum/go-ethereum=github.com/oasysgames/oasy
382
384
```
383
385
384
386
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.
0 commit comments