All Projects → shu223 → Blockchainswift

shu223 / Blockchainswift

Licence: mit
A simple Blockchain with Swift

Programming Languages

swift
15916 projects

BlockchainSwift

A simple Blockchain with Swift.

License Twitter

What is this?

This is an implementation of Blockchain with Swift based on this great article:

Learn Blockchains by Building One – Hacker Noon

How to build

  • Open BlockchainSwift.xcodeproj with Xcode
  • Build and Run!

What is interesting?

Just seeing the sample app is NOT fun at all. Trying to implement by yourself according to the reference articles would be fun :)

The implementation is quite simple, less than 200 lines.

For example, Here is the Block:

struct Block: Codable {
    let index: Int
    let timestamp: Double
    let transactions: [Transaction]
    let proof: Int
    let previousHash: Data

    // Hashes a Block
    func hash() -> Data {
        let encoder = JSONEncoder()
        let data = try! encoder.encode(self)
        return data.sha256()
    }
}

Here are the articles:

日本語版(Python):

日本語版(Swift):

*The "Consensus" part is available in the feature/consensus branch.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].