Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
d045acc
No pad hasher header (#327)
dastansam Nov 28, 2025
0123aeb
Verify header in the wormhole proof (#295)
dastansam Nov 29, 2025
36e47fd
feat: qp-header for Planck release (#338)
czareko Dec 12, 2025
44f30a2
Merge branch 'main' of github.com:Quantus-Network/chain into wormhole
dastansam Dec 12, 2025
cd916c2
Use canonical balances pallet and add support for assets in wormhole …
dastansam Dec 22, 2025
365eb94
Use `ToFelts` trait in the wormhole pallet (#347)
dastansam Jan 14, 2026
1de4987
Add ValidateUnsigned impl to wormhole (#353)
dastansam Jan 19, 2026
426041e
feat: aggregated proof verification in wormhole (#351)
dastansam Jan 19, 2026
ee4616a
check block hash in agg proof
illuzen Jan 19, 2026
44e406b
feat: quantized funding amounts (#354)
ethan-crypto Jan 19, 2026
4307308
Enforce miner wormhole address (#344)
illuzen Jan 19, 2026
bfac102
Merge branch 'testnet/planck' into wormhole
illuzen Jan 19, 2026
33c4e3e
update qp-poseidon version
illuzen Jan 19, 2026
c5956c7
Merge branch 'wormhole' of github.com:Quantus-Network/chain into worm…
illuzen Jan 19, 2026
d584746
made transfer count per-recipient
illuzen Jan 20, 2026
de5553a
feat: enable wormhole verifier tests (#356)
ethan-crypto Jan 20, 2026
40978d6
remove painful test, we sent it to quantus-cli
illuzen Jan 20, 2026
5df799f
burn half the volume fee
illuzen Jan 20, 2026
a837d44
fmt
illuzen Jan 20, 2026
ca7524d
burn high-security fee instead of sending to treasury (#357)
illuzen Jan 22, 2026
153e46d
Continuous Mining (#358)
illuzen Jan 23, 2026
bd56dcc
feat: Vesting and MerkleAirdrop removed (#360)
czareko Jan 23, 2026
cee6888
Enable wormhole addresses in genesis (#359)
illuzen Jan 23, 2026
29044bb
Merge branch 'main' into testnet/planck
czareko Jan 26, 2026
cbe0b98
add recover funds call (#361)
n13 Jan 26, 2026
1c2b978
feat: Custom Mutisig Pallet (#352)
czareko Jan 27, 2026
6049ada
fix: Multisig - auto-cleaning expanded (#364)
czareko Jan 28, 2026
ab56c6e
QUIC miner (#363)
illuzen Jan 29, 2026
86b7389
Merge branch 'wormhole' into testnet/planck
illuzen Feb 3, 2026
de0874e
use new plonky2-verifier crate
illuzen Feb 6, 2026
07fc6ea
fix: Remove no_random feature and patch plonky2 crates to use local v…
illuzen Feb 6, 2026
90bc55f
Revert wormhole and plonky2 changes back to QUIC miner (#363)
czareko Feb 6, 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
329 changes: 169 additions & 160 deletions Cargo.lock

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,16 @@ members = [
"miner-api",
"node",
"pallets/balances",
"pallets/merkle-airdrop",
"pallets/mining-rewards",
"pallets/multisig",
"pallets/qpow",
"pallets/reversible-transfers",
"pallets/scheduler",
"pallets/wormhole",
"primitives/consensus/pow",
"primitives/consensus/qpow",
"primitives/dilithium-crypto",
"primitives/header",
"primitives/scheduler",
"primitives/state-machine",
"primitives/trie",
Expand Down Expand Up @@ -84,6 +85,8 @@ names = { version = "0.14.0", default-features = false }
nohash-hasher = { version = "0.2.0" }
num-traits = { version = "0.2", default-features = false, features = ["libm"] }
once_cell = { version = "1.21.3" }
p3-field = { version = "0.3.0" }
p3-goldilocks = { version = "0.3.0" }
parking_lot = { version = "0.12.1", default-features = false }
partial_sort = { version = "0.2.0" }
paste = { version = "1.0.15", default-features = false }
Expand Down Expand Up @@ -128,13 +131,14 @@ zeroize = { version = "1.7.0", default-features = false }

# Own dependencies
pallet-balances = { path = "./pallets/balances", default-features = false }
pallet-merkle-airdrop = { path = "./pallets/merkle-airdrop", default-features = false }
pallet-mining-rewards = { path = "./pallets/mining-rewards", default-features = false }
pallet-multisig = { path = "./pallets/multisig", default-features = false }
pallet-qpow = { path = "./pallets/qpow", default-features = false }
pallet-reversible-transfers = { path = "./pallets/reversible-transfers", default-features = false }
pallet-scheduler = { path = "./pallets/scheduler", default-features = false }
pallet-wormhole = { path = "./pallets/wormhole", default-features = false }
qp-dilithium-crypto = { path = "./primitives/dilithium-crypto", version = "0.2.0", default-features = false }
qp-header = { path = "./primitives/header", default-features = false }
qp-scheduler = { path = "./primitives/scheduler", default-features = false }
qp-wormhole = { path = "./primitives/wormhole", default-features = false }
qpow-math = { path = "./qpow-math", default-features = false }
Expand Down Expand Up @@ -182,7 +186,6 @@ pallet-transaction-payment-rpc = { version = "44.0.0", default-features = false
pallet-transaction-payment-rpc-runtime-api = { version = "41.0.0", default-features = false }
pallet-treasury = { version = "40.0.0", default-features = false }
pallet-utility = { version = "41.0.0", default-features = false }
pallet-vesting = { version = "41.0.0", default-features = false }
prometheus-endpoint = { version = "0.17.2", default-features = false, package = "substrate-prometheus-endpoint" }
sc-basic-authorship = { version = "0.50.0", default-features = false }
sc-block-builder = { version = "0.45.0", default-features = true }
Expand All @@ -192,6 +195,7 @@ sc-consensus = { version = "0.50.0", default-features = false }
sc-executor = { version = "0.43.0", default-features = false }
sc-network = { version = "0.51.0", default-features = false }
sc-network-common = { version = "0.49.0", default-features = false }
sc-network-sync = { version = "0.50.0", default-features = false }
sc-network-types = { version = "0.17.0", default-features = false }
sc-offchain = { version = "46.0.0", default-features = false }
sc-service = { version = "0.52.0", default-features = false }
Expand Down
Loading
Loading