unc_sdk/types/
primitives.rs1#[cfg(all(not(target_arch = "wasm32"), feature = "unit-testing"))]
2use unc_primitives_core::hash::CryptoHash;
3
4#[cfg(all(not(target_arch = "wasm32"), feature = "unit-testing"))]
5pub use unc_parameters::RuntimeFeesConfig;
6
7#[cfg(all(not(target_arch = "wasm32"), feature = "unit-testing"))]
11#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
12pub type MerkleHash = CryptoHash;
13#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
15pub type ValidatorId = u64;
16#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
18pub type ValidatorMask = Vec<bool>;
19pub type StorageUsage = u64;
21#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
23pub type StorageUsageChange = i64;
24#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
26pub type Nonce = u64;
27pub type BlockHeight = u64;
29pub type EpochHeight = u64;
31#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
33pub type ShardId = u64;
34#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
36pub type NumBlocks = u64;
37#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
39pub type NumShards = u64;
40#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
42pub type NumSeats = u64;
43#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
45pub type BlockHeightDelta = u64;
46
47#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
48pub type GCCount = u64;
49
50#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
51pub type PromiseId = Vec<usize>;
52
53#[deprecated(since = "2.0.0", note = "Type has no connection with the SDK")]
54pub type ProtocolVersion = u32;