Installation (CLI)
Instructions for installing the Lilypad CLI on your machine
The installation process for the Lilypad CLI involves several automated steps to configure it for your specific system. Initially, the setup script identifies your computer's architecture and operating system to ensure compatibility. It will then download the latest production build of the Lilypad CLI directly from the official GitHub repository using curl
and wget
.
Once the CLI tool is downloaded, the script sets the necessary permissions to make the executable file runnable. It then moves the executable to a standard location in your system's path to allow it to be run from any terminal window.
When using the CLI always ensure you're running the latest version of Lilypad.
Install via officially released binaries
Lilypad offers two distinct installation options to cater to different roles within the network:
One for Lilypad users who wish to run compute jobs on the Lilypad Network.
Another for resource providers who supply the computational resources to the Lilypad Network.
Select the appropriate installation based on your role:
Set WEB3_PRIVATE_KEY
You're required to set your private key environment variable, WEB3_PRIVATE_KEY
, to interact securely with the network.
A WEB3_PRIVATE_KEY
can be retrieved from the Metamask account details menu. For more info, check out the official guide from Metamask on viewing a wallet's private key. Be sure to keep your private key safe and never share it or store it in unsecured places to prevent unauthorized access to your funds. You also need a separate private key
To use the Lilypad CLI, the set private key will need to hold Lilypad testnet tokens and Arbitrum Sepolia ETH. You can find those instructions in the Funding your wallet documentation.
Verify installation
To verify the installation, running lilypad
in the terminal should display a list of available commands, indicating that Lilypad CLI is ready to use.
Thats it! You've successfully installed the Lilypad CLI on your machine! π
Uninstall Lilypad
To uninstall Lilypad, you'll need to remove the lilypad
binary.
The following command detects where the lilypad
binary is located and removes it.
π¨ Using
sudo rm -rf
can be dangerous if not used carefully. Proceed with caution.
Last updated
Was this helpful?