Skip to content
  1. Apr 10, 2024
    • Hernando Castano's avatar
      Stop Importing Full Header Chain (#707) · fb7c1912
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      * Make AncestryProof type more flexible
      
      * Only import single finalized header instead of a chain
      
      * Fix unchecked header import tests
      
      * Add option for limiting ancestry proof size
      
      * Update finality verifier Config in runtimes
      
      * Update some documentation
      
      * Fix Clippy warning
      
      * Allow AncestryChecker to return proof size
      
      Stops us from abusing the `Size` trait
      
      * Remove Size impl for Vec<T>
      
      * Remove size contraints for ancestry proofs
      
      With different proof types its unclear how to "size" should be interpreted,
      so we remove this requirement all together to avoid confusion.
      fb7c1912
    • Hernando Castano's avatar
      Add Logging to Finality Verifier Pallet (#702) · 51364e73
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      * Add some logging to the finality verifier pallet
      
      * Add finality target to happy path log
      51364e73
    • Hernando Castano's avatar
      Wire Finality Verifier Pallet Into Runtimes (#696) · 8c7d0ca3
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      * Add Finality Verifier pallet to runtimes
      
      * Implement simple ancestry checker
      
      * Use the new checker in runtimes
      
      * Remove unused import warning
      
      * Bump max allowed ancestry proof size
      
      * Add a few optimization suggestions when verifying ancestry
      
      * Use session length as upper bound for ancestry proof size
      
      * Remove unused time units
      8c7d0ca3
    • Tomasz Drwięga's avatar
      Add finality verifier test with different validator set id. (#698) · 4719cb22
      Tomasz Drwięga authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * Add test for invalid set id.
      
      * cargo fmt --all
      
      * Update modules/finality-verifier/src/lib.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      4719cb22
    • Hernando Castano's avatar
      Add Unchecked Header Writes to Bridge Pallet (#672) · b921a485
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * Add method for unchecked header imports
      
      * Update docs for importing unchecked headers
      
      * Import unchecked headers in HeaderChain implementation
      
      * Fix Clippy warnings
      
      * Move unchecked header import out of Verifier struct
      
      * Clean up unchecked import tests
      
      * Change HeaderChain API to accept iterator of headers
      
      * Use chains of headers in tests
      
      * Remove unused Result return type when appending finalized headers
      
      * Add test which shows that genesis changes are not enacted
      
      * Use initial header's hash for unchecked authority set changes
      
      * Appease Clippy
      
      * Check ancestry before making unchecked writes
      
      * Fix typo
      
      * Fix Clippy warning
      
      * Add note about `ancestry_proof` structure
      
      * Use best hash storage item directly
      
      Co-authored-by: default avatarSvyatoslav Nikolsky <[email protected]>
      b921a485
    • Hernando Castano's avatar
      Migrate Finality Verifier Pallet to FRAME v2 (#669) · be590723
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      * Get pallet compiling with FRAME v2
      
      * Get tests compiling
      
      * Stop printing metadata in tests
      
      * Remove more metadata related code
      
      * Remove unecessary storage attribute
      be590723
    • Hernando Castano's avatar
      Finality Verifier Pallet (#629) · ea5d8662
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      * Add skeleton for `pallet-finality-verifier`
      
      * Sketch out implementation for importing finality proofs
      
      * Get pallet compiling
      
      * Introduce skeleton for mock runtime
      
      * Start using real Grandpa types in finality pallet
      
      * Redefine types in header chain primitives crate
      
      * Implement HeaderChain for Substrate bridge pallet
      
      * Plug Substrate Bridge Pallet into verifier mock
      
      * Fix compilation of `header-chain` primitives
      
      * Start writing to base pallet storage
      
      * Add first "cross-pallet" test
      
      * Move keyring primitives used in tests to shared crate
      
      * Stop pulling `std` deps into `no_std` builds
      
      * Revert "Stop pulling `std` deps into `no_std` builds"
      
      This reverts commit f74dd660652f98b7336936d1534a4e63cc9169a5.
      
      * Revert "Move keyring primitives used in tests to shared crate"
      
      This reverts commit b774fa730b2cdc40545afff308a66b0840266001.
      
      * Use new SS58Prefix type in mock
      
      * Start using `bp-test-utils` in finality pallet
      
      * Start using real justification code
      
      * Get a test working with real justification verification
      
      * Add basic tests for invalid proofs
      
      * Get rid of AncestryProof config type
      
      * Add error types to transaction outcome
      
      * Bound number of headers allowed in a single ancestry proof
      
      * Disallow invalid authority sets
      
      * Remove unused items
      
      * Add some documentation
      
      * Get rid of Clippy warnings
      
      * Rename BaseHeaderChain to TransactionVerifier
      
      * Remove unused code
      
      * Make dummy trait implementations more generic
      
      * Fix more Clippy complaints
      
      * Update tests to use fix for duplicate headers
      
      * Fix benchmarking compilation
      
      * Rename TransactionVerifier to InclusionProofVerifier
      ea5d8662