1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
mod address;
pub mod arithmetic;
mod error;
pub mod event;
mod serde;

pub use address::*;
pub use casper_types::{
    runtime_args, ApiError, CLType, CLTyped, CLValue, CLValueError, NamedArg, RuntimeArgs, U128,
    U256, U512,
};
pub use error::{ExecutionError, OdraError, VmError};
pub use serde::{FromBytes, ToBytes};
/// Contains serialization and deserialization code for types used throughout the system.
pub mod bytesrepr {
    pub use casper_types::bytesrepr::{deserialize, serialize, Bytes, Error, FromBytes, ToBytes};
}
/// Serialized event struct representation
pub type EventData = Vec<u8>;