casper-contract-sdk 0.1.3

Casper contract sdk package
Documentation
1
2
3
4
5
6
7
8
use thiserror::Error;

#[derive(Debug, Error)]
#[non_exhaustive]
pub enum Validation {
    #[error("Contract does not have any entry points")]
    NoEntryPoints,
}