Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: OP Stack spec links #258

Open
wants to merge 2 commits into
base: optimism
Choose a base branch
from
Open
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
10 changes: 5 additions & 5 deletions fork.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ def:
- [`op-node`](https://github.com/ethereum-optimism/optimism/tree/develop/op-node) implements most rollup-specific functionality as Consensus-Layer, similar to a L1 beacon-node.
- [`op-geth`](https://github.com/ethereum-optimism/op-geth) implements the Execution-Layer, with **minimal changes** for a secure Ethereum-equivalent application environment.

Related [op-stack specifications](https://github.com/ethereum-optimism/optimism/tree/develop/specs):
Related [op-stack specifications](https://github.com/ethereum-optimism/specs/tree/main/specs):

- [L2 Execution Engine spec](https://github.com/ethereum-optimism/optimism/blob/develop/specs/exec-engine.md)
- [Deposit Transaction spec](https://github.com/ethereum-optimism/optimism/blob/develop/specs/deposits.md)
- [L2 Execution Engine spec](https://github.com/ethereum-optimism/specs/blob/main/specs/protocol/exec-engine.md)
- [Deposit Transaction spec](https://github.com/ethereum-optimism/specs/blob/main/specs/protocol/deposits.md)
sub:
- title: "Core modifications"
sub:
Expand All @@ -35,7 +35,7 @@ def:
description: |
The Bedrock upgrade introduces a `Deposit` transaction-type (`0x7E`) to enable both users and the
rollup system itself to change the L2 state based on L1 events and system rules as
[specified](https://github.com/ethereum-optimism/optimism/blob/develop/specs/deposits.md).
[specified](https://github.com/ethereum-optimism/specs/blob/main/specs/protocol/deposits.md#the-deposited-transaction-type).
globs:
- "core/types/deposit_tx.go"
- "core/types/transaction_marshalling.go"
Expand Down Expand Up @@ -96,7 +96,7 @@ def:
description: |
The Engine API is extended to insert transactions into the block and optionally exclude the tx-pool,
to reproduce the exact block of the sequencer from just the inputs, as derived from L1 by the rollup-node.
See [L2 execution engine specs](https://github.com/ethereum-optimism/optimism/blob/develop/specs/exec-engine.md).
See [L2 execution engine specs](https://github.com/ethereum-optimism/specs/blob/main/specs/protocol/exec-engine.md).
globs:
- "beacon/engine/types.go"
- "beacon/engine/gen_blockparams.go"
Expand Down