{"id":27285360,"url":"https://github.com/aswinr24/metacert","last_synced_at":"2025-04-11T19:23:46.545Z","repository":{"id":242236506,"uuid":"805334636","full_name":"Aswinr24/MetaCert","owner":"Aswinr24","description":"Securely issue, store, and verify tamper-proof educational and professional credentials, ensuring trust and authenticity.","archived":false,"fork":false,"pushed_at":"2024-12-21T07:39:34.000Z","size":574,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-11T19:23:40.483Z","etag":null,"topics":["expressjs","ipfs","nextjs","typescript","web3"],"latest_commit_sha":null,"homepage":"https://meta-cert.vercel.app","language":"TypeScript","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/Aswinr24.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}},"created_at":"2024-05-24T11:07:09.000Z","updated_at":"2024-12-21T17:38:06.000Z","dependencies_parsed_at":"2024-06-01T16:38:13.302Z","dependency_job_id":"b24b19f1-7c1b-4a11-9920-b751059c8a84","html_url":"https://github.com/Aswinr24/MetaCert","commit_stats":null,"previous_names":["aswinr24/metacert"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aswinr24%2FMetaCert","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aswinr24%2FMetaCert/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aswinr24%2FMetaCert/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Aswinr24%2FMetaCert/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Aswinr24","download_url":"https://codeload.github.com/Aswinr24/MetaCert/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248465336,"owners_count":21108244,"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":["expressjs","ipfs","nextjs","typescript","web3"],"created_at":"2025-04-11T19:23:45.867Z","updated_at":"2025-04-11T19:23:46.513Z","avatar_url":"https://github.com/Aswinr24.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MetaCert\n\nAn application for securely issuing, storing, and verifying tamper-proof digital credentials. By leveraging IPFS and Soulbound Tokens (SBTs), MetaCert ensures trust and authenticity empowering users to manage credentials with unmatched security and transparency.\n\n\n## Features\n\n- 🔒 **Secure Credential Issuance**: Issue cryptographically secured credentials.  \n- 🌐 **IPFS Storage**: Store credentials in a decentralized, immutable manner.  \n- 🎓 **Soulbound Tokens (SBTs)**: Credentials are tokenized as non-transferable SBTs, ensuring authenticity and ownership.  \n- ✅ **Easy Verification**: Verify credentials seamlessly with blockchain-backed proof.\n\n## Getting Started\n\n### Prerequisites\n\nEnsure you have the following installed:\n\n- Node.js (v16 or higher)\n- npm package manager\n- A compatible crypto wallet (e.g., MetaMask/Phantom)\n\n  \n### Installation\n\nClone the repository:\n\n```bash\ngit clone --recurse-submodules https://github.com/Aswinr24/MetaCert.git\n```\n\nNavigate to the project directory:\n```bash\ncd MetaCert\n```\n\nInstall dependencies:\n```bash\nnpm i\n```\n\n#### Environment Setup\n\nCreate a .env file in the root directory and configure the following variables:\n\n```env\nNEXT_PUBLIC_OPENSEA_API_KEY=\u003cOPENSEA_API_KEY\u003e\nNEXT_PUBLIC_SMART_CONTRACT_ADDRESS=\u003cCONTRACT_ADDRESS\u003e\nJWT_SECRET=\u003cPINATA_IPFS_SECRET_KEY\u003e\n```\n\n#### Run Locally\n\nStart the development server for UI:\n\n```bash\nnpm run dev\n```\n\n#### Build for Production\n\nBuild the application for production:\n\n```bash\nnpm run build\nnpm start\n```\n\n### Smart Contracts Deployment\n\nThe contracts directory is included as a Git submodule.\n\n#### Navigate to the Contracts Directory\n\nAfter cloning the repository with submodules, navigate to the contracts submodule:\n\n```bash\ncd contracts \n```\n\nInstall Dependencies for Hardhat\n\n```bash\nnpm i\n```\n\n#### Environment Setup for Smart Contracts\n\nCreate a .env file in the contracts directory and configure the following variables:\n\n```env\nNEXT_PUBLIC_ALCHEMY_SEPOLIA_API=\u003cYOUR_ALCHEMY_SEPOLIA_API_KEY\u003e\nNEXT_PUBLIC_ACCOUNT_PRIVATE_KEY=\u003cYOUR_WALLET_PRIVATE_KEY\u003e\n```\n\n#### Compile Smart Contracts\n\nCompile the smart contracts using Hardhat:\n\n```bash\nnpx hardhat compile\n```\n#### Deploy Smart Contracts\n\nDeploy the contracts to the Sepolia test network:\n\n```\nnpx hardhat run scripts/deploy-sepolia.js --network sepolia\n```\n\n#### Update Contract Address\n\nAfter deploying the smart contract, note the contract address and update the ```NEXT_PUBLIC_SMART_CONTRACT_ADDRESS``` variable in the .env file of the MetaCert UI directory.\n\n## Contributing\n\nContributions are welcome! If you find any bugs or have suggestions for improvements, please open an issue or clone the repository and submit a pull request on GitHub.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faswinr24%2Fmetacert","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faswinr24%2Fmetacert","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faswinr24%2Fmetacert/lists"}