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.
- Host: GitHub
- URL: https://github.com/prettymuchbryce/scriptcodes
- Owner: prettymuchbryce
- License: mit
- Created: 2015-06-21T18:34:07.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-06-21T18:53:44.000Z (about 11 years ago)
- Last Synced: 2025-03-17T16:55:47.753Z (over 1 year ago)
- Language: Go
- Size: 129 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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!