🚀Quicklauch

In this section, we will provide a comprehensive, step-by-step guide for the swift initiation of the Airchains Rollup, whether it be an EVM, SVM, or CosmWasm variant. The guide encompasses the Da options of Avail and Celestia. We strongly recommend opting for the Quicklaunch method as opposed to manually configuring every aspect. The Quicklaunch streamlines the setup process, ensuring a more efficient and hassle-free deployment of the Airchains Rollup.

Please Ensure System Requirements are Met for Rollup Creation

Before initiating the creation of your preferred Rollup – be it an EVM, SVM, or CosmWasm variant – kindly review the specific system requirements outlined in the respective sections:

1. Clone the GitHub Repository

Clone the Airchains GitHub repository using the following command:

git clone https://github.com/airchains-network/airchains

2. Navigate to the Cloned Directory and Checkout a Release Version:

Change to the cloned directory and switch to a specific release version (e.g., v0.0.1-beta) using:

cd airchains
git checkout v0.0.1-beta

Alternatively, you can choose the latest release version.

3. Build Binary Files using Go:

Run the following commands to tidy up the Go modules and build the binary files:

go mod tidy
go build -o airchains main.go

4. Execute the Binary File

After a successful build, execute the binary file using:

./airchains start

5. Interactive Prompt

The prompt will appear, providing you with options to choose from. Use the interactive prompt to configure and start the chain automatically based on your selected options.

By following these steps, you'll efficiently create and launch the Airchains network with the chosen configuration using Quicklaunch.

Last updated