{"id":15201857,"url":"https://github.com/oaslananka/bitcoinfulladdressgeneratorcsharp","last_synced_at":"2026-02-09T09:31:39.000Z","repository":{"id":252277139,"uuid":"839966151","full_name":"oaslananka/BitcoinFullAddressGeneratorCSharp","owner":"oaslananka","description":"A Windows Forms application for generating various Bitcoin address types (Legacy, Segwit, SegwitP2SH, Taproot) from a passphrase. Provides both compressed and uncompressed keys and addresses.","archived":false,"fork":false,"pushed_at":"2024-08-08T17:26:53.000Z","size":12,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-05T00:48:45.133Z","etag":null,"topics":["bitcoin","bitcoin-wallet","csharp"],"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/oaslananka.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-08-08T17:26:10.000Z","updated_at":"2024-09-19T15:31:32.000Z","dependencies_parsed_at":"2024-08-08T19:59:04.219Z","dependency_job_id":"43afabb4-ad3f-418f-bb25-9fe57e32025c","html_url":"https://github.com/oaslananka/BitcoinFullAddressGeneratorCSharp","commit_stats":null,"previous_names":["oaslananka/bitcoinfulladdressgeneratorcsharp"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oaslananka%2FBitcoinFullAddressGeneratorCSharp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oaslananka%2FBitcoinFullAddressGeneratorCSharp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oaslananka%2FBitcoinFullAddressGeneratorCSharp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/oaslananka%2FBitcoinFullAddressGeneratorCSharp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/oaslananka","download_url":"https://codeload.github.com/oaslananka/BitcoinFullAddressGeneratorCSharp/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241945473,"owners_count":20046865,"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":["bitcoin","bitcoin-wallet","csharp"],"created_at":"2024-09-28T03:41:55.911Z","updated_at":"2026-02-09T09:31:38.965Z","avatar_url":"https://github.com/oaslananka.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Bitcoin Address Generator\n\nBitcoin Address Generator is a Windows Forms application that allows users to generate Bitcoin addresses from a passphrase. The application supports generating various types of addresses, including Legacy, Segwit, SegwitP2SH, and Taproot addresses, in both compressed and uncompressed formats.\n\n## Features\n\n- Generate SHA256 hash from passphrase\n- Display private and public keys in both compressed and uncompressed formats\n- Generate Legacy, Segwit, SegwitP2SH, and Taproot Bitcoin addresses\n- Display addresses in both compressed and uncompressed formats\n\n## Prerequisites\n\n- .NET Framework (version required for the project)\n- Visual Studio (for running and building the project)\n\n## Installation\n\n1. Clone the repository:\n\n    ```bash\n    git clone https://github.com/oaslananka/BitcoinFullAddressGeneratorCSharp.git\n    ```\n\n2. Open the project in Visual Studio.\n3. Restore the NuGet packages.\n4. Build the project.\n\n## Usage\n\n1. Run the application.\n2. Enter a passphrase in the provided textbox.\n3. The application will automatically generate and display the corresponding Bitcoin addresses, private keys, and public keys in both compressed and uncompressed formats.\n\n## Code Overview\n\n### Program.cs\n\nThe `Program.cs` file contains the main entry point for the application.\n\n```csharp\nnamespace Bitcoin_Address_Generator\n{\n    internal static class Program\n    {\n        [STAThread]\n        static void Main()\n        {\n            ApplicationConfiguration.Initialize();\n            Application.Run(new Form1());\n        }\n    }\n}\n```\n\n### Form1.cs\n\nThe `Form1.cs` file contains the logic for generating Bitcoin addresses and keys based on the passphrase entered by the user.\n\n```csharp\nusing System.Text;\nusing System.Security.Cryptography;\nusing System.Numerics;\nusing NBitcoin;\n\nnamespace Bitcoin_Address_Generator\n{\n    public partial class Form1 : Form\n    {\n        public Form1()\n        {\n            InitializeComponent();\n        }\n\n        private void passphrase_textBox_TextChanged(object sender, EventArgs e)\n        {\n            // Logic for handling text change event and generating keys and addresses\n        }\n\n        // Additional methods for generating keys and addresses\n    }\n}\n```\n\n### Form1.Designer.cs\n\nThe `Form1.Designer.cs` file contains the UI elements for the application.\n\n```csharp\nnamespace Bitcoin_Address_Generator\n{\n    partial class Form1\n    {\n        private void InitializeComponent()\n        {\n            // UI components initialization\n        }\n    }\n}\n```\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%2Foaslananka%2Fbitcoinfulladdressgeneratorcsharp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Foaslananka%2Fbitcoinfulladdressgeneratorcsharp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Foaslananka%2Fbitcoinfulladdressgeneratorcsharp/lists"}