https://github.com/zipcodecore/simpleblockchain
a very simple in memory blockchain
https://github.com/zipcodecore/simpleblockchain
Last synced: 2 months ago
JSON representation
a very simple in memory blockchain
- Host: GitHub
- URL: https://github.com/zipcodecore/simpleblockchain
- Owner: ZipCodeCore
- License: mit
- Created: 2021-11-29T14:16:51.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-01T15:31:17.000Z (about 4 years ago)
- Last Synced: 2025-01-08T12:41:23.709Z (12 months ago)
- Language: Java
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SimpleBlockchain
a very simple in memory blockchain
## What's a blockchain?
A _blockchain_ is a straight-forward idea: it is a data structure that is resistant modification and corruption.
It's used in **bitcoin** as mean to handle the tracking of a series of transactions in a way that is transparent to all the people sharing the data structure.
Data Structures are central to almost all computing - things like Queues and Arrays and even Databases are used throughout a system to keep its data ordered and tracked in a reliable manner. It would be pretty terrible if every time a bank's main financial system restarted, you had to type in all the customer's data.