Skip to content

Commit 09a0591

Browse files
committed
lint fixes
1 parent 381ddcd commit 09a0591

File tree

1 file changed

+19
-21
lines changed

1 file changed

+19
-21
lines changed

Diff for: pages/builders/chain-operators/tools/op-challenger.mdx

+19-21
Original file line numberDiff line numberDiff line change
@@ -81,40 +81,38 @@ This guide provides a walkthrough of setting up the configuration and monitoring
8181

8282
#### `--rollup-rpc`
8383

84-
* This needs to be an`op-node` archive node because challenger needs access to output roots from back when the games start.
85-
86-
#### Important Configuration Details
84+
* This needs to be an`op-node` archive node because challenger needs access to output roots from back when the games start. See below for important configuration details:
8785

8886
1. Safe Head Database (SafeDB) Configuration for op-node:
8987

9088
* The `op-node` behind the `op-conductor` must have the SafeDB enabled to ensure it is not stateless.
91-
* **How to Enable SafeDB:**
92-
* Set the `--safedb.path` value in your configuration. This specifies the file path used to persist safe head update data.
89+
* To Enable SafeDB, set the `--safedb.path` value in your configuration. This specifies the file path used to persist safe head update data.
90+
* Example Configuration:
9391

94-
* Example:
95-
```
96-
--safedb.path <path-to-safe-head-db> # Replace <path-to-safe-head-db> with your actual path
97-
```
92+
```
93+
--safedb.path <path-to-safe-head-db> # Replace <path-to-safe-head-db> with your actual path
94+
```
9895

99-
* If this path is not set, the SafeDB feature will be disabled.
96+
<Callout type="info">
97+
If this path is not set, the SafeDB feature will be disabled.
98+
</Callout>
10099

101100
2. Ensuring Historical Data Availability:
102101

103102
* Both `op-node` and `op-geth` must have data from the start of the games to maintain network consistency and allow nodes to reference historical state and transactions.
104-
* For `op-node`:
105-
* Configure it to maintain a sufficient history of blockchain data locally or use an archive node.
106-
* For `op-geth`:
107-
* Similarly, configure to store or access historical data.
108-
109-
**Example Configuration**
103+
* For `op-node`: Configure it to maintain a sufficient history of blockchain data locally or use an archive node.
104+
* For `op-geth`: Similarly, configure to store or access historical data.
105+
* Example Configuration:
110106

111-
```
112-
op-node \
113-
--rollup-rpc <op-node-archive-node-url> \
114-
--safedb.path <path-to-safe-head-db>
115-
```
107+
```
108+
op-node \
109+
--rollup-rpc <op-node-archive-node-url> \
110+
--safedb.path <path-to-safe-head-db>
111+
```
116112

113+
<Callout type="info">
117114
Replace `<op-node-archive-node-url>` with the URL of your archive node and `<path-to-safe-head-db>` with the desired path for storing SafeDB data.
115+
</Callout>
118116

119117
#### `--private-key`
120118

0 commit comments

Comments
 (0)