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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
use codec::Codec;
use jsonrpsee::{
core::{async_trait, Error as JsonRpseeError, RpcResult},
proc_macros::rpc,
types::error::{CallError, ErrorCode, ErrorObject},
};
use oracle_rpc_runtime_api::BalanceWrapper;
use sp_api::{ApiError, ProvideRuntimeApi};
use sp_blockchain::HeaderBackend;
use sp_runtime::traits::{Block as BlockT, MaybeDisplay, MaybeFromStr};
use std::sync::Arc;
pub use escrow_rpc_runtime_api::EscrowApi as EscrowRuntimeApi;
#[rpc(client, server)]
pub trait EscrowApi<BlockHash, AccountId, BlockNumber, Balance>
where
Balance: Codec + MaybeDisplay + MaybeFromStr,
BlockNumber: Codec,
AccountId: Codec,
{
#[method(name = "escrow_balanceAt")]
fn balance_at(
&self,
account_id: AccountId,
height: Option<BlockNumber>,
at: Option<BlockHash>,
) -> RpcResult<BalanceWrapper<Balance>>;
#[method(name = "escrow_freeStakable")]
fn free_stakable(&self, account_id: AccountId, at: Option<BlockHash>) -> RpcResult<BalanceWrapper<Balance>>;
#[method(name = "escrow_totalSupply")]
fn total_supply(&self, height: Option<BlockNumber>, 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 Escrow<C, B> {
client: Arc<C>,
_marker: std::marker::PhantomData<B>,
}
impl<C, B> Escrow<C, B> {
pub fn new(client: Arc<C>) -> Self {
Escrow {
client,
_marker: Default::default(),
}
}
}
fn handle_response<T>(result: Result<T, ApiError>, msg: String) -> RpcResult<T> {
result.map_err(|err| internal_err(format!("Runtime error: {:?}: {:?}", msg, err)))
}
#[async_trait]
impl<C, Block, AccountId, BlockNumber, Balance>
EscrowApiServer<<Block as BlockT>::Hash, AccountId, BlockNumber, Balance> for Escrow<C, Block>
where
Block: BlockT,
C: Send + Sync + 'static + ProvideRuntimeApi<Block> + HeaderBackend<Block>,
C::Api: EscrowRuntimeApi<Block, AccountId, BlockNumber, Balance>,
AccountId: Codec,
BlockNumber: Codec,
Balance: Codec + MaybeDisplay + MaybeFromStr,
{
fn balance_at(
&self,
account_id: AccountId,
height: Option<BlockNumber>,
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.balance_at(at, account_id, height),
"Unable to obtain the escrow balance".into(),
)
}
fn free_stakable(
&self,
account_id: AccountId,
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.free_stakable(at, account_id),
"Unable to obtain the escrow balance".into(),
)
}
fn total_supply(
&self,
height: Option<BlockNumber>,
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.total_supply(at, height),
"Unable to obtain the escrow total supply".into(),
)
}
}