pub trait NonceReader: Send + Sync {
// Required method
fn get_rsm_signer_nonce<'life0, 'life1, 'async_trait>(
&'life0 self,
signer: &'life1 WalletAddress,
) -> Pin<Box<dyn Future<Output = Result<Option<RsmSignerNonceRecord>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Expand description
Read-only nonce queries.
Required Methods§
Sourcefn get_rsm_signer_nonce<'life0, 'life1, 'async_trait>(
&'life0 self,
signer: &'life1 WalletAddress,
) -> Pin<Box<dyn Future<Output = Result<Option<RsmSignerNonceRecord>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn get_rsm_signer_nonce<'life0, 'life1, 'async_trait>(
&'life0 self,
signer: &'life1 WalletAddress,
) -> Pin<Box<dyn Future<Output = Result<Option<RsmSignerNonceRecord>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Load the current nonce state for a signer address.