package tezos-shell-services

  1. Overview
  2. Docs

Parameters

module Proto : PROTO
module Next_proto : PROTO

Signature

type raw_block_header = {
  1. shell : Tezos_base.Block_header.shell_header;
  2. protocol_data : Proto.block_header_data;
}
type block_metadata = {
  1. protocol_data : Proto.block_header_metadata;
  2. test_chain_status : Tezos_base.Test_chain_status.t;
  3. max_operations_ttl : int;
  4. max_operation_data_length : int;
  5. max_block_header_length : int;
  6. operation_list_quota : operation_list_quota list;
}
type block_info = {
  1. chain_id : Tezos_crypto.Chain_id.t;
  2. hash : Tezos_crypto.Block_hash.t;
  3. header : raw_block_header;
  4. metadata : block_metadata;
  5. operations : operation list list;
}
val raw_header : Tezos_rpc.RPC_context.simple -> ?chain:chain -> ?block:block -> unit -> (Bytes.t, Tezos_error_monad.Error_monad.error list) result Lwt.t
module Header : sig ... end
module Operations : sig ... end
module Operation_hashes : sig ... end
module Context : sig ... end
module Helpers : sig ... end
module Mempool : sig ... end
module S : sig ... end