pub use *;
pub use wevm;
/// Integer is an integer data type.
pub type Integer = i64;
/// Boolean is a boolean data type.
pub type Boolean = bool;
/// Binary is a data type for byte array.
pub type Binary<'a> = &'a ;
/// String is a string data type.
/// Strings are UTF-8 encoded.
pub type String<'a> = &'a str;
/// Payment is a payment that can be attached when calling the function of another contract.
pub type Payment<'a> = ;
pub const SYSTEM_TOKEN: & = &;
pub const THIS: & = &;