2018-06-29 14:08:08 +02:00
|
|
|
(*****************************************************************************)
|
|
|
|
(* *)
|
|
|
|
(* Open Source License *)
|
|
|
|
(* Copyright (c) 2018 Dynamic Ledger Solutions, Inc. <contact@tezos.com> *)
|
|
|
|
(* *)
|
|
|
|
(* Permission is hereby granted, free of charge, to any person obtaining a *)
|
|
|
|
(* copy of this software and associated documentation files (the "Software"),*)
|
|
|
|
(* to deal in the Software without restriction, including without limitation *)
|
|
|
|
(* the rights to use, copy, modify, merge, publish, distribute, sublicense, *)
|
|
|
|
(* and/or sell copies of the Software, and to permit persons to whom the *)
|
|
|
|
(* Software is furnished to do so, subject to the following conditions: *)
|
|
|
|
(* *)
|
|
|
|
(* The above copyright notice and this permission notice shall be included *)
|
|
|
|
(* in all copies or substantial portions of the Software. *)
|
|
|
|
(* *)
|
|
|
|
(* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR*)
|
|
|
|
(* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *)
|
|
|
|
(* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL *)
|
|
|
|
(* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER*)
|
|
|
|
(* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *)
|
|
|
|
(* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *)
|
|
|
|
(* DEALINGS IN THE SOFTWARE. *)
|
|
|
|
(* *)
|
|
|
|
(*****************************************************************************)
|
2018-04-21 12:57:30 +02:00
|
|
|
|
|
|
|
open RPC_context
|
|
|
|
|
2018-04-21 14:21:46 +02:00
|
|
|
val bootstrapped:
|
|
|
|
#streamed -> ((Block_hash.t * Time.t) Lwt_stream.t * stopper) tzresult Lwt.t
|
|
|
|
|
2018-04-21 12:57:30 +02:00
|
|
|
val valid_blocks:
|
|
|
|
#streamed ->
|
|
|
|
?chains:Chain_services.chain list ->
|
|
|
|
?protocols:Protocol_hash.t list ->
|
|
|
|
?next_protocols:Protocol_hash.t list ->
|
2018-06-06 15:15:44 +02:00
|
|
|
unit -> (((Chain_id.t * Block_hash.t) * Block_header.t) Lwt_stream.t * stopper) tzresult Lwt.t
|
2018-04-21 12:57:30 +02:00
|
|
|
|
|
|
|
val heads:
|
|
|
|
#streamed ->
|
|
|
|
?next_protocols:Protocol_hash.t list ->
|
|
|
|
Chain_services.chain ->
|
2018-06-06 15:15:44 +02:00
|
|
|
((Block_hash.t * Block_header.t) Lwt_stream.t * stopper) tzresult Lwt.t
|
2018-04-21 12:57:30 +02:00
|
|
|
|
2018-04-21 13:09:59 +02:00
|
|
|
val protocols:
|
|
|
|
#streamed ->
|
|
|
|
(Protocol_hash.t Lwt_stream.t * stopper) tzresult Lwt.t
|
|
|
|
|
2019-02-25 16:58:36 -05:00
|
|
|
val commit_hash: #simple -> string tzresult Lwt.t
|
|
|
|
|
2018-04-21 12:57:30 +02:00
|
|
|
module S : sig
|
|
|
|
|
2018-04-21 14:21:46 +02:00
|
|
|
val bootstrapped:
|
|
|
|
([ `GET ], unit,
|
|
|
|
unit, unit, unit,
|
|
|
|
Block_hash.t * Time.t) RPC_service.t
|
|
|
|
|
2018-04-21 12:57:30 +02:00
|
|
|
val valid_blocks:
|
|
|
|
([ `GET ], unit,
|
|
|
|
unit, < chains : Chain_services.chain list;
|
|
|
|
next_protocols : Protocol_hash.t list;
|
|
|
|
protocols : Protocol_hash.t list >, unit,
|
2018-06-06 15:15:44 +02:00
|
|
|
(Chain_id.t * Block_hash.t) * Block_header.t) RPC_service.t
|
2018-04-21 12:57:30 +02:00
|
|
|
|
|
|
|
val heads:
|
|
|
|
([ `GET ], unit,
|
|
|
|
unit * Chain_services.chain,
|
|
|
|
< next_protocols : Protocol_hash.t list >, unit,
|
2018-06-06 15:15:44 +02:00
|
|
|
Block_hash.t * Block_header.t) RPC_service.t
|
2018-04-21 12:57:30 +02:00
|
|
|
|
2018-04-21 13:09:59 +02:00
|
|
|
val protocols:
|
|
|
|
([ `GET ], unit,
|
|
|
|
unit, unit, unit,
|
|
|
|
Protocol_hash.t) RPC_service.t
|
|
|
|
|
2019-02-25 16:58:36 -05:00
|
|
|
val commit_hash:
|
|
|
|
([ `GET ], unit, unit, unit, unit, string) RPC_service.t
|
2018-04-21 12:57:30 +02:00
|
|
|
end
|
|
|
|
|