Module User_command_info.Partial

type t = {
kind : Kind.t;
fee_payer : [ `Pk of string ];
source : [ `Pk of string ];
receiver : [ `Pk of string ];
fee_token : [ `Token_id of string ];
token : [ `Token_id of string ];
fee : Unsigned_extended.UInt64.t;
amount : Unsigned_extended.UInt64.t option;
valid_until : Unsigned_extended.UInt32.t option;
memo : string option;
}
val to_yojson : t -> Yojson.Safe.t
val _ : t -> Yojson.Safe.t
val t_of_sexp : Ppx_sexp_conv_lib.Sexp.t -> t
val sexp_of_t : t -> Ppx_sexp_conv_lib.Sexp.t
val compare : t -> t -> int
val equal : t -> t -> bool
module Reason = Errors.Partial_reason
val to_user_command_payload : t -> nonce:Unsigned_extended.UInt32.t -> ( Signed_command.Payload.t, Errors.t ) Core_kernel.Result.t