pub trait VaultRegistryApiClient<BlockHash, VaultId, Balance, UnsignedFixedPoint, CurrencyId, AccountId>: ClientTwhere
BlockHash: Send + Sync + 'static + Serialize,
VaultId: Send + Sync + 'static + Serialize + DeserializeOwned,
Balance: Send + Sync + 'static + Serialize + DeserializeOwned + Codec + MaybeDisplay + MaybeFromStr,
UnsignedFixedPoint: Send + Sync + 'static + DeserializeOwned + Codec + MaybeDisplay + MaybeFromStr,
CurrencyId: Send + Sync + 'static + Serialize + Codec,
AccountId: Send + Sync + 'static + Serialize + Codec,{
// Provided methods
fn get_vault_collateral<'life0, 'async_trait>(
&'life0 self,
vault_id: VaultId,
at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait { ... }
fn get_vaults_by_account_id<'life0, 'async_trait>(
&'life0 self,
account_id: AccountId,
at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = RpcResult<Vec<VaultId>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait { ... }
fn get_vault_total_collateral<'life0, 'async_trait>(
&'life0 self,
vault_id: VaultId,
at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait { ... }
fn get_vaults_with_issuable_tokens<'life0, 'async_trait>(
&'life0 self,
at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = RpcResult<Vec<(VaultId, BalanceWrapper<Balance>)>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait { ... }
fn get_vaults_with_redeemable_tokens<'life0, 'async_trait>(
&'life0 self,
at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = RpcResult<Vec<(VaultId, BalanceWrapper<Balance>)>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait { ... }
fn get_issuable_tokens_from_vault<'life0, 'async_trait>(
&'life0 self,
vault: VaultId,
at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait { ... }
fn get_collateralization_from_vault<'life0, 'async_trait>(
&'life0 self,
vault: VaultId,
only_issued: bool,
at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = RpcResult<UnsignedFixedPoint>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait { ... }
fn get_collateralization_from_vault_and_collateral<'life0, 'async_trait>(
&'life0 self,
vault: VaultId,
collateral: BalanceWrapper<Balance>,
only_issued: bool,
at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = RpcResult<UnsignedFixedPoint>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait { ... }
fn get_required_collateral_for_wrapped<'life0, 'async_trait>(
&'life0 self,
amount_btc: BalanceWrapper<Balance>,
currency_id: CurrencyId,
at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait { ... }
fn get_required_collateral_for_vault<'life0, 'async_trait>(
&'life0 self,
vault_id: VaultId,
at: Option<BlockHash>
) -> Pin<Box<dyn Future<Output = RpcResult<BalanceWrapper<Balance>>> + Send + 'async_trait>>
where Self: Sync + 'async_trait,
'life0: 'async_trait { ... }
}
Expand description
Client implementation for the VaultRegistryApi
RPC API.