saa_common/
lib.rs

1#![cfg_attr(not(feature = "std"), no_std)]
2
3#[cfg(all(not(feature = "wasm"), not(feature = "native"), not(feature = "substrate"), not(feature = "solana")))]
4compile_error!("at least one of the supported envieronments must be enabled: cosmwasm, cosmwasm_v1, secretwasm, native, substrate, or solana");
5
6mod traits;
7mod macros;
8mod env;
9
10pub mod types;
11pub use env::*;
12pub use types::errors::*;
13pub use types::binary::*;
14pub use types::uints::Uint64;
15pub use types::exp::Expiration;
16pub use traits::Verifiable;
17
18pub type CredentialId = String;