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 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