1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
mod asset;
mod block;
mod call_contract;
mod converts;
mod crypto;
mod lease;
mod memory;
mod storage;
mod tx;
mod utils;

#[macro_export]
macro_rules! internal_data {
    (this) => {{
        (core::ptr::null(), 0)
    }};
    (system_token) => {{
        (core::ptr::null(), 0)
    }};
}

#[macro_export]
macro_rules! error {
    ($error:expr) => {
        if $error != 0 {
            return $error;
        }
    };
}

/// Verify inputs and conditions
///
/// # Result
/// If the condition was not satisfied,
/// the execution will be stopped with error code 300 (RuntimeError::Exception)
///
/// # Usage
/// ```
/// use we_cdk::*;
///
/// #[action]
/// fn _constructor() {
///     let balance = get_balance!(this);
///     require!(balance > 0);
/// }
/// ```
#[macro_export]
macro_rules! require {
    ($condition:expr) => {
        if !($condition) {
            return 300;
        }
    };
}