ligo/src/proto/alpha/bootstrap_storage.mli

23 lines
931 B
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. *)
(* *)
(**************************************************************************)
type account = {
public_key_hash : Ed25519.Public_key_hash.t ;
2016-09-08 21:13:10 +04:00
public_key : Ed25519.public_key ;
secret_key : Ed25519.secret_key ;
}
val account_encoding: account Data_encoding.t
val accounts: account list
val init: Storage.t -> Storage.t tzresult Lwt.t
val refill: Storage.t -> Storage.t tzresult Lwt.t