package bitcoinml

  1. Overview
  2. Docs
Bitcoin data-structures library for OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

0.4.1.zip
md5=bc06a6aaa41e1c443d8c5179241e4eb7
sha512=4f9004cb956117566c4643f6a64ffa03f0469866df6fd77f50316b4a42b50ff3be0a866cdfe20fdd4ae733d056dab18948aabe2187e9695aee46cd3981902e45

doc/bitcoinml/Bitcoinml/Block/index.html

Module Bitcoinml.Block

module Header : sig ... end

Block header parsing / serialization module

type t = {
  1. header : Header.t;
  2. txs : Tx.t list;
  3. size : int;
}
val parse : string -> t option

Parse a block

val parse_legacy : string -> t option

Parse a legacy block

val serialize : t -> string

Serialize a block

OCaml

Innovation. Community. Security.