Rosetta_models.Transaction
type t = {
transaction_identifier : Transaction_identifier.t; |
operations : Operation.t list; |
related_transactions : Related_transaction.t list; |
metadata : Yojson.Safe.t option; |
}
val to_yojson : t -> Yojson.Safe.t
val of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or
val _ : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or
val pp :
Ppx_deriving_runtime.Format.formatter ->
t ->
Ppx_deriving_runtime.unit
val show : t -> Ppx_deriving_runtime.string
val create : Transaction_identifier.t -> Operation.t list -> t
Transactions contain an array of Operations that are attributable to the same TransactionIdentifier.