Skip to content
  1. Apr 10, 2024
    • Hernando Castano's avatar
      High-Level Documentation (#565) · d47658c9
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * High level docs - start.
      
      * Clean up README
      
      * Start adding details to high level docs
      
      * More docs on the header sync pallet
      
      * Testing scenarios document.
      
      * Add some scenarios.
      
      * Add multi-sig scenario.
      
      * Start writing about message dispatch pallet
      
      * Move content from old README into PoA specific doc
      
      * Apply suggestions from code review
      
      Co-authored-by: default avatarAndreas Doerr <[email protected]>
      
      * GRANDPA for consistency.
      
      * Describe scenario steps.
      
      * WiP
      
      * Add notes about block production and forks
      
      * Update.
      
      * Add sequence diagram for Millau to Rialto transfer
      
      * Clean up header sync pallet overview
      
      * Remove leftover example code
      
      * Clean up testing scenarios and amend sequence diagram.
      
      * Linking docs.
      
      * Add some more docs.
      
      * Do a bit of cleanup on the high-level docs
      
      * Clean up the testing scenario
      
      * Fix typos in flow charts
      
      * Fix small typo
      
      * Fix indentation of Rust block
      
      * Another attempt at rendering block correctly
      
      * TIL about lazy list numbering in Markdown
      
      * Add list numbers across sections
      
      * Start counting from correct number
      
      * Update README to use correct path to local scripts
      
      * Wrap ASCII art in code block
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      Co-authored-by: default avatarAndreas Doerr <[email protected]>
      d47658c9
    • Hernando Castano's avatar
      Cross-Chain Transfer Generator (#535) · 0ff8c243
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      * Attempt at adding Cross-Chain Transfer Generator
      
      * Add Transfer subcommand for sending messages to Rialto
      
      * Add temp helper script for sending messages
      
      * Remove Message and Lane Ids from Dispatch Event
      
      * Increase transfer amount used by script
      
      * Endow derived Dave account on Rialto with funds
      
      * Update Message generator to send more types of messages
      
      This commit first of all updates the script to use the new CLI
      commands for sending messages. Second, it adds messages which are
      sent from both Target and Source origins.
      
      * Generate messages from Root origin
      
      * Remove dbg! logs from relayer
      
      * Log AccountId as well as HexId
      
      * Remove Balances logs
      
      * Add InstanceId and MessageId back to Dispatch Event
      
      * Add InstanceId and MessageId types for Apps
      
      * Add missing comment
      
      * Document derived accounts as tests
      
      * Move shared commands to variables
      
      * Add example usage for send_message script
      
      * Add docs to message variants
      
      * Fix Clippy complaint
      0ff8c243
    • Tomasz Drwięga's avatar
      Verify Source origin in TargetChainVerifier (#558) · 6f6c8c24
      Tomasz Drwięga authored and Bastian Köcher's avatar Bastian Köcher committed
      * Make sure to verify sender's origin.
      
      * Make sure to use dispatch verification.
      
      * Add tests.
      
      * cargo fmt --all
      
      * Remove superfluous lifetime.
      
      * Move the check to MessageLanVerifier.
      
      * cargo fmt --all
      
      * Fix docs.
      6f6c8c24
    • Svyatoslav Nikolsky's avatar
      Limit max number of unconfirmed messages at inbound lane (#545) · 2944f997
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * limit maximal number of unconfirmed messages at inbound lane
      
      * unrewarded_relayer_entries API
      
      * change relay to support max unrewarded relayer entries
      
      * Update modules/message-lane/src/inbound_lane.rs
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      
      * Update relays/messages-relay/src/message_lane_loop.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * removed pub
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      Co-authored-by: default avatarHernando Castano <[email protected]>
      2944f997
    • Svyatoslav Nikolsky's avatar
      Polkadot integration (#542) · 2d08a9d2
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * kusama primitives + client
      
      * polkadot primitives + client
      
      * lost Chain definitions
      
      * fix compilation and fmt
      
      * Update primitives/runtime/src/lib.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      2d08a9d2
    • Svyatoslav Nikolsky's avatar
      reject too large (by size) messages (#551) · 81a3e7cc
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      81a3e7cc
    • Svyatoslav Nikolsky's avatar
      Limit max number of messages in delivery transaction (#541) · f1949c63
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * limit max number of messages in delivery tx
      
      * support max-messages-in-delivery-tx in relayer
      
      * clippy
      
      * clippy
      
      * Update modules/message-lane/src/lib.rs
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      f1949c63
    • Hernando Castano's avatar
      Add Derived Account Origins to Dispatcher (#519) · 951aa36c
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      * Update some docs
      
      * Add derived account origin
      
      * Add tests for derived origin
      
      * Do a little bit of cleanup
      
      * Change Origin type to use AccountIds instead of Public keys
      
      * Update (most) tests to use new Origin types
      
      * Remove redundant test
      
      * Update `runtime-common` tests to use new Origin types
      
      * Remove unused import
      
      * Fix documentation around origin verification
      
      * Update config types to use AccountIds in runtime
      
      * Update Origin type used in message relay
      
      * Use correct type when verifying message origin
      
      * Make CallOrigin docs more consistent
      
      * Use AccountIds instead of Public keys in Runtime types
      
      * Introduce trait for converting AccountIds
      
      * Bring back standalone function for deriving account IDs
      
      * Remove AccountIdConverter configuration trait
      
      * Remove old bridge_account_id derivation function
      
      * Handle target ID decoding errors more gracefully
      
      * Update message-lane to use new AccountId derivation
      
      * Update merged code to use new Origin types
      
      * Use explicit conversion between H256 and AccountIds
      
      * Make relayer fund account a config option in `message-lane` pallet
      
      * Add note about deriving the same account on different chains
      
      * Fix test weight
      
      * Use AccountId instead of Public key when signing Calls
      
      * Semi-hardcode relayer fund address into Message Lane pallet
      951aa36c
    • Svyatoslav Nikolsky's avatar
      Migrate back to Substrate master (#528) · dd7242bc
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      * migrate back to Substrate master
      
      * fmt
      
      * clippy
      dd7242bc
    • Svyatoslav Nikolsky's avatar
      Chain specific message lane apis (#503) · 53791a1d
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * replace generic message lane APIs with chain-specific
      
      * moved SubstrateHeadersSyncPipeline to headers_pipeline.rs
      
      * substrate-specific message lane trait
      
      * Update relays/substrate/src/messages_lane.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      53791a1d
    • Svyatoslav Nikolsky's avatar
      Use different chain primitives in Millau (#517) · 6dc26739
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      6dc26739
    • Svyatoslav Nikolsky's avatar
      Limit messages weight in batch (#496) · 23f5f3cd
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * limit messages in the batch by weight/count
      
      * fixed components compilation
      
      * reverted obsolete parts of #469
      
      * implement generated_messages_weights
      
      * actually use computed weight in message proof
      
      * fmt and clippy
      
      * fixed TODO
      
      * clippy
      
      * Update relays/messages-relay/src/message_race_loop.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * add issue reference
      
      * add assert message
      
      * grumbles
      
      * fmt
      
      * reexport weight from bp-message-lane
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      Co-authored-by: default avatarHernando Castano <[email protected]>
      23f5f3cd
    • Svyatoslav Nikolsky's avatar
      Millau -> Rialto messages relay (#399) · d4fc7beb
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * Millau messages -> Rialto relay
      
      * prepare for custom race strategy of delivery race
      
      * custom strategy for delivery race
      
      * update TODOs
      
      * add reference to issue 457
      
      * impl reconnect
      
      * clippy
      
      * fix check in test
      
      * fmt
      
      * removed obsolete TODO
      
      * fixed another TODOs
      
      * fmt
      
      * use MAX_UNCONFIRMED_MESSAGES_AT_INBOUND_LANE const from primitives
      
      * Update relays/messages-relay/src/message_lane_loop.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * added SubstrateMessagesProof typedef
      
      * fix test
      
      * removed comment
      
      * additional_proof_required -> ProofParameters
      
      * typo
      
      * multiline literal
      
      * clippy
      
      * fix typo
      
      * and_then -> await
      
      * update_source_latest_confirmed_nonce
      
      * Update relays/messages-relay/src/message_race_delivery.rs
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      d4fc7beb
    • Svyatoslav Nikolsky's avatar
      Parse substrate message proof (#479) · 2d7eacf6
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      * parse substrate message proof
      
      * unfinalized_header
      2d7eacf6
    • Svyatoslav Nikolsky's avatar
      Rialto -> Millau headers relay (#477) · 3e45356a
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * Rialto -> Millau headers relay
      
      * removed more constraints
      
      * removed file from other PR
      
      * Update primitives/rialto/src/lib.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      3e45356a
    • Svyatoslav Nikolsky's avatar
      Substrate relay guards (#470) · b027c812
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * substrate relay guards
      
      * checked time condition
      
      * ChainWithBalances
      
      * removed obsolete comment
      
      * Update relays/substrate-client/src/chain.rs
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      
      * trailing space
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      b027c812
    • Svyatoslav Nikolsky's avatar
      Return cumulative dispatch weight of messages from the `messageLane_proveMessages` (#469) · ef935759
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      * implement OutboundLaneApi and InboundLaneApi for Millau /Rialto runtimes
      
      * fixed typo
      ef935759
    • Hernando Castano's avatar
      Support Tracking Forks in Substrate Pallet (#409) · a6048bca
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * Support multiple "best headers" from different forks
      
      * Update the name of a test
      
      * Add note about multiple scheduled changes
      
      * Disallow multiple scheduled authority set changes
      
      * Return multiple best headers from Runtime APIs
      
      * Remove invalid test write-up
      
      * Add some sketch-ups of test scenarios
      
      * Clean up test scenarios
      
      * Add module for testing forks
      
      * Write headers to storage
      
      * Add way to check expected outcome for header imports
      
      * Add support for importing finality proofs
      
      * Support importing headers which schedule changes
      
      * Write out test scenario using new framework
      
      * Map authority set changes across forks
      
      Gets all the tests in the `forks` module passing
      
      * Remove basic tests
      
      These were used when working on the initial test helper
      
      * Prevent multiple pending set changes on the same fork
      
      * Remove old test which allowed imports past unfinalized header
      
      * Ignore failing test (for now)
      
      * Rewrite `if` comparison using `match` and `cmp`
      
      Fixes Clippy warning: `comparison_chain`
      
      * Add helper for writing test headers with default characteristics
      
      * Fix test that checked authority set updates
      
      * Make note about importing headers on different unfinalized fork
      
      * Perform some cleanup on the fork module
      
      * Fix Clippy complaints
      
      * Provide list of unfinalized headers to Runtime APIs
      
      * Add proofs to expect() calls
      
      * Make tests the focus of the forks module
      
      * Allow specific errors to be checked in fork tests
      
      * Remove unused method
      
      * Replace unreachable() statement with expect()
      
      * Rename storage `unfinalized_headers() `to make its purpose more clear
      
      * Update Runtime API name in relayer to match pallet
      
      * Commit `unfinalized_headers` changes I forgot to add
      
      * Rename ChainTipHeight to BestHeight
      
      * Make schedule_next_set_change require a mutable reference
      
      * Remove check for key when enacting authority set
      
      We only expect to take the happy-path in the pallet anyways, so this check
      to save ourselves the time spent decoding the entry isn't really used.
      
      * Clear justification set when writing headers to storage
      
      * Clarify why we only allow one set change per fork
      
      * Change best_headers() to return HeaderIDs
      
      Prevents us from returning full headers (which are more expensive to
      get from storage) since we only care about header IDs (number, hash)
      anyways.
      
      * Fix Clippy complaint
      
      * Make note about equivocations
      
      * Use HeaderIds when returning incomplete headers
      
      This change stops returning full headers which are more expensive
      to get from storage than header Ids (number, hash) are. Clients likely
      don't need the full header anyways which is why this change is fine.
      
      * Introduce HeaderId type to reduce type complexity
      
      * Add signal hash to storage during genesis config
      
      * Return error instead of expect()-ing
      
      * Fix Clippy lint about `ok_or` fn call
      
      * Rename `forks` module to indicate that it's for testing
      
      * Use `const` for `expect()` proofs
      
      * Remove check that key exists before `kill`-ing value
      
      Co-authored-by: default avatarSvyatoslav Nikolsky <[email protected]>
      a6048bca
    • Svyatoslav Nikolsky's avatar
      Integrate message-lane module RPCs into Rialto/Millau nodes (#458) · 74249a08
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      * integrate message-lane RPCs into Millau and Rialto runtime
      
      * fmt
      
      * use instance in InboundLanes
      
      * moved RialtoMessageLaneKeys/MillauMessageLaneKeys inside rpc_extensions_builder to ease Substrate refs update
      74249a08
    • Svyatoslav Nikolsky's avatar
      Subscribe to justifications in Millau->Rialto headers sync (#394) · 1b96e516
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * maintain MillauHeadersToRialto sync by subscribing to Millau justifications
      
      * more tracing in maintain
      
      * Update relays/substrate/src/headers_maintain.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * Update relays/substrate/src/headers_maintain.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * -Please
      
      * -TODO
      
      * revert raise recursion limit
      
      * updated comment
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      1b96e516
    • Svyatoslav Nikolsky's avatar
      Integrate Rialto <-> Millau message lanes into Millau/Rialto runtimes (#386) · e2d9b639
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * millau -> rialto lanes integration
      
      * extrace common message-lane integration types into bridge-runtime-common
      
      * rialto_messages.rs in Millau runtime
      
      * tests
      
      * Update bin/rialto/runtime/src/millau_messages.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * RELAYER_INTEREST_PERCENT -> RELAYER_FEE_PERCENT
      
      * Update bin/runtime-common/src/messages.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * estimate_message_dispatch_and_delivery_fee returns Result
      
      * Update bin/rialto/runtime/src/millau_messages.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * Update bin/rialto/runtime/src/millau_messages.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * Update bin/rialto/runtime/src/millau_messages.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * fmt
      
      * mowed weight formula to primitives
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      e2d9b639
    • Svyatoslav Nikolsky's avatar
      InboundLaneApi::latest_confirmed_nonce (#429) · 5accb2b3
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * InboundLaneApi::latest_confirmed_nonce
      
      * Fix wording and typo
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      5accb2b3
    • Svyatoslav Nikolsky's avatar
      Reward relayers for dispatching messages (#385) · bff930d0
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * reward relayers for dispatching messages
      
      * clippy
      
      * Update modules/message-lane/src/lib.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * added comment
      
      * Update modules/message-lane/src/inbound_lane.rs
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      
      * Update modules/message-lane/src/inbound_lane.rs
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      
      * SubmitterId + RelayerId -> AccountId
      
      * add confirmation_relayer arg to pay_relayer_reward
      
      * cargo fmt --all
      
      * removed verify_and_decode_messages_proof from SourceHeaderChain
      
      * &mut self -> RefCell
      
      * Optimize max messages at inbound lane (#418)
      
      * Add tests for checking messages above max limit
      
      Signed-off-by: default avatarMaciejBaj <[email protected]>
      
      * Extend the relayers entry of inbound lane by additional msg nonce
      
      Signed-off-by: default avatarMaciejBaj <[email protected]>
      
      * Support additional message nonce from inbound relayers
      
      Signed-off-by: default avatarMaciejBaj <[email protected]>
      
      * Code format
      
      Signed-off-by: default avatarMaciejBaj <[email protected]>
      
      * Merge messages range for highest relayers
      
      * Change unwrap() to ensure() while accessing relayers
      
      * Edit rustdocs for relayers deque at inbound lane data
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * Declare additional relayers A & B and use across tests consistently
      
      Signed-off-by: default avatarMaciejBaj <[email protected]>
      
      * Remove duplicates and improve naming for inbound lane tests
      
      * Fix test checking max limit per inbound lane
      
      * Correct relayers rewards loop after a proof is received
      
      * Remove redundant check for messages ahead of received range
      
      * Correct grammar at inbound lane tests rustdocs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * Improve code quality of relayers updates 💅
      
      
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      
      * Test dispatches above max limit from same relayer
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      
      * Fix typo.
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      Co-authored-by: default avatarMaciej Baj <[email protected]>
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      bff930d0
    • Svyatoslav Nikolsky's avatar
      Millau -> Rialto headers relay (#398) · 7a03b709
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * working-millau-to-rialto-relay
      
      * fix Millau state root
      
      * properly fix synced+incomplete headers for sub2sub
      
      * removed wrong TODO
      
      * fmt + clippy
      
      * Update relays/headers-relay/src/headers.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * moved SubstrateTransactionMaker definition
      
      * removed M from phantomdata
      
      * removed prune_synced_children
      
      * methods names as consts
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      7a03b709
    • Hernando Castano's avatar
      Add GenesisConfig for Millau and Rialto Runtimes (#401) · f52c839d
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * Add Rialto as a target for the Millau node
      
      * Rename Rialto module to Rialto-PoA
      
      This will reduce confusion as the Millau runtime has a
      Rialto module as well which refers to the Substrate chain.
      
      * Add Millau as a target for the Rialto node
      
      * Be more explicit about Rialto PoA related code
      
      * Missed some name changes in the Ethereum PoA relay
      
      * Re-export Substrate pallet structs used by node
      
      * Remove `first_scheduled_change` of Millau in Rialto node
      
      * Make Millau's genesis config for Rialto bridge more accurate
      
      * Set initial header for Millau config
      
      * Update initial Millau authorities
      
      Co-authored-by: default avatarSvyatoslav Nikolsky <[email protected]>
      
      * RustFmt Millau authorities
      
      Co-authored-by: default avatarSvyatoslav Nikolsky <[email protected]>
      f52c839d
    • Svyatoslav Nikolsky's avatar
      Move Chain trait to runtime primitives (#403) · 9e9ac8df
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      * extract ChainBase to bp-runtime
      
      * post-merge fixes
      
      * cargo fmt --all
      
      * compilation fixes
      
      * reexport BlockNumberOf, HashOf, HeaderOf
      9e9ac8df
    • Hernando Castano's avatar
      Implement Substrate Pallet Runtime APIs (#389) · 86834e2f
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      * Implement public helpers for querying header info
      
      * Update `best_header` when importing headers
      
      * Add BestHeader to GenesisConfig
      
      * Define extra types for Millau primitives
      
      * Start implementing runtime APIs in Millau runtime
      
      * Add helper for getting headers which require a justification
      
      * Add runtime API for getting headers requiring a justification
      
      * Reword `expect()` proof for valid authority sets
      
      * Fix typo
      
      * Clean up Hasher comment
      
      * Add the Call Dispatch Pallet back to the Millau runtime
      
      * Use types from Rialto in bridge pallet config
      
      * Use the Rialto runtime APIS in the Millau runtime
      
      * Include Millau bridge instance in Rialto runtime
      
      * Add missing doc comment
      
      * Use one storage function for setting and clearing `RequiresJustification`
      
      * Remove TODO comments
      86834e2f
    • Svyatoslav Nikolsky's avatar
      Get substrate dependencies from crates io (#387) · 07a514e9
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      * get Substrate dependencies from crates.io
      
      * removing unused dependencies
      
      * cargo fmt --all
      
      * remove commented dependencies
      
      * remove commented dependencies again
      
      * try to fix compilation
      07a514e9
    • Svyatoslav Nikolsky's avatar
      Substrate relay stub (#376) · dbb72faa
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      * substrate-relay: initial commit
      
      * MillauHeaderApi and RialtoHeaderApi
      
      * post-merge fixes + TODOs + compilation
      dbb72faa
    • Hernando Castano's avatar
      Integrate Grandpa Proof Checker into Substrate Pallet (#375) · f9db999a
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * Remove the Substrate primitives crate
      
      The types here were only used in one place, the pallet itself. If other
      components start using these types we can considering moving them back
      into a standalone crate.
      
      * Start trying to integrate justification module
      
      * Make Substrate blocks configurable in Pallet
      
      * WIP: Try and generalize justification test helpers
      
      * Fix tests which use "real" justifications
      
      * Put common test helpers alongside mock code
      
      * Use common helper for creating headers
      
      * Remove usage of UintAuthorityId
      
      This change favours the use of the Ed25519Keyring authorities
      in order to keep things consistent with the tests.
      
      * Add documentation around config trait types
      
      * Make test header, hash, and number types consistent
      
      * Update modules/substrate/src/verifier.rs
      
      Co-authored-by: default avatarSvyatoslav Nikolsky <[email protected]>
      
      * Update modules/substrate/src/lib.rs
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      
      * Update modules/substrate/Cargo.toml
      
      Co-authored-by: default avatarSvyatoslav Nikolsky <[email protected]>
      
      * Derive `RuntimeDebug` instead of `Debug`
      
      * Add `Paramter` as a trait constraint on config types
      
      Since we use these types as part of the dispatchable functions
      we should explicitly require this.
      
      * Enforce that hasher output matches expected hash type
      
      * Accept headers over indexes when making test justifications
      
      * Check that authority sets are valid
      
      * Make Clippy happy
      
      * Apply correct Clippy fix
      
      * Move justification code into primitives module
      
      * Use new module in verifier code
      
      * Add primitives module for Substrate test helpers
      
      * WIP
      
      * Move justification generation into test_helpers
      
      * Revert commits which move `justification` into primitives
      
      This reverts commit 03a381f0bc4a8dbe4785c30d42ab252a06ba876c.
      
      Co-authored-by: default avatarSvyatoslav Nikolsky <[email protected]>
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      f9db999a
    • Svyatoslav Nikolsky's avatar
      Extract minimal Rialto-Sub and Millau-Sub clients (#365) · 52c1913f
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * extracting sub clients
      
      * fmt + lost docs
      
      * revert enum BridgeInstance
      
      * apply suggestions from review
      
      * explicite debug impl
      
      * remove unused imports from Millau
      
      * fix typo
      
      * fix instance + API name
      
      * Update relays/ethereum/src/ethereum_sync_loop.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * separate crates for millau and rialto client
      
      * cargo fmt
      
      * fix
      
      * fmt
      
      * remove no_std support
      
      * fix compilation again
      
      * Update relays/substrate-client/Cargo.toml
      
      * Update relay clients to Substrate 2.0
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      Co-authored-by: default avatarHernando Castano <[email protected]>
      52c1913f
    • Svyatoslav Nikolsky's avatar
      Split payload types (#383) · 7f7d62d8
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * split payloads (inbound/outbound/opaque/dispatch) + fees (inbound/outbound)
      
      * added tests
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      7f7d62d8
    • Tomasz Drwięga's avatar
      Bump Substrate to v2.0.0 (#382) · be050bda
      Tomasz Drwięga authored and Bastian Köcher's avatar Bastian Köcher committed
      * Change script to update versions.
      
      * Bump versions.
      
      * Address remainders.
      
      * cargo fmt --all
      
      * Fix tests.
      
      * Whitelist BlueOak license
      
      * Fix benchmarks?
      be050bda
    • Svyatoslav Nikolsky's avatar
      Fees, weights, message delivery and dispatch (#339) · 3cd8937b
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * introduce BridgedHeaderChain trait
      
      * LaneMessageVerifier + tests
      
      * fixed tests
      
      * do not expose intenal functions
      
      * cargo fmt --all + fix no_std compilation
      
      * ByWeightDispatcher
      
      * process queued messages from message-lane::on_initialize
      
      * scheduled_messages_are_processed_from_on_initialize
      
      * flush
      
      * deal with fees + weights
      
      * drop heavy messages on dispatch
      
      * cargo fmt
      
      * clippy
      
      * fix comment
      
      * Update primitives/message-lane/src/source_chain.rs
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      
      * removed messages_processed
      
      * Update primitives/message-lane/src/source_chain.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * Update modules/message-lane/src/lib.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * remove queueing from message-lane
      
      * also remove queueing from RPCs
      
      * remove by-weight traces
      
      * dispatch fee
      
      * receiving -> delivery
      
      * receival -> delivery
      
      * remove extra line
      
      * Update primitives/message-lane/src/source_chain.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * cargo fmt --all
      
      * clippy
      
      * let dispatch_weight to be larger than actual_dispatch_weight
      
      * post-merge fix
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      Co-authored-by: default avatarHernando Castano <[email protected]>
      3cd8937b
    • Hernando Castano's avatar
      Initial Substrate Header Chain Implementation (#296) · 44beb308
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      * Add pallet template from Substrate Dev Hub
      
      * Clean up un-needed stuff from template
      
      * Sketch out dispatchable interface
      
      * Introduce notion of finality chain
      
      * Add dependencies which were removed during a rebase
      
      * Sketch out idea for finality header-chain pallet
      
      * Sketch out ChainVerifier trait
      
      * Add storage parameter to verifier
      
      * Write out some things I think I need for finality verification
      
      * Add some pseudocode for marking finalized headers
      
      * Remove parity_scale_codec duplicate
      
      * Move verification logic into pallet
      
      I've been struggling with getting the generic types between the storage and verifier
      traits to play nice with each other. As a way to continue making progress I'm moving
      everything to the pallet. This way I hope to make progress towards a functional
      pallet.
      
      * Start doing verification around authority set changes
      
      * Remove commented BridgeStorage and ChainVerifier traits
      
      * Create Substrate bridge primitives crate
      
      * Add logic for updating scheduled authority sets
      
      * Introduce notion of imported headers
      
      * Implement basic header ancestry checker
      
      * Add mock runtime for tests
      
      * Add testing boilerplate
      
      * Add some storage read/write sanity tests
      
      * Add some basic header import tests
      
      * Add tests for ancestry proofs
      
      * Create helper for changing authority sets
      
      * Fix authority set test
      
      Fixes a problem with how the scheduled change was counted as well as
      a SCALE encoding issue
      
      * Correctly check for scheduled change digests
      
      There's no guarantee that the consensus digest item will be the last
      one in a header, which is how it was previously being checked.
      
      Thanks to Andre for pointing me to the Grandpa code that does this.
      
      * Mark imported headers as finalized when appropriate
      
      When a header that finalizes a chain of headers is succesfully imported
      we also want to mark its ancestors as finalized.
      
      * Add helper for writing test headers
      
      * Add test helper for scheduling authority set changes
      
      * Bump Substrate pallet and primitives to rc6
      
      * Remove Millau verifier implementation
      
      * Add some doc comments
      
      * Remove some needless returns
      
      * Make Clippy happy
      
      * Split block import from finalization
      
      * Make tests compile again
      
      * Add test for finalizing header after importing children
      
      * Create a test stub for importing future justifications
      
      * Start adding genesis config
      
      * Reject justifications from future
      
      We should only be accepting justifications for the header
      which enacted the current authority set. Any ancestors of
      that header which require a justification can be imported
      but they must not be finalized.
      
      * Add explanation to some `expect()` calls
      
      * Start adding GenesisConfig
      
      * Plug genesis config into runtime
      
      * Remove tests module
      
      * Check for overflow when updating authority sets
      
      * Make verifier take ownership of headers during import
      
      * Only store best finalized header hash
      
      Removed the need to store the whole header, since we store
      it was part of the ImportedHeaders structure anyways
      
      * Add some helpers to ImportedHeader
      
      * Update ancestry checker to work with ImportedHeaders
      
      * Update ancestry tests to use ImportedHeaders
      
      * Update import tests to use ImportedHeaders
      
      * Clean up some of the test helpers
      
      * Remove stray dbg!
      
      * Add doc comments throughout
      
      * Remove runtime related code
      
      * Fix Clippy warnings
      
      * Remove trait bound on ImportedHeader struct
      
      * Simplify checks in GenesisConfig
      
      * Rename `get_header_by_hash()`
      
      * Alias `parity_scale_codec` to `codec`
      
      * Reword Verifier documentation
      
      * Missed codec rename in tests
      
      * Split ImportError into FinalizationError
      
      * Remove ChainVerifier trait
      
      This trait was a remenant of the original design, and it is not required
      at the moment. Something like it should be added back in the future to
      ensure that other chains which conform to this interface can be used
      by higher-level bridge applications.
      
      * Fix the verifier tests so they compile
      
      * Implement Deref for ImportedHeader
      
      * Get rid of `new` methods for some Substrate primitives
      
      * Ensure that a child header's number follows its parent's
      
      * Prevent ancestry checker from aimlessly traversing to genesis
      
      If an ancestor which was newer than the child header we were checking we
      would walk all the way to genesis before realizing that we weren't related.
      This commit fixes that.
      
      * Remove redundant clones
      
      * Ensure that old headers are not finalized
      
      Prevents a panic where if the header being imported and `best_finalized`
      were the same header the ancestry checker would return an empty list. We
      had made an assumption that the list would always be populated, and if this
      didn't hold we would end up panicking.
      
      * Disallow imports at same height as `best_finalized`
      
      * Fix Clippy warnings
      
      * Make NextScheduledChange optional
      
      * Rework how scheduled authority set changes are enacted
      
      We now require a justification for headers which _enact_ changes
      instead of those which _schedule_ changes. A few changes had to
      be made to accomodate this, such as changing when we check for
      scheduled change logs in incoming headers.
      
      * Update documentation for Substrate Primitives
      
      * Clarify why we skip header in requires_justification check
      
      * Add description to assert! call
      
      * Fix formatting within macros
      
      * Remove unused dependencies from runtime
      
      * Remove expect call in GenesisConfig
      
      * Turn FinalityProof into a struct
      
      * Add some inline TODOs for follow up PRs
      
      * Remove test which enacted multiple changes
      
      This should be added back at some later point in time, but right now
      the code doesn't allow for this behaviour.
      
      * Use `contains_key` when checking for header
      
      This is better than using `get().is_some()` since we skip
      decoding the storage value
      
      * Use initial hash when updating best_finalized
      
      * Add better checks around enacting scheduled changes
      
      * Rename finality related functions
      
      * Appease Clippy
      44beb308
    • Hernando Castano's avatar
      Rename Ethereum Headers to AuraHeader (#354) · 5163f62d
      Hernando Castano authored and Bastian Köcher's avatar Bastian Köcher committed
      * Rename Header to AuraHeader
      
      This prevents some type conflicts with the PolkadotJS Apps types.
      
      * Fix test and benchmark builds
      
      * Update AuraHeader in types.json
      5163f62d
    • Svyatoslav Nikolsky's avatar
      Remove queueing from message-lane (#352) · d918bcb6
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      * remove queueing from message-lane
      
      * also remove queueing from RPCs
      
      * another trace
      
      * new clippy
      d918bcb6
    • Tomasz Drwięga's avatar
      Initial version of `Call::decode` dispatch. (#300) · 85894005
      Tomasz Drwięga authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * Initial version of call dispatch.
      
      * cargo fmt --all
      
      * Remove unused stuff.
      
      * cargo fmt --all
      
      * weight is part of msg + events
      
      * should_fail_on_weight_mismatch
      
      * plug into runtime
      
      * cargo fmt --all
      
      * fix benchmarks compilation?
      
      * expected/actual values in events
      
      * return actual weight from MessageDispatch::dispatch()
      
      * MessageOrigin -> InstanceId + move bridge_account_id to bp-runtime
      
      * fix benchmarks again
      
      * cargo fmt --all
      
      * clippy
      
      Co-authored-by: default avatarSvyatoslav Nikolsky <[email protected]>
      85894005
    • Svyatoslav Nikolsky's avatar
      Custom RPC methods for DummyOrdered pallet (#317) · c7437c7d
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * RPC for DummyOrdered
      
      * add test for RPC
      
      * proof returned by RPC is Vec<<Vec<u8>>>.encode()
      
      * retrieval -> receiving
      
      * bp-runtime crate
      
      * bp-runtime supports no_std
      
      * cargo fmt --all
      
      * jsonrpc_core::BoxFuture
      
      * Update modules/message-lane/rpc/Cargo.toml
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * Update modules/message-lane/rpc/src/lib.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * messageLane_ prefix for RPC methods
      
      * Update primitives/runtime/Cargo.toml
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * Update primitives/runtime/src/lib.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * Update modules/message-lane/rpc/src/lib.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * Update modules/message-lane/rpc/src/lib.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * Update modules/message-lane/rpc/src/lib.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      c7437c7d
    • Svyatoslav Nikolsky's avatar
      Initial version of DummyOrdered pallet (#299) · f6d45a38
      Svyatoslav Nikolsky authored and Bastian Köcher's avatar Bastian Köcher committed
      
      
      * initial commit of DummyOrdered (aka message-lane) pallet
      
      * API for relay
      
      * cargo fmt --all
      
      * some clippy + no_std
      
      * more clippy + no_std
      
      * inbound lane tests
      
      * outbound lane tests
      
      * cargo fmt --all
      
      * prune old messages whenever outbound lane is updated
      
      * do not care about MessageNonce overflow
      
      * cargo fmt --all
      
      * update crate docs
      
      * MaxHeadersToPruneAtOnce -> MaxMessagesToPruneAtOnce
      
      * MessageAction -> MessageResult
      
      * cargo fmt --all
      
      * fire MessageAccepted + MessagesDelivered
      
      * confirm message processing
      
      * cargo fmt --all
      
      * clippy
      
      * cargo fmt again
      
      * Update modules/message-lane/src/lib.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * Update modules/message-lane/src/lib.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * use crate::*
      
      * cargo fmt --all
      
      * Storage -> S
      
      * Update modules/message-lane/src/outbound_lane.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * add method doc
      
      * Update modules/message-lane/src/inbound_lane.rs
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      
      * added detailed module docs
      
      * Update modules/message-lane/src/lib.rs
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      
      * updated OnMessageReceived docs
      
      * prune only when new message is sent
      
      * removed #![warn(missing_docs)]
      
      * fixed merge with overlapped PR
      
      Co-authored-by: default avatarHernando Castano <[email protected]>
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      f6d45a38