{"id":27441853,"url":"https://github.com/3kh0/hcbscan","last_synced_at":"2025-08-03T10:16:08.372Z","repository":{"id":275481195,"uuid":"922436656","full_name":"3kh0/hcbscan","owner":"3kh0","description":" The first public explorer for HCB transactions and organizations. ","archived":false,"fork":false,"pushed_at":"2025-06-12T22:05:44.000Z","size":1613,"stargazers_count":26,"open_issues_count":1,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-21T16:11:39.496Z","etag":null,"topics":["explorer","hackclub","hcb"],"latest_commit_sha":null,"homepage":"https://hcbscan.3kh0.net","language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/3kh0.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null}},"created_at":"2025-01-26T07:42:48.000Z","updated_at":"2025-07-04T10:13:13.000Z","dependencies_parsed_at":null,"dependency_job_id":"0f23de86-d799-447b-88f0-3a9767704bb0","html_url":"https://github.com/3kh0/hcbscan","commit_stats":null,"previous_names":["3kh0/hcbscan"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/3kh0/hcbscan","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3kh0%2Fhcbscan","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3kh0%2Fhcbscan/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3kh0%2Fhcbscan/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3kh0%2Fhcbscan/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/3kh0","download_url":"https://codeload.github.com/3kh0/hcbscan/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/3kh0%2Fhcbscan/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268528724,"owners_count":24264895,"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-08-03T02:00:12.545Z","response_time":2577,"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":["explorer","hackclub","hcb"],"created_at":"2025-04-15T00:14:33.363Z","updated_at":"2025-08-03T10:16:08.357Z","avatar_url":"https://github.com/3kh0.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n  \u003cimg src=\"./public/readme.png\" alt=\"Logo\" /\u003e\n  \u003cbr /\u003eHCBScan\n\u003c/h1\u003e\n\u003ch3 align=\"center\"\u003eThe first public explorer for HCB transactions and organizations.\u003c/h3\u003e\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"#about\"\u003eAbout\u003c/a\u003e •\n  \u003ca href=\"#features\"\u003eFeatures\u003c/a\u003e •\n  \u003ca href=\"#structure\"\u003eProject Structure\u003c/a\u003e •\n  \u003ca href=\"#local-setup\"\u003eLocal Setup\u003c/a\u003e •\n  \u003ca href=\"#configuration\"\u003eConfiguration\u003c/a\u003e •\n  \u003ca href=\"#deployment\"\u003eDeployment\u003c/a\u003e •\n  \u003ca href=\"#license\"\u003eLicense\u003c/a\u003e\n\u003c/p\u003e\n\n## About\n\nHCBScan is an open-source explorer for [HCB](https://hcb.hackclub.com/) that allows you to search for organizations, view transactions, and explore public financial data. It is built using [Nuxt](https://nuxt.com) and [Vue](https://vuejs.org) with a little help from [Supabase](https://supabase.com/) and it uses the [HCB API](https://hcb.hackclub.com/docs/api/v3) to fetch data.\n\n### Live Demo\n\nTry out HCBScan at [hcbscan.3kh0.net](https://hcbscan.3kh0.net/)\n\n## Features\n\n- Search for organizations by name, handle, or ID\n- View all information about organizations, including the stuff that is not shown normally!\n- Explore recent activities and transactions across the platform\n- See how much money is held within HCB\n- Support for third-party instances\n\n## Structure\n\n```filestructure\nhcbscan/\n├── assets/                  # see title\n│   ├── css/                 # tailwind + overrides\n│   └── img/                 # images\n├── components/              # reusable components\n├── layouts/\n│   └── default.vue          # default layout\n├── pages/                   # the meat and bones\n│   ├── app/                 # all cool stuff here\n│   │   ├── index.vue        # the real homepage\n│   │   ├── acts/            # activity page\n│   │   ├── txns/            # transaction page\n│   │   └── org/             # organization page\n│   └── index.vue\n├── public/                  # stuff, ignore\n├── server/                  # not sure why this is here honestly\n├── utils/                   # utility functions\n├── app.vue                  # nothing much here\n└── nuxt.config.ts           # nuxt configuration\n```\n\n## Local Setup\n\n### Prerequisites\n\n- Node.js\n- pnpm\n- A browser made within the past decade\n\n### Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/3kh0/hcbscan.git\ncd hcbscan\npnpm install\npnpm dev\n```\n\n2. Open your browser and go to `http://localhost:3000`\n\n## Configuration\n\n### Supabase\n\nHCBScan uses Supabase for some added functions. If you want to bring your own database and not use the default one, you can edit the [`utils/supabase.js`](utils/supabase.js) file with your own Supabase URL and public key.\n\n### Third Party instances\n\nHCB is open source and HCBScan supports third-party instances. If you want to use a different instance, you can edit the [`utils/apiConfig.js`](utils/apiConfig.js) to change the default HCB API URL to your desired instance.\n\nBy default, it uses the official HCB API.\n\n## Deployment\n\nHCBScan is built on Nuxt, which means it runs pretty much everywhere. Cloudflare Pages is recommended as it is the easiest to setup and use, all while being free.\n\n## Contributing\n\nContributions are welcome and I will love you forever if you help out! There is a informal todo list over at [`todo.txt`](todo.txt) if you want to help out.\n\n## License\n\nThis project is licensed under the GNU GPLv3 License - see the [`LICENSE.txt`](LICENSE.txt) file for details.\n\n## Thanks\n\n- Made with 💚 by [Echo](https://3kh0.net)\n- Powered by [Nuxt](https://nuxt.com) and [Vue](https://vuejs.org)\n- Data provided by the [HCB API](https://hcb.hackclub.com/docs/api/v3)\n- Let's be honest, stack overflow\n\n**Note**: HCBScan is not affiliated, fiscally sponsored, or endorsed by HCB. We only got a \"oh shit, this is so cool\" from the HCB team so take that for what it is worth.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3kh0%2Fhcbscan","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F3kh0%2Fhcbscan","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F3kh0%2Fhcbscan/lists"}