Develop
Prerequisites
Before you start, make sure you have the following installed on your machine:
- Docker
- Make
- Kurtosis CLI (installed later in the setup process)
For local development, you will also need:
Quick Start
Clone the repo at: https://github.com/gattaca-com/based-op and use the following command to download the dependencies, build, and run the project:
make deps build run
All the components, including sequencer, gateway, portal, and follower nodes will start in a new kurtosis enclave.
You can now test sending a transaction with make test-tx
.
The transaction will be sent to the Portal, and forwarded to the gateway, which will sequence the transaction in a new Frag, and broacast it via p2p to follower nodes.
The Portal is only temporarily acting as a multiplexer for eth_
calls, but we don't expect this to be in the final design.
Logging
To view the logs, run the following:
make gateway-logs // Based gateway logs
make portal-logs // Based portal logs
make op-node-logs // OP node logs
make op-reth-logs // OP reth logs