diff --git a/Cargo.toml b/Cargo.toml index f52ddac..10557c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,10 +6,10 @@ resolver = "2" [workspace.dependencies] serde_json = "1.0.106" log = "0.4.19" -plonky2_evm = { git = "https://github.com/mir-protocol/plonky2.git", rev = "762e6f07b834df04be8cd290f07465a28c392c6d" } +plonky2_evm = { git = "https://github.com/0xPolygonZero/plonky2.git", rev = "762e6f07b834df04be8cd290f07465a28c392c6d" } rlp = "0.5.2" hex = "0.4.3" [patch.crates-io] # TODO: Remove `eth_trie_utils` patch once version `0.7.0` is released... -eth_trie_utils = { git = "https://github.com/mir-protocol/eth_trie_utils.git", rev = "e9ec4ec2aa2ae976b7c699ef40c1ffc716d87ed5" } +eth_trie_utils = { git = "https://github.com/0xPolygonZero/eth_trie_utils.git", rev = "e9ec4ec2aa2ae976b7c699ef40c1ffc716d87ed5" } diff --git a/README.md b/README.md index 7c78204..ec53349 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Plonky Edge block trace parser -This is a simple library dedicated to parsing [Polygon Edge](https://github.com/0xPolygon/polygon-edge) block traces into a format usable for txn proof generation within [plonky2](https://github.com/mir-protocol/plonky2) (and later also [plonky3](https://github.com/Plonky3)). +This is a simple library dedicated to parsing [Polygon Edge](https://github.com/0xPolygon/polygon-edge) block traces into a format usable for txn proof generation within [plonky2](https://github.com/0xPolygonZero/plonky2) (and later also [plonky3](https://github.com/Plonky3)). Note that at the time of writing support for Edge block traces are currently not stable and only available on the `feat/zero` branch. diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 267e81b..ba3020d 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -12,7 +12,7 @@ eth_trie_utils = "0.6.0" hex = { workspace = true } keccak-hash = "0.10.0" log = { workspace = true } -plonky_block_proof_gen = { git = "https://github.com/mir-protocol/plonky-block-proof-gen.git", rev = "73c3bcbaf3bfe913641c5b6817bc3ba5aa9859bc" } +plonky_block_proof_gen = { git = "https://github.com/0xPolygonZero/plonky-block-proof-gen.git", rev = "9951509f31c0099dca446b478bfb8a45cf8aaf97" } plonky2_evm = { workspace = true } rlp = { workspace = true } rlp-derive = "0.1.0"