bitcoin-hs-0.0.1: Partial implementation of the Bitcoin protocol (as of 2013)

Safe HaskellNone
LanguageHaskell98

Bitcoin.Script.Serialize

Contents

Description

Parsing and serializing Bitcoin scripts

Synopsis

Documentation

getMany :: Binary a => Get [a] Source #

The default Binry instance for lists (naturally) encodes the length of the list at the start, so we need this...

putMany :: Binary a => [a] -> Put Source #

Orphan instances