Skip to content
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
4 changes: 2 additions & 2 deletions examples/demo-rollup/stf/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ no matter which ones you pick.
## Overview

To get a fully functional rollup, we recommend implementing the [State Transition Function
interface](../../rollup-interface/specs/interfaces/stf.md) ("STF") trait, which specifies your rollup's abstract logic. Second, there's
interface](../../../crates/rollup-interface/specs/interfaces/stf.md) ("STF") trait, which specifies your rollup's abstract logic. Second, there's
a related struct called `State Transition Runner` ("STR") which tells a full node how to run your abstract STF on a concrete machine.

## Implementing State Transition _Function_

As you recall, the Module System is primarily designed to help you implement the [State Transition Function
interface](../../rollup-interface/specs/interfaces/stf.md).
interface](../../../crates/rollup-interface/specs/interfaces/stf.md).

That interface is quite high-level - the only notion
that it surfaces is that of a `blob` of rollup data. In the Module System, we work at a much lower level - with
Expand Down
Loading