nesdie 0.2.0

no_std SDK for NEAR protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod heapless;
pub(crate) use self::heapless::Vec;

/// Token denomination type.
pub type Balance = u128;

/// Gas units which are used for computation and storage within the runtime.
pub type Gas = u64;

// TODO maybe don't want to export this -- check before releasing
/// Account identifier
pub type AccountId = heapless::String<64>;