|
| 1 | +use codec::Codec; |
| 2 | +use composable_support::rpc_helpers::SafeRpcWrapper; |
| 3 | +use composable_traits::defi::Rate; |
| 4 | +use core::{fmt::Display, str::FromStr}; |
| 5 | +use jsonrpc_core::{Error as RpcError, ErrorCode, Result as RpcResult}; |
| 6 | +use jsonrpc_derive::rpc; |
| 7 | +use lending_runtime_api::LendingRuntimeApi; |
| 8 | +use sp_api::ProvideRuntimeApi; |
| 9 | +use sp_blockchain::HeaderBackend; |
| 10 | +use sp_runtime::{generic::BlockId, traits::Block as BlockT}; |
| 11 | +use sp_std::sync::Arc; |
| 12 | + |
| 13 | +#[rpc] |
| 14 | +pub trait LendingApi<BlockHash, MarketId> |
| 15 | +where |
| 16 | + MarketId: FromStr + Display, |
| 17 | +{ |
| 18 | + #[rpc(name = "lending_currentInterestRate")] |
| 19 | + fn current_interest_rate( |
| 20 | + &self, |
| 21 | + market_id: SafeRpcWrapper<MarketId>, |
| 22 | + at: Option<BlockHash>, |
| 23 | + ) -> RpcResult<SafeRpcWrapper<Rate>>; |
| 24 | +} |
| 25 | + |
| 26 | +pub struct Lending<C, Block> { |
| 27 | + client: Arc<C>, |
| 28 | + _marker: sp_std::marker::PhantomData<Block>, |
| 29 | +} |
| 30 | + |
| 31 | +impl<C, M> Lending<C, M> { |
| 32 | + pub fn new(client: Arc<C>) -> Self { |
| 33 | + Self { client, _marker: Default::default() } |
| 34 | + } |
| 35 | +} |
| 36 | + |
| 37 | +impl<C, Block, MarketId> LendingApi<<Block as BlockT>::Hash, MarketId> |
| 38 | + for Lending<C, (Block, MarketId)> |
| 39 | +where |
| 40 | + Block: BlockT, |
| 41 | + MarketId: Send + Sync + 'static + Codec + FromStr + Display, |
| 42 | + C: Send + Sync + 'static, |
| 43 | + C: ProvideRuntimeApi<Block>, |
| 44 | + C: HeaderBackend<Block>, |
| 45 | + C::Api: LendingRuntimeApi<Block, MarketId>, |
| 46 | +{ |
| 47 | + fn current_interest_rate( |
| 48 | + &self, |
| 49 | + market_id: SafeRpcWrapper<MarketId>, |
| 50 | + at: Option<<Block as BlockT>::Hash>, |
| 51 | + ) -> RpcResult<SafeRpcWrapper<Rate>> { |
| 52 | + let api = self.client.runtime_api(); |
| 53 | + |
| 54 | + let at = BlockId::hash(at.unwrap_or_else(|| self.client.info().best_hash)); |
| 55 | + |
| 56 | + // calling ../../runtime-api |
| 57 | + let runtime_api_result = api.current_interest_rate(&at, market_id.0); |
| 58 | + runtime_api_result.map_err(|e| { |
| 59 | + RpcError { |
| 60 | + code: ErrorCode::ServerError(9876), // No real reason for this value |
| 61 | + message: "Something wrong".into(), |
| 62 | + data: Some(format!("{:?}", e).into()), |
| 63 | + } |
| 64 | + }) |
| 65 | + } |
| 66 | +} |
0 commit comments