├── meomundep.js
├── configs.json
├── run.bat
├── run.sh
├── package.json
└── README.md
/meomundep.js:
--------------------------------------------------------------------------------
1 | console.log(`Wait for updating...`)
2 |
--------------------------------------------------------------------------------
/configs.json:
--------------------------------------------------------------------------------
1 | {
2 | "Algorand": 10,
3 | "Aptos": 10,
4 | "Bitcoin": 10,
5 | "Cardano": 10,
6 | "Cosmos": 10,
7 | "EVM": 10,
8 | "Hedera": 10,
9 | "MAVRYK": 10,
10 | "NEAR": 10,
11 | "Octra": 10,
12 | "PiSquared": 10,
13 | "Polkadot": 10,
14 | "Solana": 10,
15 | "SUI": 10,
16 | "TON": 10,
17 | "TRON": 10
18 | }
19 |
--------------------------------------------------------------------------------
/run.bat:
--------------------------------------------------------------------------------
1 | @echo off
2 | title Wallet Generator by MeoMunDep
3 | cd /d %~dp0
4 | echo.
5 | echo =============================================
6 | echo Wallet Generator by MeoMunDep
7 | echo =============================================
8 | echo.
9 | echo Installing necessary modules...
10 | CALL npm install --no-audit --prefer-offline --legacy-peer-deps --save-exact --force
11 | echo.
12 | echo Starting the bot...
13 | node meomundep
14 | pause
15 |
--------------------------------------------------------------------------------
/run.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | GREEN='\033[0;32m'
4 | CYAN='\033[0;36m'
5 | NC='\033[0m'
6 |
7 | echo -e "${CYAN}============================================="
8 | echo -e " Wallet Generator by MeoMunDep "
9 | echo -e "=============================================${NC}"
10 | echo
11 | echo -e "${GREEN}Installing necessary modules...${NC}"
12 | npm install --no-audit --prefer-offline --legacy-peer-deps --save-exact --force
13 | echo
14 | echo -e "${GREEN}Starting the bot...${NC}"
15 | cd "$(dirname "$0")"
16 | node meomundep
17 | read -p "Press Enter to exit..."
18 | exec "$SHELL"
19 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "dependencies": {
3 | "@aptos-labs/ts-sdk": "1.37.1",
4 | "@hashgraph/sdk": "2.60.1",
5 | "@mysten/sui": "1.21.2",
6 | "@polkadot/keyring": "13.4.3",
7 | "@polkadot/util-crypto": "13.4.3",
8 | "@solana/web3.js": "1.98.0",
9 | "@stablelib/ed25519": "2.0.2",
10 | "@ton/crypto": "3.3.0",
11 | "algosdk": "3.2.0",
12 | "bech32": "^2.0.0",
13 | "bip32": "5.0.0-rc.0",
14 | "bip39": "3.1.0",
15 | "bitcoinjs-lib": "6.1.7",
16 | "blake2b": "2.1.4",
17 | "blakejs": "1.2.1",
18 | "bs58": "6.0.0",
19 | "bs58check": "4.0.0",
20 | "cardano-wallet-js": "1.4.0",
21 | "meo-forkcy-colors": "latest",
22 | "meo-forkcy-utils": "latest",
23 | "cosmos": "^0.1.2",
24 | "ed25519-hd-key": "1.3.0",
25 | "ethereumjs-util": "7.1.5",
26 | "ethers": "6.13.5",
27 | "hdkey": "2.1.0",
28 | "near-api-js": "5.1.0",
29 | "secp256k1": "5.0.1",
30 | "tiny-secp256k1": "2.2.3",
31 | "ton": "13.9.0",
32 | "ton-core": "0.53.0",
33 | "ton-crypto": "3.2.0",
34 | "tonweb": "0.0.66",
35 | "tronweb": "6.0.1",
36 | "xlsx": "0.18.5",
37 | "got": "^11.8.6"
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 📞 Contact
2 |
3 | > [Termux guides if you run on mobile](https://github.com/MeoMunDep/Guides-for-using-my-script-on-termux)
4 |
5 | If you encounter any issues or have questions, feel free to reach out:
6 |
7 | * Contact: [Link](t.me/MeoMunDep)
8 | * Group: [Link](t.me/KeoAirDropFreeNe)
9 | * Channel: [Link](t.me/KeoAirDropFreeNee)
10 |
11 | ---
12 |
13 | # 🚀 Getting Started
14 |
15 |
16 | 0. Download NodeJS
17 |
18 | Make sure to download Node.js version **22.11.0** and NPM version **10.9.0**.
19 |
20 | * **Download Link:** [NodeJS](https://t.me/KeoAirDropFreeNe/257/1462)
21 |
22 | #### 💻 Linux/MacOS
23 |
24 | ```bash
25 | curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.4/install.sh | bash
26 | source ~/.bashrc # or source ~/.zshrc if you use zsh
27 | nvm install 22.11.0
28 | nvm use 22.11.0
29 | npm install -g npm@10.9.0
30 | ```
31 |
32 | #### 📱 Termux (Android)
33 |
34 | If you are running on Termux, check out the guides here:
35 | [Termux guides if you run on mobile](https://github.com/MeoMunDep/Guides-for-using-my-script-on-termux)
36 |
37 |
38 |
39 | ---
40 |
41 |
42 | 1. Clone the Project from GitHub
43 |
44 | ```bash
45 | git clone https://github.com/MeoMunDep/Automatic-Ultimate-Create-Wallets-for-Airdrop.git
46 | cd "Automatic-Ultimate-Create-Wallets-for-Airdrop"
47 | ```
48 |
49 |
50 |
51 | ---
52 |
53 |
54 | 2. Install Dependencies and Modules
55 |
56 | ```bash
57 | npm install
58 | ```
59 |
60 |
61 |
62 | ---
63 |
64 |
65 | 3. Prepare Configuration Files
66 |
67 | Make sure to set up the required configuration files before running the bot.
68 |
69 | ### 📁 Example: `configs.json`
70 |
71 | ```json
72 | {
73 | "Algorand": 10,
74 | "Aptos": 10,
75 | "Bitcoin": 10,
76 | "Cardano": 10,
77 | "Cosmos": 10,
78 | "EVM": 10,
79 | "Hedera": 10,
80 | "MAVRYK": 10,
81 | "NEAR": 10,
82 | "Pisquared": 10,
83 | "Polkadot": 10,
84 | "Solana": 10,
85 | "SUI": 10,
86 | "TON": 10,
87 | "TRON": 10
88 | }
89 | ```
90 |
91 | 💡 **Usage:**
92 |
93 | ```bash
94 | cd "path/to/Automatic-Ultimate-Create-Wallets-for-Airdrop"
95 | node meomundep
96 | ```
97 |
98 |
99 |
100 | ---
101 |
102 | ⚠️ **Disclaimer**
103 |
104 | This project was created solely as a **personal educational exercise**.
105 | It is **not an official product**, website, or service of any company or brand referenced in this repository.
106 | The creator is **not affiliated, associated, endorsed by, or connected** with any such company or brand in any way.
107 |
108 | The code is provided **"as is"** without any warranties or guarantees.
109 | Certain parts of the source are intentionally **obfuscated** to protect personal research, custom logic, and implementation techniques developed during learning and experimentation.
110 |
111 | Use this project responsibly and at your own risk.
112 | **Redistribution, resale, or commercial use** of any part of this code—whether original or modified—is **not permitted**.
113 |
114 | 🎇 **Enjoy!**
115 |
116 |
--------------------------------------------------------------------------------