{"id":15448610,"url":"https://github.com/Joystream/substrate-node-joystream","last_synced_at":"2025-10-11T12:31:34.501Z","repository":{"id":66359822,"uuid":"166842791","full_name":"Joystream/substrate-node-joystream","owner":"Joystream","description":"Joystream Full Node","archived":true,"fork":false,"pushed_at":"2020-03-20T21:30:21.000Z","size":1951,"stargazers_count":15,"open_issues_count":0,"forks_count":16,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-01-28T21:39:05.306Z","etag":null,"topics":["blockchain","consensus","joystream","p2p","substrate"],"latest_commit_sha":null,"homepage":"https://www.joystream.org","language":"Rust","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/Joystream.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-01-21T16:10:10.000Z","updated_at":"2023-08-31T22:52:33.000Z","dependencies_parsed_at":"2023-02-22T12:46:27.313Z","dependency_job_id":null,"html_url":"https://github.com/Joystream/substrate-node-joystream","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/Joystream/substrate-node-joystream","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joystream%2Fsubstrate-node-joystream","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joystream%2Fsubstrate-node-joystream/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joystream%2Fsubstrate-node-joystream/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joystream%2Fsubstrate-node-joystream/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Joystream","download_url":"https://codeload.github.com/Joystream/substrate-node-joystream/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Joystream%2Fsubstrate-node-joystream/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279007167,"owners_count":26084247,"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-10-11T02:00:06.511Z","response_time":55,"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":["blockchain","consensus","joystream","p2p","substrate"],"created_at":"2024-10-01T20:29:11.949Z","updated_at":"2025-10-11T12:31:34.496Z","avatar_url":"https://github.com/Joystream.png","language":"Rust","readme":"![ Nodes for Joystream](./validator-node_new.svg)\n\n# Joystream Full Node\n\nJoystream node built with [Substrate](https://github.com/paritytech/substrate).\n\nFollow the instructions below to download the software or build it from source.\n\nFor setting up a full node and valiador review the [advanced guide from the helpdesk](https://github.com/Joystream/helpdesk/tree/master/roles/validators).\n\n\n##  Binary releases\n\nThe latest pre build binaries can be downloads from the [releases](https://github.com/Joystream/substrate-node-joystream/releases) page.\n\n\n## Building from source\n\n### Initial setup\nIf you want to build from source you will need the [Rust toolchain](https://rustup.rs/), openssl and llvm/libclang. You can install the required dependencies with:\n\n```bash\ngit clone https://github.com/Joystream/substrate-node-joystream.git\ncd substrate-node-joystream/\ngit checkout v2.1.2\n./setup.sh\n```\n\nIf you are familiar with docker see the [building with docker section](#Docker).\n\n### Building\n\n```bash\ncargo build --release\n```\n\n### Running a public node on the Rome testnet\n\nRun the node and connect to the public testnet.\n\n```bash\ncargo run --release -- --chain ./rome-tesnet.json\n```\n\nThe `rome-testnet.json` chain file can be ontained from the [release page](https://github.com/Joystream/substrate-node-joystream/releases/tag/v2.1.2)\n\n\n### Installing a release build\nThis will install the executable `joystream-node` to your `~/.cargo/bin` folder, which you would normally have in your `$PATH` environment.\n\n```bash\ncargo install --path ./\n```\n\nNow you can run\n\n```bash\njoystream-node --chain rome-testnet.json\n```\n\n## Development\n\n### Running a local development node\n\n```bash\ncargo run --release -- --dev\n```\n\n### Cleaning development chain data\nWhen making changes to the runtime library remember to purge the chain after rebuilding the node to test the new runtime.\n\n```bash\ncargo run --release -- purge-chain --dev\n```\n\n### Docker\n\n#### Building localy\n\nA joystream-node can be compiled with given [Dockerfile](./Dockerfile) file:\n\n```bash\n# Build and tag a new image, which will compile joystream-node from source\ndocker build . -t joystream-node\n\n# run a development chain with the image just created publishing the websocket port\ndocker run -p 9944:9944 joystream-node --dev --ws-external\n```\n\n#### Downloading joystream pre-built images from Docker Hub\n\n```bash\ndocker pull joystream/node\n```\n\n#### Running a public node as a service\n\nCreate a working directory to store the node's data and where you will need to place the chain file.\n\n```bash\nmkdir ${HOME}/joystream-node-data/\n\ncp rome-testnet.json ${HOME}/joystream-node-data/\n\ndocker run -d -p 30333:30333 \\\n    -v ${HOME}/joystream-node-data/:/data \\\n    --name my-node \\\n    joystream/node --base-path /data --chain /data/rome-testnet.json\n\n# check status\ndocker ps\n\n# monitor logs\ndocker logs --tail 100 -f my-node\n```\n","funding_links":[],"categories":["Ecosystem Blockchains"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJoystream%2Fsubstrate-node-joystream","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJoystream%2Fsubstrate-node-joystream","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJoystream%2Fsubstrate-node-joystream/lists"}