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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
// SPDX-License-Identifier: GPL-3.0-or-later WITH Classpath-exception-2.0
// This file is part of Frontier.
//
// Copyright (c) 2022 Parity Technologies (UK) Ltd.
//
// 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 std::sync::Arc;

use ethereum_types::{H256, U256};
use jsonrpsee::core::RpcResult;
// Substrate
use sc_client_api::backend::{Backend, StorageProvider};
use sc_transaction_pool::ChainApi;
use sc_transaction_pool_api::InPoolTransaction;
use sp_api::ProvideRuntimeApi;
use sp_blockchain::HeaderBackend;
use sp_core::hashing::keccak_256;
use sp_runtime::traits::Block as BlockT;
// Frontier
use fc_rpc_core::types::*;
use fp_rpc::EthereumRuntimeRPCApi;

use crate::{
    eth::{rich_block_build, Eth, EthConfig},
    frontier_backend_client, internal_err,
};

impl<B, C, P, CT, BE, A, CIDP, EC> Eth<B, C, P, CT, BE, A, CIDP, EC>
where
    B: BlockT,
    C: ProvideRuntimeApi<B>,
    C::Api: EthereumRuntimeRPCApi<B>,
    C: HeaderBackend<B> + StorageProvider<B, BE> + 'static,
    BE: Backend<B>,
    A: ChainApi<Block = B>,
    EC: EthConfig<B, C>,
{
    pub async fn block_by_hash(&self, hash: H256, full: bool) -> RpcResult<Option<RichBlock>> {
        let client = Arc::clone(&self.client);
        let block_data_cache = Arc::clone(&self.block_data_cache);
        let backend = Arc::clone(&self.backend);

        let substrate_hash = match frontier_backend_client::load_hash::<B, C>(
            client.as_ref(),
            backend.as_ref(),
            hash,
        )
        .await
        .map_err(|err| internal_err(format!("{:?}", err)))?
        {
            Some(hash) => hash,
            _ => return Ok(None),
        };

        let schema = fc_storage::onchain_storage_schema(client.as_ref(), substrate_hash);

        let block = block_data_cache.current_block(schema, substrate_hash).await;
        let statuses = block_data_cache
            .current_transaction_statuses(schema, substrate_hash)
            .await;

        let base_fee = client.runtime_api().gas_price(substrate_hash).ok();

        match (block, statuses) {
            (Some(block), Some(statuses)) => {
                let mut rich_block = rich_block_build(
                    block,
                    statuses.into_iter().map(Option::Some).collect(),
                    Some(hash),
                    full,
                    base_fee,
                    false,
                );

                let substrate_hash = H256::from_slice(substrate_hash.as_ref());
                if let Some(parent_hash) = self
                    .forced_parent_hashes
                    .as_ref()
                    .and_then(|parent_hashes| parent_hashes.get(&substrate_hash).cloned())
                {
                    rich_block.inner.header.parent_hash = parent_hash
                }

                Ok(Some(rich_block))
            },
            _ => Ok(None),
        }
    }

    pub async fn block_by_number(
        &self,
        number: BlockNumber,
        full: bool,
    ) -> RpcResult<Option<RichBlock>> {
        let client = Arc::clone(&self.client);
        let block_data_cache = Arc::clone(&self.block_data_cache);
        let backend = Arc::clone(&self.backend);
        let graph = Arc::clone(&self.graph);

        match frontier_backend_client::native_block_id::<B, C>(
            client.as_ref(),
            backend.as_ref(),
            Some(number),
        )
        .await?
        {
            Some(id) => {
                let substrate_hash = client
                    .expect_block_hash_from_id(&id)
                    .map_err(|_| internal_err(format!("Expect block number from id: {}", id)))?;

                let schema = fc_storage::onchain_storage_schema(client.as_ref(), substrate_hash);

                let block = block_data_cache.current_block(schema, substrate_hash).await;
                let statuses = block_data_cache
                    .current_transaction_statuses(schema, substrate_hash)
                    .await;

                let base_fee = client.runtime_api().gas_price(substrate_hash).ok();

                match (block, statuses) {
                    (Some(block), Some(statuses)) => {
                        let hash = H256::from(keccak_256(&rlp::encode(&block.header)));
                        let mut rich_block = rich_block_build(
                            block,
                            statuses.into_iter().map(Option::Some).collect(),
                            Some(hash),
                            full,
                            base_fee,
                            false,
                        );

                        let substrate_hash = H256::from_slice(substrate_hash.as_ref());
                        if let Some(parent_hash) = self
                            .forced_parent_hashes
                            .as_ref()
                            .and_then(|parent_hashes| parent_hashes.get(&substrate_hash).cloned())
                        {
                            rich_block.inner.header.parent_hash = parent_hash
                        }

                        Ok(Some(rich_block))
                    },
                    _ => Ok(None),
                }
            },
            None if number == BlockNumber::Pending => {
                let api = client.runtime_api();
                let best_hash = client.info().best_hash;

                // Get current in-pool transactions
                let mut xts: Vec<<B as BlockT>::Extrinsic> = Vec::new();
                // ready validated pool
                xts.extend(
                    graph
                        .validated_pool()
                        .ready()
                        .map(|in_pool_tx| in_pool_tx.data().clone())
                        .collect::<Vec<<B as BlockT>::Extrinsic>>(),
                );

                // future validated pool
                xts.extend(
                    graph
                        .validated_pool()
                        .futures()
                        .iter()
                        .map(|(_hash, extrinsic)| extrinsic.clone())
                        .collect::<Vec<<B as BlockT>::Extrinsic>>(),
                );

                let (block, statuses) = api
                    .pending_block(best_hash, xts)
                    .map_err(|_| internal_err(format!("Runtime access error at {}", best_hash)))?;

                let base_fee = api.gas_price(best_hash).ok();

                match (block, statuses) {
                    (Some(block), Some(statuses)) => Ok(Some(rich_block_build(
                        block,
                        statuses.into_iter().map(Option::Some).collect(),
                        None,
                        full,
                        base_fee,
                        true,
                    ))),
                    _ => Ok(None),
                }
            },
            None => Ok(None),
        }
    }

    pub async fn block_transaction_count_by_hash(&self, hash: H256) -> RpcResult<Option<U256>> {
        let substrate_hash = match frontier_backend_client::load_hash::<B, C>(
            self.client.as_ref(),
            self.backend.as_ref(),
            hash,
        )
        .await
        .map_err(|err| internal_err(format!("{:?}", err)))?
        {
            Some(hash) => hash,
            _ => return Ok(None),
        };
        let schema = fc_storage::onchain_storage_schema(self.client.as_ref(), substrate_hash);
        let block = self
            .overrides
            .schemas
            .get(&schema)
            .unwrap_or(&self.overrides.fallback)
            .current_block(substrate_hash);

        match block {
            Some(block) => Ok(Some(U256::from(block.transactions.len()))),
            None => Ok(None),
        }
    }

    pub async fn block_transaction_count_by_number(
        &self,
        number: BlockNumber,
    ) -> RpcResult<Option<U256>> {
        if let BlockNumber::Pending = number {
            // get the pending transactions count
            return Ok(Some(U256::from(
                self.graph.validated_pool().ready().count(),
            )))
        }

        let id = match frontier_backend_client::native_block_id::<B, C>(
            self.client.as_ref(),
            self.backend.as_ref(),
            Some(number),
        )
        .await?
        {
            Some(id) => id,
            None => return Ok(None),
        };
        let substrate_hash = self
            .client
            .expect_block_hash_from_id(&id)
            .map_err(|_| internal_err(format!("Expect block number from id: {}", id)))?;
        let schema = fc_storage::onchain_storage_schema(self.client.as_ref(), substrate_hash);
        let block = self
            .overrides
            .schemas
            .get(&schema)
            .unwrap_or(&self.overrides.fallback)
            .current_block(substrate_hash);

        match block {
            Some(block) => Ok(Some(U256::from(block.transactions.len()))),
            None => Ok(None),
        }
    }

    pub fn block_uncles_count_by_hash(&self, _: H256) -> RpcResult<U256> {
        Ok(U256::zero())
    }

    pub fn block_uncles_count_by_number(&self, _: BlockNumber) -> RpcResult<U256> {
        Ok(U256::zero())
    }

    pub fn uncle_by_block_hash_and_index(&self, _: H256, _: Index) -> RpcResult<Option<RichBlock>> {
        Ok(None)
    }

    pub fn uncle_by_block_number_and_index(
        &self,
        _: BlockNumber,
        _: Index,
    ) -> RpcResult<Option<RichBlock>> {
        Ok(None)
    }
}