Trait HypercoreCashLedgerStore
Source pub trait HypercoreCashLedgerStore:
Send
+ Sync
+ 'static {
// Required methods
fn exchange_watermark(&self) -> Result<Option<i64>>;
fn pending_rsm_usdc_deposit_for_amount<'life0, 'life1, 'async_trait>(
&'life0 self,
amount_wei: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Option<RsmUsdcDepositMatch>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn pending_rsm_usdc_deposit_for_evm_tx_hash<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
evm_tx_hash: &'life1 str,
amount_wei: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<Option<RsmUsdcDepositMatch>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn pending_rsm_usdc_deposit_for_credited_hypercore_event<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
event_hash: &'life1 str,
amount_wei: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<Option<RsmUsdcDepositMatch>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn pm_liquidity_deposit_for_evm_tx_hash<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
evm_tx_hash: &'life1 str,
amount_wei: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<Option<RsmUsdcDepositMatch>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn pm_liquidity_deposit_for_amount<'life0, 'life1, 'async_trait>(
&'life0 self,
amount_wei: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Option<RsmUsdcDepositMatch>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn mark_pm_liquidity_deposit_hypercore_matched<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
request_id: &'life1 str,
event_hash: &'life2 str,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
fn credited_wallet_for_hypercore_cash_event<'life0, 'life1, 'async_trait>(
&'life0 self,
event_hash: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Option<WalletAddress>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn non_crediting_hypercore_cash_event<'life0, 'life1, 'async_trait>(
&'life0 self,
event_hash: &'life1 str,
amount_usdc: Decimal,
) -> Pin<Box<dyn Future<Output = Result<bool>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn mark_rsm_deposit_credit_submitted<'life0, 'life1, 'async_trait>(
&'life0 self,
request_id: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn record_non_crediting_deposit<'life0, 'life1, 'async_trait>(
&'life0 self,
input: &'life1 HypercoreCashLedgerApply,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn apply_deposit<'life0, 'life1, 'async_trait>(
&'life0 self,
input: &'life1 HypercoreCashLedgerApply,
) -> Pin<Box<dyn Future<Output = Result<HypercoreCashLedgerApplyResult>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}