mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 12:11:02 +00:00
0bbd2b20a2
* polkadot-staging for v1.0.0 * Add polkadot bulletin chain primitives (#2542) * add polkadot bulletin chain primitives * also impl ChainWithMessages * clippy * instead of requiring sp_std::vec::Vec import when using runtime API generation macro, let's use full type path directly in macro (#2551) * Polkadot Bulletin Chain client (#2552) * relay-polkadot-bulletin-client * generate Polkadot Bulletin Chain Runtime * Add relays that will be used in Polkadot Bulletin <> Polkadot.BH bridge (#2556) * added Polkadot.BH <> Polkadot Bulletin chain relays * uncommented ED stuff * complex PolkadotBulletin <> Polkadot.BH relay * removed TODO * spelling * prepare refund extension infra to add refund extension for messages from standalone chain (#2558) * prepare refund extension infra to add refund extension for messages from standalone chain * spelling * apply adapter to fix compilation * clippy * added POLKADOT_BULLETIN_CHAIN_ID constant * RefundBridgedGrandpaMessages to refund transaction costs for messages coming to/from bridged standalone/relay chain (#2566) * RefundBridgedGrandpaMessages to refund transaction costs for messages coming to/from bridged standalone/relay chain * clippy * fix compilation * fix codec dependency (#2567) * Support message relay limits override (#2570) * support message relay limits overrides for bridges * spelling * export EXTRA_STORAGE_PROOF_SIZE for Polkadot Bulletin (#2572)
35 lines
1.4 KiB
TOML
35 lines
1.4 KiB
TOML
[package]
|
|
name = "relay-bridge-hub-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"] }
|
|
relay-substrate-client = { path = "../client-substrate" }
|
|
|
|
# Bridge dependencies
|
|
|
|
bp-bridge-hub-kusama = { path = "../../primitives/chain-bridge-hub-kusama" }
|
|
bp-bridge-hub-polkadot = { path = "../../primitives/chain-bridge-hub-polkadot" }
|
|
bp-header-chain = { path = "../../primitives/header-chain" }
|
|
bp-messages = { path = "../../primitives/messages" }
|
|
bp-parachains = { path = "../../primitives/parachains" }
|
|
bp-polkadot-bulletin = { path = "../../primitives/chain-polkadot-bulletin" }
|
|
bp-polkadot-core = { path = "../../primitives/polkadot-core" }
|
|
bp-kusama = { path = "../../primitives/chain-kusama" }
|
|
bp-runtime = { path = "../../primitives/runtime" }
|
|
|
|
bridge-runtime-common = { path = "../../bin/runtime-common" }
|
|
|
|
# Substrate Dependencies
|
|
|
|
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|
|
|
|
[dev-dependencies]
|
|
bp-polkadot-core = { path = "../../primitives/polkadot-core" }
|
|
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
|