package tezos-protocol-015-PtLimaPt
- Overview
 - No Docs
 
You can search for identifiers within the package.
in-package search v0.2.0
Install
    
    dune-project
 Dependency
Authors
Maintainers
Sources
sha256=ad9e08819871c75ba6f4530b125f7d157799398e4d77a1e6bfea9d91ff37ff55
    
    
  sha512=c5dc4d40cc09bc6980fbbdb5c2e105bf4252cf9cfcb2b49660b0ebe4dc789f6709ec3b3bf2f87d81580d3eed9521eeb1c960f24d9b14eb0285aaba1f84d10a9b
    
    
  doc/tezos-protocol-015-PtLimaPt.raw/Tezos_raw_protocol_015_PtLimaPt/Storage/Contract/index.html
Module Storage.ContractSource
Storage from this submodule must only be accessed through the module `Contract`.
module Global_counter : 
  Simple_single_data_storage
    with type value = Tezos_protocol_environment_015_PtLimaPt.Z.tval fold : 
  Raw_context.t ->
  order:[ `Sorted | `Undefined ] ->
  init:'a ->
  f:(Contract_repr.t -> 'a -> 'a Tezos_protocol_environment_015_PtLimaPt.Lwt.t) ->
  'a Tezos_protocol_environment_015_PtLimaPt.Lwt.tThe domain of alive contracts
val list : 
  Raw_context.t ->
  Contract_repr.t list Tezos_protocol_environment_015_PtLimaPt.Lwt.tmodule Spendable_balance : 
  Storage_sigs.Indexed_data_storage
    with type key = Contract_repr.t
     and type value = Tez_repr.t
     and type t := Raw_context.tThe tez possessed by a contract and that can be used. A contract may also possess tez in frozen deposits. Empty balances (of zero tez) are only allowed for originated contracts, not for implicit ones.
module Missed_endorsements : 
  Storage_sigs.Indexed_data_storage
    with type key = Contract_repr.t
     and type value = missed_endorsements_info
     and type t := Raw_context.tIf the value is not set, the delegate didn't miss any endorsing opportunity. If it is set, this value is a record of type missed_endorsements_info, where:
module Manager : 
  Storage_sigs.Indexed_data_storage
    with type key = Contract_repr.t
     and type value = Manager_repr.t
     and type t := Raw_context.tThe manager of a contract
module Consensus_key : 
  Storage_sigs.Indexed_data_storage
    with type key = Contract_repr.t
     and type value =
           Tezos_protocol_environment_015_PtLimaPt.Signature.Public_key.t
     and type t := Raw_context.tThe active consensus key of a delegate
module Pending_consensus_keys : 
  Storage_sigs.Indexed_data_storage
    with type key = Cycle_repr.t
     and type value =
           Tezos_protocol_environment_015_PtLimaPt.Signature.Public_key.t
     and type t := Raw_context.t * Contract_repr.tThe pending consensus key of a delegate
module Delegate : 
  Storage_sigs.Indexed_data_storage
    with type key = Contract_repr.t
     and type value =
           Tezos_protocol_environment_015_PtLimaPt.Signature.Public_key_hash.t
     and type t := Raw_context.tThe delegate of a contract, if any.
module Delegated : 
  Storage_sigs.Data_set_storage
    with type elt = Contract_repr.t
     and type t = Raw_context.t * Contract_repr.tAll contracts (implicit and originated) that are delegated, if any
module Frozen_deposits : 
  Storage_sigs.Indexed_data_storage
    with type key = Contract_repr.t
     and type value = deposits
     and type t := Raw_context.tThe part of a delegate balance that can't be used. The total balance is frozen_deposits.current_amount + balance. It also stores the initial frozen balance in frozen_deposits.initial_amount. We have current_amount <= initial_amount and current_amount < initial_amount iff the delegate was slashed.
module Frozen_deposits_limit : 
  Storage_sigs.Indexed_data_storage
    with type key = Contract_repr.t
     and type value = Tez_repr.t
     and type t := Raw_context.tIf there is a value, the frozen balance for the contract won't exceed it (starting in preserved_cycles + 1).
module Inactive_delegate : 
  Storage_sigs.Data_set_storage
    with type elt = Contract_repr.t
     and type t = Raw_context.tmodule Delegate_last_cycle_before_deactivation : 
  Storage_sigs.Indexed_data_storage
    with type key = Contract_repr.t
     and type value = Cycle_repr.t
     and type t := Raw_context.tThe last cycle where the delegate is considered active; that is, at the next cycle it will be considered inactive.
module Counter : 
  Storage_sigs.Indexed_data_storage
    with type key = Contract_repr.t
     and type value = Tezos_protocol_environment_015_PtLimaPt.Z.t
     and type t := Raw_context.tmodule Code : 
  Storage_sigs.Non_iterable_indexed_carbonated_data_storage
    with type key = Contract_repr.t
     and type value = Script_repr.lazy_expr
     and type t := Raw_context.tmodule Storage : 
  Storage_sigs.Non_iterable_indexed_carbonated_data_storage
    with type key = Contract_repr.t
     and type value = Script_repr.lazy_expr
     and type t := Raw_context.tmodule Used_storage_space : 
  Storage_sigs.Indexed_data_storage
    with type key = Contract_repr.t
     and type value = Tezos_protocol_environment_015_PtLimaPt.Z.t
     and type t := Raw_context.tCurrent storage space in bytes. Includes code, global storage and big map elements.
module Paid_storage_space : 
  Storage_sigs.Indexed_data_storage
    with type key = Contract_repr.t
     and type value = Tezos_protocol_environment_015_PtLimaPt.Z.t
     and type t := Raw_context.tMaximal space available without needing to burn new fees.
module Frozen_bonds : 
  Storage_sigs.Non_iterable_indexed_carbonated_data_storage
    with type key = Bond_id_repr.t
     and type value = Tez_repr.t
     and type t := Raw_context.t * Contract_repr.tAssociates a contract and a bond_id with a bond, i.e. an amount of tez that is frozen.
val fold_bond_ids : 
  (Raw_context.t * Contract_repr.t) ->
  order:[ `Sorted | `Undefined ] ->
  init:'a ->
  f:(Bond_id_repr.t -> 'a -> 'a Tezos_protocol_environment_015_PtLimaPt.Lwt.t) ->
  'a Tezos_protocol_environment_015_PtLimaPt.Lwt.tmodule Total_frozen_bonds : 
  Storage_sigs.Indexed_data_storage
    with type key = Contract_repr.t
     and type value = Tez_repr.t
     and type t := Raw_context.tAssociates a contract with the total of all its frozen bonds.