Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/fanquake/swiftlibconsensus

Swift wrapper for libbitcoinconsensus
https://github.com/fanquake/swiftlibconsensus

bitcoin swift

Last synced: 3 months ago
JSON representation

Swift wrapper for libbitcoinconsensus

Awesome Lists containing this project

README

        

# swiftLibconsensus

Swift wrapper around [`libbitcoinconsensus`](https://github.com/bitcoin/bitcoin/blob/master/doc/shared-libraries.md).

Make and install `libbitcoinconsensus`:
```shell
pushd bitcoin
./autogen.sh
./configure --with-libs=yes --with-gui=no --with-daemon=no --with-utils=no --disable-tests --disable-bench
make -j6
make install
```

Inside your projects `Package.swift`:
```swift
dependencies: [
.package(url: "https://github.com/fanquake/swiftLibconsensus", .branch("master"))
],
```