https://github.com/meomundep/mavryk-wallet
Auto connect wallet, send token, stake, create vault,, deposit, earn, borrow token.
https://github.com/meomundep/mavryk-wallet
airdrop airdrop-application airdrop-claim-bot airdrop-farm airdrop-free bridge chain create-wallet galxe layer1 mavryk meomundep mmd swap wallet
Last synced: 6 months ago
JSON representation
Auto connect wallet, send token, stake, create vault,, deposit, earn, borrow token.
- Host: GitHub
- URL: https://github.com/meomundep/mavryk-wallet
- Owner: MeoMunDep
- Created: 2025-03-06T17:50:48.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-04-14T02:15:10.000Z (6 months ago)
- Last Synced: 2025-04-15T06:56:53.310Z (6 months ago)
- Topics: airdrop, airdrop-application, airdrop-claim-bot, airdrop-farm, airdrop-free, bridge, chain, create-wallet, galxe, layer1, mavryk, meomundep, mmd, swap, wallet
- Language: Shell
- Homepage: https://t.me/keoairdropfreene
- Size: 1.44 MB
- Stars: 278
- Watchers: 5
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### π Bot Setup Guide
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](https://github.com/MeoMunDep/Guides-for-using-my-script-on-termux)
---
## π Table of Contents
1. [System Requirements](#system-requirements)
2. [Installing the Bot](#installing-the-bot)
- [Install via Git](#install-via-git)
- [Manual Installation](#manual-installation)
- [Install via Docker](#install-via-docker)
3. [Bot Configuration](#bot-configuration)
- [`configs.json`](#1-configsjson)
- [`privateKeys.txt`](#4-privateKeystxt)
- [`proxies.txt`](#3-proxiestxt)
4. [Running the Bot](#running-the-bot)
5. [Updating the Bot](#updating-the-bot)
6. [Contact & Support](#contact-support)---
## π System Requirements
Before running the bot, make sure you have installed:
- **Node.js** (Version: `22.11.0`)
- **npm** (Version: `10.9.0`)
- **Git** (For downloading and updating the bot easily)
- **Docker** _(Optional: If you want to run the bot in a container)_π₯ **Download Node.js and npm here:** [Download Link](https://t.me/KeoAirDropFreeNe/257/1462).
π₯ **Download Git here:** [Download Link](https://t.me/KeoAirDropFreeNe/257/60831).---
## π Installing the Bot
### πΉ Install via Git
1. **Download the bot**:
```bash
git clone https://github.com/MeoMunDep/mavryk-wallet.git
cd mavryk-wallet/mavryk-wallet
```
2. **Install required libraries**:
RECOMMEND:```bash
npm install
```NOT RECOMMEND:
```bash
npm install colors axios bs58check blakejs @stablelib/ed25519 https-proxy-agent socks-proxy-agent @tzkt/sdk-api @mavrykdynamics/taquito-signer @mavrykdynamics/taquito bip39 ed25519-hd-key --no-fund --no-audit --legacy-peer-deps --force
```
4. **Prepare configuration files** ([See details](#bot-configuration))### πΉ Manual Installation (Without Git)
1. **Download and extract the bot** into a folder on your computer.
2. **Install required libraries** (same as Step 2 above).### πΉ Install via Docker
1. **Install Docker** if you havenβt already: [Docker Installation Guide](https://t.me/KeoAirDropFreeNe/257/60831).
2. **Build and run the bot using Docker**:
```bash
docker build -t mavryk-wallet-image .
docker run -d --name mavryk-wallet-container mavryk-wallet-image
```---
## π Bot Configuration
### 1. `configs.json` - π Main Configuration
```json
{
"2captchaSolver": {
"maxCaptchaAttempts": 20,
"2captchaApiKey": ""
},"walletDelays": [1, 1],
"restartInterval": 300,
"maxConcurrentWallets": 10,"staking": false,
"createVault": {
"MVRK": true,
"USDT": true,
"amount": [1, 2]
},"depositToken": true,
"borrowToken": true,"sendToken": {
"USDT": true,
"mMVRK": true,
"MVN": true,
"amount": [1, 2]
},"sendToInternalAddresses": true,
"receiverAddresses": ["mv1LkTHEzHJ3pRw159Qv6Q2We4EyTH6RgS2X"]}
```
---### π§ **(Configuration Parameters)**
| **Parameter Name** | **Data Type** | **Default Value** | **Description** |
|------------------------------|--------------------|-------------------|-----------------------------------------------------------------------------------|
| `2captchaSolver` | `object` | `{}` | Settings related to solving CAPTCHA using 2Captcha. |
| `2captchaSolver.maxCaptchaAttempts` | `number` | `20` | Maximum number of attempts to solve a CAPTCHA before skipping. |
| `2captchaSolver.2captchaApiKey` | `string` | `""` | Your 2Captcha API key used for solving CAPTCHA challenges. |
| `walletDelays` | `[number, number]` | `[5, 8]` | Random delay (in seconds) between wallets when performing tasks. |
| `restartInterval` | `number` | `300` | Time (in seconds) before the bot restarts all wallets. |
| `maxConcurrentWallets` | `number` | `100` | Number of wallets running simultaneously. |
| `staking` | `boolean` | `false` | Determines whether staking is enabled. |
| `createVault` | `object` | `false` | Determines whether creating new vaults is enabled. |
| `createVault.MVRK` | `boolean` | `false` | Whether to create MVRK vault. |
| `createVault.USDT` | `boolean` | `false` | Whether to create USDT vault. |
| `createVault.amount` | `[number, number]` | `[1, 2]` | Range of token amount to create vault with. |
| `depositToken` | `boolean` | `false` | Whether to deposit tokens into the vault after creation. |
| `borrowToken` | `boolean` | `false` | Whether to borrow tokens against the vault. |
| `sendToken` | `object` | `{}` | Contains settings for which tokens should be sent. |
| `sendToken.USDT` | `boolean` | `true` | Whether to send USDT. |
| `sendToken.mMVRK` | `boolean` | `true` | Whether to send mMVRK. |
| `sendToken.MVN` | `boolean` | `true` | Whether to send MVN. |
| `sendToken.amount` | `[number, number]` | `[1, 2]` | Range of the amount of tokens to send (in specified tokens). |
| `sendToInternalAddresses` | `boolean` | `true` | Whether to send tokens to internal addresses (addresses managed by this bot). |
| `receiverAddresses` | `array of string` | `[]` | List of destination addresses for token transfers. |---
### 2. `privateKeys.txt` - ποΈ Wallet Privatekey
- [Get it from here](https://github.com/MeoMunDep/Automatic-Ultimate-Create-Wallets-for-Airdrop)
- Mavryk privatekey.```txt
edsk...
edsk...
edsk...
```### 3. `proxies.txt` - π Proxy (Optional)
- [Get it from here](https://www.webshare.io/?referral_code=4l5kb3glsce7)
```txt
http://host:port
https://host:port
socks4://host:port
socks5://host:port
http://user:pass@host:port
https://user:pass@host:port
socks4://user:pass@host:port
socks5://user:pass@host:port
```---
## π Running the Bot
### **Run on PC:**
```bash
node tx_meomundep.js
```### **Run with batch script on Windows:**
1. Open **Command Prompt (CMD)**.
2. Navigate to the bot folder:
```cmd
cd "path\to\mavryk-wallet"
```
3. Run the batch script:
```cmd
run.bat
```
_(\*If you encounter permission issues, right-click `run.bat` and select "Run as Administrator".)_### **Run with shell script on Linux/macOS:**
```bash
./run.sh
```### **Run using Docker:**
```bash
docker start mavryk-wallet-container
```---
## π Updating the Bot
### πΉ If installed via Git
```bash
cd mavryk-wallet
git pull origin main
npm install
```### πΉ If running via Docker
```bash
docker stop mavryk-wallet-container
docker rm mavryk-wallet-container
docker build -t mavryk-wallet-image .
docker run -d --name mavryk-wallet-container mavryk-wallet-image
```_For Windows CMD:_
```cmd
docker run -d --name mavryk-wallet-container mavryk-wallet-image
```---
## π Contact & Support
- **Mavryk Website** [Wallet Extension Link](https://chromewebstore.google.com/detail/mavryk-wallet/cgddkajmbckbjbnondgfcbcojjjdnmji) | [Galxe quests](https://app.galxe.com/quest/YxQGYqYQcCGDcfX7KZMU8j/GCsVgt1rUx?referral_code=GRFr2JwrrimuEzutJsPOIO4qJbReP6jzWa-sC-le8jxo2H8) | [Faucet Trick](https://t.me/KeoAirDropFreeNee/1651)
- **Buy a Telegram account** [Here](https://t.me/KeoAirDropFreeNe/312/27801)
- **Contact for work:** [Telegram](https://t.me/MeoMunDep)
- **Join the support group:** [Join here](https://t.me/KeoAirDropFreeNe)
- **Updates Channel:** [View channel](https://t.me/KeoAirDropFreeNee)β οΈ **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! Good luck! π