Module Payload_common.Poly

type ('fee, 'public_key, 'token_id, 'nonce, 'global_slot, 'memo) t = {
fee : 'fee;
fee_token : 'token_id;
fee_payer_pk : 'public_key;
nonce : 'nonce;
valid_until : 'global_slot;
memo : 'memo;
}
val t_of_sexp : 'fee 'public_key 'token_id 'nonce 'global_slot 'memo. ( Ppx_sexp_conv_lib.Sexp.t -> 'fee ) -> ( Ppx_sexp_conv_lib.Sexp.t -> 'public_key ) -> ( Ppx_sexp_conv_lib.Sexp.t -> 'token_id ) -> ( Ppx_sexp_conv_lib.Sexp.t -> 'nonce ) -> ( Ppx_sexp_conv_lib.Sexp.t -> 'global_slot ) -> ( Ppx_sexp_conv_lib.Sexp.t -> 'memo ) -> Ppx_sexp_conv_lib.Sexp.t -> ( 'fee, 'public_key, 'token_id, 'nonce, 'global_slot, 'memo ) t
val sexp_of_t : 'fee 'public_key 'token_id 'nonce 'global_slot 'memo. ( 'fee -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'public_key -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'token_id -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'nonce -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'global_slot -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'memo -> Ppx_sexp_conv_lib.Sexp.t ) -> ( 'fee, 'public_key, 'token_id, 'nonce, 'global_slot, 'memo ) t -> Ppx_sexp_conv_lib.Sexp.t
val to_hlist : ( 'fee, 'public_key, 'token_id, 'nonce, 'global_slot, 'memo ) t -> ( unit, 'fee -> 'token_id -> 'public_key -> 'nonce -> 'global_slot -> 'memo -> unit ) H_list.t
val of_hlist : ( unit, 'fee -> 'token_id -> 'public_key -> 'nonce -> 'global_slot -> 'memo -> unit ) H_list.t -> ( 'fee, 'public_key, 'token_id, 'nonce, 'global_slot, 'memo ) t