Skip to content

Commit

Permalink
Merge pull request #152 from yangby-cryptape/pr/support-capella-fork
Browse files Browse the repository at this point in the history
feat: support the Capella fork
  • Loading branch information
ashuralyk authored Apr 25, 2023
2 parents e1be14f + b6a659e commit 3dabdf1
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 61 deletions.
92 changes: 42 additions & 50 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ members = [
]

[patch.crates-io]
arbitrary = { git = "https://github.com/michaelsproul/arbitrary", rev="f002b99989b561ddce62e4cf2887b0f8860ae991" }
# ibc-proto = { git = "https://github.com/cosmos/ibc-proto-rs.git", branch = "main" }
# tendermint = { git = "https://github.com/informalsystems/tendermint-rs", branch = "main" }
# tendermint-rpc = { git = "https://github.com/informalsystems/tendermint-rs", branch = "main" }
Expand Down
4 changes: 2 additions & 2 deletions crates/relayer-storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ description = "The storage part of SynapseWeb3 IBC Relayer"
[dependencies]
thiserror = "1.0.37"
rocksdb = { package = "ckb-rocksdb", version ="=0.19.0", default-features = false, features = ["snappy"] }
eth2_types = { git = "https://github.com/synapseweb3/lighthouse", rev = "307ade9", package = "types" }
eth_light_client_in_ckb-verification = { version = "0.1.0-alpha.0", git = "https://github.com/synapseweb3/eth-light-client-in-ckb", rev = "e94ec1a" }
eth2_types = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6", package = "types" }
eth_light_client_in_ckb-verification = { version = "0.1.0", git = "https://github.com/synapseweb3/eth-light-client-in-ckb", rev = "054d9ae" }
8 changes: 4 additions & 4 deletions crates/relayer-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ itertools = { version = "0.10.3", default-features = false, features = ["use_all
primitive-types = { version = "0.12.1", default-features = false, features = ["serde_no_std"] }
dyn-clone = "1.0.8"
num-rational = "0.4.1"
eth2_ssz_types = { git = "https://github.com/synapseweb3/lighthouse", rev = "307ade9" }
bls = { git = "https://github.com/synapseweb3/lighthouse", rev = "307ade9" }
tree_hash = { git = "https://github.com/synapseweb3/lighthouse", rev = "307ade9" }
tree_hash_derive = { git = "https://github.com/synapseweb3/lighthouse", rev = "307ade9" }
eth2_ssz_types = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6" }
bls = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6" }
tree_hash = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6" }
tree_hash_derive = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6" }
thiserror = "1.0"
ethereum-types = "0.14.1"
hex = "0.4"
Expand Down
8 changes: 4 additions & 4 deletions crates/relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ ibc-telemetry = { version = "0.23.0", path = "../telemetry", optional = true
ibc-relayer-types = { version = "0.23.0", path = "../relayer-types", features = ["mocks"] }
ibc-relayer-storage = { version = "0.1.0", path = "../relayer-storage" }

eth2_types = { git = "https://github.com/synapseweb3/lighthouse", rev = "307ade9", package = "types" }
tree_hash_derive = { git = "https://github.com/synapseweb3/lighthouse", rev = "307ade9" }
tree_hash = { git = "https://github.com/synapseweb3/lighthouse", rev = "307ade9" }
eth2_types = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6", package = "types" }
tree_hash_derive = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6" }
tree_hash = { git = "https://github.com/synapseweb3/lighthouse", rev = "2c246d6" }

eth_light_client_in_ckb-verification = { version = "0.1.0-alpha.0", git = "https://github.com/synapseweb3/eth-light-client-in-ckb", rev = "e94ec1a" }
eth_light_client_in_ckb-verification = { version = "0.1.0", git = "https://github.com/synapseweb3/eth-light-client-in-ckb", rev = "054d9ae" }

subtle-encoding = "0.5"
humantime-serde = "1.1.1"
Expand Down
2 changes: 1 addition & 1 deletion tools/forcerelay-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ ckb-jsonrpc-types = "0.106.0"
ckb-types = "0.106.0"
hex = "0.4"

eth_light_client_in_ckb-verification = { version = "0.1.0-alpha.0", git = "https://github.com/synapseweb3/eth-light-client-in-ckb", rev = "e94ec1a" }
eth_light_client_in_ckb-verification = { version = "0.1.0", git = "https://github.com/synapseweb3/eth-light-client-in-ckb", rev = "054d9ae" }
relayer = {version = "*", package = "ibc-relayer", path = "../../crates/relayer"}

0 comments on commit 3dabdf1

Please sign in to comment.