{"id":24649168,"url":"https://github.com/rnbguy/polkadot-sdk-minimal","last_synced_at":"2026-05-16T21:35:38.175Z","repository":{"id":272970395,"uuid":"918332193","full_name":"rnbguy/polkadot-sdk-minimal","owner":"rnbguy","description":null,"archived":false,"fork":false,"pushed_at":"2025-01-17T18:06:31.000Z","size":125,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-05-04T21:48:34.205Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"unlicense","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rnbguy.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":"2025-01-17T17:58:39.000Z","updated_at":"2025-01-17T17:58:43.000Z","dependencies_parsed_at":"2025-01-17T19:37:47.361Z","dependency_job_id":null,"html_url":"https://github.com/rnbguy/polkadot-sdk-minimal","commit_stats":null,"previous_names":["rnbguy/polkadot-sdk-minimal"],"tags_count":0,"template":false,"template_full_name":"paritytech/polkadot-sdk-minimal-template","purl":"pkg:github/rnbguy/polkadot-sdk-minimal","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rnbguy%2Fpolkadot-sdk-minimal","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rnbguy%2Fpolkadot-sdk-minimal/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rnbguy%2Fpolkadot-sdk-minimal/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rnbguy%2Fpolkadot-sdk-minimal/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rnbguy","download_url":"https://codeload.github.com/rnbguy/polkadot-sdk-minimal/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rnbguy%2Fpolkadot-sdk-minimal/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33119611,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-16T18:38:32.183Z","status":"ssl_error","status_checked_at":"2026-05-16T18:38:29.903Z","response_time":115,"last_error":"SSL_read: 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":[],"created_at":"2025-01-25T17:16:08.958Z","updated_at":"2026-05-16T21:35:38.162Z","avatar_url":"https://github.com/rnbguy.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\n# Polkadot SDK's Minimal Template\n\n\u003cimg height=\"70px\" alt=\"Polkadot SDK Logo\" src=\"https://github.com/paritytech/polkadot-sdk/raw/master/docs/images/Polkadot_Logo_Horizontal_Pink_White.png#gh-dark-mode-only\"/\u003e\n\u003cimg height=\"70px\" alt=\"Polkadot SDK Logo\" src=\"https://github.com/paritytech/polkadot-sdk/raw/master/docs/images/Polkadot_Logo_Horizontal_Pink_Black.png#gh-light-mode-only\"/\u003e\n\n\u003e This is a minimal template for creating a blockchain based on Polkadot SDK.\n\u003e\n\u003e This template is automatically updated after releases in the main [Polkadot SDK monorepo](https://github.com/paritytech/polkadot-sdk).\n\n\u003c/div\u003e\n\n* 🤏 This template is a minimal (in terms of complexity and the number of components)\ntemplate for building a blockchain node.\n\n* 🔧 Its runtime is configured with a single custom pallet as a starting point, and a handful of ready-made pallets\nsuch as a [Balances pallet](https://paritytech.github.io/polkadot-sdk/master/pallet_balances/index.html).\n\n* 👤 The template has no consensus configured - it is best for experimenting with a single node network.\n\n## Template Structure\n\nA Polkadot SDK based project such as this one consists of:\n\n* 💿 a [Node](./node/README.md) - the binary application.\n* 🧮 the [Runtime](./runtime/README.md) - the core logic of the blockchain.\n* 🎨 the [Pallets](./pallets/README.md) - from which the runtime is constructed.\n\n## Getting Started\n\n* 🦀 The template is using the Rust language.\n\n* 👉 Check the\n[Rust installation instructions](https://www.rust-lang.org/tools/install) for your system.\n\n* 🛠️ Depending on your operating system and Rust version, there might be additional\npackages required to compile this template - please take note of the Rust compiler output.\n\n### Build\n\n🔨 Use the following command to build the node without launching it:\n\n```sh\ncargo build --release\n```\n\n🐳 Alternatively, build the docker image:\n\n```sh\ndocker build . -t polkadot-sdk-minimal-template\n```\n\n### Single-Node Development Chain\n\n👤 The following command starts a single-node development chain:\n\n```sh\n./target/release/minimal-template-node --dev\n\n# docker version:\ndocker run --rm polkadot-sdk-minimal-template --dev\n```\n\nDevelopment chains:\n\n* 🧹 Do not persist the state.\n* 💰 Are pre-configured with a genesis state that includes several pre-funded development accounts.\n* 🧑‍⚖️ One development account (`ALICE`) is used as `sudo` accounts.\n\n### Connect with the Polkadot-JS Apps Front-End\n\n* 🌐 You can interact with your local node using the\nhosted version of the [Polkadot/Substrate\nPortal](https://polkadot.js.org/apps/#/explorer?rpc=ws://localhost:9944).\n\n* 🪐 A hosted version is also\navailable on [IPFS](https://dotapps.io/).\n\n* 🧑‍🔧 You can also find the source code and instructions for hosting your own instance in the\n[`polkadot-js/apps`](https://github.com/polkadot-js/apps) repository.\n\n## Contributing\n\n* 🔄 This template is automatically updated after releases in the main [Polkadot SDK monorepo](https://github.com/paritytech/polkadot-sdk).\n\n* ➡️ Any pull requests should be directed to this [source](https://github.com/paritytech/polkadot-sdk/tree/master/templates/minimal).\n\n* 😇 Please refer to the monorepo's\n[contribution guidelines](https://github.com/paritytech/polkadot-sdk/blob/master/docs/contributor/CONTRIBUTING.md) and\n[Code of Conduct](https://github.com/paritytech/polkadot-sdk/blob/master/docs/contributor/CODE_OF_CONDUCT.md).\n\n## Getting Help\n\n* 🧑‍🏫 To learn about Polkadot in general, [Polkadot.network](https://polkadot.network/) website is a good starting point.\n\n* 🧑‍🔧 For technical introduction, [here](https://github.com/paritytech/polkadot-sdk#-documentation) are\nthe Polkadot SDK documentation resources.\n\n* 👥 Additionally, there are [GitHub issues](https://github.com/paritytech/polkadot-sdk/issues) and\n[Substrate StackExchange](https://substrate.stackexchange.com/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frnbguy%2Fpolkadot-sdk-minimal","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frnbguy%2Fpolkadot-sdk-minimal","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frnbguy%2Fpolkadot-sdk-minimal/lists"}