cw-auths 0.1.3

Authentication library for smart accounts of CosmWasm
Documentation
use types::{cosmwasm_std::{Order, StdError, Storage}, errors::StorageError, 
    stores::{ACCOUNT_NUMBER, CREDENTIAL_INFOS}, CredentialId
    
};




#[cfg(feature = "session")]
pub fn get_session_records(
    storage: &dyn Storage,
) -> Result<Vec<(String, smart_account_auth::Session)>, crate::StorageError> {
    crate::stores::get_map_records(storage, &crate::stores::SESSIONS, "session keys")
}



pub fn increment_account_number(
    storage: &mut dyn Storage
) -> Result<(), StorageError> {
    if ACCOUNT_NUMBER.exists(storage) {
        ACCOUNT_NUMBER.save(storage, &1u64)
        .map_err(|e| StorageError::Write(
            "initial account number".to_string(), 
            e.to_string()
        ))?;
    } else {
        ACCOUNT_NUMBER.update(storage, |n| 
            Ok::<u64, StdError>(n + 1)
        )
        .map_err(|e| StorageError::Write(
            "updated account number".to_string(), 
            e.to_string()
        ))?;
    }
    Ok(())
}





pub fn credential_count(storage: &dyn Storage) -> usize {
    CREDENTIAL_INFOS.keys_raw(storage, None, None, Order::Ascending).count()
}



pub fn has_credential(
    storage: &dyn Storage,
    id: CredentialId
) -> bool {
    CREDENTIAL_INFOS.has(storage, id)
}