Trait FeeStateApi
Source pub trait FeeStateApi {
type MerkleProof: Serialize + Send + Sync + 'static;
type FeeAmount: Serialize + Send + Sync + 'static;
// Required methods
fn get_fee_state_path<'life0, 'async_trait>(
&'life0 self,
snapshot: Snapshot,
key: String,
) -> Pin<Box<dyn Future<Output = Result<Self::MerkleProof>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_fee_state_height<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_fee_balance_latest<'life0, 'async_trait>(
&'life0 self,
address: String,
) -> Pin<Box<dyn Future<Output = Result<Option<Self::FeeAmount>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}