Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dpedwards/dotnet-core-blockchain
.NET Core Blockchain with cryptography process of creating and chaining blocks, network & mining etc.
https://github.com/dpedwards/dotnet-core-blockchain
Last synced: 3 months ago
JSON representation
.NET Core Blockchain with cryptography process of creating and chaining blocks, network & mining etc.
- Host: GitHub
- URL: https://github.com/dpedwards/dotnet-core-blockchain
- Owner: dpedwards
- License: mit
- Created: 2019-02-07T23:48:00.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-18T00:05:45.000Z (about 1 year ago)
- Last Synced: 2024-07-19T11:14:06.056Z (4 months ago)
- Language: C#
- Homepage:
- Size: 4.67 MB
- Stars: 14
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-dotnet - dotnet-core-blockchain - .NET Core Blockchain with cryptography process of creating and chaining blocks, network & mining etc. (Libraries, Frameworks and Tools / Blockchain)
README
# [Blockchain](https://github.com/dpedwards/dotnet-core-blockchain)
[![LICENSE](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://raw.githubusercontent.com/dpedwards/dotnet-core-blockchain/master/LICENSE)
[![.NET Core](https://img.shields.io/badge/dotnet%20core-%3E%3D%202.2-blue.svg)](https://dotnet.microsoft.com/download)A blockchain is a growing list of records, called blocks. The blocks are linked using cryptography and each block contains a cryptographic hash of the previous block, transaction data, and a timestamp.
## Notable features
- cryptography
- process of creating blocks
- process of chaining blocks
- network & mining
- etc.## Note
- Blockchain is listening on port :43210
- Fixed blockchain public key for easy testing: 1EDvdbQVNEtEvSsUpwunpjbGoZa3SCnkUu
- Fixed blockchain private key for easy testing: KwdUArshaG5LjrY5bji5oJMLvWfwfxkdJAHNYXhf8A49AS89Csi3## Pictures
Mine:
![](BlockChain/images/Blockchain%20Frontend_Mine.png)Add Node:
![](BlockChain/images/Blockchain%20Frontend_Configure.png)Blockchain Overview:
![](BlockChain/images/Blockchain%20Frontend_CoinBase.png)## Usage
Read the full instructions to use the BlockChain: https://github.com/dpedwards/dotnet-core-blockchain-payment-solution
---
### Pull Requests
When submitting a pull request:
1. Clone the repo.
2. Create a branch off of `master` and give it a meaningful name (e.g. `my-awesome-new-feature`).
3. Open a pull request on GitHub and describe the feature or fix.project documentation and demo pages can be found in the [`/docs`](docs) if submitting improvements, typo corrections, etc.
---
## Credits
### Creator
**Davain Pablo Edwards**
-
### Requirements
- [Visual Studio](https://visualstudio.microsoft.com/de/vs/)
### Packages:
- [Microsoft.NETCore.App](https://dotnet.microsoft.com/)
- [NBitcoin](https://github.com/MetacoSA/NBitcoin)
- [Newtonsoft.Json](https://www.newtonsoft.com/json)---
## License
MIT License
Copyright (c) 2020 Davain Pablo Edwards
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.