odra_modules/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![doc = "Odra's library of plug and play modules"]
#![cfg_attr(not(test), no_std)]
#![cfg_attr(not(test), no_main)]

extern crate alloc;

pub mod access;
pub mod cep18;
pub mod cep18_token;
pub mod cep78;
pub mod erc1155;
pub mod erc1155_receiver;
pub mod erc1155_token;
pub mod erc20;
pub mod erc721;
pub mod erc721_receiver;
pub mod erc721_token;
pub mod security;
pub mod wrapped_native;