{"id":28222563,"url":"https://github.com/dante4rt/evm-auto-transfer","last_synced_at":"2025-06-11T18:32:06.246Z","repository":{"id":255800974,"uuid":"849760834","full_name":"dante4rt/evm-auto-transfer","owner":"dante4rt","description":"Automate EVM transactions on testnets and mainnets with ease. Configure your network and handle multiple transfers effortlessly using this bot.","archived":false,"fork":false,"pushed_at":"2025-05-17T05:36:13.000Z","size":37,"stargazers_count":138,"open_issues_count":1,"forks_count":92,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-17T06:27:05.706Z","etag":null,"topics":["automation","bot","evm","mainnet","testnet","transactions","transfer"],"latest_commit_sha":null,"homepage":"https://t.me/HappyCuanAirdrop","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dante4rt.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-08-30T07:37:30.000Z","updated_at":"2025-05-17T05:36:16.000Z","dependencies_parsed_at":"2025-02-20T03:26:04.136Z","dependency_job_id":"baeea03d-1dac-4d4a-9a5c-b5628364f614","html_url":"https://github.com/dante4rt/evm-auto-transfer","commit_stats":null,"previous_names":["dante4rt/evm-auto-transfer"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/dante4rt/evm-auto-transfer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dante4rt%2Fevm-auto-transfer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dante4rt%2Fevm-auto-transfer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dante4rt%2Fevm-auto-transfer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dante4rt%2Fevm-auto-transfer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dante4rt","download_url":"https://codeload.github.com/dante4rt/evm-auto-transfer/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dante4rt%2Fevm-auto-transfer/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259316575,"owners_count":22839524,"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":["automation","bot","evm","mainnet","testnet","transactions","transfer"],"created_at":"2025-05-18T07:13:34.138Z","updated_at":"2025-06-11T18:32:06.240Z","avatar_url":"https://github.com/dante4rt.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EVM Auto Transfer\n\nWelcome to the `evm-auto-transfer` repository! This script allows you to automate transactions across multiple EVM-compatible networks. Whether you're interacting with testnets or mainnets, this tool simplifies the process, especially for tasks requiring multiple transfers.\n\n## Features\n\n- 📡 Dynamic RPC URL, chain ID, and explorer integration from JSON files.\n- 🔄 Automated transaction processing for multiple addresses.\n- 🎯 Targeted transfers to specified addresses from `addresses.json`.\n- 🚀 Easily configurable for various networks (testnets and mainnets).\n- 🔒 Secure handling of private keys.\n\n## Getting Started\n\n### Prerequisites\n\nEnsure you have the following installed:\n\n- [Node.js](https://nodejs.org/) (v14 or higher)\n- npm (Node Package Manager)\n\n### Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/dante4rt/evm-auto-transfer.git\n   cd evm-auto-transfer\n   ```\n\n2. Install the necessary packages:\n\n   ```bash\n   npm install\n   ```\n\n### Configuration\n\n1. **Define the Chains**:\n\n   - You'll need to specify the network details in JSON files located in the `/chains` directory. Create two JSON files: `testnet.json` and `mainnet.json`.\n   - Each file should contain an array of objects with the following structure:\n\n     ```json\n     [\n         {\n             \"name\": \"Network Name\",\n             \"rpcUrl\": \"https://rpc-url\",\n             \"chainId\": \"1234\",\n             \"symbol\": \"TOKEN\",\n             \"explorer\": \"https://explorer-url\"\n         }\n     ]\n     ```\n\n   - Example for `testnet.json`:\n\n     ```json\n     [\n         {\n             \"name\": \"Plume Testnet\",\n             \"rpcUrl\": \"https://plume-testnet-rpc.example.com\",\n             \"chainId\": \"8888\",\n             \"symbol\": \"PLUME\",\n             \"explorer\": \"https://plume-testnet-explorer.example.com\"\n         }\n     ]\n     ```\n\n2. **Define Private Keys**:\n\n   - Store your private keys securely inside a `privateKeys.json` file in the root directory. This file should contain an array of private keys as strings:\n\n     ```json\n     [\n         \"0xYOUR_PRIVATE_KEY_1\",\n         \"0xYOUR_PRIVATE_KEY_2\"\n     ]\n     ```\n\n     **⚠️ Important**: Keep this file secure and avoid exposing your private keys!\n\n3. **Create Target Addresses File**:\n\n   - Create an `addresses.json` file in the root directory. This file should contain an array of target addresses you want to transfer funds to:\n\n     ```json\n     [\n         \"0xTARGET_ADDRESS_1\",\n         \"0xTARGET_ADDRESS_2\"\n     ]\n     ```\n\n### Usage\n\n1. Run the script for random address generation and transactions:\n\n   ```bash\n   npm start\n   ```\n\n2. To use the targeted address feature, run:\n\n   ```bash\n   npm run target\n   ```\n\n   - You will be prompted to select your network environment (Testnet/Mainnet) and choose the chain from the provided list using the arrow keys.\n   - Define the number of transactions you want to process and let the script handle the rest!\n\n### Contribution\n\nContributions are welcome! Please fork the repository and submit a pull request with your improvements.\n\n## Donations\n\nIf you would like to support the development of this project, you can make a donation using the following addresses:\n\n- **Solana**: `GLQMG8j23ookY8Af1uLUg4CQzuQYhXcx56rkpZkyiJvP`\n- **EVM**: `0x960EDa0D16f4D70df60629117ad6e5F1E13B8F44`\n- **BTC**: `bc1p9za9ctgwwvc7amdng8gvrjpwhnhnwaxzj3nfv07szqwrsrudfh6qvvxrj8`\n\n### License\n\nThis project is licensed under the MIT License. See the `LICENSE` file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdante4rt%2Fevm-auto-transfer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdante4rt%2Fevm-auto-transfer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdante4rt%2Fevm-auto-transfer/lists"}