cw_auth/
lib.rs

1//! # cosmwasm off-chain auth
2//!
3//! a utility that takes an ADR-036 signed document containing an auth token, decodes
4//! and verifies it, returning the inner token if it is valid
5
6pub mod error;
7pub mod auth;
8
9pub use crate::auth::*;
10pub use crate::error::AuthError;