{"id":36438999,"url":"https://github.com/sphinx-core/go","last_synced_at":"2026-01-11T20:54:24.746Z","repository":{"id":268465515,"uuid":"904447522","full_name":"sphinx-core/go","owner":"sphinx-core","description":"SPHINX go is contain package files of the protocol source-code","archived":false,"fork":false,"pushed_at":"2025-11-26T09:36:10.000Z","size":16487,"stargazers_count":4,"open_issues_count":1,"forks_count":3,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-28T01:22:35.546Z","etag":null,"topics":["blockchain","blockchain-technology","open-source","open-source-project","post-quantum-cryptography"],"latest_commit_sha":null,"homepage":"","language":"PostScript","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/sphinx-core.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":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-16T22:56:04.000Z","updated_at":"2025-11-26T09:36:14.000Z","dependencies_parsed_at":null,"dependency_job_id":"f03dcf92-d678-4b10-8750-b8ffe0a5f38e","html_url":"https://github.com/sphinx-core/go","commit_stats":null,"previous_names":["sphinx-core/go-sphinx"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sphinx-core/go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sphinx-core%2Fgo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sphinx-core%2Fgo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sphinx-core%2Fgo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sphinx-core%2Fgo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sphinx-core","download_url":"https://codeload.github.com/sphinx-core/go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sphinx-core%2Fgo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28323591,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-11T18:42:50.174Z","status":"ssl_error","status_checked_at":"2026-01-11T18:39:13.842Z","response_time":60,"last_error":"SSL_read: 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":["blockchain","blockchain-technology","open-source","open-source-project","post-quantum-cryptography"],"created_at":"2026-01-11T20:54:24.137Z","updated_at":"2026-01-11T20:54:24.729Z","avatar_url":"https://github.com/sphinx-core.png","language":"PostScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Introduction\n\nSphinx is a blockchain layer 1 technology designed to be a highly secure blockchain that incorporates post-quantum cryptographic algorithms. Our interemediate goals is to ensure blockchain security remains robust in the face of emerging threats posed by quantum computing.\n\nWe encourage developers, researchers, and blockchain enthusiasts to contribute to our project and participate in discussions to enhance the protocol.\n\n## What is SPHINX?\n\nSphinx is an open-source, post-quantum secure blockchain layer 1 protocol written in Go. We believe that every person brings a unique perspective and set of skills, which is why everyone is invited to contribute to this project. Whether you're a developer, researcher, or enthusiast, your input can help us build a resilient, future-proof blockchain infrastructure resistant to quantum attacks. The project is under active development, and we welcome contributions from all walks of life!\n\n## Getting Started\n\nTo contribute to the project, you need to have Go installed on your system. Follow the steps below to set up your environment.\n\n### 1. Install Go\nYou can install Go by following the official instructions on the **[Go Installation page](https://go.dev/doc/install)**.\n\n**For Linux/macOS:**\n\n```bash \nwget https://go.dev/dl/go1.XX.X.linux-amd64.tar.gz\n```\n\n```bash\nsudo tar -C /usr/local -xzf go1.XX.X.linux-amd64.tar.gz\n```\n\n```bash\nexport PATH=$PATH:/usr/local/go/bin\n```\n\n\nFor Windows, download the installer from here **[Go Installation page](https://go.dev/doc/install)**.\n\n**Verify your Go installation:**\n\n```bash\ngo version\n```\n\n### 2. Clone the Repository\nOnce Go is set up, clone the repository to your local machine.\n\n```bash\ngit clone https://github.com/sphinx-core/sphinx-core.git\n```\n\n```bash\ncd sphinx-core\n```\n\n### 3. Fork the Repository\nIf you intend to contribute, it is recommended to fork the repository. You can do this by clicking the \"Fork\" button in the upper-right corner of the repository page.\n\n### 4. Set Up Your Fork\nAdd your fork as a remote:\n\n```bash\ngit remote add fork https://github.com/\u003cyour-username\u003e/sphinx-core.git\n```\n\n## Contribution Guidelines\n\nWe encourage the community to help improve Sphinx-Core. You can contribute in many ways: \n1. fixing bugs\n2. writing documentation\n3. implementing new features\n4. or suggesting new ideas.\n\n###  Clone and Fork the Repository\nMake sure your local repository is up to date:\n\n```bash\ngit pull origin main\n```\n\n### Making Changes\n1. Create a new branch for your feature or bug fix:\n\n```bash\ngit checkout -b feature-name\n```\n\n2. Make the necessary changes in the code. Ensure your code is clean and well-documented.\n3. Test your code locally.\n\n\n### Submitting a Pull Request\n1. Push your branch to your forked repository:\n\n```bash\ngit push fork feature-name\n```\n\n2. Create a pull request (PR) to the main repository from your branch on GitHub. Make sure your PR description clearly explains your changes.\n3. Wait for the review process. Be prepared to receive feedback or requests for changes.\n\nProposals and Discussions\n\nAll major proposals for features, upgrades, and changes are documented in the **[GitHub Wiki](https://github.com/sphinx-core/sips/wiki).** section of the repository. You can find detailed descriptions of proposed features and their technical implementations here:\n\n## GitHub Wiki Pages\n\nGitHub Wiki Pages is contains of **SIPS (SPHINX IMPLEMENTATION PROPOSALS)** you can join to review, discussions, or suggest improvements to existing proposals ideas. To contribute just visit to the **[GitHub Wiki](https://github.com/sphinx-core/sips/wiki).**\n\n## Improvement Ideas\n\nHere are some areas where contributions are most welcome:\n\n1. Documentation: Help improve existing documentation or write tutorials and guides.\n2. Testing: Write unit tests, integration tests, or perform manual testing to identify bugs.\n3. Security: Contribute to making Sphinx-Core more secure by reviewing code or proposing post-quantum cryptographic methods.\n4. Performance Optimization: Improve performance and scalability of the Sphinx-Core protocol.\n5. Feature Requests: If you have ideas for new features, open an issue or create a proposal in the **[GitHub Wiki](https://github.com/sphinx-core/sips/wiki).**\n\n##  License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## By following this guide\n\nyou will be able to contribute to the Sphinx-Core project and help us build a quantum-resistant blockchain ecosystem.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsphinx-core%2Fgo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsphinx-core%2Fgo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsphinx-core%2Fgo/lists"}