odra-core 2.7.1

Core of the Odra Framework
Documentation
#![doc = "Core of the Odra Framework"]
#![cfg_attr(not(test), no_std)]
#![cfg_attr(test, feature(never_type))]

extern crate alloc;

mod address;
pub mod args;
pub mod arithmetic;
mod call_def;
mod call_result;
pub mod callstack;
#[doc(hidden)]
pub mod consts;
mod contract;
mod contract_container;
mod contract_context;
pub mod contract_def;
mod contract_env;
mod contract_register;
pub mod crypto;
pub mod entry_point;
pub mod entry_point_callback;
mod error;
mod external;
mod gas_report;
// TODO: consider making this not wasm32
pub mod host;
mod list;
mod mapping;
pub mod module;
mod named_keys;
pub mod prelude;
mod sequence;
pub mod uints;
mod unwrap_or_revert;
pub mod utils;
pub mod validator;
mod var;

pub use call_def::CallDef;
pub use call_result::ContractCallResult;
pub use casper_event_standard;
pub use contract_container::ContractContainer;
pub use contract_context::ContractContext;
pub use contract_env::{ContractEnv, ContractRef, ExecutionEnv};
pub use contract_register::ContractRegister;
pub use error::{AddressError, CollectionError, EventError, VmError, CASPER_ERROR_GENERIC_NAME};

pub use casper_types;
pub use contract::OdraContract;
pub use gas_report::*;