Skip to content

Commit

Permalink
Hyperbridge sepolia upgrade (#40)
Browse files Browse the repository at this point in the history
* hyperbridge sepolia upgrade

* use https addresses
  • Loading branch information
Wizdave97 authored Nov 12, 2023
1 parent 66074e2 commit 68bc03c
Show file tree
Hide file tree
Showing 10 changed files with 38 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
toolchain: nightly

- name: Build
run: cargo +nightly build --release -p tesseract --features goerli
run: cargo +nightly build --release -p tesseract --features sepolia

- name: Install Cargo get
run: cargo install cargo-get
Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion consensus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ futures = "0.3.28"
tokio = { version = "1.32.0", features = ["full"] }

tesseract-primitives = { path = "../primitives" }
ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
12 changes: 6 additions & 6 deletions ethereum/evm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ ethabi = { version = "18.0.0", features = ["rlp", "full-serde"], default-feature
tokio = { version = "1.32.0", features = ["macros", "sync"] }
tokio-stream = "0.1.14"

pallet-ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp-rpc = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
pallet-ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
ismp-rpc = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
beefy-verifier-primitives = { path = "../../substrate/beefy/primitives" }
consensus-client = { package = "ismp-sync-committee", git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
consensus-client = { package = "ismp-sync-committee", git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }

tesseract-primitives = { path = "../../primitives" }
ethereum-trie = { git ="ssh://git@github.com/polytope-labs/hyperbridge", branch = "main", default-features = false }
ethereum-trie = { git ="https://github.com/polytope-labs/hyperbridge", branch = "main", default-features = false }

trie-db = { version= "0.24.0", default-features = false }
hash-db = { version = "0.15.2", default-features = false }
Expand All @@ -49,6 +49,6 @@ hex = "0.4.3"
dotenv = "0.15.0"

[features]
goerli = ["consensus-client/goerli"]
sepolia = ["consensus-client/sepolia"]
mainnet = ["consensus-client/mainnet"]
testing = []
14 changes: 7 additions & 7 deletions ethereum/sync-committee/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ description = "Sync-committee primitives for ISMP messaging relay"
authors = ["Polytope Labs <[email protected]>"]

[dependencies]
prover = { package = "sync-committee-prover", git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
verifier = { package = "sync-committee-verifier", git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
primitives = { package = "sync-committee-primitives", git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
consensus-client = { package = "ismp-sync-committee", git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
prover = { package = "sync-committee-prover", git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
verifier = { package = "sync-committee-verifier", git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
primitives = { package = "sync-committee-primitives", git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
consensus-client = { package = "ismp-sync-committee", git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.105"
hex = "0.4.3"
Expand All @@ -25,21 +25,21 @@ base2 = "0.3.1"
primitive-types = { version = "0.12.1", features = ["impl-codec"] }
eventsource-client = "0.11.0"

ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }

tesseract-primitives = { path = "../../primitives" }
tesseract-evm = { path = "../evm"}

[dev-dependencies]
tesseract-evm = { path = "../evm", features = ["testing"] }
sp-core = "22.0.0"
ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
codec = { package = "parity-scale-codec", version = "3.2.2", features = ["derive"] }
dotenv = "0.15.0"
anyhow = "1.0.75"

[features]
goerli = ["consensus-client/goerli", "prover/goerli"]
sepolia = ["consensus-client/sepolia", "prover/sepolia"]
mainnet = ["consensus-client/mainnet"]
finality-events = []
testing = []
4 changes: 2 additions & 2 deletions messaging/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ anyhow = "1.0.75"
log = "0.4.17"
futures = "0.3.28"
tokio = { version = "1.32.0", features = ["full"] }
pallet-ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
pallet-ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
tesseract-primitives = { path = "../primitives" }
ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
sp-core = { version = "21.0.0", features = ["full_crypto"] }
2 changes: 1 addition & 1 deletion primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ log = "0.4.17"
serde = { version = "1.0.164", features = ["derive"] }
primitive-types = "0.12.1"

ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
parity-scale-codec = "3.2.2"
8 changes: 4 additions & 4 deletions relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ tesseract-sync-committee = { path = "../ethereum/sync-committee" }
tesseract-beefy = { path = "../substrate/beefy/host" }

# polytope labs
ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
pallet-ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp-sync-committee = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
pallet-ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
ismp-sync-committee = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }

# crates.io
log = "0.4.19"
Expand All @@ -35,5 +35,5 @@ codec = { package = "parity-scale-codec", version = "3.2.2", features = ["derive


[features]
goerli = ["tesseract-sync-committee/goerli", "tesseract-evm/goerli"]
sepolia = ["tesseract-sync-committee/sepolia", "tesseract-evm/sepolia"]
mainnet = ["tesseract-sync-committee/mainnet", "tesseract-evm/mainnet"]
8 changes: 4 additions & 4 deletions substrate/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ log = "0.4.19"

primitives = { package = "tesseract-primitives", path = "../../primitives" }

pallet-ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp-demo = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp-rpc = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
pallet-ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
ismp-demo = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
ismp-rpc = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }
tokio = { version = "1.32.0" }
debounced = { git= "https://github.com/polytope-labs/debounced", branch = "main"}
[features]
Expand Down
2 changes: 1 addition & 1 deletion substrate/parachain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ anyhow = "1.0.75"
futures = "0.3.28"
async-trait = "0.1.53"

ismp = { git = "ssh://git@github.com/polytope-labs/hyperbridge", branch = "main" }
ismp = { git = "https://github.com/polytope-labs/hyperbridge", branch = "main" }

tesseract-primitives = { path = "../../primitives" }

0 comments on commit 68bc03c

Please sign in to comment.