1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
use codec::Codec;
use jsonrpsee::{
core::{async_trait, Error as JsonRpseeError, RpcResult},
proc_macros::rpc,
types::error::{CallError, ErrorCode, ErrorObject},
};
use sp_api::ProvideRuntimeApi;
use sp_blockchain::HeaderBackend;
use sp_runtime::{
traits::{Block as BlockT, MaybeDisplay, MaybeFromStr},
DispatchError,
};
use std::sync::Arc;
pub use oracle_rpc_runtime_api::{BalanceWrapper, OracleApi as OracleRuntimeApi};
#[rpc(client, server)]
pub trait OracleApi<BlockHash, Balance, CurrencyId>
where
Balance: Codec + MaybeDisplay + MaybeFromStr,
CurrencyId: Codec,
{
#[method(name = "oracle_wrappedToCollateral")]
fn wrapped_to_collateral(
&self,
amount: BalanceWrapper<Balance>,
currency_id: CurrencyId,
at: Option<BlockHash>,
) -> RpcResult<BalanceWrapper<Balance>>;
#[method(name = "oracle_collateralToWrapped")]
fn collateral_to_wrapped(
&self,
amount: BalanceWrapper<Balance>,
currency_id: CurrencyId,
at: Option<BlockHash>,
) -> RpcResult<BalanceWrapper<Balance>>;
}
fn internal_err<T: ToString>(message: T) -> JsonRpseeError {
JsonRpseeError::Call(CallError::Custom(ErrorObject::owned(
ErrorCode::InternalError.code(),
message.to_string(),
None::<()>,
)))
}
pub struct Oracle<C, B> {
client: Arc<C>,
_marker: std::marker::PhantomData<B>,
}
impl<C, B> Oracle<C, B> {
pub fn new(client: Arc<C>) -> Self {
Oracle {
client,
_marker: Default::default(),
}
}
}
fn handle_response<T, E: std::fmt::Debug>(result: Result<Result<T, DispatchError>, E>) -> RpcResult<T> {
result
.map_err(|err| internal_err(format!("Runtime error: {:?}", err)))?
.map_err(|err| internal_err(format!("Execution error: {:?}", err)))
}
#[async_trait]
impl<C, Block, Balance, CurrencyId> OracleApiServer<<Block as BlockT>::Hash, Balance, CurrencyId> for Oracle<C, Block>
where
Block: BlockT,
C: Send + Sync + 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>,
C::Api: OracleRuntimeApi<Block, Balance, CurrencyId>,
Balance: Codec + MaybeDisplay + MaybeFromStr,
CurrencyId: Codec,
{
fn wrapped_to_collateral(
&self,
amount: BalanceWrapper<Balance>,
currency_id: CurrencyId,
at: Option<<Block as BlockT>::Hash>,
) -> RpcResult<BalanceWrapper<Balance>> {
let api = self.client.runtime_api();
let at = at.unwrap_or_else(|| self.client.info().best_hash);
handle_response(api.wrapped_to_collateral(at, amount, currency_id))
}
fn collateral_to_wrapped(
&self,
amount: BalanceWrapper<Balance>,
currency_id: CurrencyId,
at: Option<<Block as BlockT>::Hash>,
) -> RpcResult<BalanceWrapper<Balance>> {
let api = self.client.runtime_api();
let at = at.unwrap_or_else(|| self.client.info().best_hash);
handle_response(api.collateral_to_wrapped(at, amount, currency_id))
}
}