{"id":28202463,"url":"https://github.com/meomundep/k9finance","last_synced_at":"2026-02-04T23:40:02.982Z","repository":{"id":292504005,"uuid":"981046519","full_name":"MeoMunDep/k9finance","owner":"MeoMunDep","description":"Auto connect wallet, referrals.","archived":false,"fork":false,"pushed_at":"2025-05-27T20:10:42.000Z","size":48,"stargazers_count":8,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-27T21:24:38.718Z","etag":null,"topics":["airdrop","bot","finance","game","k9finance","meomundep","pip","python","script","web","web2","web3"],"latest_commit_sha":null,"homepage":"https://t.me/keoairdropfreene","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MeoMunDep.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-10T08:08:07.000Z","updated_at":"2025-05-27T20:10:45.000Z","dependencies_parsed_at":null,"dependency_job_id":"227bded2-dbf1-4284-852e-481624379456","html_url":"https://github.com/MeoMunDep/k9finance","commit_stats":null,"previous_names":["meomundep/k9finance"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MeoMunDep/k9finance","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeoMunDep%2Fk9finance","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeoMunDep%2Fk9finance/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeoMunDep%2Fk9finance/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeoMunDep%2Fk9finance/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MeoMunDep","download_url":"https://codeload.github.com/MeoMunDep/k9finance/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MeoMunDep%2Fk9finance/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264502387,"owners_count":23618587,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["airdrop","bot","finance","game","k9finance","meomundep","pip","python","script","web","web2","web3"],"created_at":"2025-05-17T00:13:50.816Z","updated_at":"2026-02-04T23:40:02.915Z","avatar_url":"https://github.com/MeoMunDep.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MeoMunDep x k9finance Automation Script\n\nThis repository contains scripts to automate the process of generating Ethereum accounts, signing messages, and interacting with the K9 Finance airdrop portal (*quest.k9finance.com*).\n\n## Contents\n\n- **meomundep.py**: The primary Python script that:\n  1. Loads environment variables from `.env`.\n  2. Generates Ethereum accounts and stores private keys in `newPrivateKeys.txt`.\n  3. Posts sign-in and onboarding requests to the K9 Finance portal.\n  4. Logs detailed information to the console with colorized output.\n\n- **run.bat**: Windows batch file to initialize environment, ensure required files exist, display a banner, and execute `meomundep.py`.\n\n- **run.sh**: UNIX shell script (Linux/macOS) to perform the same initialization and execution.\n\n- **.env**: Environment configuration file. You can customize:\n  - `MAX_THREADS`: Maximum concurrent threads (default: 10).\n  - `SLEEP_TIME`: Delay between batches in seconds (default: 2).\n  - `DEFAULT_WALLETS`: Default number of accounts to generate if input is invalid (default: 100).\n  - `TIMEOUT`: HTTP request timeout in seconds (default: 10).\n  - `REFERRAL_CODES`: Comma-separated list of referral codes.\n  - `SKIP_ERROR_PROXIES`: Comma-separated list of proxies to skip.\n\n- **proxies.txt**: List of proxy addresses (one per line). Optional.\n\n- **newPrivateKeys.txt**: Output file where generated private keys will be appended.\n\n## Prerequisites\n\n - Install Python\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eWindows\u003c/b\u003e\u003c/summary\u003e\n\n- Download Python from [python.org](https://www.python.org/downloads/release/python-3119/)\n- During installation, check \"Add Python to PATH\"\n- Verify installation by opening Command Prompt and typing:\n  ```\n  python --version\n  ```\n  \u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003emacOS\u003c/b\u003e\u003c/summary\u003e\n\n- Install [Homebrew](https://brew.sh/) first:\n  ```bash\n  /bin/bash -c \"$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)\"\n  ```\n- Install Python using Homebrew:\n  ```bash\n  brew install python\n  ```\n- Verify installation:\n  ```bash\n  python3 --version\n  ```\n  \u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cb\u003eLinux\u003c/b\u003e\u003c/summary\u003e\n\n- For Ubuntu/Debian:\n  ```bash\n  sudo apt update\n  sudo apt install python3 python3-pip -y\n  ```\n- For CentOS/RHEL:\n  ```bash\n  sudo yum install python3 python3-pip -y\n  ```\n- Verify installation:\n  ```bash\n  python3 --version\n  ```\n  \u003c/details\u003e\n\n---\n\n- Required Python packages (install via `pip install -r requirements.txt`):\n  - `eth-account`\n  - `python-dotenv`\n  - `colorama`\n  - `Faker`\n  - `pyfiglet`\n  - `requests`\n\n## Usage\n\n1. Clone this repository.\n2. Adjust `.env` as needed.\n3. Place proxy list in `proxies.txt` (if using proxies).\n4. Run the provided script:\n   - **Windows**: Double-click `run.bat` or run it in Command Prompt.\n   - **Unix/macOS**: Give execute permission (`chmod +x run.sh`) and run `./run.sh`.\n\nThe script will generate the specified number of wallets, handle sign-in and onboarding requests, and save private keys to `newPrivateKeys.txt`.\n\n## Troubleshooting\n\n- Ensure `.env` variables are properly set.\n- Check network connectivity if HTTP requests fail.\n- Review console logs for detailed error messages.\n\n## Support\nSupport me with you referral: [k9finance](https://quest.k9finance.com/?refcode=WBQ282) or via donation: [Link](https://t.me/KeoAirDropFreeNe/312/27801)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeomundep%2Fk9finance","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeomundep%2Fk9finance","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeomundep%2Fk9finance/lists"}