Skip to content
This repository has been archived by the owner on Apr 11, 2021. It is now read-only.

refactor: Rename data-transport-layer to transaction-indexer #293

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## v0.1.3

- Integrate data transport layer

- Integrate data transport layer <!-- Addendum 2021-03-30: "data transport layer" was renamed to "transaction-indexer" -->
- Refactor `SyncService`
- New RPC Endpoint `eth_getBlockRange`

Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ $ make geth

### Running a Sequencer

Running a sequencer requires the [Data Transport Layer](https://github.com/ethereum-optimism/data-transport-layer)
to be synced. The data transport layer is responsible for indexing transactions
from Layer One concurrently. The sequencer pulls in transactions from the data
transport layer and executes them. The URL of the data transport layer should be
used for the sequencer config option `--rollup.clienthttp`.
Running a sequencer requires the [`transaction-indexer`](https://github.com/ethereum-optimism/transaction-indexer)
to be synced. The `transaction-indexer` is responsible for indexing transactions
from Layer One concurrently. The sequencer pulls in transactions from the
`transaction-indexer` and executes them. The URL of the `transaction-indexer`
should be used for the sequencer config option `--rollup.clienthttp`.

See the script `scripts/start.sh`. It sets many of the config options
and accepts CLI flags. For usage, run the command:
Expand Down
2 changes: 1 addition & 1 deletion rollup/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type Config struct {
Eth1ChainId uint64
// Gas Limit
GasLimit uint64
// HTTP endpoint of the data transport layer
// HTTP endpoint of the transaction-indexer
RollupClientHttp string
L1CrossDomainMessengerAddress common.Address
AddressManagerOwnerAddress common.Address
Expand Down