near-runtime 4.0.0-pre.1

This internal crate provides the runtime needed to process transactions and execute Wasm smart contracts.
Documentation
use near_metrics::{try_create_int_counter, IntCounter};

lazy_static::lazy_static! {
    pub static ref ACTION_CREATE_ACCOUNT_TOTAL: near_metrics::Result<IntCounter> =
        try_create_int_counter(
            "near_action_create_account_total",
            "The number of CreateAccount actions called since starting this node"
        );
    pub static ref ACTION_DEPLOY_CONTRACT_TOTAL: near_metrics::Result<IntCounter> =
        try_create_int_counter(
            "near_action_deploy_contract_total",
            "The number of DeployContract actions called since starting this node"
        );
    pub static ref ACTION_FUNCTION_CALL_TOTAL: near_metrics::Result<IntCounter> =
        try_create_int_counter(
            "near_action_function_call_total",
            "The number of FunctionCall actions called since starting this node"
        );
    pub static ref ACTION_TRANSFER_TOTAL: near_metrics::Result<IntCounter> = try_create_int_counter(
        "near_action_transfer_total",
        "The number of Transfer actions called since starting this node"
    );
    pub static ref ACTION_STAKE_TOTAL: near_metrics::Result<IntCounter> = try_create_int_counter(
        "near_action_stake_total",
        "The number of stake actions called since starting this node"
    );
    pub static ref ACTION_ADD_KEY_TOTAL: near_metrics::Result<IntCounter> = try_create_int_counter(
        "near_action_add_key_total",
        "The number of AddKey actions called since starting this node"
    );
    pub static ref ACTION_DELETE_KEY_TOTAL: near_metrics::Result<IntCounter> =
        try_create_int_counter(
            "near_action_delete_key_total",
            "The number of DeleteKey actions called since starting this node"
        );
    pub static ref ACTION_DELETE_ACCOUNT_TOTAL: near_metrics::Result<IntCounter> =
        try_create_int_counter(
            "near_action_delete_account_total",
            "The number of DeleteAccount actions called since starting this node"
        );
    pub static ref TRANSACTION_PROCESSED_TOTAL: near_metrics::Result<IntCounter> =
        try_create_int_counter(
            "near_transaction_processed_total",
            "The number of transactions processed since starting this node"
        );
    pub static ref TRANSACTION_PROCESSED_SUCCESSFULLY_TOTAL: near_metrics::Result<IntCounter> =
        try_create_int_counter(
            "near_transaction_processed_successfully_total",
            "The number of transactions processed successfully since starting this node"
        );
    pub static ref TRANSACTION_PROCESSED_FAILED_TOTAL: near_metrics::Result<IntCounter> =
        try_create_int_counter(
            "near_transaction_processed_failed_total",
            "The number of transactions processed and failed since starting this node"
        );
}