forked from polkadot-evm/frontier
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathclient.rs
More file actions
105 lines (91 loc) · 3.24 KB
/
client.rs
File metadata and controls
105 lines (91 loc) · 3.24 KB
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
// This file is part of Frontier.
// Copyright (C) Parity Technologies (UK) Ltd.
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
use ethereum_types::{H160, U256, U64};
use jsonrpsee::core::RpcResult;
// Substrate
use sc_client_api::backend::{Backend, StorageProvider};
use sc_transaction_pool_api::TransactionPool;
use sp_api::ProvideRuntimeApi;
use sp_blockchain::HeaderBackend;
use sp_consensus::SyncOracle;
use sp_runtime::traits::{Block as BlockT, UniqueSaturatedInto};
// Frontier
use fc_rpc_core::types::*;
use fp_rpc::EthereumRuntimeRPCApi;
use crate::{eth::Eth, internal_err};
impl<B, C, P, CT, BE, CIDP, EC> Eth<B, C, P, CT, BE, CIDP, EC>
where
B: BlockT,
C: ProvideRuntimeApi<B>,
C::Api: EthereumRuntimeRPCApi<B>,
C: HeaderBackend<B> + StorageProvider<B, BE> + 'static,
BE: Backend<B>,
P: TransactionPool<Block = B>
{
pub fn protocol_version(&self) -> RpcResult<u64> {
Ok(1)
}
pub async fn syncing(&self) -> RpcResult<SyncStatus> {
if self.sync.is_major_syncing() {
let current_number = self.client.info().best_number;
let highest_number = self
.sync
.status()
.await
.map(|status| status.best_seen_block)
.map_err(|_| internal_err("fetch best_seen_block failed"))?
.unwrap_or(current_number);
let current_number = UniqueSaturatedInto::<u128>::unique_saturated_into(current_number);
let highest_number = UniqueSaturatedInto::<u128>::unique_saturated_into(highest_number);
Ok(SyncStatus::Info(SyncInfo {
starting_block: U256::zero(),
current_block: U256::from(current_number),
highest_block: U256::from(highest_number),
warp_chunks_amount: None,
warp_chunks_processed: None,
}))
} else {
Ok(SyncStatus::None)
}
}
pub fn author(&self) -> RpcResult<H160> {
let hash = self.client.info().best_hash;
let current_block = self
.storage_override
.current_block(hash)
.ok_or_else(|| internal_err("fetching author through override failed"))?;
Ok(current_block.header.beneficiary)
}
pub fn accounts(&self) -> RpcResult<Vec<H160>> {
Ok(self
.signers
.iter()
.flat_map(|signer| signer.accounts())
.collect::<Vec<_>>())
}
pub fn block_number(&self) -> RpcResult<U256> {
let best_number = self.client.info().best_number;
let best_number = UniqueSaturatedInto::<u128>::unique_saturated_into(best_number);
Ok(U256::from(best_number))
}
pub fn chain_id(&self) -> RpcResult<Option<U64>> {
let hash = self.client.info().best_hash;
let chain_id = self
.client
.runtime_api()
.chain_id(hash)
.map_err(|err| internal_err(format!("fetch runtime chain id failed: {err:?}")))?;
Ok(Some(U64::from(chain_id)))
}
}