This repository implements Multihash in Swift.
This library is built with the consideration of keeping it easy to include in your projects.
The Multihash.swift
package can be easily imported into your project using the swift package manager
.
dependencies: [
.package(url: "https://github.com/yeeth/Multihash.swift.git", from: "1.0.0"),
],
targets: [
.target(name: "MyTarget", dependencies: ["Multihash"]),
]
let hash = Multihash(base58: "5drNu81uhrFLRiS4bxWgAkpydaLUPW")!
hash.code
hash.digest
- Dean Eigenmann - decanus
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details