package tezos-baking-alpha
Tezos/Protocol: base library for `tezos-baker/accuser`
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-16.1.tar.gz
sha256=43723d096307603703a1a89ed1b2eb202b365f5e7824b96b0cbf813b343a6cf7
sha512=b2a637f2e965000d3d49ad85277ca24d6cb07a1a7cf2bc69d296d8b03ad78c3eaa8e21e94b9162e62c2e11649cd03bc845b2a3dafe623b91065df69d47dc8e4f
doc/src/tezos-baking-alpha.mockup-simulator/faked_services.ml.html
Source file faked_services.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
open Tezos_shell_services module Directory = Tezos_rpc.Directory module Chain_services = Tezos_shell_services.Chain_services module Block_services = Tezos_shell_services.Block_services module Block_services_alpha = Protocol_client_context.Alpha_block_services module type Mocked_services_hooks = sig type mempool = Mockup.M.Block_services.Mempool.t (** The baker and endorser rely on this stream to be notified of new valid blocks. *) val monitor_validated_blocks : unit -> (Chain_id.t * Block_hash.t * Block_header.t * Operation.t list list) Tezos_rpc.Answer.stream (** The baker and endorser rely on this stream to be notified of new heads. *) val monitor_heads : unit -> (Block_hash.t * Block_header.t) Tezos_rpc.Answer.stream (** Returns current and next protocol for a block. *) val protocols : Block_services.block -> Block_services.protocols tzresult Lwt.t (** [raw_header] returns the byte encoded block header of the block associated to the given block specification. *) val raw_header : Block_services.block -> bytes tzresult Lwt.t (** [header] returns the block header of the block associated to the given block specification. *) val header : Block_services.block -> Mockup.M.Block_services.block_header tzresult Lwt.t (** [resulting_context_hash] returns the context resulting hash of the given block. *) val resulting_context_hash : Block_services.block -> Context_hash.t tzresult Lwt.t (** [operations] returns all operations included in the block. *) val operations : Block_services.block -> Mockup.M.Block_services.operation list list tzresult Lwt.t (** [inject_block_callback] is called when an RPC is performed on [Tezos_shell_services.Injection_services.S.block], after checking that the block header can be deserialized. *) val inject_block : Block_hash.t -> Block_header.t -> Operation.t trace trace -> unit tzresult Lwt.t (** [inject_operation] is used by the endorser (or the client) to inject operations, including endorsements. *) val inject_operation : Operation.t -> Operation_hash.t tzresult Lwt.t (** [pending_operations] returns the current contents of the mempool. It is used by the baker to fetch operations to potentially include in the block being baked. These operations might include endorsements. If there aren't enough endorsements, the baker waits on [monitor_operations]. *) val pending_operations : unit -> mempool Lwt.t (** Return a stream of list of operations. Used by the baker to wait on endorsements. Invariant: the stream becomes empty when the node changes head. *) val monitor_operations : applied:bool -> branch_delayed:bool -> branch_refused:bool -> refused:bool -> ((Operation_hash.t * Mockup.M.Protocol.operation) * error trace option) list Tezos_rpc.Answer.stream (** Lists block hashes from the chain, up to the last checkpoint, sorted with decreasing fitness. Without arguments it returns the head of the chain. Optional arguments allow to return the list of predecessors of a given block or of a set of blocks. *) val list_blocks : heads:Block_hash.t list -> length:int option -> min_date:Time.Protocol.t option -> Block_hash.t list list tzresult Lwt.t (** List the ancestors of the given block which, if referred to as the branch in an operation header, are recent enough for that operation to be included in the current block. *) val live_blocks : Block_services.block -> Block_hash.Set.t tzresult Lwt.t (** [rpc_context_callback] is used in the implementations of several RPCs (see local_services.ml). It should correspond to the rpc_context constructed from the context at the requested block. *) val rpc_context_callback : Block_services.block -> Tezos_protocol_environment.rpc_context tzresult Lwt.t (** Return raw protocol data as a block. *) val raw_protocol_data : Block_services.block -> Bytes.t tzresult Lwt.t (** Broadcast block manually to nodes [dests] (given by their number, starting from 0). If [dests] is not provided, broadcast to all nodes. *) val broadcast_block : ?dests:int list -> Block_hash.t -> Block_header.t -> Operation.t trace trace -> unit tzresult Lwt.t (** Broadcast operation manually to nodes [dests] (given by their number, starting from 0). If [dests] is not provided, broadcast to all nodes. *) val broadcast_operation : ?dests:int list -> Alpha_context.packed_operation -> unit tzresult Lwt.t (** Simulate waiting for the node to be bootstrapped. Because the simulated node is already bootstrapped, returns the current head immediately. *) val monitor_bootstrapped : unit -> (Block_hash.t * Time.Protocol.t) Tezos_rpc.Answer.stream end type hooks = (module Mocked_services_hooks) module Make (Hooks : Mocked_services_hooks) = struct let monitor_validated_blocks = Directory.gen_register0 Directory.empty Monitor_services.S.validated_blocks (fun _next_protocol _ -> Tezos_rpc.Answer.return_stream (Hooks.monitor_validated_blocks ())) let monitor_heads = Directory.gen_register1 Directory.empty Monitor_services.S.heads (fun _chain _next_protocol () -> Tezos_rpc.Answer.return_stream (Hooks.monitor_heads ())) let monitor_bootstrapped = Directory.gen_register0 Directory.empty Monitor_services.S.bootstrapped (fun () () -> Tezos_rpc.Answer.return_stream (Hooks.monitor_bootstrapped ())) let protocols = let path = let open Tezos_rpc.Path in prefix Block_services.chain_path Block_services.path in let service = Tezos_rpc.Service.prefix path Block_services.Empty.S.protocols in Directory.register Directory.empty service (fun (_, block) () () -> Hooks.protocols block) let raw_header = Directory.prefix (Tezos_rpc.Path.prefix Chain_services.path Block_services.path) @@ Directory.register Directory.empty Mockup.M.Block_services.S.raw_header (fun (((), _chain), block) _ _ -> Hooks.raw_header block) let header = Directory.prefix (Tezos_rpc.Path.prefix Chain_services.path Block_services.path) @@ Directory.register Directory.empty Mockup.M.Block_services.S.header (fun (((), _chain), block) _ _ -> Hooks.header block) let resulting_context_hash = Directory.prefix (Tezos_rpc.Path.prefix Chain_services.path Block_services.path) @@ Directory.register Directory.empty Mockup.M.Block_services.S.resulting_context_hash (fun (((), _chain), block) _ _ -> Hooks.resulting_context_hash block) let operations = Directory.prefix (Tezos_rpc.Path.prefix Chain_services.path Block_services.path) @@ Directory.register Directory.empty Mockup.M.Block_services.S.Operations.operations (fun (((), _chain), block) _ () -> Hooks.operations block) let hash = Directory.prefix (Tezos_rpc.Path.prefix Chain_services.path Block_services.path) @@ Directory.register Directory.empty Block_services.Empty.S.hash (fun (((), _chain), block) () () -> Hooks.header block >>=? fun x -> return x.hash) let shell_header = Directory.prefix (Tezos_rpc.Path.prefix Chain_services.path Block_services.path) @@ Directory.register Directory.empty Mockup.M.Block_services.S.Header.shell_header (fun (((), _chain), block) _ _ -> Hooks.header block >>=? fun x -> return x.shell) let chain chain_id = Directory.prefix Chain_services.path (Directory.register Directory.empty Chain_services.S.chain_id (fun _chain () () -> return chain_id)) let inject_block = Directory.register Directory.empty Injection_services.S.block (fun () _chain (bytes, operations) -> match Block_header.of_bytes bytes with | None -> failwith "faked_services.inject_block: can't deserialize" | Some block_header -> let block_hash = Block_hash.hash_bytes [bytes] in Hooks.inject_block block_hash block_header operations >>=? fun () -> return block_hash) let inject_operation = Directory.register Directory.empty Injection_services.S.operation (fun () _chain bytes -> match Data_encoding.Binary.of_bytes_opt Operation.encoding bytes with | None -> failwith "faked_services.inject_operation: can't deserialize" | Some operation -> Hooks.inject_operation operation) let inject_private_operation = Directory.register Directory.empty Injection_services.S.private_operation (fun () _chain bytes -> match Data_encoding.Binary.of_bytes_opt Operation.encoding bytes with | None -> failwith "faked_services.inject_private_operation: can't deserialize" | Some operation -> Hooks.inject_operation operation) let broadcast_block = Directory.register Directory.empty Broadcast_services.S.block (fun () dests (block_header, operations) -> let bytes = Block_header.to_bytes block_header in let block_hash = Block_hash.hash_bytes [bytes] in let dests = match dests#dests with [] -> None | dests -> Some dests in Hooks.broadcast_block ?dests block_hash block_header operations) let broadcast_operation = Directory.register Directory.empty Broadcast_services.S.operation (fun () dests operation -> let dests = match dests#dests with [] -> None | dests -> Some dests in Hooks.broadcast_operation ?dests operation) let pending_operations = Directory.gen_register Directory.empty (Mockup.M.Block_services.S.Mempool.pending_operations @@ Block_services.mempool_path Block_services.chain_path) (fun ((), _chain) _params () -> Hooks.pending_operations () >>= fun mempool -> Mockup.M.Block_services.Mempool.pending_operations_version_dispatcher ~version:1 mempool) let monitor_operations = Directory.gen_register Directory.empty (Block_services_alpha.S.Mempool.monitor_operations @@ Block_services.mempool_path Block_services.chain_path) (fun ((), _chain) flags () -> let stream = Hooks.monitor_operations ~applied:flags#applied ~branch_delayed:flags#branch_delayed ~branch_refused:flags#branch_refused ~refused:flags#refused in Tezos_rpc.Answer.return_stream stream) let list_blocks = Directory.prefix Chain_services.path (Directory.register Directory.empty Chain_services.S.Blocks.list (fun ((), _chain) flags () -> Hooks.list_blocks ~heads:flags#heads ~length:flags#length ~min_date:flags#min_date)) let live_blocks = Directory.prefix (Tezos_rpc.Path.prefix Chain_services.path Block_services.path) @@ Directory.register Directory.empty Block_services.Empty.S.live_blocks (fun (_, block) _ () -> Hooks.live_blocks block) let raw_protocol_data = Directory.prefix (Tezos_rpc.Path.prefix Chain_services.path Block_services.path) @@ Directory.register Directory.empty Block_services.Empty.S.Header.raw_protocol_data (fun (_, block) () () -> Hooks.raw_protocol_data block) let shell_directory chain_id = List.fold_left Directory.merge Directory.empty [ monitor_validated_blocks; monitor_heads; protocols; raw_header; header; operations; hash; shell_header; resulting_context_hash; chain chain_id; inject_block; inject_operation; inject_private_operation; monitor_operations; list_blocks; live_blocks; raw_protocol_data; broadcast_block; broadcast_operation; monitor_bootstrapped; ] let directory chain_id = let proto_directory = Directory.prefix Chain_services.path (Directory.prefix Block_services.path (Directory.map (fun (((), _chain), block) -> Hooks.rpc_context_callback block >>= function | Error _ -> assert false | Ok rpc_context -> Lwt.return rpc_context) Mockup.M.directory)) in let base = Directory.merge (shell_directory chain_id) proto_directory in Tezos_rpc.Directory.register_describe_directory_service base Tezos_rpc.Service.description_service end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>