This section will guide you through setting up your environment to work with fhevm and give you a basic understanding of how to use JS to compile, deploy and interact your fhevm-contracts on a fhe-enabled ethermint chain.
Follow these simple steps to ensure you have the necessary tools and dependencies.
Before proceeding, ensure your system meets the following requirements:
- Operating System: Linux, macOS, or Windows with WSL2
- Go: Version
v1.23.x
or higher - Docker: Version
v26.x.x
or higher - Node.js: Node.js
v20.x
or higher
- Visit the Go Downloads Page and download the installer for your operating system.
- Follow the installation instructions specific for your OS.
- Verify the installation by running the following command:
You should see the installed Go version in the output.
go version
- Follow the official Docker installation guide for your operating system:
- After installation, verify Docker is installed correctly:
You should see the installed Docker version in the output.
docker --version
- Ensure Docker can run without
sudo
(Linux users only):Verify it works:sudo groupadd docker sudo usermod -aG docker $USER newgrp docker
docker run hello-world
- Follow the official Docker Compose plugin installation guide for your operating system:
- After installation, verify Docker Compose plugin is installed correctly:
You should see the installed Docker Compose plugin version in the output.
docker compose version
-
Install Node.js and npm using the official guide for your operating system: Node.js Downloads
- Select the LTS version for better stability.
-
Verify the installation by running the following commands:
node -v npm -v
These should output the installed Node.js and npm versions.
Once Go and Docker are installed, clone the hands-on-fhevm repository from GitHub:
- Open a terminal and navigate to the directory where you want to clone the repository.
- Run the following command:
git clone https://github.com/airchains-network/hands-on-fhevm.git
- Navigate to the project directory:
cd hands-on-fhevm
- Install dependencies
npm install
- Create a .env file
cp .env.example .env
With your prerequisites set up, move on to the Setting up Network section to set up your fhevm network.