near-parameters 0.35.0

This crate provides the information about the configuration of the near protocol
Documentation
#![cfg_attr(enable_const_type_id, feature(const_type_id))]

pub mod config;
pub mod config_store;
pub mod cost;
pub mod parameter;
pub mod parameter_table;
pub mod view;
pub mod vm;

pub use config::{AccountCreationConfig, RuntimeConfig};
pub use config_store::RuntimeConfigStore;
pub use cost::{
    ActionCosts, ExtCosts, ExtCostsConfig, Fee, GasKeyAddFee, GasKeyTransferFee, ParameterCost,
    RuntimeFeesConfig, StorageUsageConfig, gas_key_add_key_exec_fee, gas_key_add_key_send_fee,
    gas_key_transfer_exec_fee, gas_key_transfer_send_fee, transfer_exec_fee, transfer_send_fee,
};
pub use parameter::Parameter;
pub use view::{RuntimeConfigView, RuntimeFeesConfigView};