diff --git a/coordinator/README.md b/coordinator/README.md index 93cd4560c..8c31be154 100644 --- a/coordinator/README.md +++ b/coordinator/README.md @@ -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 diff --git a/rollup/README.md b/rollup/README.md index 6b53fb065..9951417f8 100644 --- a/rollup/README.md +++ b/rollup/README.md @@ -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 (gas_oracle): monitors the L1 and L2 gas price and sends transactions to update the gas price oracle contracts on L1 and L2. -- Rollup Relayer (rollup_relayer): 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 (rollup_relayer): 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 @@ -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