Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Latest commit

 

History

History
114 lines (70 loc) · 5.26 KB

File metadata and controls

114 lines (70 loc) · 5.26 KB

Kintsu - Monad


Welcome to the bot setup guide! Follow the steps below to install and configure the bot correctly. This guide is designed for new users, with clear explanations for each step.

📱 For Mobile Users (Termux): View the guide here


Requirements

📥 Node.js & npm: Download


Install (quick)

Run this in the project folder:

npm install ethers meo-forkcy-colors meo-forkcy-logger meo-forkcy-utils

privateKeys.txt format

📥 Generate wallets here

Plain text. One private key per line, like:

0xabc123...
0xdef456...

configs.json Explanation

The configs.json file is where you define the bot's behavior for staking and unstaking operations, as well as the delays between transactions.

1. stake (Staking Operation)

This section controls the bot's behavior regarding staking assets.

Key Type Description
enable boolean If set to true, the bot will perform the staking action. If set to false, the staking action will be skipped.
amount array of number Defines the minimum and maximum amount of assets (likely in the native currency, e.g., ETH, unless specified elsewhere) to be staked. The bot will choose a random amount within this range (inclusive) for each wallet.

In the example, true means staking is enabled, and the bot will stake a random amount between 0.01 and 0.02.

2. unstake (Unstaking Operation)

This section controls the bot's behavior regarding unstaking assets.

Key Type Description
enable boolean If set to true, the bot will perform the unstaking action. If set to false, the unstaking action will be skipped.
amount array of number Defines the minimum and maximum amount of assets to be unstaked. The bot will choose a random amount within this range (inclusive) for each wallet.

In the example, false means unstaking is disabled.

3. delay (Transaction Delay)

This section sets the waiting time between the processing of different private keys (wallets).

Key Type Description
delay array of number Defines the minimum and maximum waiting time, in seconds, that the bot will pause after completing the actions for one wallet and before starting the next wallet. The bot chooses a random delay within this range.

In the example, the bot will pause for a random time between 5 and 10 seconds between processing wallets.


In Summary:

The provided configuration file instructs the bot to:

  1. Stake a random amount between 0.01 and 0.02.
  2. Skip the unstaking action.
  3. Wait a random time between 5 and 10 seconds before moving to the next wallet in your privateKeys.txt file.

How to run

Open your CLI/terminal and navigate to the project folder.

cd path/to/kintsu

Start it with Node:

node meomundep.js


⚠️ Disclaimer: This code is provided "as is" without any warranties. Use it at your own risk. You are solely responsible for any consequences arising from its use. Redistribution or sale of this code in any form is strictly prohibited.

✨ Thank you for using the bot, hope you earn from my scripts! Good luck! 🚀