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

https://github.com/prettymuchbryce/scriptcodes

All Bitcoin Script opcodes. For use in your bitcoin-related go projects.
https://github.com/prettymuchbryce/scriptcodes

Last synced: over 1 year ago
JSON representation

All Bitcoin Script opcodes. For use in your bitcoin-related go projects.

Awesome Lists containing this project

README

          

#### Bitcoin Script Opcodes

All Bitcoin Script opcodes. For use in your bitcoin-related go projects.

Taken from the [Bitcoin Wiki](https://en.bitcoin.it/wiki/Script)

Install:
```
go get github.com/prettymuchbryce/scriptcodes
```

Usage:
```
package main

import (
"fmt"
"scriptcodes"
)

func main() {
fmt.Println(scriptcodes.OP_VERIFY)
}
```

Enjoy!