Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eshan327/javachain
A blockchain developed in Java with relevant cryptographic and transactional functions.
https://github.com/eshan327/javachain
blockchain cryptography java maven
Last synced: 9 days ago
JSON representation
A blockchain developed in Java with relevant cryptographic and transactional functions.
- Host: GitHub
- URL: https://github.com/eshan327/javachain
- Owner: eshan327
- License: mit
- Created: 2024-08-20T03:00:25.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2025-01-05T18:55:19.000Z (12 days ago)
- Last Synced: 2025-01-05T19:33:43.993Z (12 days ago)
- Topics: blockchain, cryptography, java, maven
- Language: Java
- Homepage:
- Size: 129 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## About The Project
I've developed a proof of work implementation of a blockchain, utilizing Java and Maven.
Some key features include, but aren't limited to:
- Securely storing data through a chain of blocks.
- Utilizing cryptographic signatures to reinforce transaction security.
- A mining mechanism to validate and add new blocks.
- Validity checks.
- Wallet functionality with both public and private keys.
- The creation, processing, and transfer of transactions.## Requirements
Make sure you:
1. Have an up-to-date [JDK](https://www.oracle.com/java/technologies/downloads/) (I use JDK 23)
2. Download [Maven](https://maven.apache.org/download.cgi), preferrably the latest version (3.9.9 currently)This project also relies on 2 dependencies: Bouncy Castle for cryptography and Gson for JSON serialization.
Both of these are added through Maven and can be observed in the pom.xml file, as is standard.## Installation
Cloning the repo:
```sh
git clone https://github.com/eshan327/Blockchain.git
cd Blockchain
```
Building the project:
```sh
mvn clean install
```
Running it with Maven:
```sh
mvn exec:java -Dexec.mainClass="com.blockchain.Javachain"
```## License
This project is licensed under the MIT License. See the [LICENSE](https://github.com/eshan327/Blockchain/blob/main/LICENSE) file for details.