sss-token 1.0.3

Solana Stablecoin Standard - Token Program with blacklist, seize, freeze, and GENIUS Act compliance
Documentation
pub mod accept_authority;
pub mod allowlist_add;
pub mod allowlist_remove;
pub mod attest_reserve;
pub mod blacklist_add;
pub mod blacklist_remove;
pub mod burn;
pub mod freeze;
pub mod initialize;
pub mod mint;
pub mod nominate_authority;
pub mod pause;
pub mod seize;
pub mod set_supply_cap;
pub mod thaw;
pub mod transfer_authority;
pub mod unpause;
pub mod update_metadata;
pub mod update_minter;
pub mod update_roles;

pub use accept_authority::*;
pub use allowlist_add::*;
pub use allowlist_remove::*;
pub use attest_reserve::*;
pub use blacklist_add::*;
pub use blacklist_remove::*;
pub use burn::*;
pub use freeze::*;
pub use initialize::*;
pub use mint::*;
pub use nominate_authority::*;
pub use pause::*;
pub use seize::*;
pub use set_supply_cap::*;
pub use thaw::*;
pub use transfer_authority::*;
pub use unpause::*;
pub use update_metadata::*;
pub use update_minter::*;
pub use update_roles::*;