Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.
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
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Some new error variants to the [`BlockInfoError`][bie] are needed as well.
[decode-calldata]: https://docs.rs/kona-protocol/latest/kona_protocol/enum.L1BlockInfoTx.html#method.decode_calldata
[try-new]: https://docs.rs/kona-protocol/latest/kona_protocol/enum.L1BlockInfoTx.html#method.try_new
[ecotone]: https://github.com/op-rs/kona/blob/main/crates/protocol/hardforks/src/ecotone.rs
[info-mod]: https://github.com/op-rs/kona/blob/main/crates/protocol/src/info/mod.rs
[info-mod]: https://github.com/op-rs/kona/blob/main/crates/protocol/protocol/src/info/mod.rs
[genesis]: https://docs.rs/kona-genesis/latest/kona_genesis/index.html
[rc]: https://docs.rs/kona-genesis/latest/kona_genesis/struct.RollupConfig.html
[hfc]: https://docs.rs/kona-genesis/latest/kona_genesis/struct.HardForkConfig.html
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/pages/sdk/proof/custom-backend.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ let pipeline = PipelineBuilder::new()
```

From here, a custom derivation driver is needed to produce the desired execution payload(s). An example of this for
`kona-client` can be found in the [DerivationDriver](https://github.com/op-rs/kona/blob/main/bin/client/src/l1/driver.rs#L77).
`kona-client` can be found in the [single proof implementation](https://github.com/op-rs/kona/blob/main/bin/client/src/single.rs#L98).

### `kona-mpt` / `kona-executor` sources

Expand Down
3 changes: 1 addition & 2 deletions docs/docs/pages/sdk/proof/exec-ext.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ power of [`revm`][revm]'s Handler abstractions, the logic of the STF can be easi

To register a custom handler, for example to add a custom precompile, modify the behavior of an EVM opcode,
or change the fee handling, `StatelessL2BlockExecutorBuilder::with_handle_register` is your friend. It accepts a
[`KonaHandleRegister`](https://docs.rs/kona-executor/latest/kona_executor/type.KonaHandleRegister.html), which
can be used to take full advantage of [`revm`'s Handler API](https://github.com/bluealloy/revm/blob/f57e3e639ee157c7e659e740bd175a7357003570/documentation/src/crates/revm/handler.md#handler).
handle register function that can be used to take full advantage of [`revm`'s Handler API](https://github.com/bluealloy/revm/blob/f57e3e639ee157c7e659e740bd175a7357003570/documentation/src/crates/revm/handler.md#handler).

## Example - Custom Precompile

Expand Down
4 changes: 3 additions & 1 deletion lychee.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ exclude_all_private = false
exclude = [
'foo.bar',
'localhost',
'^https://github\.com/op-rs/kona/pull/'
'^https://github\.com/op-rs/kona/pull/',
'^https://www\.intel\.com/content/www/us/en/developer/tools/trust-domain-extensions/documentation\.html',
'https://sepolia-optimism\.etherscan\.io'
]

# exclude_path values are ignored if cli <inputs> is glob pattern that matches
Expand Down