Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
117 changes: 117 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ westend-runtime-constants = { git = "https://github.com/paritytech/polkadot-sdk.
# Local workspace members
bulletin-polkadot-runtime = { path = "runtimes/bulletin-polkadot" }
bulletin-westend-runtime = { path = "runtimes/bulletin-westend" }
hop-service = { path = "hop-service" }
pallet-relayer-set = { path = "pallets/relayer-set", default-features = false }
pallet-transaction-storage = { path = "pallets/transaction-storage", default-features = false }
pallet-validator-set = { path = "pallets/validator-set", default-features = false }
Expand Down Expand Up @@ -163,6 +164,7 @@ substrate-wasm-builder = { git = "https://github.com/paritytech/polkadot-sdk.git
[workspace]
resolver = "2"
members = [
"hop-service",
"node",
"pallets/common",
"pallets/relayer-set",
Expand Down
30 changes: 30 additions & 0 deletions hop-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[package]
name = "hop-service"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
repository.workspace = true
description = "Hand-Off Protocol (HOP) ephemeral data pool service"

[dependencies]
# Core
codec = { workspace = true, features = ["derive"] }
parking_lot = { version = "0.12.0" }
thiserror = { version = "2.0.9" }
hex = { workspace = true }
tracing = { workspace = true }
serde = { workspace = true, features = ["derive"] }

# CLI
clap = { workspace = true, features = ["derive"] }

# RPC
jsonrpsee = { workspace = true, features = ["server", "client", "macros"] }

# Substrate primitives (client-side, always with std)
sp-core = { workspace = true, default-features = true }
sp-api = { workspace = true, default-features = true }
sp-blockchain = { workspace = true, default-features = true }
sp-runtime = { workspace = true, default-features = true }
polkadot-primitives = { workspace = true, default-features = true }
Loading