{"id":50294812,"url":"https://github.com/chrisrobison/docchain","last_synced_at":"2026-05-28T08:04:08.577Z","repository":{"id":259593413,"uuid":"879007807","full_name":"chrisrobison/docchain","owner":"chrisrobison","description":"Secure, decentralized document notarization and verification using Stellar blockchain technology.","archived":false,"fork":false,"pushed_at":"2024-12-28T23:12:17.000Z","size":35044,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-29T00:18:19.831Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/chrisrobison.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-10-26T17:53:14.000Z","updated_at":"2024-12-28T23:12:23.000Z","dependencies_parsed_at":"2024-10-26T19:45:54.556Z","dependency_job_id":"b665f940-0e28-4de4-9da6-0abc53e67501","html_url":"https://github.com/chrisrobison/docchain","commit_stats":null,"previous_names":["chrisrobison/docchain"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chrisrobison/docchain","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisrobison%2Fdocchain","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisrobison%2Fdocchain/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisrobison%2Fdocchain/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisrobison%2Fdocchain/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chrisrobison","download_url":"https://codeload.github.com/chrisrobison/docchain/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chrisrobison%2Fdocchain/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33599496,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-28T02:00:06.440Z","response_time":99,"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":[],"created_at":"2026-05-28T08:04:02.729Z","updated_at":"2026-05-28T08:04:08.571Z","avatar_url":"https://github.com/chrisrobison.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DocChain 🔗\n\nSecure document verification powered by the Stellar blockchain.\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Built on Stellar](https://img.shields.io/badge/Built%20on-Stellar-brightgreen.svg)](https://stellar.org)\n[![Build Status](https://img.shields.io/badge/build-passing-brightgreen.svg)]()\n\n## Overview\n\nDocChain revolutionizes document verification by leveraging Stellar blockchain technology. Our platform provides instant, tamper-proof document verification that's accessible globally while reducing costs by up to 90% compared to traditional methods.\n\n### Key Features\n\n- 🚀 **Instant Verification**: Verify documents in seconds\n- 🔒 **Tamper-Proof**: Blockchain-backed security\n- 🌐 **Global Access**: Available 24/7 worldwide\n- 💰 **Cost-Effective**: 90% cheaper than traditional methods\n- ⚡ **Stellar Integration**: Built on fast, reliable blockchain technology\n- 🔌 **API Access**: Easy integration with existing systems\n\n## Quick Start\n\n```bash\n# Clone the repository\ngit clone https://github.com/docchain/docchain.git\n\n# Install dependencies\ncd docchain\nnpm install\n\n# Configure environment\ncp .env.example .env\n# Edit .env with your credentials\n\n# Run development server\nnpm run dev\n\n# Run tests\nnpm test\n```\n\n## API Usage\n\n```javascript\n// Initialize DocChain client\nconst docchain = new DocChain({\n  apiKey: 'your-api-key',\n  network: 'mainnet' // or 'testnet'\n});\n\n// Verify a document\nconst result = await docchain.verify({\n  document: documentBuffer,\n  type: 'pdf'\n});\n\n// Check verification status\nconsole.log(result.status); // 'verified' | 'invalid' | 'pending'\n```\n\n## Documentation\n\nFull documentation is available at [docs.docchain.io](https://docs.docchain.io)\n\n- [Getting Started Guide](https://docs.docchain.io/getting-started)\n- [API Reference](https://docs.docchain.io/api)\n- [SDK Documentation](https://docs.docchain.io/sdk)\n- [Examples](https://docs.docchain.io/examples)\n\n## Use Cases\n\n- **Legal**: Contract verification, court document filing\n- **Real Estate**: Property documents, title verification\n- **Creative**: Copyright protection, NFT minting\n- **Enterprise**: Document workflow automation\n\n## Architecture\n\nDocChain is built on three main components:\n\n1. **Frontend**: React-based web application\n2. **Backend**: Node.js API server with Stellar integration\n3. **Smart Contracts**: Custom Stellar smart contracts for document verification\n\n![Architecture Diagram](https://docs.docchain.io/architecture.png)\n\n## Development\n\n### Prerequisites\n\n- Node.js v16+\n- PostgreSQL 13+\n- Stellar SDK\n- Redis (optional, for caching)\n\n### Local Development\n\n1. Set up local environment:\n```bash\nnpm install\nnpm run setup\n```\n\n2. Start development server:\n```bash\nnpm run dev\n```\n\n3. Run tests:\n```bash\nnpm run test\nnpm run test:e2e\n```\n\n## Contributing\n\nWe welcome contributions! Please see our [Contributing Guidelines](CONTRIBUTING.md) for details.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/AmazingFeature`)\n3. Commit your changes (`git commit -m 'Add some AmazingFeature'`)\n4. Push to the branch (`git push origin feature/AmazingFeature`)\n5. Open a Pull Request\n\n## Security\n\nFor security concerns, please email security@docchain.io. We take all security reports seriously.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Support\n\n- 📧 Email: support@docchain.io\n- 💬 Discord: [Join our community](https://discord.gg/docchain)\n- 🐦 Twitter: [@DocChain](https://twitter.com/docchain)\n\n## Team\n\n- Christopher Robsion - CEO \u0026 System Architect\n- Kevin Ready - CTO \u0026 Blockchain Lead\n\n## Acknowledgments\n\n- Built with [Stellar](https://stellar.org)\n- Supported by [SCF](https://stellar.org/foundation)\n- Special thanks to our beta testers and early adopters\n\n---\nMade with ❤️ by the DocChain Team\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrisrobison%2Fdocchain","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchrisrobison%2Fdocchain","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchrisrobison%2Fdocchain/lists"}