{"id":31581492,"url":"https://github.com/mrkara/casper-era-tracker","last_synced_at":"2026-04-12T13:34:40.663Z","repository":{"id":316911444,"uuid":"1065314821","full_name":"mrkara/casper-era-tracker","owner":"mrkara","description":"A modern, full-stack web application that displays live Casper network era information with real-time countdown timers, dual-mode era calculators, and comprehensive network data visualization.","archived":false,"fork":false,"pushed_at":"2025-09-27T15:14:04.000Z","size":221,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-27T15:23:59.293Z","etag":null,"topics":["api-proxy","blockchain","casper-blockchain","casper-network","dashboard","developer-tools","era-tracker","flask","full-stack","network-monitoring","python","react","real-time","tailwindcss","vite","web3"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrkara.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"docs/SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-27T13:27:58.000Z","updated_at":"2025-09-27T15:14:07.000Z","dependencies_parsed_at":"2025-09-27T15:24:07.719Z","dependency_job_id":"7fa7323b-f04c-4c8c-901f-e2d174154bfb","html_url":"https://github.com/mrkara/casper-era-tracker","commit_stats":null,"previous_names":["mrkara/casper-era-tracker"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/mrkara/casper-era-tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrkara%2Fcasper-era-tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrkara%2Fcasper-era-tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrkara%2Fcasper-era-tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrkara%2Fcasper-era-tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrkara","download_url":"https://codeload.github.com/mrkara/casper-era-tracker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrkara%2Fcasper-era-tracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278526223,"owners_count":26001327,"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-10-05T02:00:06.059Z","response_time":54,"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":["api-proxy","blockchain","casper-blockchain","casper-network","dashboard","developer-tools","era-tracker","flask","full-stack","network-monitoring","python","react","real-time","tailwindcss","vite","web3"],"created_at":"2025-10-05T21:58:56.638Z","updated_at":"2025-10-05T21:59:00.436Z","avatar_url":"https://github.com/mrkara.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Casper Era Tracker\n\n[![GitHub stars](https://img.shields.io/github/stars/mrkara/casper-era-tracker?style=social)](https://github.com/mrkara/casper-era-tracker/stargazers)\n\nA modern, full-stack web application that displays live Casper network era information with real-time countdown timers, dual-mode era calculators, and comprehensive network data visualization.\n\n![Casper Era Tracker Screenshot](https://raw.githubusercontent.com/mrkara/casper-era-tracker/master/docs/screenshot.png)\n\n## ✨ Features\n\n- **Live Era Information**: Current era, block height, and time left to the next era.\n- **Dual-Mode Era Calculator**: Predict future eras by era number or date/time.\n- **Accurate Network Data**: Combines data from CSPR.cloud and CSPR.live for accuracy.\n- **Secure Backend**: Flask API proxy protects API keys and handles CORS.\n- **Modern Design**: Responsive and user-friendly interface.\n\n## 🚀 Getting Started\n\n### Prerequisites\n\n- Node.js 18+\n- Python 3.13+\n- pnpm (or npm/yarn)\n\n### Installation\n\n1.  **Clone the repository:**\n    ```bash\n    git clone https://github.com/mrkara/casper-era-tracker.git\n    cd casper-era-tracker\n    ```\n\n2.  **Install dependencies:**\n    ```bash\n    # Install frontend dependencies\n    pnpm install\n\n    # Install backend dependencies\n    cd backend\n    pip install -r requirements.txt\n    ```\n\n3.  **Configure API Key:**\n    ```bash\n    # In the backend directory\n    cp .env.example .env\n    # Edit .env and add your CSPR.cloud API key\n    ```\n\n4.  **Run the application:**\n    ```bash\n    # Start the backend server (in /backend)\n    python app.py\n\n    # Start the frontend dev server (in project root)\n    pnpm run dev\n    ```\n\n## 📚 Documentation\n\n- **[Deployment Guide](DEPLOYMENT.md)**: Instructions for deploying the application to various platforms.\n- **[API Integration](docs/API.md)**: Details about the APIs used in the project.\n- **[Calculation Logic](docs/CALCULATIONS.md)**: Explanation of the era and block height calculation formulas.\n- **[Contributing Guidelines](CONTRIBUTING.md)**: How to contribute to the project.\n\n## 🤖 AI-Generated Content Disclaimer\n\n**Important Notice**: This project contains code and content that was generated with the assistance of artificial intelligence (AI) tools. While the code has been reviewed and tested, users should:\n\n- **Review all code** before using in production environments\n- **Test thoroughly** in their specific use cases\n- **Verify API integrations** and security implementations\n- **Understand the codebase** before making modifications\n- **Follow security best practices** when deploying\n\nUsers are responsible for ensuring the code meets their security, performance, and functional requirements.\n\n## 📄 License\n\nThis project is licensed under the Apache License 2.0. See the [LICENSE](LICENSE) file for details.\n\n## 🙏 Acknowledgments\n\nThis application is powered by the fantastic APIs from [CSPR.cloud](https://cspr.cloud/) and [CSPR.live](https://cspr.live/).\n\nThe GitHub corner ribbon is based on [GitHub Corners](https://github.com/tholman/github-corners) by [Tim Holman](https://tholman.com/), licensed under the MIT License.\n\n---\n\n*Built with ❤️ for the Casper community.*\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrkara%2Fcasper-era-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrkara%2Fcasper-era-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrkara%2Fcasper-era-tracker/lists"}