odra_modules/
lib.rs

1#![doc = "Odra's library of plug and play modules"]
2#![cfg_attr(not(test), no_std)]
3#![cfg_attr(not(test), no_main)]
4
5extern crate alloc;
6
7pub mod access;
8pub mod cep18;
9pub mod cep18_token;
10pub mod cep95;
11pub mod erc1155;
12pub mod erc1155_receiver;
13pub mod erc1155_token;
14pub mod erc20;
15pub mod erc721;
16pub mod erc721_receiver;
17pub mod erc721_token;
18pub mod security;
19pub mod wrapped_native;