package tezos-protocol-012-Psithaca
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
On This Page
  
  
  Tezos/Protocol: economic-protocol definition
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
  
    
      tezos-16.0.tar.gz
    
    
        
    
  
  
  
    
  
  
    
  
        sha256=ad9e08819871c75ba6f4530b125f7d157799398e4d77a1e6bfea9d91ff37ff55
    
    
  sha512=c5dc4d40cc09bc6980fbbdb5c2e105bf4252cf9cfcb2b49660b0ebe4dc789f6709ec3b3bf2f87d81580d3eed9521eeb1c960f24d9b14eb0285aaba1f84d10a9b
    
    
  doc/tezos-protocol-012-Psithaca.raw/Tezos_raw_protocol_012_Psithaca/Alpha_context/index.html
Module Tezos_raw_protocol_012_Psithaca.Alpha_contextSource
An Alpha_context.t is an immutable snapshot of the ledger state at some block height, preserving type-safety and invariants of the ledger state.
Implementation
Alpha_context.t is a wrapper over Raw_context.t, which in turn is a wrapper around Context.t from the Protocol Environment.
Lifetime of an Alpha_context
- Creation, using prepareorprepare_first_block
- Modification, using the operations defined in this signature
- Finalization, using finalize
Strings of printable characters
Source
type 'a consensus_operation_type = - | Endorsement : Kind.endorsement consensus_operation_type
- | Preendorsement : Kind.preendorsement consensus_operation_type
Source
val pp_operation_kind : 
  Tezos_protocol_environment_012_Psithaca.Format.formatter ->
  'kind consensus_operation_type ->
  unitSource
type consensus_content = {- slot : Slot.t;
- level : Raw_level.t;
- round : Round.t;
- block_payload_hash : Block_payload_hash.t;
}Source
val consensus_content_encoding : 
  consensus_content Tezos_protocol_environment_012_Psithaca.Data_encoding.tSource
val pp_consensus_content : 
  Tezos_protocol_environment_012_Psithaca.Format.formatter ->
  consensus_content ->
  unitSource
type 'kind operation = {- shell : Tezos_protocol_environment_012_Psithaca.Operation.shell_header;
- protocol_data : 'kind protocol_data;
}Source
and 'kind protocol_data = {- contents : 'kind contents_list;
- signature : Tezos_protocol_environment_012_Psithaca.Signature.t option;
}Source
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
Source
and _ contents = - | Preendorsement : consensus_content -> Kind.preendorsement contents
- | Endorsement : consensus_content -> Kind.endorsement contents
- | Seed_nonce_revelation : {- level : Raw_level.t;
- nonce : Nonce.t;
 - } -> Kind.seed_nonce_revelation contents
- | Double_preendorsement_evidence : {- op1 : Kind.preendorsement operation;
- op2 : Kind.preendorsement operation;
 - } -> Kind.double_preendorsement_evidence 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_012_Psithaca.Ed25519.Public_key_hash.t;
- activation_code : Blinded_public_key_hash.activation_code;
 - } -> Kind.activate_account contents
- | Proposals : {- source : Tezos_protocol_environment_012_Psithaca.Signature.Public_key_hash.t;
- period : int32;
- proposals : Tezos_protocol_environment_012_Psithaca.Protocol_hash.t list;
 - } -> Kind.proposals contents
- | Ballot : {- source : Tezos_protocol_environment_012_Psithaca.Signature.Public_key_hash.t;
- period : int32;
- proposal : Tezos_protocol_environment_012_Psithaca.Protocol_hash.t;
- ballot : Vote.ballot;
 - } -> Kind.ballot contents
- | Failing_noop : string -> Kind.failing_noop contents
- | Manager_operation : {- source : Tezos_protocol_environment_012_Psithaca.Signature.Public_key_hash.t;
- fee : Tez.tez;
- counter : counter;
- operation : 'kind manager_operation;
- gas_limit : Gas.Arith.integral;
- storage_limit : Tezos_protocol_environment_012_Psithaca.Z.t;
 - } -> 'kind Kind.manager contents
Source
and _ manager_operation = - | Reveal : Tezos_protocol_environment_012_Psithaca.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_012_Psithaca.Signature.Public_key_hash.t option;
- script : Script.t;
- credit : Tez.tez;
- preorigination : Contract.t option;
 - } -> Kind.origination manager_operation
- | Delegation : Tezos_protocol_environment_012_Psithaca.Signature.Public_key_hash.t option -> Kind.delegation manager_operation
- | Register_global_constant : {- value : Script.lazy_expr;
 - } -> Kind.register_global_constant manager_operation
- | Set_deposits_limit : Tez.t option -> Kind.set_deposits_limit manager_operation
Source
type 'kind internal_operation = {- source : Contract.contract;
- operation : 'kind manager_operation;
- nonce : int;
}Source
type packed_manager_operation = - | Manager : 'kind manager_operation -> packed_manager_operation
Source
type packed_operation = {- shell : Tezos_protocol_environment_012_Psithaca.Operation.shell_header;
- protocol_data : packed_protocol_data;
}Source
type packed_internal_operation = - | Internal_operation : 'kind internal_operation -> packed_internal_operation
Source
val prepare_first_block : 
  Tezos_protocol_environment_012_Psithaca.Context.t ->
  typecheck:
    (context ->
      Script.t ->
      ((Script.t * Lazy_storage.diffs option) * context)
        Tezos_protocol_environment_012_Psithaca.Error_monad.tzresult
        Tezos_protocol_environment_012_Psithaca.Lwt.t) ->
  level:Tezos_protocol_environment_012_Psithaca.Int32.t ->
  timestamp:Tezos_protocol_environment_012_Psithaca.Time.t ->
  context Tezos_protocol_environment_012_Psithaca.Error_monad.tzresult
    Tezos_protocol_environment_012_Psithaca.Lwt.tCreate an Alpha_context.t from an untyped context (first block in the chain only).
Source
val prepare : 
  Tezos_protocol_environment_012_Psithaca.Context.t ->
  level:Tezos_protocol_environment_012_Psithaca.Int32.t ->
  predecessor_timestamp:Tezos_protocol_environment_012_Psithaca.Time.t ->
  timestamp:Tezos_protocol_environment_012_Psithaca.Time.t ->
  (context * Receipt.balance_updates * Migration.origination_result list)
    Tezos_protocol_environment_012_Psithaca.Error_monad.tzresult
    Tezos_protocol_environment_012_Psithaca.Lwt.tCreate an Alpha_context.t from an untyped context.
Source
val fresh_internal_nonce : 
  context ->
  (context * int) Tezos_protocol_environment_012_Psithaca.Error_monad.tzresultSource
val finalize : 
  ?commit_message:string ->
  context ->
  Fitness.raw ->
  Tezos_protocol_environment_012_Psithaca.Updater.validation_resultFinalize an Alpha_context.t, producing a validation_result.
Should only be used by Main.current_context to return a context usable for RPCs
Source
val record_non_consensus_operation_hash : 
  context ->
  Tezos_protocol_environment_012_Psithaca.Operation_hash.t ->
  contextSource
val non_consensus_operations : 
  context ->
  Tezos_protocol_environment_012_Psithaca.Operation_hash.t listThis module re-exports functions from Ticket_storage. See documentation of the functions there.
 sectionYPositions = computeSectionYPositions($el), 10)"
  x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
  >
  
  
  On This Page