{"id":46093330,"url":"https://github.com/ariadata/tongen","last_synced_at":"2026-03-01T18:09:29.187Z","repository":{"id":267496308,"uuid":"866207521","full_name":"ariadata/tongen","owner":"ariadata","description":"Ton Wallet address maker","archived":false,"fork":false,"pushed_at":"2025-12-17T08:38:07.000Z","size":36530,"stargazers_count":8,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-12-20T21:51:22.152Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","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/ariadata.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-10-01T20:41:46.000Z","updated_at":"2025-12-17T08:36:36.000Z","dependencies_parsed_at":"2025-12-17T15:01:11.586Z","dependency_job_id":null,"html_url":"https://github.com/ariadata/tongen","commit_stats":null,"previous_names":["ariadata/tongen"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/ariadata/tongen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariadata%2Ftongen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariadata%2Ftongen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariadata%2Ftongen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariadata%2Ftongen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ariadata","download_url":"https://codeload.github.com/ariadata/tongen/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ariadata%2Ftongen/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29977974,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T16:35:47.903Z","status":"ssl_error","status_checked_at":"2026-03-01T16:35:44.899Z","response_time":124,"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":[],"created_at":"2026-03-01T18:09:28.653Z","updated_at":"2026-03-01T18:09:29.180Z","avatar_url":"https://github.com/ariadata.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TON Wallet Address Finder\n\ngenerate custom TON wallet addresses (V4R2 and V5R2) that end with a specific suffix.\n### ⭐ Support the Project by giving a satr!\n\nIf you find this project helpful or interesting, please consider giving it a star! Your support is much appreciated.\n\n## Features\n- **Multi-threaded**: Utilizes multiple CPU cores to generate wallets in parallel.\n- **Custom suffix**: Check if wallet addresses end with a specific string (case-sensitive or case-insensitive).\n- **Supports Mainnet/Testnet**: Select the network where the wallets are generated.\n- **Bounceable/non-bounceable**: Option to generate bounceable or non-bounceable addresses.\n- **Real-time logging**: Logs the number of addresses processed every second.\n- **Daemon mode**: Run as a background daemon process.\n- **Output file**: Save found wallets to a file for later use.\n\n## Quick Start\n### Linux\n```bash\n# Download and make executable\ncurl -sSfL https://github.com/ariadata/tongen/releases/latest/download/tongen-linux -o tongen \u0026\u0026 chmod +x tongen\n\n# Generate V5R2 address ending with \"_Cool\" (case-sensitive)\n./tongen -suffix=\"_Cool\" -case-sensitive=true -version=5\n```\n### Windows\n```bash\n# Download\ncurl -sSfL https://github.com/ariadata/tongen/releases/latest/download/tongen-windows.exe -o tongen.exe\n\n# Generate V5R2 address ending with \"_Cool\" (case-sensitive)\n.\\tongen.exe -suffix=\"_Cool\" -case-sensitive=true -version=5\n```\n\n## Installation\n\n1. Ensure you have [Go installed](https://go.dev/doc/install).\n2. Clone the repository and navigate to the project directory.\n    ```bash\n    git clone https://github.com/ariadata/tongen.git\n    cd tongen\n    ```\n\n3. Build the project using the following command:\n\n   ```bash\n   # Linux\n   CGO_ENABLED=0 go build -o tongen main.go\n\n   # Windows\n    go build -o tongen.exe main.go\n    ```\nYou should now have an executable named tongen in your project directory.\n### Download Pre-built Binaries [Click Here](https://github.com/ariadata/tongen/releases)\n```bash\n    # Linux \n    curl -sSfL https://github.com/ariadata/tongen/releases/latest/download/tongen-linux -o tongen \u0026\u0026 chmod +x tongen\n\n    # Windows\n    curl -sSfL https://github.com/ariadata/tongen/releases/latest/download/tongen-windows.exe -o tongen.exe\n```\n### Usage\n\n\u003e `-suffix` (required): The desired suffix that the wallet address should end with.\n\n\u003e `-case-sensitive` (optional): Enable case-sensitive suffix matching. Defaults to false.\n\n\u003e `-bounce` (optional): Enable bounceable addresses. Defaults to false.\n\n\u003e `-threads` (optional): Number of parallel threads. Defaults to 0 (use all CPU cores).\n\n\u003e `-testnet` (optional): Use the testnet instead of the mainnet. Defaults to false.\n\n\u003e `-version` (optional): Wallet version 4 or 5 (V4R2 or V5R2). Defaults to 5 (V5R2).\n\n\u003e `-o, --output` (optional): Output file path to save found wallets. Creates or appends to the file.\n\n\u003e `-d, --daemon` (optional): Run as a background daemon process.\n\n\u003e `stop` or `--stop`: Stop the running daemon process.\n\n## Examples:\n```bash\n# Generate a wallet-v4 non-bouncable address that ends with \"_Neo\" (case-sensitive) using all CPU cores on the mainnet\n./tongen -suffix=\"_Xx\" -case-sensitive=true -bounce=false -threads=0 -testnet=false -version=4\n\n# Generate a wallet-v5 bouncable address that ends with \"_Test\" (not case-insensitive) using 4 threads on testnet \n./tongen -suffix=\"_Test\" -case-sensitive=false -bounce=true -threads=4 -testnet=false -version=5\n\n# Save found wallet to a file\n./tongen -suffix=\"_Cool\" -o results.txt\n\n# Run as daemon in background\n./tongen -suffix=\"_Cool\" -d\n\n# Stop the running daemon\n./tongen stop\n\n# Run as daemon and save results to file\n./tongen -suffix=\"_Cool\" -d -o results.txt\n```\n\n### Example Output:\n```bash\n2024/10/01 20:00:01 Using 8 threads\n2024/10/01 20:00:02 Processed 65 addresses in the last second\n2024/10/01 20:00:03 Processed 68 addresses in the last second\n=== FOUND ===\nSeed phrase: \"apple banana cherry date elephant ...\"\nWallet address: UQDxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n```\n\n-----\n\n## Contributing\nFeel free to submit issues, fork the repository, and make contributions. Pull requests are welcome!\n\nLicense\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fariadata%2Ftongen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fariadata%2Ftongen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fariadata%2Ftongen/lists"}