Installation
Before proceeding with the installation, make sure that meet the requirements.
The installation steps below work for all available bots. For the contract bot you will have to deploy the contract yourself using tools like remix.
Windows
Unzip the folder of the bot and place it on your desktop. Give the folder a simple name, e.g.
bot
.Open a new Command Prompt using your windows search.
Move to the Desktop directory by entering
cd Desktop
in the terminal and pressing enter.Now that you're on your desktop, proceed by using the same cd command as above, except change
Desktop
to the name that you've used in step one.Write
npm install
in your terminal and press enter. This will install all needed dependencies.
Your command prompt window should look something like this.
- That's it! Configure your bot and run it using
node index.js
.
Mac / Linux
Unzip the folder of Eryx and place it on your desktop. Give the folder a simple name, e.g.
bot
.Open a new Terminal using your finder.
Move to the Desktop directory by entering
cd Desktop
in the terminal and pressing enter.Now that you're on your desktop, proceed by using the same cd command as above, except change
Desktop
to the name that you've used in step one.Write
npm install
in your terminal and press enter. This will install all needed dependencies.
Your terminal window should look something like this.
- That's it! Configure your bot and run it using
node index.js
.