{"id":36578644,"url":"https://github.com/crowdcompute/crowdengine","last_synced_at":"2026-01-12T07:40:05.691Z","repository":{"id":57523202,"uuid":"163320179","full_name":"crowdcompute/crowdengine","owner":"crowdcompute","description":"Peer-to-Peer compute engine implementation","archived":false,"fork":false,"pushed_at":"2021-03-09T22:13:59.000Z","size":4965,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-06-20T17:34:17.367Z","etag":null,"topics":["blockchain","crypto","cryptocurrency","cryptography","ethereum","peer-to-peer"],"latest_commit_sha":null,"homepage":"https://crowdcompute.io","language":"Go","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/crowdcompute.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":"2018-12-27T17:26:25.000Z","updated_at":"2024-06-20T17:34:17.368Z","dependencies_parsed_at":"2022-08-28T11:21:04.927Z","dependency_job_id":null,"html_url":"https://github.com/crowdcompute/crowdengine","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/crowdcompute/crowdengine","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowdcompute%2Fcrowdengine","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowdcompute%2Fcrowdengine/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowdcompute%2Fcrowdengine/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowdcompute%2Fcrowdengine/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/crowdcompute","download_url":"https://codeload.github.com/crowdcompute/crowdengine/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/crowdcompute%2Fcrowdengine/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28336624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T06:09:07.588Z","status":"ssl_error","status_checked_at":"2026-01-12T06:05:18.301Z","response_time":98,"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":["blockchain","crypto","cryptocurrency","cryptography","ethereum","peer-to-peer"],"created_at":"2026-01-12T07:40:05.039Z","updated_at":"2026-01-12T07:40:05.681Z","avatar_url":"https://github.com/crowdcompute.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://i.imgur.com/0cgLwMe.png\" height=\"150\" /\u003e\n\u003c/p\u003e\n\n\n## Go CrowdEngine\n\nOfficial golang implementation of the CrowdCompute engine\n\n## Building the source\n\nClone the repository to your desired destination:\n\n```\n$ git clone https://github.com/crowdcompute/crowdengine\n```\nBuild the `gocc` binary:\n\n```\n$ cd crowdengine\n$ make build\n```\n\nYou can now run the `gocc` binary in build/bin/gocc\n\n\n## Running gocc\n\nRequirements: docker\n\n### Gocc CLI Flags\n`gocc` can be supplied with command-line flags. Here is a list of some important flags:\n\n  * `--datadir` Data directory to store `gocc` data\n  * `--addr`  P2P listening interface\n  * `--port` P2P listening port\n  * `--maxpeers` Maximum number of peers to connect\n  * `--rpc` Enable the RPC interface\n  * `--rpcservices` List of rpc services allowed\n  * `--rpcwhitelist` Allow IP addresses to access the RPC servers\n  * `--socket` Enable IPC-RPC interface\n  * `--socketpath` Path of the socker/pipe file\n  * `--http` Enable the HTTP-RPC server\n  * `--httpport` HTTP-RPC server listening port\n  * `--httpaddr` HTTP-RPC server listening interface\n  * `--httporigin` HTTP-RPC cross-origin value\n  * `--ws` Enable the WS-RPC server\n  * `--wsport` WS-RPC server listening port\n  * `--wsaddr` WS-RPC server listening interface\n  * `--wsorigin` WS-RPC cross-origin value\n\n\n### Gocc Configuration\n\nYou can pass a `toml` configuration file to the binary instead of specifying each flag with the following command:\n\n```\n$ gocc --config /path/to/your_config.toml\n```\n### Node Communication and Interaction\n\nCrowdEngine provides a Plain-text JSON RPC request–response protocol which can be used by decentralized applications(DApps) or clients to interact with a node. Requests and responses are formatted in JSON and transferred over HTTP, Websockets and IPC.\n\n#### JSONRPC2.0 HTTP\n\nCrowdEngine exposes an HTTP server which accepts JSONRPC requests. The following flags can be used to enable the JSONRPC2.0 HTTP interface:\n```\n$ gocc --rpc --http --httpport \u003cportnumber\u003e --httpaddr 0.0.0.0 --httporigin \"*\"\n```\n\n#### JSONRPC2.0 Websocket\n\nCrowdEngine exposes a Websocket server which accepts JSONRPC requests. The following flags can be used to enable the JSONRPC2.0 Websocket interface:\n```\n$ gocc --rpc --ws --wsport \u003cportnumber\u003e --wsaddr 0.0.0.0 --wsorigin \"*\"\n```\n\n#### JSONRPC2.0 IPC\nSystem programs can interact with `gocc` by writing/reading to a given socket/pipe file, which is created by default within the data directory. To enable socket/pipe use the following command\n```\n$ gocc --rpc --socket --socketpath /where/to/save/gocc.ipc\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrowdcompute%2Fcrowdengine","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcrowdcompute%2Fcrowdengine","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcrowdcompute%2Fcrowdengine/lists"}