https://github.com/dante4rt/mint-forest-bot
Mint Forest Bot is a tool for claiming and injecting energy into MintChain's forest ecosystem.
https://github.com/dante4rt/mint-forest-bot
airdrop automation bot forest mint
Last synced: about 2 months ago
JSON representation
Mint Forest Bot is a tool for claiming and injecting energy into MintChain's forest ecosystem.
- Host: GitHub
- URL: https://github.com/dante4rt/mint-forest-bot
- Owner: dante4rt
- Created: 2024-04-08T09:45:04.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-06T03:53:45.000Z (almost 2 years ago)
- Last Synced: 2025-06-11T19:11:27.550Z (about 1 year ago)
- Topics: airdrop, automation, bot, forest, mint
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 18
- Watchers: 1
- Forks: 20
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mint Forest Bot
Mint Forest Bot is a tool for claiming and injecting energy into MintChain's forest ecosystem.
## Installation
1. Clone the repository:
```bash
git clone https://github.com/dante4rt/mint-forest-bot.git
```
2. Install dependencies:
```bash
cd mint-forest-bot
npm install
```
## Configuration
1. Create a `accounts.json` file in the root directory of the project.
2. Add your MintChain API tokens to the `accounts.json` file in the following format:
```json
[
"Bearer xxx",
"Bearer xxx",
...
]
```
Note: You can obtain your MintChain API tokens by registering on the MintChain platform and retrieving them from your account settings.
### Accessing Authorization Token
To access the Authorization token required for the `accounts.json` file, follow these steps:
1. Open your web browser and go to the MintChain website.
2. Log in to your account.
3. Open the developer tools by pressing `F12` or right-clicking on the page and selecting "Inspect" or "Inspect Element".
4. Navigate to the "Network" tab.
5. Perform a request that requires authentication, such as refreshing the page or accessing a protected resource.
6. Look for the request in the list of network requests.
7. Click on the request to view its details.
8. In the request headers section, you should see an "Authorization" header with a value starting with "Bearer". Copy this value and paste it into the `accounts.json` file.
Ensure that you keep your API tokens secure and do not share them with anyone else.
## Usage
To run the bot, execute the following command:
```bash
npm start
```