Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bitcoinschema/go-bpu
Transform Bitcoin Transactions into Virtual Procedure Call Units
https://github.com/bitcoinschema/go-bpu
bitcoin bitcoin-tx bpu go golang
Last synced: 5 days ago
JSON representation
Transform Bitcoin Transactions into Virtual Procedure Call Units
- Host: GitHub
- URL: https://github.com/bitcoinschema/go-bpu
- Owner: BitcoinSchema
- License: mit
- Created: 2023-01-09T17:05:10.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2024-11-01T10:26:55.000Z (18 days ago)
- Last Synced: 2024-11-01T11:23:36.942Z (18 days ago)
- Topics: bitcoin, bitcoin-tx, bpu, go, golang
- Language: Go
- Homepage:
- Size: 845 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# go-bpu
> Transform Bitcoin Transactions into Virtual Procedure Call Units (Bitcoin Processing Unit)
![bpu](./bpu.png)
[![Release](https://img.shields.io/github/release-pre/BitcoinSchema/go-bpu.svg?logo=github&style=flat&v=2)](https://github.com/BitcoinSchema/go-bpu/releases)
[![Build Status](https://img.shields.io/github/actions/workflow/status/BitcoinSchema/go-bpu/run-tests.yml?branch=master&logo=github&v=2)](https://github.com/BitcoinSchema/go-bpu/actions)
[![Go](https://img.shields.io/github/go-mod/go-version/BitcoinSchema/go-bpu?v=2)](https://golang.org/)
[![Mergify Status](https://img.shields.io/endpoint.svg?url=https://api.mergify.com/v1/badges/BitcoinSchema/go-bpu&style=flat&v=2)](https://mergify.io)
[![Sponsor](https://img.shields.io/badge/sponsor-BitcoinSchema-181717.svg?logo=github&style=flat&v=2)](https://github.com/sponsors/BitcoinSchema)
[![Donate](https://img.shields.io/badge/donate-bitcoin-ff9900.svg?logo=bitcoin&style=flat&v=2)](https://gobitcoinsv.com/#sponsor?utm_source=github&utm_medium=sponsor-link&utm_campaign=go-bpu&utm_term=go-bpu&utm_content=go-bpu)
Transforms raw transactions to BOB format. Port from the original [bpu](https://github.com/interplanaria/bpu) library by [unwriter](https://github.com/unwriter)
Since this is intended to be used by low level transaction parsers dependencies are kept to a bare minimum. It does not include the RPC client functionality that connects to a node to get a raw tx. It's designed to be a fast raw tx to BOB processor.
There is also a [Typescript version](https://github.con/rohenaz/bpu-ts) which does include the originally RPC functionality.
## Installation
**go-bpu** requires a [supported release of Go](https://golang.org/doc/devel/release.html#policy).
```shell script
go get -u github.com/bitcoinschema/go-bpu
```
## Documentation
View the generated [documentation](https://pkg.go.dev/github.com/bitcoinschema/go-bpu)
[![GoDoc](https://godoc.org/github.com/bitcoinschema/go-bpu/?status.svg&style=flat)](https://pkg.go.dev/github.com/bitcoinschema/go-bpu)
## Usage
### Split Config
```go
var separator = "|"
var l = bpu.IncludeL
var opReturn = uint8(106)
var opFalse = uint8(0)var splitConfig = []SplitConfig{
{
Token: &Token{
Op: &opReturn,
},
Include: &l,
},
{
Token: &Token{
Op: &opFalse,
},
Include: &l,
},
{
Token: &Token{
S: &separator,
},
Require: &opFalse,
},
}bpuTx, err := Parse(ParseConfig{RawTxHex: &sampleTx, SplitConfig: splitConfig, Mode: *bpu.Shallow})
if err != nil {
fmt.Println(err)
}
```### Transaction Source
You can either use SplitConfig.RawTxHex and set by hex string, or use SplitConfig.Tx to set by bt.Tx.
### Transform Function
You can pass an optional Transform function to bpu.Parse. Function should look something like this:
```go
var splitTransform Transform = func(o Cell, c string) (to *Cell, e error) {
// if the buffer is larger than 512 bytes,
// replace the key with "l" prepended attribute
to = &o
bytes, err := hex.DecodeString(c)
if err != nil {
return nil, err
}
if len(bytes) > 512 {
to.LS = to.S
to.LB = to.B
to.S = nil
to.B = nil
}
return to, nil
}
```
## More Usage details
See the [Typescript library](https://github.com/rohenaz/bpu-ts) README for more examples of split configuration options, transformation, and a look at the output.
## Errata
The original BPU library used bsv (javascript) v1.5 to determine if a script chunk was a valid opcode. At the time, the bsv library supported a limited number of OP codes (inherited from limitations imposed by Bitcoin core). In this version all opcodes are recognized which surfaces a new issue where fields previously available would be missing if the data is now recognized as an opcode.
Previously, BPU would omit the op and ops fields for non opcode data, while recognized opcodes would omit the s, b and h fields. To solve the issue of missing fields that happen to be opcodes, all keys are included if the recognized pushdata is also in the Printable ASCII range.
## Contributing
View the [contributing guidelines](.github/CONTRIBUTING.md) and follow the [code of conduct](.github/CODE_OF_CONDUCT.md).
### How can I help?
All kinds of contributions are welcome :raised_hands:!
The most basic way to show your support is to star :star2: the project, or to raise issues :speech_balloon:.
You can also support this project by [becoming a sponsor on GitHub](https://github.com/sponsors/BitcoinSchema) :clap:
or by making a [**bitcoin donation**](https://gobitcoinsv.com/#sponsor?utm_source=github&utm_medium=sponsor-link&utm_campaign=go-bpu&utm_term=go-bpu&utm_content=go-bpu) to ensure this journey continues indefinitely! :rocket:[![Stars](https://img.shields.io/github/stars/BitcoinSchema/go-bpu?label=Please%20like%20us&style=social)](https://github.com/BitcoinSchema/go-bpu/stargazers)
## License
[![License](https://img.shields.io/github/license/BitcoinSchema/go-bpu.svg?style=flat&v=2)](LICENSE)