{"id":51895445,"url":"https://github.com/junzhli/btcd-address-indexing-worker","last_synced_at":"2026-07-26T09:01:17.224Z","repository":{"id":73151555,"uuid":"223902821","full_name":"junzhli/btcd-address-indexing-worker","owner":"junzhli","description":"Bitcoin Address Indexing Worker","archived":false,"fork":false,"pushed_at":"2020-05-14T06:39:11.000Z","size":52,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-14T18:38:49.484Z","etag":null,"topics":["bitcoin","btcd","golang","mongodb","rabbitmq","redis"],"latest_commit_sha":null,"homepage":null,"language":"Go","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/junzhli.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":"2019-11-25T08:51:35.000Z","updated_at":"2022-03-03T06:40:45.000Z","dependencies_parsed_at":"2024-06-20T01:41:45.724Z","dependency_job_id":"676621f8-ed13-4d38-9828-b3541e04c2fd","html_url":"https://github.com/junzhli/btcd-address-indexing-worker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/junzhli/btcd-address-indexing-worker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junzhli%2Fbtcd-address-indexing-worker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junzhli%2Fbtcd-address-indexing-worker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junzhli%2Fbtcd-address-indexing-worker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junzhli%2Fbtcd-address-indexing-worker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/junzhli","download_url":"https://codeload.github.com/junzhli/btcd-address-indexing-worker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junzhli%2Fbtcd-address-indexing-worker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35779065,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-07-20T02:08:10.276Z","status":"online","status_checked_at":"2026-07-22T02:00:06.236Z","response_time":124,"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":["bitcoin","btcd","golang","mongodb","rabbitmq","redis"],"created_at":"2026-07-26T09:01:16.371Z","updated_at":"2026-07-26T09:01:17.219Z","avatar_url":"https://github.com/junzhli.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bitcoin address indexing worker\n[![Build Status](https://travis-ci.org/junzhli/btcd-address-indexing-worker.svg?branch=dev)](https://travis-ci.org/junzhli/btcd-address-indexing-worker) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![GoDoc](https://godoc.org/github.com/junzhli/btcd-address-indexing-worker?status.svg)](https://godoc.org/github.com/junzhli/btcd-address-indexing-worker)  \nBitcoin Address Indexing Worker provides the web service [btcd-address-indexing-service](https://github.com/junzhli/btcd-address-indexing-service) with additional indexing, caching mechanisms and address relevant information lookups\n\n## Table of Contents\n- [Bitcoin address indexing worker](#bitcoin-address-indexing-worker)\n  - [Table of Contents](#table-of-contents)\n  - [More information](#more-information)\n  - [Building and test](#building-and-test)\n  - [Configuration and Run](#configuration-and-run)\n  - [Author](#author)\n  - [License](#license)\n\nMore information\n-----\n(Refer to [btcd-address-indexing-service](https://github.com/junzhli/btcd-address-indexing-service))\n\nBuilding and test\n-----\n\n* Pulling repository\n\n```bash\n$ go get -v github.com/junzhli/btcd-address-indexing-worker\n$ cd $GOPATH/src/github.com/junzhli/btcd-address-indexing-worker\n```\n\n* Test\n\n```bash\n$ go test ./...\n```\n\n* Build\n  \n```bash\n$ go install # should install executable program under $GOPATH/bin\n```\n\nConfiguration and Run\n-----\n* Configurable options\n\n**Please set environment variables with file called `.env` and place this under the current path where you run this program on shell. You can begin with file `.env.template` for reference**\n\n| Name                  | Required | Default value   | Description                          |\n|-----------------------|----------|-----------------|--------------------------------------|\n| MONGO_HOST            | N        | 127.0.0.1:27017 | MongoDB Host[:Port]                  |\n| MONGO_USER            | N        |                 | MongoDB User                         |\n| MONGO_PASSWORD        | N        |                 | MongoDB Password                     |\n| REDIS_HOST            | N        | 127.0.0.1:6379  | Redis Host[:Port]                    |\n| REDIS_PASSWORD        | N        |                 | Redis protected password             |\n| RABBITMQ_HOST         | N        | 127.0.0.1:5672  | RabbitMQ Host[:Port]                 |\n| RABBITMQ_USER         | N        | guest           | RabbitMQ User                        |\n| RABBITMQ_PASSWORD     | N        | guest           | RabbitMQ Password                    |\n| BTCD_JSONRPC_HOST     | N        | 127.0.0.1:8334  | Btcd JSON-RPC Host[:Port]            |\n| BTCD_JSONRPC_USER     | N        |                 |  Btcd JSON-RPC User                  |\n| BTCD_JSONRPC_PASSWORD | N        |                 | Btcd JSON-RPC Password               |\n| BTCD_JSONRPC_TIMEOUT  | N        | 600             | Btcd JSON-RPC Read Timeout (seconds) |\n\n* For development\n\n```bash\n$ go run main.go\n```\n\n* For production\n\n```bash\n# Please follow build step at first\n$ btcd-address-indexing-worker\n```\n\nAuthor\n-----\nJeremy Li\n\nLicense\n-----\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunzhli%2Fbtcd-address-indexing-worker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjunzhli%2Fbtcd-address-indexing-worker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunzhli%2Fbtcd-address-indexing-worker/lists"}