https://github.com/tdiprima/blockchain-blueprint
Testing blockchain
https://github.com/tdiprima/blockchain-blueprint
blockchain
Last synced: 8 months ago
JSON representation
Testing blockchain
- Host: GitHub
- URL: https://github.com/tdiprima/blockchain-blueprint
- Owner: tdiprima
- License: mit
- Created: 2024-08-07T15:51:51.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-03T14:30:55.000Z (8 months ago)
- Last Synced: 2025-02-03T15:32:54.891Z (8 months ago)
- Topics: blockchain
- Language: JavaScript
- Homepage:
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blockchain
A blockchain is a decentralized and distributed digital ledger technology that securely records transactions across multiple computers. It is designed to ensure transparency, security, and immutability of data. Each block in the blockchain contains a list of transactions and is linked to the previous block through a cryptographic hash, forming a chain. This structure ensures that once a block is added, it cannot be altered without altering all subsequent blocks, making the blockchain tamper-resistant. Blockchains are used in various applications, including cryptocurrencies like Bitcoin, supply chain management, and smart contracts, to facilitate secure and transparent record-keeping.
— *ChatGPT*
## Bun
To install dependencies:
```sh
bun install
```To run:
```sh
bun run index.js
```To test:
```sh
bun test
```This project was created using `bun init` in bun v1.1.9. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.