An open API service indexing awesome lists of open source software.

https://github.com/devxoul/blockchain

A blockchain simulator written in Swift
https://github.com/devxoul/blockchain

blockchain swift

Last synced: over 1 year ago
JSON representation

A blockchain simulator written in Swift

Awesome Lists containing this project

README

          

# Blockchain

A blockchain simulator written in Swift. It simulates full nodes in a virtual network. The nodes mine blocks for about every 10 seconds and verify randomly created transactions.

⚠️ This project is not an actual blockchain implementation. I am very new to the blockchain and the purpose of this repository is to share what I've learned. Note that there might be a lot of wrong implementations.

## Getting Started

```console
$ git clone https://github.com/devxoul/Blockchain.git
$ cd Blockchain
$ swift run
```

Then you'll see:

```
Run server: Blockchain.Node on address 1.1.1.1
Run server: Blockchain.Node on address 2.2.2.2
Run server: Blockchain.Node on address 3.3.3.3
[Node@2.2.2.2] Connect node 1.1.1.1
[Node@3.3.3.3] Connect node 1.1.1.1
[Node@1.1.1.1] Connect node 2.2.2.2
[Node@3.3.3.3] Connect node 2.2.2.2
[Node@2.2.2.2] Connect node 3.3.3.3
[Node@1.1.1.1] Connect node 3.3.3.3
[Node@2.2.2.2] Create transaction: ed99e0099751256d>
[Node@1.1.1.1] Create transaction: ed99e0099751256d>
[Node@3.3.3.3] Create transaction: ed99e0099751256d>
[Node@3.3.3.3] Create transaction: 715e3b2f5d0dea50>
[Node@1.1.1.1] Create transaction: 715e3b2f5d0dea50>
[Node@2.2.2.2] Create transaction: 715e3b2f5d0dea50>
[Node@3.3.3.3] Submit block:
[Node@2.2.2.2] Submit block:
[Node@1.1.1.1] Submit block:
[Node@1.1.1.1] Submit block:
[Node@1.1.1.1] Create transaction: e341e6db66aff49d>
[Node@2.2.2.2] Create transaction: e341e6db66aff49d>
[Node@3.3.3.3] Create transaction: e341e6db66aff49d>
[Node@3.3.3.3] Submit block:
[Node@2.2.2.2] Submit block:
[Node@1.1.1.1] Submit block:
[Node@1.1.1.1] Submit block:
```

## Development

```console
$ swift package generate-xcodeproj
```

## License

Blockchain is under MIT license. See the [LICENSE](LICENSE) file for more info.