casper-types 4.0.2

Types shared by many casper crates for use on the Casper network.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! System modules, formerly known as "system contracts"
pub mod auction;
mod call_stack_element;
mod error;
pub mod handle_payment;
pub mod mint;
pub mod standard_payment;
mod system_contract_type;

pub use call_stack_element::{CallStackElement, CallStackElementTag};
pub use error::Error;
pub use system_contract_type::{
    SystemContractType, AUCTION, HANDLE_PAYMENT, MINT, STANDARD_PAYMENT,
};