{"id":22123175,"url":"https://github.com/penn201500/crypto_wallet_generator","last_synced_at":"2026-05-15T20:31:35.941Z","repository":{"id":249972957,"uuid":"833107152","full_name":"penn201500/crypto_wallet_generator","owner":"penn201500","description":"Crypto Wallet CLI is a command-line tool for generating and managing Binance Smart Chain (BSC), Ethereum, and Tron wallets. It allows you to create new wallets from a mnemonic phrase, retrieve the balance of a given address, and more.","archived":false,"fork":false,"pushed_at":"2024-07-25T09:40:43.000Z","size":314,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-16T20:51:36.402Z","etag":null,"topics":["bsc","conda-environment","dotenv","ethereum","infura-api","mnemonic","python","tron","tron-wallet","wallet"],"latest_commit_sha":null,"homepage":"","language":"Python","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/penn201500.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}},"created_at":"2024-07-24T11:16:51.000Z","updated_at":"2024-07-26T06:57:56.000Z","dependencies_parsed_at":"2024-12-01T15:32:04.782Z","dependency_job_id":"3f6bd689-3d06-4d78-b44f-ff6d05034e4b","html_url":"https://github.com/penn201500/crypto_wallet_generator","commit_stats":null,"previous_names":["penn201500/crypto_wallet_generator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/penn201500/crypto_wallet_generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/penn201500%2Fcrypto_wallet_generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/penn201500%2Fcrypto_wallet_generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/penn201500%2Fcrypto_wallet_generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/penn201500%2Fcrypto_wallet_generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/penn201500","download_url":"https://codeload.github.com/penn201500/crypto_wallet_generator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/penn201500%2Fcrypto_wallet_generator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33078898,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T20:25:35.270Z","status":"ssl_error","status_checked_at":"2026-05-15T20:25:34.732Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["bsc","conda-environment","dotenv","ethereum","infura-api","mnemonic","python","tron","tron-wallet","wallet"],"created_at":"2024-12-01T15:29:43.191Z","updated_at":"2026-05-15T20:31:35.921Z","avatar_url":"https://github.com/penn201500.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Crypto Wallet CLI\n\nCrypto Wallet CLI is a command-line tool for generating and managing Binance Smart Chain (BSC), Ethereum, and Tron wallets. It allows you to create new wallets from a mnemonic phrase, retrieve the balance of a given address, and more.\n\n![Crypto Wallet CLI](./images/create-new-wallet-v2.png)\n\n\n## Features\n\n- Generate a BSC, Ethereum, or Tron wallet from a mnemonic or create a new one\n- Retrieve the balance of a given BSC, Ethereum, or Tron address\n- Save wallet details (mnemonic, address, private key) to a JSON file with a timestamped filename\n\n## Installation\n\n1. Clone the repository:\n\n   ```bash\n   git clone https://github.com/penn201500/crypto_wallet_generator\n   cd crypto-wallet-cli\n   ```\n2. Create a conda environment and install dependencies:\n\n   ```bash\n   conda create -n cryptowallet-cli python=3.12\n   conda activate cryptowallet-cli\n   pip install -e .\n   ```\n   \n3. Create a .env file in the project root directory with the following content\n```bash\nINFURA_URL=your_infura_url\nTRON_API_KEY=your_tron_api_key\n```\n\n## Usage\n\n### Generate a Wallet\n\nTo create a new BSC/Ethereum wallet, run:\n\n```bash\ncw c\n```\n\nTo create a new Tron wallet, run:\n```bash\ncw c -c tron\n```\n\nTo create a BSC/Ethereum wallet from an existing mnemonic, run:\n\n```bash\ncw c -m \"your twelve word mnemonic here\"\n```\n\nTo create a Tron wallet from an existing mnemonic, run:\n\n```bash\ncw c -m \"your twelve word mnemonic here\" -c tron\n```\n\nTo specify a custom filename prefix for saving the wallet details, run:\n\n```bash\ncw c -m \"your twelve word mnemonic here\" -p mywallet\n```\n\n### Get Balance\n\nTo get the balance of a BSC address, run:\n\n```bash\ncw b -a 0xYourBSCAddress\n```\n\nTo get the balance of a Tron address, run:\n\n```bash\ncw b -a 0xYourBSCAddress -c tron\n```\n\n### Generate Mnemonic\n\nTo generate a new mnemonic phrase, run:\n\n```bash\ncw m\n```\n\n### Generate multiple wallets\n\nTo generate 3 BSC/Ethereum wallets, run:\n\n```bash\ncw -c -n 3\n```\nTo generate 3 Tron wallets, run:\n\n```bash\ncw -c -n 3 -c tron\n```\n\n## Options\n\n- **c, --create-wallet**: Create a new wallet from a mnemonic and save to a file.\n   - `-m, --mnemonic [value]`: The mnemonic to create a new wallet.\n   - `-p, --prefix [value]`: The prefix for the JSON filename.\n   - `-n, --number [value]`: The number of wallets to create.\n   - `-c, --chain [value]`: The blockchain (ethereum, bsc, tron).\n\n- **b, --balance**: Get the balance of an address.\n   - `-a, --address [value]`: The address to get the balance of.\n   - `-c, --chain [value]`: The blockchain (ethereum, bsc, tron).\n\n- **m, --generate-mnemonic**: Generate a new mnemonic phrase.\n\n## Running Tests\n\nTo run the tests for the utility functions, use the following command:\n\n```bash\npython -m unittest discover -s tests -v\n```\n\n## Acknowledgments\n\nThis project is inspired by [yerofey/cryptowallet-cli](https://github.com/yerofey/cryptowallet-cli). If you need a JavaScript version, please check out their project.\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpenn201500%2Fcrypto_wallet_generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpenn201500%2Fcrypto_wallet_generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpenn201500%2Fcrypto_wallet_generator/lists"}