pub trait VaultRegistryApiServer<BlockHash, VaultId, Balance, UnsignedFixedPoint, CurrencyId, AccountId>: Sized + Send + Sync + 'staticwhere
    Balance: Codec + MaybeDisplay + MaybeFromStr,
    UnsignedFixedPoint: Codec + MaybeDisplay + MaybeFromStr,
    CurrencyId: Codec,
    AccountId: Codec,{
    // Required methods
    fn get_vault_collateral(
        &self,
        vault_id: VaultId,
        at: Option<BlockHash>
    ) -> RpcResult<BalanceWrapper<Balance>>;
    fn get_vaults_by_account_id(
        &self,
        account_id: AccountId,
        at: Option<BlockHash>
    ) -> RpcResult<Vec<VaultId>>;
    fn get_vault_total_collateral(
        &self,
        vault_id: VaultId,
        at: Option<BlockHash>
    ) -> RpcResult<BalanceWrapper<Balance>>;
    fn get_vaults_with_issuable_tokens(
        &self,
        at: Option<BlockHash>
    ) -> RpcResult<Vec<(VaultId, BalanceWrapper<Balance>)>>;
    fn get_vaults_with_redeemable_tokens(
        &self,
        at: Option<BlockHash>
    ) -> RpcResult<Vec<(VaultId, BalanceWrapper<Balance>)>>;
    fn get_issuable_tokens_from_vault(
        &self,
        vault: VaultId,
        at: Option<BlockHash>
    ) -> RpcResult<BalanceWrapper<Balance>>;
    fn get_collateralization_from_vault(
        &self,
        vault: VaultId,
        only_issued: bool,
        at: Option<BlockHash>
    ) -> RpcResult<UnsignedFixedPoint>;
    fn get_collateralization_from_vault_and_collateral(
        &self,
        vault: VaultId,
        collateral: BalanceWrapper<Balance>,
        only_issued: bool,
        at: Option<BlockHash>
    ) -> RpcResult<UnsignedFixedPoint>;
    fn get_required_collateral_for_wrapped(
        &self,
        amount_btc: BalanceWrapper<Balance>,
        currency_id: CurrencyId,
        at: Option<BlockHash>
    ) -> RpcResult<BalanceWrapper<Balance>>;
    fn get_required_collateral_for_vault(
        &self,
        vault_id: VaultId,
        at: Option<BlockHash>
    ) -> RpcResult<BalanceWrapper<Balance>>;

    // Provided method
    fn into_rpc(self) -> RpcModule<Self>
       where BlockHash: Send + Sync + 'static + DeserializeOwned,
             VaultId: Send + Sync + 'static + DeserializeOwned + Serialize,
             Balance: Send + Sync + 'static + DeserializeOwned + Serialize + Codec + MaybeDisplay + MaybeFromStr,
             UnsignedFixedPoint: Send + Sync + 'static + Serialize + Codec + MaybeDisplay + MaybeFromStr,
             CurrencyId: Send + Sync + 'static + DeserializeOwned + Codec,
             AccountId: Send + Sync + 'static + DeserializeOwned + Codec { ... }
}
Expand description

Server trait implementation for the VaultRegistryApi RPC API.

Required Methods§

source

fn get_vault_collateral( &self, vault_id: VaultId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

source

fn get_vaults_by_account_id( &self, account_id: AccountId, at: Option<BlockHash> ) -> RpcResult<Vec<VaultId>>

source

fn get_vault_total_collateral( &self, vault_id: VaultId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

source

fn get_vaults_with_issuable_tokens( &self, at: Option<BlockHash> ) -> RpcResult<Vec<(VaultId, BalanceWrapper<Balance>)>>

source

fn get_vaults_with_redeemable_tokens( &self, at: Option<BlockHash> ) -> RpcResult<Vec<(VaultId, BalanceWrapper<Balance>)>>

source

fn get_issuable_tokens_from_vault( &self, vault: VaultId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

source

fn get_collateralization_from_vault( &self, vault: VaultId, only_issued: bool, at: Option<BlockHash> ) -> RpcResult<UnsignedFixedPoint>

source

fn get_collateralization_from_vault_and_collateral( &self, vault: VaultId, collateral: BalanceWrapper<Balance>, only_issued: bool, at: Option<BlockHash> ) -> RpcResult<UnsignedFixedPoint>

source

fn get_required_collateral_for_wrapped( &self, amount_btc: BalanceWrapper<Balance>, currency_id: CurrencyId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

source

fn get_required_collateral_for_vault( &self, vault_id: VaultId, at: Option<BlockHash> ) -> RpcResult<BalanceWrapper<Balance>>

Provided Methods§

source

fn into_rpc(self) -> RpcModule<Self>where BlockHash: Send + Sync + 'static + DeserializeOwned, VaultId: Send + Sync + 'static + DeserializeOwned + Serialize, Balance: Send + Sync + 'static + DeserializeOwned + Serialize + Codec + MaybeDisplay + MaybeFromStr, UnsignedFixedPoint: Send + Sync + 'static + Serialize + Codec + MaybeDisplay + MaybeFromStr, CurrencyId: Send + Sync + 'static + DeserializeOwned + Codec, AccountId: Send + Sync + 'static + DeserializeOwned + Codec,

Collects all the methods and subscriptions defined in the trait and adds them into a single RpcModule.

Implementors§

source§

impl<C, Block, VaultId, Balance, UnsignedFixedPoint, CurrencyId, AccountId> VaultRegistryApiServer<<Block as Block>::Hash, VaultId, Balance, UnsignedFixedPoint, CurrencyId, AccountId> for VaultRegistry<C, Block>where Block: BlockT, C: Send + Sync + 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>, C::Api: VaultRegistryRuntimeApi<Block, VaultId, Balance, UnsignedFixedPoint, CurrencyId, AccountId>, VaultId: Codec, Balance: Codec + MaybeDisplay + MaybeFromStr, UnsignedFixedPoint: Codec + MaybeDisplay + MaybeFromStr, CurrencyId: Codec, AccountId: Codec,