mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-06 19:37:21 +00:00
bc53b9a03a
* Change copyright year to 2023 from 2022 * Fix incorrect update of copyright year * Remove years from copy right header * Fix remaining files * Fix typo in a header and remove update-copyright.sh
138 lines
4.2 KiB
Rust
138 lines
4.2 KiB
Rust
// This file is part of Substrate.
|
|
|
|
// 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/>.
|
|
|
|
#![allow(non_snake_case)]
|
|
|
|
//! API trait of the chain head.
|
|
use crate::chain_head::event::{ChainHeadEvent, FollowEvent, NetworkConfig};
|
|
use jsonrpsee::{core::RpcResult, proc_macros::rpc};
|
|
|
|
#[rpc(client, server)]
|
|
pub trait ChainHeadApi<Hash> {
|
|
/// Track the state of the head of the chain: the finalized, non-finalized, and best blocks.
|
|
///
|
|
/// # Unstable
|
|
///
|
|
/// This method is unstable and subject to change in the future.
|
|
#[subscription(
|
|
name = "chainHead_unstable_follow",
|
|
unsubscribe = "chainHead_unstable_unfollow",
|
|
item = FollowEvent<Hash>,
|
|
)]
|
|
fn chain_head_unstable_follow(&self, runtime_updates: bool);
|
|
|
|
/// Retrieves the body (list of transactions) of a pinned block.
|
|
///
|
|
/// This method should be seen as a complement to `chainHead_unstable_follow`,
|
|
/// allowing the JSON-RPC client to retrieve more information about a block
|
|
/// that has been reported.
|
|
///
|
|
/// Use `archive_unstable_body` if instead you want to retrieve the body of an arbitrary block.
|
|
///
|
|
/// # Unstable
|
|
///
|
|
/// This method is unstable and subject to change in the future.
|
|
#[subscription(
|
|
name = "chainHead_unstable_body",
|
|
unsubscribe = "chainHead_unstable_stopBody",
|
|
item = ChainHeadEvent<String>,
|
|
)]
|
|
fn chain_head_unstable_body(
|
|
&self,
|
|
follow_subscription: String,
|
|
hash: Hash,
|
|
network_config: Option<NetworkConfig>,
|
|
);
|
|
|
|
/// Retrieves the header of a pinned block.
|
|
///
|
|
/// This method should be seen as a complement to `chainHead_unstable_follow`,
|
|
/// allowing the JSON-RPC client to retrieve more information about a block
|
|
/// that has been reported.
|
|
///
|
|
/// Use `archive_unstable_header` if instead you want to retrieve the header of an arbitrary
|
|
/// block.
|
|
///
|
|
/// # Unstable
|
|
///
|
|
/// This method is unstable and subject to change in the future.
|
|
#[method(name = "chainHead_unstable_header", blocking)]
|
|
fn chain_head_unstable_header(
|
|
&self,
|
|
follow_subscription: String,
|
|
hash: Hash,
|
|
) -> RpcResult<Option<String>>;
|
|
|
|
/// Get the chain's genesis hash.
|
|
///
|
|
/// # Unstable
|
|
///
|
|
/// This method is unstable and subject to change in the future.
|
|
#[method(name = "chainHead_unstable_genesisHash", blocking)]
|
|
fn chain_head_unstable_genesis_hash(&self) -> RpcResult<String>;
|
|
|
|
/// Return a storage entry at a specific block's state.
|
|
///
|
|
/// # Unstable
|
|
///
|
|
/// This method is unstable and subject to change in the future.
|
|
#[subscription(
|
|
name = "chainHead_unstable_storage",
|
|
unsubscribe = "chainHead_unstable_stopStorage",
|
|
item = ChainHeadEvent<String>,
|
|
)]
|
|
fn chain_head_unstable_storage(
|
|
&self,
|
|
follow_subscription: String,
|
|
hash: Hash,
|
|
key: String,
|
|
child_key: Option<String>,
|
|
network_config: Option<NetworkConfig>,
|
|
);
|
|
|
|
/// Call into the Runtime API at a specified block's state.
|
|
///
|
|
/// # Unstable
|
|
///
|
|
/// This method is unstable and subject to change in the future.
|
|
#[subscription(
|
|
name = "chainHead_unstable_call",
|
|
unsubscribe = "chainHead_unstable_stopCall",
|
|
item = ChainHeadEvent<String>,
|
|
)]
|
|
fn chain_head_unstable_call(
|
|
&self,
|
|
follow_subscription: String,
|
|
hash: Hash,
|
|
function: String,
|
|
call_parameters: String,
|
|
network_config: Option<NetworkConfig>,
|
|
);
|
|
|
|
/// Unpin a block reported by the `follow` method.
|
|
///
|
|
/// Ongoing operations that require the provided block
|
|
/// will continue normally.
|
|
///
|
|
/// # Unstable
|
|
///
|
|
/// This method is unstable and subject to change in the future.
|
|
#[method(name = "chainHead_unstable_unpin", blocking)]
|
|
fn chain_head_unstable_unpin(&self, follow_subscription: String, hash: Hash) -> RpcResult<()>;
|
|
}
|