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

docs: reference to a section that does not exist #1536

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
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
2 changes: 0 additions & 2 deletions coordinator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ The built coordinator binary is in the `build/bin` directory.

## Test

**Note:** Our test code may not directly support Apple Silicon (M1/M2) chips. However, we've provided a Docker-based solution for local testing on M1/M2 Macs. Please refer to the [Local Testing on M1/M2 Mac](../README.md#local-testing-on-m1m2-mac) section in the main README for details. After preparing the environment, you can then proceed with the testing.

When developing the coordinator, use the following command to mock verifier results and run coordinator tests:

```bash
Expand Down
9 changes: 5 additions & 4 deletions rollup/README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Rollup

This directory contains the three essential rollup services for the Scroll chain:
This directory contains the two essential rollup services for the Scroll chain:
- Gas Oracle (<a href="./cmd/gas_oracle/">gas_oracle</a>): monitors the L1 and L2 gas price and sends transactions to update the gas price oracle contracts on L1 and L2.
- Rollup Relayer (<a href="./cmd/rollup_relayer/">rollup_relayer</a>): consists of three components: chunk and batch proposer and a relayer.
- The chunk and batch proposer proposes new chunks and batches that sends Commit Transactions for data availability and Finalize Transactions for proof verification and state finalization.
- Rollup Relayer (<a href="./cmd/rollup_relayer/">rollup_relayer</a>): consists of two components: chunk and batch proposer and a relayer.
- The chunk and batch proposer proposes new chunks and batches that send Commit Transactions for data availability and Finalize Transactions for proof verification and state finalization.
- The relayer handles the submission of transactions to the network.

## Dependency

Expand All @@ -15,7 +16,7 @@ go install -v github.com/scroll-tech/go-ethereum/cmd/abigen

2. `solc`

Ensure you install the version of solc required by [MockBridge.sol](./mock_bridge/MockBridge.sol#L2) (e.g., 0.8.24). See https://docs.soliditylang.org/en/latest/installing-solidity.html
Ensure you install the version of solc required by [MockBridge.sol](./mock_bridge/MockBridge.sol#L2) (e.g., 0.8.24). See [Installing the Solidity Compiler](https://docs.soliditylang.org/en/latest/installing-solidity.html)

## Build

Expand Down