// Copyright 2019-2021 Parity Technologies (UK) Ltd. // This file is part of Parity Bridges Common. // Parity Bridges Common 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. // Parity Bridges Common 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 Parity Bridges Common. If not, see . //! Substrate client as Substrate finality proof target. The chain we connect to should have //! bridge GRANDPA pallet deployed and provide `FinalityApi` to allow bridging //! with chain. use crate::{ finality_pipeline::{ FinalitySyncPipelineAdapter, SubmitFinalityProofCallBuilder, SubstrateFinalitySyncPipeline, }, TransactionParams, }; use async_trait::async_trait; use bp_header_chain::justification::GrandpaJustification; use codec::Encode; use finality_relay::TargetClient; use relay_substrate_client::{ AccountIdOf, AccountKeyPairOf, BlockNumberOf, Chain, Client, Error, HashOf, HeaderOf, SyncHeader, TransactionEra, TransactionSignScheme, UnsignedTransaction, }; use relay_utils::relay_loop::Client as RelayClient; use sp_core::{Bytes, Pair}; /// Substrate client as Substrate finality target. pub struct SubstrateFinalityTarget { client: Client, transaction_params: TransactionParams>, } impl SubstrateFinalityTarget

{ /// Create new Substrate headers target. pub fn new( client: Client, transaction_params: TransactionParams>, ) -> Self { SubstrateFinalityTarget { client, transaction_params } } } impl Clone for SubstrateFinalityTarget

{ fn clone(&self) -> Self { SubstrateFinalityTarget { client: self.client.clone(), transaction_params: self.transaction_params.clone(), } } } #[async_trait] impl RelayClient for SubstrateFinalityTarget

{ type Error = Error; async fn reconnect(&mut self) -> Result<(), Error> { self.client.reconnect().await } } #[async_trait] impl TargetClient> for SubstrateFinalityTarget

where AccountIdOf: From< as Pair>::Public>, P::TransactionSignScheme: TransactionSignScheme, { async fn best_finalized_source_block_number( &self, ) -> Result, Error> { // we can't continue to relay finality if target node is out of sync, because // it may have already received (some of) headers that we're going to relay self.client.ensure_synced().await?; Ok(crate::messages_source::read_client_state::< P::TargetChain, HashOf, BlockNumberOf, >(&self.client, P::SourceChain::BEST_FINALIZED_HEADER_ID_METHOD) .await? .best_finalized_peer_at_best_self .0) } async fn submit_finality_proof( &self, header: SyncHeader>, proof: GrandpaJustification>, ) -> Result<(), Error> { let genesis_hash = *self.client.genesis_hash(); let transaction_params = self.transaction_params.clone(); let call = P::SubmitFinalityProofCallBuilder::build_submit_finality_proof_call(header, proof); self.client .submit_signed_extrinsic( self.transaction_params.signer.public().into(), move |best_block_id, transaction_nonce| { Bytes( P::TransactionSignScheme::sign_transaction( genesis_hash, &transaction_params.signer, TransactionEra::new(best_block_id, transaction_params.mortality), UnsignedTransaction::new(call, transaction_nonce), ) .encode(), ) }, ) .await .map(drop) } }