{"id":22538004,"url":"https://github.com/colored-coins/colored-coins-block-explorer","last_synced_at":"2025-04-09T20:14:29.654Z","repository":{"id":57195227,"uuid":"42172954","full_name":"Colored-Coins/Colored-Coins-Block-Explorer","owner":"Colored-Coins","description":"An implementation of a full Bitcoin Block Explorer (Parser/API/Sockets) with full Colored-Coins capabilities","archived":false,"fork":false,"pushed_at":"2017-09-13T08:35:48.000Z","size":244,"stargazers_count":17,"open_issues_count":5,"forks_count":30,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-04-09T20:14:23.519Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/Colored-Coins.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}},"created_at":"2015-09-09T10:48:58.000Z","updated_at":"2021-11-22T09:36:22.000Z","dependencies_parsed_at":"2022-09-16T10:41:58.102Z","dependency_job_id":null,"html_url":"https://github.com/Colored-Coins/Colored-Coins-Block-Explorer","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Colored-Coins%2FColored-Coins-Block-Explorer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Colored-Coins%2FColored-Coins-Block-Explorer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Colored-Coins%2FColored-Coins-Block-Explorer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Colored-Coins%2FColored-Coins-Block-Explorer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Colored-Coins","download_url":"https://codeload.github.com/Colored-Coins/Colored-Coins-Block-Explorer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248103872,"owners_count":21048245,"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":[],"created_at":"2024-12-07T11:09:41.530Z","updated_at":"2025-04-09T20:14:29.609Z","avatar_url":"https://github.com/Colored-Coins.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Colored Coins Block-Explorer\n[![Build Status][travis-image]][travis-url] [![Coverage percentage][coveralls-image]][coveralls-url] [![NPM version][npm-image]][npm-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Slack Channel][slack-image]][slack-url]\n\n[![js-standard-style][js-standard-image]][js-standard-url]\n\n\u003e The ColoredCoins Block Explorer server\n\n### System Requirements\n\n1. Bitcoind that runs as an RPC server with txindex=1\n2. Mongodb\n3. At least a 1.5TB hard-drive (The current size of the data is around 1TB, as of November 2016)\n\n\n### Installation\n```sh\n$ npm i -g cc-block-explorer\n```\n\n### Run\n\nYou can run the Block Explorer with the following options:\n\n```sh\n  cc-explorer [options]\n\n  Options:\n\n    -h, --help                                         output usage information\n    -V, --version                                      output the version number\n    -p, --port \u003cport\u003e                                  Port to listen on [$PORT or 8080/8081]\n    -s, --ssl \u003ckey-file-path\u003e \u003ccertificate-file-path\u003e  Enable ssl\n    -c, --conf \u003cconfig-file-path\u003e                      Load a custom configuration file\n```\n\nOr just run it with the defaults using:\n\n```sh\n$ cc-explorer\n```\n\n### Properties\n\n#### The propeties to provide:\n\n- Empty uncommented properites are MANDATORY\n- Commented properties are OPTIONAL\n- Non empty uncommented properties are the DEFAULT values but can be changed if wanted\n\n```ini\n[ENV]\ntype=production (you can switch between development/QA/production)\n\n#The most basic HTTP server settings, must at least contain the port value\n[server]\nhttps_port=8081\nhttp_port=8080\ncookies_secret=1234\nsockets=true\nfavicon=app/public/favicon.ico\nname=blockexplorer\ncluster=0\n\n#SSL settings. Decomment the next lines to use SSL\n[ssl]\n#key=\n#crt=\n\n#mongoDB settings. Decomment the next lines to use it\n[db]\nhost=localhost\nport=27000\nname=explorer\ndir=db/\n#user=\n#pass=\n\n#Your Bitcoind server settings\n[bitcoin_rpc]\nssl=false\nurl=localhost\npath=\nusername=rpcuser\npassword=rpcpassword\nport=8332\ntimeout=30000\n\n#Continue scanning and parsing new transaction or just be in API mode\n[scanner]\nscan=true\nmempool=true\nmempool_only=false\n\n#Basic HTTP authentication to lock website\n[basic]\n#admin_users=\n#realm=\n\n#Logger properties\n[log]\n#logentries_api_key=\n#level=\n```\n\n### Developmenet\n\n1. Fork this repo\n2. npm install\n3. use the Standard coding style when hacking the code - https://github.com/feross/standard\n4. Send us a pull request\n\n## License\n\n[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)\n\n[js-standard-url]: https://github.com/feross/standard\n[js-standard-image]: https://cdn.rawgit.com/feross/standard/master/badge.svg\n[npm-image]: https://badge.fury.io/js/cc-block-explorer.svg\n[npm-url]: https://npmjs.org/package/cc-block-explorer\n[travis-image]: https://travis-ci.org/Colored-Coins/Colored-Coins-Block-Explorer.svg?branch=master\n[travis-url]: https://travis-ci.org/Colored-Coins/Colored-Coins-Block-Explorer\n[daviddm-image]: https://david-dm.org/Colored-Coins/Colored-Coins-Block-Explorer.svg?theme=shields.io\n[daviddm-url]: https://david-dm.org/Colored-Coins/Colored-Coins-Block-Explorer\n[coveralls-image]: https://coveralls.io/repos/Colored-Coins/Colored-Coins-Block-Explorer/badge.svg\n[coveralls-url]: https://coveralls.io/r//Colored-Coins/Colored-Coins-Block-Explorer\n[slack-image]: http://slack.coloredcoins.org/badge.svg\n[slack-url]: http://slack.coloredcoins.org\n[mocha]: https://www.npmjs.com/package/mocha\n[gulp]: http://gulpjs.com/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcolored-coins%2Fcolored-coins-block-explorer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcolored-coins%2Fcolored-coins-block-explorer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcolored-coins%2Fcolored-coins-block-explorer/lists"}