https://github.com/islishude/bitcoin-workshop
Build bitcoin applications using golang
https://github.com/islishude/bitcoin-workshop
bitcoin example golang
Last synced: 7 months ago
JSON representation
Build bitcoin applications using golang
- Host: GitHub
- URL: https://github.com/islishude/bitcoin-workshop
- Owner: islishude
- Created: 2025-01-11T05:46:28.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-07T10:59:34.000Z (11 months ago)
- Last Synced: 2025-03-07T11:35:17.769Z (11 months ago)
- Topics: bitcoin, example, golang
- Language: Go
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bitcoin workshop
## golang snippets
- [keygen](./example/keygen.go)
- [merkle proof(SPV)](./example/merkle.go)
- [pay to pubkey hash](./example/p2pkh.go)
- [pay to script](./example/p2sh.go)
- [pay to witness pubkey hash](./example/p2wpkh.go)
- [pay to witness script hash](./example/p2wsh.go)
- [pay to taproot using key path](./example/p2trkey.go)
- [pay to taproot using script path](./example/p2trpath.go)
- [musig2](./example/musig2.go)
- [replace by fee](./example/rbf.go)
- [rpc client](./example/rpc.go)
## regtest
```
docker compose up -d
```