near-parameters 0.34.5

This crate provides the information about the configuration of the near protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![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, ParameterCost, RuntimeFeesConfig,
    StorageUsageConfig, transfer_exec_fee, transfer_send_fee,
};
pub use parameter::Parameter;
pub use view::{RuntimeConfigView, RuntimeFeesConfigView};