sov-modules-macros 0.2.0

Macros for use with the Sovereign SDK module system
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use sov_modules_api::ModuleInfo;
use sov_state::StateMap;

#[derive(ModuleInfo)]
struct TestStruct<C: sov_modules_api::Context> {
    #[state]
    test_state1: StateMap<u32, u32>,

    #[state]
    test_state2: StateMap<Vec<u8>, u64>,

    #[state]
    c: C,
}

fn main() {}