{"id":22915062,"url":"https://github.com/stratisproject/stratisfullnode","last_synced_at":"2025-05-12T13:45:10.249Z","repository":{"id":37090990,"uuid":"288459318","full_name":"stratisproject/StratisFullNode","owner":"stratisproject","description":null,"archived":false,"fork":false,"pushed_at":"2024-04-08T10:18:43.000Z","size":123414,"stargazers_count":97,"open_issues_count":46,"forks_count":67,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-03-31T22:41:26.764Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C#","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/stratisproject.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}},"created_at":"2020-08-18T13:10:18.000Z","updated_at":"2025-03-22T17:59:20.000Z","dependencies_parsed_at":"2023-10-04T15:19:24.609Z","dependency_job_id":"35fb6169-5015-4785-9dd4-3556838fc9cb","html_url":"https://github.com/stratisproject/StratisFullNode","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stratisproject%2FStratisFullNode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stratisproject%2FStratisFullNode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stratisproject%2FStratisFullNode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stratisproject%2FStratisFullNode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stratisproject","download_url":"https://codeload.github.com/stratisproject/StratisFullNode/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253749880,"owners_count":21958205,"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-14T05:18:33.967Z","updated_at":"2025-05-12T13:45:10.221Z","avatar_url":"https://github.com/stratisproject.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"| CirrusMain Nightly | \n| :---- | \n| [![Build status](https://dev.azure.com/stratisproject/StratisFullNode/_apis/build/status/CirrusMain%20IBD)](https://dev.azure.com/stratisproject/StratisFullNode/_build/latest?definitionId=67)\n\nStratis (STRAX) Full Node \n===============\n\nBitcoin Implementation in C#\n----------------------------\n\nStratis is an implementation of the Bitcoin protocol in C# on the [.NET Core](https://dotnet.github.io/) platform.  \nThe node can run on the Bitcoin and Stratis networks.  \nStratis Bitcoin is based on the [NBitcoin](https://github.com/MetacoSA/NBitcoin) project.  \n\nFor Proof of Stake support on the Stratis token the node is using [NStratis](https://github.com/stratisproject/NStratis) which is a POS implementation of NBitcoin.  \n\n[.NET Core](https://dotnet.github.io/) is an open source cross platform framework and enables the development of applications and services on Windows, macOS and Linux.  \n\nJoin our community on [discord](https://discord.gg/9tDyfZs).  \n\nThe design\n----------\n\n**A Modular Approach**\n\nA Blockchain is made of many components, from a FullNode that validates blocks to a Simple Wallet that track addresses.\nThe end goal is to develop a set of [Nuget](https://en.wikipedia.org/wiki/NuGet) packages from which an implementer can cherry pick what he needs.\n\n* **NBitcoin**\n* **Stratis.Bitcoin.Core**  - The bare minimum to run a pruned node.\n* **Stratis.Bitcoin.Store** - Store and relay blocks to peers.\n* **Stratis.Bitcoin.MemoryPool** - Track pending transaction.\n* **Stratis.Bitcoin.Wallet** - Send and Receive coins\n* **Stratis.Bitcoin.Miner** - POS or POW\n* **Stratis.Bitcoin.Explorer**\n\n\nCreate a Blockchain in a .NET Core style programming\n```\n  var node = new FullNodeBuilder()\n   .UseNodeSettings(nodeSettings)\n   .UseConsensus()\n   .UseBlockStore()\n   .UseMempool()\n   .AddMining()\n   .AddRPC()\n   .Build();\n\n  node.Run();\n```\n\nWhat's Next\n----------\n\nWe plan to add many more features on top of the Stratis Bitcoin blockchain:\nSidechains, Private/Permissioned blockchain, Compiled Smart Contracts, NTumbleBit/Breeze wallet and more...\n\nRunning a FullNode\n------------------\n\nThe master branch is actively developed and regularly committed to, and it can become unstable.  \nTo compile a stable (production) release use any of the release tags form version 3.0.x.x and upwards.  \n\n```\ngit clone https://github.com/stratisproject/StratisFullNode.git  \ncd StratisFullNode\\src\n\ndotnet build\n\n```\n\nTo run on the StraxTest network:\n```\ncd Stratis.StraxD\ndotnet run -testnet\n```  \n\nDevelopment\n-----------\nUp for some blockchain development?\n\nCheck this guides for more info:\n* [Contributing Guide](Documentation/contributing.md)\n* [Coding Style](Documentation/coding-style.md)\n\nThere is a lot to do and we welcome contributers developers and testers who want to get some Blockchain experience.\nYou can find tasks at the issues/projects or visit the dev_general channel on [discord](https://discord.gg/9tDyfZs).\n\nTesting\n-------\n* [Testing Guidelines](Documentation/testing-guidelines.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstratisproject%2Fstratisfullnode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstratisproject%2Fstratisfullnode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstratisproject%2Fstratisfullnode/lists"}