Skip to content

wildcatgerry/bitcoin-asm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bitcoin Script Assembler

This is an experimental assembler for Bitcoin Script. It takes a well-formed Script file and outputs the assembled binary as hex-encoded text.

Sample

This command assembles text file script.bcs into text file script.bcb.

bitcoin-asm -i script.bcs -o script.bcb

script.bcs

OP_DUP 
OP_HASH160 
788464014149d93b4a6135f3d665a0a2d743e6c3 
OP_EQUALVERIFY 
OP_CHECKSIG

script.bcb

76A9788464014149D93B4A6135F3D665A0A2D743E6C388AC

USAGE:
  bitcoin-asm [global options]

GLOBAL OPTIONS:
   -h, --help                         show the help message
   -i, --input <input>                set the input Bitcoin Script file.
   -o, --output <output>(optional)    sets the output file. Default: out.bcb
   -v, --version                      show the version message

About

An experimental Bitcoin Script assembler

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages