Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
25d8cae
new hashing compatibility
illuzen Mar 19, 2026
40cbe3a
debugging trie
illuzen Mar 19, 2026
e05d261
add regression test for stale node value cache
illuzen Mar 19, 2026
7fea37a
fmt
illuzen Mar 19, 2026
6998c1b
add trie-db into primitives
illuzen Mar 19, 2026
cdc8090
Merge branch 'illuzen/inline-trie-db' into illuzen/no-length-trie
illuzen Mar 19, 2026
7f1d71d
don't cache values in the node cache
illuzen Mar 19, 2026
3386d6c
fix another cache issue
illuzen Mar 20, 2026
a83bdb0
update patch deps
illuzen Mar 20, 2026
e905549
match how circuit computes wormhole address
illuzen Mar 23, 2026
11df5cf
remove zero hash branches we don't use this
n13 Mar 23, 2026
aacc3ef
remove stale reference
n13 Mar 23, 2026
67be716
remove unused const
n13 Mar 23, 2026
1f2dfdd
taplo
n13 Mar 23, 2026
2726d68
sync with miner
illuzen Mar 23, 2026
183fd9f
Merge branch 'illuzen/no-length-trie' of github.com:Quantus-Network/c…
illuzen Mar 23, 2026
50964f7
new poseidon api
illuzen Mar 24, 2026
b5c08e2
injective header
illuzen Mar 25, 2026
ef47fc2
tightening up some errors
n13 Mar 26, 2026
1cef30e
4 felts for block roots
illuzen Mar 26, 2026
63f443d
Merge branch 'main' into illuzen/no-length-trie
ethan-crypto Mar 26, 2026
61b12c4
*update test fixtures
ethan-crypto Mar 27, 2026
928e1c2
update some deps
illuzen Mar 27, 2026
fab0c84
update plonky2 deps
illuzen Mar 27, 2026
3490453
update wormhole deps
illuzen Mar 27, 2026
8b260b5
fix tests, format code, stricter no-inlining
illuzen Mar 28, 2026
2b3e19e
remove compact proof support
illuzen Mar 28, 2026
3437327
remove compact proofs and inline children more thoroughly
illuzen Mar 28, 2026
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
69 changes: 35 additions & 34 deletions Cargo.lock

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

24 changes: 11 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ members = [
"primitives/scheduler",
"primitives/state-machine",
"primitives/trie",
"primitives/trie-db",
"primitives/wormhole",
"qpow-math",
"runtime",
Expand Down Expand Up @@ -147,19 +148,16 @@ sc-consensus-qpow = { path = "./client/consensus/qpow", default-features = false
sp-consensus-qpow = { path = "./primitives/consensus/qpow", default-features = false }

# Quantus network dependencies
qp-plonky2 = { version = "1.1.3", default-features = false }
qp-poseidon = { version = "1.1.0", default-features = false }
qp-poseidon-core = { version = "1.1.0", package = "qp-poseidon-core", default-features = false, features = [
"p2",
"p3",
] }
qp-rusty-crystals-dilithium = { version = "2.1.0", default-features = false }
qp-rusty-crystals-hdwallet = { version = "2.1.0" }
qp-wormhole-circuit = { version = "1.1.1", default-features = false }
qp-wormhole-circuit-builder = { version = "1.1.1", default-features = false }
qp-wormhole-prover = { version = "1.1.1", default-features = false }
qp-wormhole-verifier = { version = "1.1.1", default-features = false }
qp-zk-circuits-common = { version = "1.1.1", default-features = false }
qp-plonky2 = { version = "1.1.6", default-features = false }
qp-poseidon = { version = "1.3.0", default-features = false }
qp-poseidon-core = { version = "1.3.0", default-features = false }
qp-rusty-crystals-dilithium = { version = "2.4.0", default-features = false }
qp-rusty-crystals-hdwallet = { version = "2.3.0" }
qp-wormhole-circuit = { version = "1.2.1", default-features = false }
qp-wormhole-circuit-builder = { version = "1.2.1", default-features = false }
qp-wormhole-prover = { version = "1.2.1", default-features = false }
qp-wormhole-verifier = { version = "1.2.1", default-features = false }
qp-zk-circuits-common = { version = "1.2.1", default-features = false }


# polkadot-sdk dependencies
Expand Down
5 changes: 1 addition & 4 deletions node/src/command.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,7 @@ pub fn generate_quantus_key(
let mut seed = [0u8; 32];
rand::thread_rng().fill(&mut seed);
let sensitive_seed = SensitiveBytes32::from(&mut seed);
let wormhole_pair = WormholePair::generate_new(sensitive_seed).map_err(|e| {
eprintln!("Error generating WormholePair: {:?}", e);
sc_cli::Error::Input(format!("Wormhole generation error: {:?}", e))
})?;
let wormhole_pair = WormholePair::generate_new(sensitive_seed);

// Convert wormhole address to account ID using WormholeAddress type
let wormhole_address = WormholeAddress(H256::from(wormhole_pair.address));
Expand Down
Loading
Loading