Module Values.GetTransactionInputSource

Gets the details of a transaction. This action will return transaction details for all transactions that are confirmed on the blockchain, even if they have not reached finality.

Sourcetype nonrec t = {
  1. transactionHash : QueryTransactionHash.t option;
    (*

    The hash of a transaction. It is generated when a transaction is created.

    *)
  2. transactionId : QueryTransactionId.t option;
    (*

    The identifier of a Bitcoin transaction. It is generated when a transaction is created. transactionId is only supported on the Bitcoin networks.

    *)
  3. network : QueryNetwork.t;
    (*

    The blockchain network where the transaction occurred.

    *)
}
Sourceval context_ : string
Sourceval make : ?transactionHash:??? -> ?transactionId:??? -> network:QueryNetwork.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of QueryTransactionHash.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t