Sonic Odyssey Bot is a Node.js application for sending SOL (Solana) cryptocurrency transactions using seed phrases or private keys to random addresses.
- Transaction Sending: Sends SOL transactions from multiple accounts to random addresses.
- 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: Allows users to specify the amount of SOL to send in each transaction.
- Transaction Delay: Allows users to specify a delay between each transaction.
- Node.js installed on your machine
npm
oryarn
package manager
-
Clone the repository:
git clone https://github.com/dante4rt/sonic-odyssey-bot.git
-
Navigate into the project directory:
cd sonic-odyssey-bot
-
Install dependencies:
npm install # or yarn install
-
Prepare input files:
- Create
accounts.json
with an array of seed phrases. - Create
privateKeys.json
with an array of private keys (base58 encoded).
Example
accounts.json
:[ "seed_phrase_1", "seed_phrase_2" ]
Example
privateKeys.json
:[ "base58_private_key_1", "base58_private_key_2" ]
- Create
Run the bot using Node.js:
npm start
Follow the prompts to:
- Select the input method (0 for seed phrase, 1 for private key).
- Specify the number of random addresses to generate.
- Enter the amount of SOL to send in each transaction.
- Enter the delay between each transaction in milliseconds (default is 1000ms).
Contributions are welcome! Feel free to open issues or pull requests for any improvements or fixes.