package tezos-dal-node-lib
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Tezos: `tezos-dal-node` library
Install
dune-project
Dependency
Authors
Maintainers
Sources
tezos-18.1.tar.gz
sha256=aa2f5bc99cc4ca2217c52a1af2a2cdfd3b383208cb859ca2e79ca0903396ca1d
sha512=d68bb3eb615e3dcccc845fddfc9901c95b3c6dc8e105e39522ce97637b1308a7fa7aa1d271351d5933febd7476b2819e1694f31198f1f0919681f1f9cc97cb3a
doc/tezos-dal-node-lib.gossipsub/Tezos_dal_node_lib_gossipsub/Transport_layer_interface/index.html
Module Tezos_dal_node_lib_gossipsub.Transport_layer_interfaceSource
This module defines the data structures used to instantiate the Octez P2P library. More exactly, it exposes:
- the types
p2p_message,peer_metadataandconnection_metadata, used to instantiate type variables ofP2p.t;
- the values
peer_metadata_cfgof typeP2p_params.peer_meta_config,conn_metadata_cfgof typeP2p_params.conn_meta_configandmessage_cfgof typeP2p_params.message_configthat are used when callingP2p.create.
Peers exchanged via PX. point represents the (address, port) pair of the exchanged peer, while peer represents the cryptographic identity of the peer.
Source
type p2p_message = | Graft of {topic : Gs_interface.topic;
}| Prune of {topic : Gs_interface.topic;px : px_peer Tezos_base.TzPervasives.Seq.t;backoff : Gs_interface.Span.t;
}| IHave of {topic : Gs_interface.topic;message_ids : Gs_interface.message_id list;
}| IWant of {message_ids : Gs_interface.message_id list;
}| Subscribe of {topic : Gs_interface.topic;
}| Unsubscribe of {topic : Gs_interface.topic;
}| Message_with_header of {message : Gs_interface.message;topic : Gs_interface.topic;message_id : Gs_interface.message_id;
}
Without piggybacking, p2p_message is almost identical to Gs_interface.p2p_message, except that for the Prune case, P2p_peer.Id.t elements in px are augmented by their P2p_point.Id.t counterpart.
peer_metadata is not used. So, its value is unit.
connection_metadata is not used currently. So, its value is unit.
A P2P message config is parameterized by the network's name.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>