123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204 |
- #![warn(missing_docs)]
- use node_runtime::{opaque::Block, AccountId, Balance, BlockNumber, Hash, Index};
- use sc_consensus_babe::{Config, Epoch};
- use sc_consensus_babe_rpc::BabeRpcHandler;
- use sc_consensus_epochs::SharedEpochChanges;
- use sc_finality_grandpa::{
- FinalityProofProvider, GrandpaJustificationStream, SharedAuthoritySet, SharedVoterState,
- };
- use sc_finality_grandpa_rpc::GrandpaRpcHandler;
- use sc_keystore::KeyStorePtr;
- use sc_rpc::SubscriptionTaskExecutor;
- pub use sc_rpc_api::DenyUnsafe;
- use sp_api::ProvideRuntimeApi;
- use sp_block_builder::BlockBuilder;
- use sp_blockchain::{Error as BlockChainError, HeaderBackend, HeaderMetadata};
- use sp_consensus::SelectChain;
- use sp_consensus_babe::BabeApi;
- use sp_transaction_pool::TransactionPool;
- use std::sync::Arc;
- pub struct LightDeps<C, F, P> {
-
- pub client: Arc<C>,
-
- pub pool: Arc<P>,
-
- pub remote_blockchain: Arc<dyn sc_client_api::light::RemoteBlockchain<Block>>,
-
- pub fetcher: Arc<F>,
- }
- pub struct BabeDeps {
-
- pub babe_config: Config,
-
- pub shared_epoch_changes: SharedEpochChanges<Block, Epoch>,
-
- pub keystore: KeyStorePtr,
- }
- pub struct GrandpaDeps<B> {
-
- pub shared_voter_state: SharedVoterState,
-
- pub shared_authority_set: SharedAuthoritySet<Hash, BlockNumber>,
-
- pub justification_stream: GrandpaJustificationStream<Block>,
-
- pub subscription_executor: SubscriptionTaskExecutor,
-
- pub finality_provider: Arc<FinalityProofProvider<B, Block>>,
- }
- pub struct FullDeps<C, P, SC, B> {
-
- pub client: Arc<C>,
-
- pub pool: Arc<P>,
-
- pub select_chain: SC,
-
- pub deny_unsafe: DenyUnsafe,
-
- pub babe: BabeDeps,
-
- pub grandpa: GrandpaDeps<B>,
- }
- pub type IoHandler = jsonrpc_core::IoHandler<sc_rpc::Metadata>;
- pub fn create_full<C, P, SC, B>(
- deps: FullDeps<C, P, SC, B>,
- ) -> jsonrpc_core::IoHandler<sc_rpc_api::Metadata>
- where
- C: ProvideRuntimeApi<Block>,
- C: HeaderBackend<Block> + HeaderMetadata<Block, Error = BlockChainError> + 'static,
- C: Send + Sync + 'static,
- C::Api: substrate_frame_rpc_system::AccountNonceApi<Block, AccountId, Index>,
- C::Api: pallet_transaction_payment_rpc::TransactionPaymentRuntimeApi<Block, Balance>,
- C::Api: BabeApi<Block>,
- C::Api: BlockBuilder<Block>,
- P: TransactionPool + 'static,
- SC: SelectChain<Block> + 'static,
- B: sc_client_api::Backend<Block> + Send + Sync + 'static,
- B::State: sc_client_api::backend::StateBackend<sp_runtime::traits::HashFor<Block>>,
- {
- use pallet_transaction_payment_rpc::{TransactionPayment, TransactionPaymentApi};
- use substrate_frame_rpc_system::{FullSystem, SystemApi};
- let mut io = jsonrpc_core::IoHandler::default();
- let FullDeps {
- client,
- pool,
- select_chain,
- deny_unsafe,
- babe,
- grandpa,
- } = deps;
- let BabeDeps {
- keystore,
- babe_config,
- shared_epoch_changes,
- } = babe;
- let GrandpaDeps {
- shared_voter_state,
- shared_authority_set,
- justification_stream,
- subscription_executor,
- finality_provider,
- } = grandpa;
- io.extend_with(SystemApi::to_delegate(FullSystem::new(
- client.clone(),
- pool,
- deny_unsafe,
- )));
- io.extend_with(TransactionPaymentApi::to_delegate(TransactionPayment::new(
- client.clone(),
- )));
- io.extend_with(sc_consensus_babe_rpc::BabeApi::to_delegate(
- BabeRpcHandler::new(
- client,
- shared_epoch_changes,
- keystore,
- babe_config,
- select_chain,
- deny_unsafe,
- ),
- ));
- io.extend_with(sc_finality_grandpa_rpc::GrandpaApi::to_delegate(
- GrandpaRpcHandler::new(
- shared_authority_set,
- shared_voter_state,
- justification_stream,
- subscription_executor,
- finality_provider,
- ),
- ));
- io
- }
- pub fn create_light<C, P, M, F>(deps: LightDeps<C, F, P>) -> jsonrpc_core::IoHandler<M>
- where
- C: sp_blockchain::HeaderBackend<Block>,
- C: Send + Sync + 'static,
- F: sc_client_api::light::Fetcher<Block> + 'static,
- P: TransactionPool + 'static,
- M: jsonrpc_core::Metadata + Default,
- {
- use substrate_frame_rpc_system::{LightSystem, SystemApi};
- let LightDeps {
- client,
- pool,
- remote_blockchain,
- fetcher,
- } = deps;
- let mut io = jsonrpc_core::IoHandler::default();
- io.extend_with(SystemApi::<Hash, AccountId, Index>::to_delegate(
- LightSystem::new(client, remote_blockchain, fetcher, pool),
- ));
- io
- }
|