ligo/lib_client_base/client_keys.mli

35 lines
1.3 KiB
OCaml
Raw Normal View History

2016-09-08 21:13:10 +04:00
(**************************************************************************)
(* *)
2017-11-14 03:36:14 +04:00
(* Copyright (c) 2014 - 2017. *)
2016-09-08 21:13:10 +04:00
(* Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
(* *)
(* All rights reserved. No warranty, explicit or implicit, provided. *)
(* *)
(**************************************************************************)
module Public_key_hash :
Client_aliases.Alias with type t = Ed25519.Public_key_hash.t
module Public_key : Client_aliases.Alias with type t = Ed25519.Public_key.t
module Secret_key : Client_aliases.Alias with type t = Ed25519.Secret_key.t
2016-09-08 21:13:10 +04:00
val get_key:
Client_commands.context ->
2016-09-08 21:13:10 +04:00
Public_key_hash.t ->
( string * Public_key.t * Secret_key.t ) tzresult Lwt.t
val get_keys:
Client_commands.context ->
( string * Public_key_hash.t * Public_key.t * Secret_key.t ) list tzresult Lwt.t
2016-09-08 21:13:10 +04:00
val list_keys:
Client_commands.context ->
(string * Public_key_hash.t * bool * bool) list tzresult Lwt.t
val gen_keys:
?seed: Ed25519.Seed.t ->
Client_commands.context ->
string ->
unit tzresult Lwt.t
val commands: unit -> Client_commands.command list