Skip to content

Latest commit

 

History

History
129 lines (90 loc) · 2.97 KB

README.md

File metadata and controls

129 lines (90 loc) · 2.97 KB

Sonic Odyssey Bot

Sonic Odyssey Bot is an application designed for interacting with the Sonic Odyssey platform. It supports multiple features including sending SOL (Solana) cryptocurrency transactions, claiming rewards, opening mystery boxes, and daily login operations.

Features

  • Transaction Sending: Sends SOL transactions from multiple accounts to random addresses.
  • Claim Box: Automates the process of claiming rewards boxes.
  • Open Box: Automates the process of opening mystery boxes.
  • Daily Login: Automates the daily login process.
  • Input Methods: Supports input via seed phrases or private keys.
  • Random Address Generation: Generates a specified number of random addresses for sending transactions.
  • Adjustable Amount of SOL: Automatically generates a random amount of SOL to send in each transaction.
  • Transaction Delay: Automatically generates a random delay between each transaction.

Prerequisites

Install Nodejs18

# Check Nodejs Version
node --version
# if 18, skip nodejs steps

# Delete Nodejs old files
sudo apt-get remove nodejs
sudo apt-get purge nodejs
sudo apt-get autoremove
sudo rm /etc/apt/keyrings/nodesource.gpg
sudo rm /etc/apt/sources.list.d/nodesource.list

# Install Nodejs 18
NODE_MAJOR=18
sudo apt-get update
sudo apt-get install -y ca-certificates curl gnupg
sudo mkdir -p /etc/apt/keyrings

curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg

echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_${NODE_MAJOR}.x nodistro main" | sudo tee /etc/apt/sources.list.d/nodesource.list

sudo apt-get update
sudo apt-get install -y nodejs
node --version

# Install npm
sudo apt-get install npm
npm --version
sudo apt-get install git

sudo apt update & sudo apt upgrade -y

Installation

  1. Clone the repository:

    git clone https://github.com/Theshaho/sonic-odyssey-autobot.git
  2. Navigate into the project directory:

    cd sonic-odyssey-autobot
  3. Install dependencies:

    npm install
    # or
    yarn install
  4. Prepare input files:

    • Create privateKeys.json with an array of private keys (base58 encoded).
    • You can create a file with nano command: for example: nano privateKeys.json

    Example privateKeys.json:

    [
      "base58_private_key_1",
      "base58_private_key_2"
    ]

Usage

It will send transaction with random amount and random delay so it's better to do run it in a screen.

screen -S sonictx

Run 100 tx for all private keys:

npm start

Ctl + A + D to detach from the screen.

Daily login for all private keys:

npm run dailylogin

Claim boxes for all private keys:

npm run claimbox

Open boxes for all private keys:

npm run openbox

License

This project is licensed under the MIT License - see the LICENSE file for details.