Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/fanquake/swiftlibconsensus
- Owner: fanquake
- Created: 2019-01-02T09:20:15.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-08T05:42:00.000Z (almost 6 years ago)
- Last Synced: 2024-06-12T02:48:24.887Z (7 months ago)
- Topics: bitcoin, swift
- Language: Swift
- Homepage:
- Size: 10.7 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"))
],
```