casper-types 7.0.0

Types shared by many casper crates for use on the Casper network.
1
2
3
4
5
6
7
8
//! Contains implementation of a Handle Payment contract functionality.
mod constants;
mod entry_points;
mod error;

pub use constants::*;
pub use entry_points::handle_payment_entry_points;
pub use error::Error;