mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 02:51:01 +00:00
1bbc77fee1
* Impl SubstrateEquivocationDetectionPipeline for Millau * Impl SubstrateEquivocationDetectionPipeline for Rialto * Make BridgeHubSignedExtension more generic * Define generate_report_equivocation_call_builder!() macro * Impl SubstrateEquivocationDetectionPipeline for Rococo * Impl SubstrateEquivocationDetectionPipeline for Wococo * Impl SubstrateEquivocationDetectionPipeline for Kusama * Impl SubstrateEquivocationDetectionPipeline for Polkadot * Complex relayer simplification - remove `signer` and `transactions_mortality` and add `tx_params` - change the order of some fields * Add equivocation detection CLI traits * Complex relayer: start equivocation detectin loop * Update runtimes regeneration script * Equivocation loop: Fix infinite loop * Revert "Complex relayer: start equivocation detectin loop" This reverts commit b518ef85679d73654f9f0e2add38cd3839552057. * Add subcommand for starting the equivocation detection loop * Fixes * Initialize empty metrics for the equivocations detector loop
29 lines
1.2 KiB
TOML
29 lines
1.2 KiB
TOML
[package]
|
|
name = "relay-polkadot-client"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.1.5", features = ["derive"] }
|
|
scale-info = { version = "2.9.0", default-features = false, features = ["derive"] }
|
|
subxt = { version = "0.31.0", default-features = false, features = ["native"] }
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-polkadot = { path = "../../primitives/chain-polkadot" }
|
|
bp-polkadot-core = { path = "../../primitives/polkadot-core" }
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
|
|
relay-substrate-client = { path = "../client-substrate" }
|
|
relay-utils = { path = "../utils" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-weights = { git = "https://github.com/paritytech/substrate", branch = "master" }
|