package tezos-protocol-008-PtEdoTez
module type BASIC_DATA = sig ... end
type context = t
type public_key =
Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key.t
type public_key_hash =
Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key_hash.t
type signature = Tezos_protocol_environment_008_PtEdoTez.Signature.t
module Tez : sig ... end
module Period : sig ... end
module Timestamp : sig ... end
module Raw_level : sig ... end
module Cycle : sig ... end
module Gas : sig ... end
module Script_int : module type of Script_int_repr
module Script_timestamp : sig ... end
module Script : sig ... end
module Constants : sig ... end
module Level : sig ... end
module Fitness : sig ... end
module Nonce : sig ... end
module Seed : sig ... end
module Big_map : sig ... end
module Sapling : sig ... end
module Lazy_storage : sig ... end
module Contract : sig ... end
module Delegate : sig ... end
module Voting_period : sig ... end
module Vote : sig ... end
module Block_header : sig ... end
module Kind : sig ... end
type 'kind operation = {
shell : Tezos_protocol_environment_008_PtEdoTez.Operation.shell_header;
protocol_data : 'kind protocol_data;
}
and 'kind protocol_data = {
contents : 'kind contents_list;
signature : Tezos_protocol_environment_008_PtEdoTez.Signature.t option;
}
and _ contents_list =
| Single : 'kind contents -> 'kind contents_list
| Cons : 'kind Kind.manager contents * 'rest Kind.manager contents_list -> ('kind * 'rest) Kind.manager contents_list
and _ contents =
| Endorsement : {
level : Raw_level.t;
} -> Kind.endorsement contents
| Seed_nonce_revelation : {
level : Raw_level.t;
nonce : Nonce.t;
} -> Kind.seed_nonce_revelation contents
| Double_endorsement_evidence : {
op1 : Kind.endorsement operation;
op2 : Kind.endorsement operation;
} -> Kind.double_endorsement_evidence contents
| Double_baking_evidence : {
bh1 : Block_header.t;
bh2 : Block_header.t;
} -> Kind.double_baking_evidence contents
| Activate_account : {
id : Tezos_protocol_environment_008_PtEdoTez.Ed25519.Public_key_hash.t;
activation_code : Blinded_public_key_hash.activation_code;
} -> Kind.activate_account contents
| Proposals : {
source : Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key_hash.t;
period : int32;
proposals : Tezos_protocol_environment_008_PtEdoTez.Protocol_hash.t list;
} -> Kind.proposals contents
| Ballot : {
source : Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key_hash.t;
period : int32;
proposal : Tezos_protocol_environment_008_PtEdoTez.Protocol_hash.t;
ballot : Vote.ballot;
} -> Kind.ballot contents
| Manager_operation : {
source : Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key_hash.t;
fee : Tez.tez;
counter : counter;
operation : 'kind manager_operation;
gas_limit : Gas.Arith.integral;
storage_limit : Tezos_protocol_environment_008_PtEdoTez.Z.t;
} -> 'kind Kind.manager contents
and _ manager_operation =
| Reveal : Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key.t -> Kind.reveal manager_operation
| Transaction : {
amount : Tez.tez;
parameters : Script.lazy_expr;
entrypoint : string;
destination : Contract.contract;
} -> Kind.transaction manager_operation
| Origination : {
delegate : Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key_hash.t option;
script : Script.t;
credit : Tez.tez;
preorigination : Contract.t option;
} -> Kind.origination manager_operation
| Delegation : Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key_hash.t option -> Kind.delegation manager_operation
and counter = Tezos_protocol_environment_008_PtEdoTez.Z.t
type 'kind internal_operation = {
source : Contract.contract;
operation : 'kind manager_operation;
nonce : int;
}
type packed_operation = {
shell : Tezos_protocol_environment_008_PtEdoTez.Operation.shell_header;
protocol_data : packed_protocol_data;
}
type packed_internal_operation =
| Internal_operation : 'kind internal_operation -> packed_internal_operation
val manager_kind : 'kind manager_operation -> 'kind Kind.manager
module Fees : sig ... end
module Operation : sig ... end
module Roll : sig ... end
module Commitment : sig ... end
module Bootstrap : sig ... end
module Global : sig ... end
val prepare_first_block :
Tezos_protocol_environment_008_PtEdoTez.Context.t ->
typecheck:
(context ->
Script.t ->
((Script.t * Lazy_storage.diffs option) * context)
Tezos_protocol_environment_008_PtEdoTez.Error_monad.tzresult
Tezos_protocol_environment_008_PtEdoTez.Lwt.t) ->
level:Tezos_protocol_environment_008_PtEdoTez.Int32.t ->
timestamp:Tezos_protocol_environment_008_PtEdoTez.Time.t ->
fitness:Fitness.t ->
context Tezos_protocol_environment_008_PtEdoTez.Error_monad.tzresult
Tezos_protocol_environment_008_PtEdoTez.Lwt.t
val prepare :
Tezos_protocol_environment_008_PtEdoTez.Context.t ->
level:Tezos_protocol_environment_008_PtEdoTez.Int32.t ->
predecessor_timestamp:Tezos_protocol_environment_008_PtEdoTez.Time.t ->
timestamp:Tezos_protocol_environment_008_PtEdoTez.Time.t ->
fitness:Fitness.t ->
context Tezos_protocol_environment_008_PtEdoTez.Error_monad.tzresult
Tezos_protocol_environment_008_PtEdoTez.Lwt.t
val finalize :
?commit_message:string ->
context ->
Tezos_protocol_environment_008_PtEdoTez.Updater.validation_result
val record_endorsement :
context ->
Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key_hash.t ->
context
val allowed_endorsements :
context ->
(Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key.t
* int list
* bool)
Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key_hash.Map.t
val init_endorsements :
context ->
(Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key.t
* int list
* bool)
Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key_hash.Map.t ->
context
val included_endorsements : context -> int
val fresh_internal_nonce :
context ->
(context * int) Tezos_protocol_environment_008_PtEdoTez.Error_monad.tzresult
val internal_nonce_already_recorded : context -> int -> bool
val add_fees :
context ->
Tez.t ->
context Tezos_protocol_environment_008_PtEdoTez.Error_monad.tzresult
val add_rewards :
context ->
Tez.t ->
context Tezos_protocol_environment_008_PtEdoTez.Error_monad.tzresult
val get_deposits :
context ->
Tez.t Tezos_protocol_environment_008_PtEdoTez.Signature.Public_key_hash.Map.t
val description : context Storage_description.t
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>