package tezos-protocol-015-PtLimaPt
Tezos/Protocol: economic-protocol definition
Install
Dune Dependency
Authors
Maintainers
Sources
tezos-16.0.tar.gz
sha256=ad9e08819871c75ba6f4530b125f7d157799398e4d77a1e6bfea9d91ff37ff55
sha512=c5dc4d40cc09bc6980fbbdb5c2e105bf4252cf9cfcb2b49660b0ebe4dc789f6709ec3b3bf2f87d81580d3eed9521eeb1c960f24d9b14eb0285aaba1f84d10a9b
doc/tezos-protocol-015-PtLimaPt.raw/Tezos_raw_protocol_015_PtLimaPt/Main/index.html
Module Tezos_raw_protocol_015_PtLimaPt.Main
Source
Tezos Protocol Implementation - Protocol Signature Instance
This module is the entrypoint to the protocol for shells and other embedders. This signature is an instance of the Updater.PROTOCOL
signature from the Protocol Environment.
Each Protocol depends on a version of the Protocol Environment. For the currently developed protocol, this is normally the latest version. You can see the full list of versions here.
For details on how Protocol and Environment interact, see this overview.
Source
type operation = Alpha_context.packed_operation = {
shell : Tezos_protocol_environment_015_PtLimaPt.Operation.shell_header;
protocol_data : operation_data;
}
include Tezos_protocol_environment_015_PtLimaPt.Updater.PROTOCOL
with type block_header_data = Alpha_context.Block_header.protocol_data
and type block_header_metadata = Apply_results.block_metadata
and type block_header = Alpha_context.Block_header.t
and type operation_data := operation_data
and type operation_receipt = Apply_results.packed_operation_metadata
and type operation := operation
and type validation_state = Validate.validation_state
and type application_state = Apply.application_state
Source
val block_header_data_encoding :
block_header_data Tezos_protocol_environment_015_PtLimaPt.Data_encoding.t
Source
type block_header = Alpha_context.Block_header.t = {
shell : Tezos_protocol_environment_015_PtLimaPt.Block_header.shell_header;
protocol_data : block_header_data;
}
Source
val block_header_metadata_encoding :
block_header_metadata Tezos_protocol_environment_015_PtLimaPt.Data_encoding.t
Source
val operation_data_encoding :
operation_data Tezos_protocol_environment_015_PtLimaPt.Data_encoding.t
Source
val operation_receipt_encoding :
operation_receipt Tezos_protocol_environment_015_PtLimaPt.Data_encoding.t
Source
val operation_data_and_receipt_encoding :
(operation_data * operation_receipt)
Tezos_protocol_environment_015_PtLimaPt.Data_encoding.t
Source
val compare_operations :
(Tezos_protocol_environment_015_PtLimaPt.Operation_hash.t * operation) ->
(Tezos_protocol_environment_015_PtLimaPt.Operation_hash.t * operation) ->
int
Source
type mode =
| Application of block_header
| Partial_validation of block_header
| Construction of {
predecessor_hash : Tezos_protocol_environment_015_PtLimaPt.Block_hash.t;
timestamp : Tezos_protocol_environment_015_PtLimaPt.Time.t;
block_header_data : block_header_data;
}
| Partial_construction of {
predecessor_hash : Tezos_protocol_environment_015_PtLimaPt.Block_hash.t;
timestamp : Tezos_protocol_environment_015_PtLimaPt.Time.t;
}
Source
val begin_validation :
Tezos_protocol_environment_015_PtLimaPt.Context.t ->
Tezos_protocol_environment_015_PtLimaPt.Chain_id.t ->
mode ->
predecessor:Tezos_protocol_environment_015_PtLimaPt.Block_header.shell_header ->
validation_state Tezos_protocol_environment_015_PtLimaPt.Error_monad.tzresult
Tezos_protocol_environment_015_PtLimaPt.Lwt.t
Source
val validate_operation :
?check_signature:bool ->
validation_state ->
Tezos_protocol_environment_015_PtLimaPt.Operation_hash.t ->
operation ->
validation_state Tezos_protocol_environment_015_PtLimaPt.Error_monad.tzresult
Tezos_protocol_environment_015_PtLimaPt.Lwt.t
Source
val finalize_validation :
validation_state ->
unit Tezos_protocol_environment_015_PtLimaPt.Error_monad.tzresult
Tezos_protocol_environment_015_PtLimaPt.Lwt.t
Source
val begin_application :
Tezos_protocol_environment_015_PtLimaPt.Context.t ->
Tezos_protocol_environment_015_PtLimaPt.Chain_id.t ->
mode ->
predecessor:Tezos_protocol_environment_015_PtLimaPt.Block_header.shell_header ->
application_state
Tezos_protocol_environment_015_PtLimaPt.Error_monad.tzresult
Tezos_protocol_environment_015_PtLimaPt.Lwt.t
Source
val finalize_application :
application_state ->
Tezos_protocol_environment_015_PtLimaPt.Block_header.shell_header option ->
(Tezos_protocol_environment_015_PtLimaPt.Updater.validation_result
* block_header_metadata)
Tezos_protocol_environment_015_PtLimaPt.Error_monad.tzresult
Tezos_protocol_environment_015_PtLimaPt.Lwt.t
Source
val init :
Tezos_protocol_environment_015_PtLimaPt.Chain_id.t ->
Tezos_protocol_environment_015_PtLimaPt.Context.t ->
Tezos_protocol_environment_015_PtLimaPt.Block_header.shell_header ->
Tezos_protocol_environment_015_PtLimaPt.Updater.validation_result
Tezos_protocol_environment_015_PtLimaPt.Error_monad.tzresult
Tezos_protocol_environment_015_PtLimaPt.Lwt.t
Source
val value_of_key :
chain_id:Tezos_protocol_environment_015_PtLimaPt.Chain_id.t ->
predecessor_context:Tezos_protocol_environment_015_PtLimaPt.Context.t ->
predecessor_timestamp:Tezos_protocol_environment_015_PtLimaPt.Time.t ->
predecessor_level:Tezos_protocol_environment_015_PtLimaPt.Int32.t ->
predecessor_fitness:Tezos_protocol_environment_015_PtLimaPt.Fitness.t ->
predecessor:Tezos_protocol_environment_015_PtLimaPt.Block_hash.t ->
timestamp:Tezos_protocol_environment_015_PtLimaPt.Time.t ->
(Tezos_protocol_environment_015_PtLimaPt.Context.Cache.key ->
Tezos_protocol_environment_015_PtLimaPt.Context.Cache.value
Tezos_protocol_environment_015_PtLimaPt.Error_monad.tzresult
Tezos_protocol_environment_015_PtLimaPt.Lwt.t)
Tezos_protocol_environment_015_PtLimaPt.Error_monad.tzresult
Tezos_protocol_environment_015_PtLimaPt.Lwt.t
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>