near-parameters 0.37.0

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
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, SignatureKind, 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};