ligo/src/proto/alpha/contract_repr.mli

47 lines
1.6 KiB
OCaml
Raw Normal View History

2016-09-08 21:13:10 +04:00
(**************************************************************************)
(* *)
(* Copyright (c) 2014 - 2016. *)
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
open Tezos_hash
type t = private
| Default of Ed25519.Public_key_hash.t
| Originated of Contract_hash.t
2016-09-08 21:13:10 +04:00
type contract = t
include Compare.S with type t := contract
val default_contract : Ed25519.Public_key_hash.t -> contract
2016-09-08 21:13:10 +04:00
val is_default : contract -> Ed25519.Public_key_hash.t option
2016-09-08 21:13:10 +04:00
type origination_nonce
val originated_contract : origination_nonce -> contract
val originated_contracts : origination_nonce -> contract list
val initial_origination_nonce : Operation_hash.t -> origination_nonce
val incr_origination_nonce : origination_nonce -> origination_nonce
2016-09-08 21:13:10 +04:00
(** {2 Human readable notation} ***********************************************)
type error += Invalid_contract_notation of string
val to_b58check: contract -> string
2016-09-08 21:13:10 +04:00
val of_b58check: string -> contract tzresult
2016-09-08 21:13:10 +04:00
(** {2 Serializers} ***********************************************************)
val encoding : contract Data_encoding.t
val origination_nonce_encoding : origination_nonce Data_encoding.t
2016-09-08 21:13:10 +04:00
val arg : contract RPC.Arg.arg