{"id":31127263,"url":"https://github.com/bosonware-technologies/solanavanity","last_synced_at":"2026-05-19T07:34:22.744Z","repository":{"id":311799791,"uuid":"1045147554","full_name":"BosonWare-Technologies/SolanaVanity","owner":"BosonWare-Technologies","description":" SolanaVanity is a cross-platform .NET CLI tool for generating Solana keypairs with vanity addresses. It allows you to create Solana wallet addresses that match a specific prefix or pattern, making your wallet more recognizable or personal.","archived":false,"fork":false,"pushed_at":"2025-08-26T18:17:42.000Z","size":9,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-08-26T23:45:56.327Z","etag":null,"topics":["solana","solana-keygenerator","solana-keypair","vanity"],"latest_commit_sha":null,"homepage":"","language":"C#","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/BosonWare-Technologies.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":"2025-08-26T18:12:36.000Z","updated_at":"2025-08-26T18:20:59.000Z","dependencies_parsed_at":"2025-08-26T23:47:09.246Z","dependency_job_id":"f5f84493-3319-4622-8b4c-3a9271dff6b2","html_url":"https://github.com/BosonWare-Technologies/SolanaVanity","commit_stats":null,"previous_names":["bosonware-technologies/solanavanity"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/BosonWare-Technologies/SolanaVanity","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BosonWare-Technologies%2FSolanaVanity","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BosonWare-Technologies%2FSolanaVanity/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BosonWare-Technologies%2FSolanaVanity/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BosonWare-Technologies%2FSolanaVanity/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BosonWare-Technologies","download_url":"https://codeload.github.com/BosonWare-Technologies/SolanaVanity/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BosonWare-Technologies%2FSolanaVanity/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275685730,"owners_count":25509533,"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","status":"online","status_checked_at":"2025-09-17T02:00:09.119Z","response_time":84,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["solana","solana-keygenerator","solana-keypair","vanity"],"created_at":"2025-09-17T23:54:24.443Z","updated_at":"2025-09-17T23:54:26.260Z","avatar_url":"https://github.com/BosonWare-Technologies.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SolanaVanity\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n\nSolanaVanity is a cross-platform .NET CLI tool for generating Solana keypairs with vanity addresses. It allows you to create Solana wallet addresses that match a specific prefix or pattern, making your wallet more recognizable or personal.\n\n## Features\n\n- **Fast vanity address generation** for Solana\n- **Customizable patterns** (prefix, suffix, or substring)\n- **Cross-platform**: Runs on Windows, Linux, and macOS\n- **Easy to use** command-line interface\n- **Secure keypair generation** using .NET cryptography\n- **MIT Licensed** and open source\n\n## Installation\n\n### .NET Tool (Recommended)\n\n```sh\ndotnet tool install --global SolanaVanity\n```\n\nOr, if you have the `.nupkg` file:\n\n```sh\ndotnet tool install --global --add-source ./bin/nupkg SolanaVanity\n```\n\n### Requirements\n\n- [.NET 9.0 SDK](https://dotnet.microsoft.com/download/dotnet/9.0) or later\n\n## Usage\n\nAfter installation, use the `solana-vanity` command:\n\n```sh\nsolana-vanity --help\n# Or\nsolana-vanity new --help\n```\n\n### Example: Generate a keypair with a prefix\n\n```sh\nsolana-vanity new --prefix boson\n```\n\n### Options\n\n| Option             | Description                                  |\n|--------------------|----------------------------------------------|\n| `--prefix`         | Match address prefix (e.g., `cs`)            |\n| `--suffix`         | Match address suffix                         |\n| `--contains`       | Match address substring                      |\n| `--threads`        | Number of threads to use (default: auto)     |\n| `--case-sensitive` | Use a case sensitive search (default: False) |\n| `--help`           | Show help and usage                          |\n\n## Output\n\nFor each match, the tool prints:\n\n- The matching Solana address\n- The corresponding private key (in base58 or JSON array)\n\n**Example output:**\n```\nAddress: boson1xyz...abc\nPrivate Key: [12, 34, 56, ...]\n```\n\n## Security Notice\n\n- **Keep your private keys safe!** Do not share them.\n- Generated keys are not stored or transmitted.\n\n## Building from Source\n\nClone the repository:\n\n```sh\ngit clone https://github.com/BosonWare-Technologies/SolanaVanity.git\ncd SolanaVanity\ndotnet build -c Release\n```\n\n## License\n\nThis project is licensed under the [MIT License](https://opensource.org/licenses/MIT).\n\n## Links\n\n- [GitHub Repository](https://github.com/BosonWare-Technologies/SolanaVanity)\n- [NuGet Package](https://www.nuget.org/packages/SolanaVanity)\n\n---\n\n© BosonWare, Technologies. Authored by Realtin (CodingBoson).\n\n## Donations\n\nIf you find this project useful and would like to support its development, you can donate SOL to the following address: `3mdMuNXNmTNJvDc3tbYnAGhdVepS5Frt1g5bApLXfChp`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbosonware-technologies%2Fsolanavanity","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbosonware-technologies%2Fsolanavanity","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbosonware-technologies%2Fsolanavanity/lists"}