174ea10d6d
Now a tez cent is 10_000L. All constants are now in the Constants_repr module and expressed as multiples of one_cent. Add new function Qty_repr.mul_exn to multiply `tez` by `int` eg. `10 tez = Tez_repr.(mul_exn one 10)` `10 cents = Tez_repr.(mul_exn one_cents 10)` Remove `Tez.{to,of}_cents` and replace them with `Tez.{to,of}_mutez`.
202 lines
5.6 KiB
OCaml
202 lines
5.6 KiB
OCaml
(**************************************************************************)
|
|
(* *)
|
|
(* Copyright (c) 2014 - 2017. *)
|
|
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
(* *)
|
|
(* All rights reserved. No warranty, explicit or implicit, provided. *)
|
|
(* *)
|
|
(**************************************************************************)
|
|
|
|
module Ed25519 = Environment.Ed25519
|
|
|
|
val init :
|
|
?sandbox:string ->
|
|
?rpc_port:int ->
|
|
unit -> (int * Block_hash.t) tzresult Lwt.t
|
|
(** [init ()] sets up the test environment, and return the PID of
|
|
forked Tezos node and the block info of the block from where the
|
|
tests will begin. *)
|
|
|
|
val level : Client_proto_rpcs.block -> Tezos_context.Level.t tzresult Lwt.t
|
|
|
|
module Account : sig
|
|
|
|
type t = {
|
|
alias : string ;
|
|
sk : Ed25519.Secret_key.t ;
|
|
pk : Ed25519.Public_key.t ;
|
|
pkh : Ed25519.Public_key_hash.t ;
|
|
contract : Contract.t ;
|
|
}
|
|
|
|
val encoding : t Data_encoding.t
|
|
val pp_account : Format.formatter -> t -> unit
|
|
val create : ?keys:(secret_key * public_key) -> string -> t
|
|
(** [create ?keys alias] is an account with alias [alias]. If
|
|
[?keys] is [None], a pair of keys will be minted. *)
|
|
|
|
type destination = {
|
|
alias : string ;
|
|
contract : Contract.t ;
|
|
pk : public_key ;
|
|
pkh : public_key_hash ;
|
|
}
|
|
|
|
val destination_encoding : destination Data_encoding.t
|
|
val pp_destination : Format.formatter -> destination -> unit
|
|
val create_destination :
|
|
alias:string ->
|
|
contract:Contract.t ->
|
|
pk:public_key -> destination
|
|
(** [create_destination ~alias ~contract ~pk] is a destination
|
|
contract [contract] with manager's publick key [pk]. *)
|
|
|
|
type bootstrap_accounts = { b1 : t ; b2 : t ; b3 : t ; b4 : t ; b5 : t }
|
|
|
|
val bootstrap_accounts : bootstrap_accounts
|
|
(** The hardcoded bootstrap accounts. *)
|
|
|
|
val transfer :
|
|
?block:Client_proto_rpcs.block ->
|
|
?fee: Tez.t ->
|
|
account:t ->
|
|
destination:Contract.t ->
|
|
amount: Tez.t ->
|
|
unit ->
|
|
(Operation_hash.t * Contract.t list) tzresult Lwt.t
|
|
|
|
val originate :
|
|
?block:Client_proto_rpcs.block ->
|
|
?delegate:public_key_hash ->
|
|
?fee: Tez.t ->
|
|
src:t ->
|
|
manager_pkh:public_key_hash ->
|
|
balance: Tez.t ->
|
|
unit -> (Operation_hash.t * Contract.t) tzresult Lwt.t
|
|
|
|
val set_delegate :
|
|
?block:Client_proto_rpcs.block ->
|
|
?fee: Tez.t ->
|
|
contract:Contract.t ->
|
|
manager_sk:secret_key ->
|
|
src_pk:public_key ->
|
|
public_key_hash option ->
|
|
Operation_hash.t tzresult Lwt.t
|
|
|
|
val balance : ?block:Client_proto_rpcs.block -> t -> Tez.t tzresult Lwt.t
|
|
|
|
val delegate :
|
|
?block:Client_proto_rpcs.block ->
|
|
Contract.t ->
|
|
public_key_hash option tzresult Lwt.t
|
|
|
|
end
|
|
|
|
module Baking : sig
|
|
|
|
val bake:
|
|
Client_node_rpcs.Blocks.block ->
|
|
Account.t ->
|
|
Operation.raw list ->
|
|
Block_hash.t tzresult Lwt.t
|
|
|
|
val endorsement_reward:
|
|
Client_node_rpcs.Blocks.block -> int64 tzresult Lwt.t
|
|
|
|
end
|
|
|
|
module Endorse : sig
|
|
|
|
val endorse :
|
|
?slot:int ->
|
|
Account.t ->
|
|
Client_proto_rpcs.block ->
|
|
Operation.raw tzresult Lwt.t
|
|
|
|
val endorsers_list :
|
|
Client_proto_rpcs.block ->
|
|
Account.t array tzresult Lwt.t
|
|
|
|
val endorsement_rights :
|
|
?max_priority:int ->
|
|
Account.t ->
|
|
Client_proto_rpcs.block ->
|
|
Client_proto_rpcs.Helpers.Rights.endorsement_slot list tzresult Lwt.t
|
|
|
|
end
|
|
|
|
module Protocol : sig
|
|
|
|
val proposals :
|
|
?block:Client_node_rpcs.Blocks.block ->
|
|
src:Account.t ->
|
|
Protocol_hash.t list ->
|
|
Operation.raw tzresult Lwt.t
|
|
|
|
val ballot :
|
|
?block:Client_node_rpcs.Blocks.block ->
|
|
src:Account.t ->
|
|
proposal:Protocol_hash.t ->
|
|
Vote.ballot ->
|
|
Operation.raw tzresult Lwt.t
|
|
|
|
end
|
|
|
|
module Assert : sig
|
|
|
|
include module type of Assert
|
|
|
|
val balance_equal:
|
|
?block:Client_node_rpcs.Blocks.block ->
|
|
msg:string -> Account.t -> int64 -> unit tzresult Lwt.t
|
|
val delegate_equal:
|
|
?block:Client_node_rpcs.Blocks.block ->
|
|
msg:string -> Contract.t -> public_key_hash option -> unit tzresult Lwt.t
|
|
|
|
val failed_to_preapply:
|
|
msg:string ->
|
|
?op:Tezos_base.Operation.t ->
|
|
(Environment.Error_monad.error ->
|
|
bool) ->
|
|
'a tzresult -> unit
|
|
|
|
val ecoproto_error:
|
|
(Environment.Error_monad.error -> bool) ->
|
|
error -> bool
|
|
|
|
val generic_economic_error : msg:string -> 'a tzresult -> unit
|
|
|
|
(** Transaction assertions *)
|
|
|
|
val unknown_contract : msg:string -> 'a tzresult -> unit
|
|
(** [unknown_contract ~msg result] raises if result is not a
|
|
[Storage_error]. *)
|
|
|
|
val non_existing_contract : msg:string -> 'a tzresult -> unit
|
|
val balance_too_low : msg:string -> 'a tzresult -> unit
|
|
val non_spendable : msg:string -> 'a tzresult -> unit
|
|
val inconsistent_pkh : msg:string -> 'a tzresult -> unit
|
|
val inconsistent_public_key : msg:string -> 'a tzresult -> unit
|
|
val missing_public_key : msg:string -> 'a tzresult -> unit
|
|
|
|
(** Origination assertions *)
|
|
|
|
val initial_amount_too_low : msg:string -> 'a tzresult -> unit
|
|
val non_delegatable : msg:string -> 'a tzresult -> unit
|
|
|
|
(** Endorsement / baking assertions *)
|
|
|
|
val wrong_delegate : msg:string -> 'a tzresult -> unit
|
|
|
|
val check_protocol :
|
|
?msg:string -> block:Client_node_rpcs.Blocks.block ->
|
|
Protocol_hash.t -> unit tzresult Lwt.t
|
|
|
|
val check_voting_period_kind :
|
|
?msg:string -> block:Client_node_rpcs.Blocks.block ->
|
|
Voting_period.kind -> unit tzresult Lwt.t
|
|
|
|
end
|
|
|
|
val display_level: Client_proto_rpcs.block -> unit tzresult Lwt.t
|