{"id":31623055,"url":"https://github.com/skillnter/bitcoin-arbitrary-data-caching","last_synced_at":"2026-04-07T22:31:33.474Z","repository":{"id":46212006,"uuid":"415301086","full_name":"Skillnter/bitcoin-arbitrary-data-caching","owner":"Skillnter","description":"The purpose of this project is to store and index Bitcoin arbitrary data for all transactions that occur after a given block. This data will subsequently be served on an HTTP endpoint as a JSON payload.","archived":false,"fork":false,"pushed_at":"2021-11-06T12:30:56.000Z","size":38,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-12T23:29:26.904Z","etag":null,"topics":["bitcoin","bitcoin-core","database","express","http-response-status-codes","nodejs","pg","postgresql"],"latest_commit_sha":null,"homepage":"https://skillnter.github.io/bitcoin-arbitrary-data-caching/","language":"JavaScript","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/Skillnter.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}},"created_at":"2021-10-09T12:20:16.000Z","updated_at":"2021-12-09T10:33:44.000Z","dependencies_parsed_at":"2022-08-31T02:41:58.873Z","dependency_job_id":null,"html_url":"https://github.com/Skillnter/bitcoin-arbitrary-data-caching","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Skillnter/bitcoin-arbitrary-data-caching","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skillnter%2Fbitcoin-arbitrary-data-caching","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skillnter%2Fbitcoin-arbitrary-data-caching/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skillnter%2Fbitcoin-arbitrary-data-caching/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skillnter%2Fbitcoin-arbitrary-data-caching/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Skillnter","download_url":"https://codeload.github.com/Skillnter/bitcoin-arbitrary-data-caching/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Skillnter%2Fbitcoin-arbitrary-data-caching/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31532194,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["bitcoin","bitcoin-core","database","express","http-response-status-codes","nodejs","pg","postgresql"],"created_at":"2025-10-06T17:42:26.524Z","updated_at":"2026-04-07T22:31:33.462Z","avatar_url":"https://github.com/Skillnter.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BITCOIN Arbitrary Data Caching\n\nThe purpose of this project is to store and index Bitcoin arbitrary data for all transactions that occur after a given block. This data will subsequently be served on an HTTP endpoint as a JSON payload.\n\n## Development Setup\n\n### Prerequisites\n\n\n- Install [Node.js] which includes [Node Package Manager][npm]\n- Install [BitcoinCore] which includes bitcoind\n- Install [PostgreSQL]\n- Install [Redis]\n\n\n### Install Modules\n\n```console\nnpm install \n```\n\n### Environmental Variables\n\nFor reference, `.env.sample` is added to the project. Rename `.env.sample` to `.env`.\n\n```shell\n# .env\nUSER=\nPASS=\nPORT=\ndbuser=\ndatabase=\ndbpassword=\ndbhost=\ndbport=\nREDIS_HOST=\nREDIS_PORT=\nREDIS_PASSWORD=\nREDIS_TTL=\n````\n\n| Variable       | Details                        | Required\n| -------------- | -------------------------------| ---------\n| USER           | Bitcoind RPC username          |   YES       \n| PASS           | Bitcoind RPC password          |   YES\n| PORT           | Express port                   |   NO\n| dbuser         | PostgreSQL database username   |   YES                         \n| database       | PostgreSQL database name       |   YES              \n| dbpassword     | PostgreSQL database password   |   YES                   \n| dbhost         | PostgreSQL database host       |   YES\n| dbport         | PostgreSQL database port       |   YES             \n| REDIS_HOST     | Redis Host                     |   YES\n| REDIS_PORT     | Redis Port                     |   YES\n| REDIS_PASSWORD | Redis Password                 |   NO\n| REDIS_TTL      | Redis TTL for cache            |   NO\n\n\n## Running Application \n\n```javascript\nnode server.js \n````\n\nor \n\n```javascript\nnpm start\n````\n\n## Application Structure\n\n- `server.js`\u0026nbsp; \u0026nbsp; \u0026nbsp;- The entry point to our application. This file defines our express server.\n- `connection/`   - This folder contains configuration for database and bitcoin core RPC.\n- `routes/`\u0026nbsp; \u0026nbsp; \u0026nbsp; \u0026nbsp; - This folder contains the route definitions for our API.\n- `db/`\u0026nbsp; \u0026nbsp; \u0026nbsp; \u0026nbsp; \u0026nbsp; \u0026nbsp; \u0026nbsp; \u0026nbsp;- This folder contains the PostgreSQL queries.\n\n## People\n\n- The original author of the project is [Himanshu Bansal](https://github.com/Skillnter)\n\n## License\n\n- `BITCOIN Arbitrary Data Caching` project is open-sourced software licensed under the [MIT license](LICENSE) by [Himanshu Bansal].\n\n[node.js]: https://nodejs.org/\n[BitcoinCore]: https://bitcoin.org/en/bitcoin-core/\n[npm]: https://www.npmjs.com/get-npm\n[PostgreSQL]: https://www.postgresql.org/\n[Redis]: https://redis.io/\n[Himanshu Bansal]: https://github.com/Skillnter/","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskillnter%2Fbitcoin-arbitrary-data-caching","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fskillnter%2Fbitcoin-arbitrary-data-caching","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fskillnter%2Fbitcoin-arbitrary-data-caching/lists"}