This guide will help you download and run the code-from-screenshot software. Follow the steps below to set everything up on your computer.
Before you begin, make sure your computer meets these requirements:
Visit the Release Page
Go to the release page to download the application:
Choose the Latest Version
Look for the latest version on the release page and click on it to see the download options.
Download the Installer
Select the appropriate installer for your operating system and click to download it.
Run the Installer
Once downloaded, locate the file on your computer. Open it to start the installation. Follow the on-screen instructions to complete the setup.
After installing, you need to prepare your environment:
Install Dependencies
Open your terminal and run:
npm install
Set Up Environment Variables
You need to configure some keys for the application. Open your terminal and run the following commands:
npx hardhat vars set MNEMONIC
Set your Infura API key for network access:
npx hardhat vars set INFURA_API_KEY
Optionally, you can set the Etherscan API key for contract verification:
npx hardhat vars set ETHERSCAN_API_KEY
To ensure everything is working, compile and test the application:
Compile the Code
In your terminal, run:
npm run compile
Run Tests
After compiling, run the tests to verify the installation:
npm run test
To deploy the application on your local machine:
Start a Local FHEVM-Ready Node
In your terminal, run:
npx hardhat node
Deploy to Your Local Network
In another terminal window, run the following command to deploy:
npx hardhat deploy
For further assistance, refer to the following resources:
Remember, you can always return to the release page to download updates:
Feel free to explore the options this software provides. Happy coding!