Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ch6832/blockchain-and-cryptocurrency-simulation
This project simulates a basic blockchain and cryptocurrency system.
https://github.com/ch6832/blockchain-and-cryptocurrency-simulation
blockchain cmake cpp cryptocurrency vcpkg visaul-studio
Last synced: 5 days ago
JSON representation
This project simulates a basic blockchain and cryptocurrency system.
- Host: GitHub
- URL: https://github.com/ch6832/blockchain-and-cryptocurrency-simulation
- Owner: CH6832
- License: gpl-3.0
- Created: 2024-05-31T16:09:13.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-21T13:27:01.000Z (4 months ago)
- Last Synced: 2024-07-21T14:54:20.530Z (4 months ago)
- Topics: blockchain, cmake, cpp, cryptocurrency, vcpkg, visaul-studio
- Language: C++
- Homepage:
- Size: 54.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Blockchain Project
This project is a simplified implementation of a blockchain system with proof of stake (PoS), proof of work (PoW), and basic network capabilities. The project demonstrates how to create a basic blockchain, handle transactions with digital signatures, and synchronize the blockchain across nodes in a network.
## Features
- **Blockchain Management**: Basic blockchain with block validation and transaction management.
- **Transactions**: Support for transactions with digital signatures using RSA encryption.
- **Proof of Work (PoW)**: Mining mechanism to add new blocks.
- **Proof of Stake (PoS)**: Validator selection based on stake.
- **Networking**: Basic network capabilities to connect nodes and broadcast new blocks.## Prerequisites
- **OpenSSL**: For cryptographic functions like RSA encryption and SHA-256 hashing.
- **CMake**: For building the project.
- **Google Test**: For running unit tests.### Installation
1. **Clone the Repository**
```bash
git clone https://github.com/your-username/blockchain-project.git
cd blockchain-project