You can search for identifiers within the package.
in-package search v0.2.0
bech32
Bech32.Segwit
module type NETWORK = sig ... end
module Btc : NETWORK with type t = [ `Btc ]
module Tbtc : NETWORK with type t = [ `Tbtc ]
module Zil : NETWORK with type t = [ `Zil ]
type 'a t = private {
network : (module NETWORK with type t = 'a);
version : int option;
prog : string;
}
val scriptPubKey : 'a t -> string
val pp : Format.formatter -> _ t -> unit
val create : ?version:int -> (module NETWORK with type t = 'a) -> string -> 'a t
val encode : _ t -> (string, string) result
val encode_exn : _ t -> string
val decode : (module NETWORK with type t = 'a) -> string -> ('a t, string) result
val decode_exn : (module NETWORK with type t = 'a) -> string -> 'a t