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};
pub mod bytesrepr {
pub use casper_types::bytesrepr::{deserialize, serialize, Bytes, Error, FromBytes, ToBytes};
}
pub type EventData = Vec<u8>;