Module Legacy.Coding

See https://github.com/CodaProtocol/coda/blob/develop/rfcs/0038-rosetta-construction-api.md for details on schema

val serialize : string_of_field:( 'a -> string ) -> to_bool:( 'b -> bool ) -> of_bool:( bool -> 'c ) -> ( 'd, 'e ) t -> string

Serialize a random oracle input with 32byte fields into bytes according to the RFC0038 specification

module Parser : sig ... end
val bits_of_byte : of_bool:( bool -> 'a ) -> Core_kernel.Char.t -> 'b list
val deserialize : field_of_string: ( string -> ( 'a, [> `Expected_eof | `Unexpected_eof ] as 'b ) Core_kernel.Result.t ) -> of_bool:( bool -> 'c ) -> char list -> ( ( 'd, 'e ) t, 'f ) Parser.M.t

Deserialize bytes into a random oracle input with 32byte fields according to the RFC0038 specification

val string_of_field : bool list -> string

String of field as bits

val field_of_string : string -> size_in_bits:int -> ( bool list, 'a ) Core_kernel.Result.t

Field of string as bits