https://github.com/pyropy/bitstream-go
Atomic file swaps over BTC Lightning network.
https://github.com/pyropy/bitstream-go
Last synced: 11 months ago
JSON representation
Atomic file swaps over BTC Lightning network.
- Host: GitHub
- URL: https://github.com/pyropy/bitstream-go
- Owner: pyropy
- License: mit
- Created: 2023-12-04T19:17:41.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-20T08:17:38.000Z (about 2 years ago)
- Last Synced: 2024-06-21T04:56:42.362Z (almost 2 years ago)
- Language: Go
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Bitstream Go
Implementation of [bitstream protocol](https://robinlinus.com/bitstream.pdf) in Go.
# Example usage
You can find an example of how to use this library in the [example](example) directory.
# Deviations from the original protocol
- Original protocol uses CompactInt to encode integers, and this implementation uses LittleEndian.
- Original protocol signs encrypted root + payment hash using Schnorr signature, and this implementation signs encrypted root only.