Skip to content
Merged
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
23 changes: 23 additions & 0 deletions specs/interop/supervisor.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
- [`BlockRef`](#blockref)
- [`DerivedIDPair`](#derivedidpair)
- [`ChainRootInfo`](#chainrootinfo)
- [`SupervisorSyncStatus`](#supervisorsyncstatus)
- [`SupervisorChainSyncStatus`](#supervisorchainsyncstatus)
- [`SuperRootResponse`](#superrootresponse)
- [`SafetyLevel`](#safetylevel)
- [Methods](#methods)
Expand Down Expand Up @@ -159,6 +161,27 @@ Describes a block.
- `canonical`: `Hash` - output root at the latest canonical block
- `pending`: `Bytes` - output root preimage

#### `SupervisorSyncStatus`

Describes the sync status of the Supervisor component.

`OBJECT`:
- `minSyncedL1`: `BlockRef` - block ref to the synced L1 block
- `safeTimestamp`: `Int` - safe timestamp
- `finalizedTimestamp`: `Int` - finalized timestamp
- `chains`: `OBJECT` with `ChainID` keys and `SupervisorChainSyncStatus` values

#### `SupervisorChainSyncStatus`

Describes the sync status for a specific chain

`OBJECT`:
- `localUnsafe`: `BlockRef` - local-unsafe ref for the given chain
- `localSafe`: `BlockID` - local-safe ref for the given chain
- `crossUnsafe`: `BlockID` - cross-unsafe ref for the given chain
- `safe`: `BlockID` - cross-safe ref for the given chain
- `finalized`: `BlockID` - finalized ref for the given chain

#### `SuperRootResponse`

`OBJECT`:
Expand Down