Skip to content

Commit 209cee6

Browse files
authored
Merge pull request #1423 from moooonman/main
fix spelling issues
2 parents eeda205 + b4bfc95 commit 209cee6

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

pages/operators/chain-operators/architecture.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Bootnodes facilitate peer discovery for network nodes. They help initialize peer
123123
124124
### Archive RPC Nodes
125125
126-
We recommend setting up some archive nodes for internal RPC usage, primary used by the challenger, proposer and security monitoring tools like [monitorism](/operators/chain-operators/tools/chain-monitoring#monitorism).
126+
We recommend setting up some archive nodes for internal RPC usage, primarily used by the challenger, proposer and security monitoring tools like [monitorism](/operators/chain-operators/tools/chain-monitoring#monitorism).
127127
128128
```yaml
129129
GETH_GCMODE: "archive"

pages/operators/chain-operators/tutorials/adding-derivation-attributes.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ contract L1Burn {
4343
uint256 public total;
4444
4545
/**
46-
* @notice Mapping of blocks numbers to total burn.
46+
* @notice Mapping of block numbers to total burn.
4747
*/
4848
mapping (uint64 => uint256) public reports;
4949

pages/operators/node-operators/management/blobs.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ These will need to be set on `op-node` and `op-geth` for the sequencer and all o
7171

7272
## Configure a blob archiver
7373

74-
There is a configurable `beacon-archiver` that will allow nodes to sync blob data that is older than 18 days - after blobs are 18 days old, normal beacon nodes will "prune" or remove them. If your node is already in sync with the head of the chain, you won't need to use a `beacon-archiver`.
74+
There is a configurable `beacon-archiver` that will allow nodes to sync blob data that is older than 18 days - after blobs are 18 days old, normal beacon nodes will "prune" or remove them. If your node is already in sync with the head of the chain, you won't need to use a `beacon-archiver`.
7575

76-
* If you're spinning up a new node, if you load it from a snapshot that's within 18 days (the amount of time until blobs are pruned) you will not need to use a `beacon-archiver` at all as long as your node does not fall offline for more than 18 days.
76+
* If you're spinning up a new node, if you load it from a snapshot that's within 18 days (the amount of time until blobs are pruned) you will not need to use a `beacon-archiver` at all as long as your node does not fall offline for more than 18 days.
7777
* If you're running a new node that is syncing more than 18 days (the amount of time until blobs are pruned) after Ecotone launch, then you will need to configure a `beacon-archiver` on the `op-node`.
7878

7979
```shell

pages/operators/node-operators/management/troubleshooting.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ it is restarted.
8787

8888
It is always best to shut down Geth gracefully, i.e. using a
8989
shutdown command such as `ctrl-c`, `docker stop -t 300 <container ID>` or
90-
`systemctl stop` (although please note that `systemctl sto`p has a default timeout
90+
`systemctl stop` (although please note that `systemctl stop` has a default timeout
9191
of 90s - if Geth takes longer than this to gracefully shut down it will quit
9292
forcefully. Update the `TimeoutSecs` variable in `systemd.service` to override this
9393
value to something larger, at least 300s).

pages/stack/fault-proofs/explainer.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Assuming OP Mainnet parameters, where proposals will be posted hourly, that's 0.
8585
Assuming a 7 day dispute window, you'll need roughly 14 ETH (including gas costs) to make proposals.
8686
If chains are using the similar FP deploy configs as OP Mainnet, it's recommended to stick to a 0.08 ETH initial bond.
8787

88-
However, the capital requirements for operating a FP chain in itself is much larger than 14 ETH.
88+
However, the capital requirements for operating a FP chain in itself are much larger than 14 ETH.
8989
An operator that secures their chain using FPs must be willing to stake a lot of ETH to secure the chain.
9090
One may decide the capital requirements aren't worth it, and use only a Permissioned FP system.
9191
The capital requirements will be improved in the later stages of Fault Proofs to make it more feasible for smaller chains.

pages/stack/fault-proofs/mips.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The Dispute Game itself is modular, allowing for any FPVM to be used in a disput
1919
The `FaultDisputeGame.sol` interacts with `MIPS.sol` and then `MIPS.sol` calls into `PreimageOracle.sol`. `MIPS.sol` is only called at the max depth of the game when someone needs to call `step`.
2020
`FaultDisputeGame.sol` is the deployed instance of a Fault Dispute Game for an active dispute, and `PreimageOracle.sol` stores Pre-images.
2121

22-
* Pre-images contain data from both L1 and L2, which includes information such as block headers, transactions, receipts, world state nodes, and more. Pre-images are used as the inputs to the derivation process used to calculate the true L2 state, and subsequently the true L2 state is used to resolve a dispute game.
22+
* Pre-images contain data from both L1 and L2, which includes information such as block headers, transactions, receipts, world state nodes, and more. Pre-images are used as the inputs to the derivation process used to calculate the true L2 state, and subsequently the true L2 state is used to resolve a dispute game.
2323
* A Fault Dispute Game, at a high-level, will effectively determine what L2 state is currently agreed-upon, and move through L2 state until the first disagreed-upon state is found. How the Pre-images are determined and populated into the `PreimageOracle.sol` contract is out-of-scope for this reference document on the `MIPS.sol` contract, as that contract only consumes Pre-images that have already been populated by the off-chain Cannon implementation.
2424

2525
The `MIPS.sol` contract is called by a running instance of a dispute game (i.e. by a `FaultDisputeGame.sol` contract), and is only called once a dispute game reaches a leaf node in the state transition tree that is currently being disputed.

0 commit comments

Comments
 (0)