Skip to content
  1. Mar 01, 2021
  2. Feb 28, 2021
  3. Feb 27, 2021
  4. Feb 25, 2021
  5. Feb 22, 2021
    • Svyatoslav Nikolsky's avatar
      Generate large messages (#700) · c5b87650
      Svyatoslav Nikolsky authored
      * generate large messages
      
      * consider headers sync lag when computing number of rewards in confirmation
      
      * more fixes
      
      * fix logs
      
      * fix warnings
      
      * do not wait until tx that has delivered nonces will be finalized before submitting other tx
      
      * tests for maximal weight/size
      
      * cleanup
      
      * cleanup
      
      * clippy
      
      * compilation
      
      * args for dispatch weight and remark size
      
      * ExplicitOrMaximal
      
      * clippy
      c5b87650
  6. Feb 17, 2021
  7. Feb 16, 2021
  8. Feb 15, 2021
  9. Feb 12, 2021
  10. Feb 10, 2021
  11. Feb 09, 2021
  12. Feb 02, 2021
  13. Feb 01, 2021
  14. Jan 27, 2021
  15. Jan 26, 2021
    • Svyatoslav Nikolsky's avatar
      Extract common part of relay loops (#660) · 165714ad
      Svyatoslav Nikolsky authored
      * extract common parts of relay loops: begin
      
      * merge client impls
      
      * backoff in exchange loop
      
      * reconnect without clone
      165714ad
    • Andreas Doerr's avatar
      Prevent potential signature reuse (#667) · 773f948b
      Andreas Doerr authored
      * patch audit findings #42
      
      * extend msg signature for substrate relay
      
      * signature verification test
      
      * make proof dependet on call_dispatch crate
      
      * silence clippy
      
      * revert deny exception
      
      * address code review
      
      * since it's not really a proof, call it digest
      773f948b
  16. Jan 25, 2021
  17. Jan 20, 2021
  18. Jan 19, 2021
  19. Jan 18, 2021
  20. Jan 15, 2021
    • Hernando Castano's avatar
      Move justification code to primitives crate (#640) · d9e94715
      Hernando Castano authored
      
      
      * Move justification module to header-chain primitives crate
      
      * Get justification module compiling in new location
      
      * Get justification module tests compiling
      
      * Use justification code from `header-chain` crate
      
      Mostly compiles, having issues with std/test feature flags across crates.
      
      * Move some code around
      
      * Move justification tests to integration testing crate
      
      * Add `test-utils` crate
      
      * Remove tests and test-helper module from justification code
      
      * Use `test-utils` in Substrate bridge pallet tests
      
      * Remove `sp-keyring` related code from `pallet-substrate-bridge`
      
      * Remove `helpers` module from `pallet-substrate-bridge`
      
      * Add some documentation
      
      * Add more documentation
      
      * Fix typo
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      d9e94715
    • Svyatoslav Nikolsky's avatar
      Do not refetch completion data instantly (#649) · ebf4a329
      Svyatoslav Nikolsky authored
      * do not refetch completion data instantly
      
      * clippy
      ebf4a329
  21. Jan 14, 2021
  22. Jan 13, 2021
  23. Jan 12, 2021
  24. Jan 04, 2021
  25. Dec 22, 2020
  26. Dec 21, 2020
  27. Dec 17, 2020
  28. Dec 16, 2020
    • Hernando Castano's avatar
      Rialto to Millau Transfer Generator (#568) · fad8c928
      Hernando Castano authored
      
      
      * Add option to relay for sending transfers to Millau chain
      
      * Endow derived accounts on Millau chain
      
      * Update message generator entrypoint script to send transfers
      
      * Use correct command when sending messages
      
      * Send Root messages from Root origin on source chain
      
      * Wrap calls from Root Origin in Sudo Call
      
      * Allow Root to send messages without paying fees
      
      * Use correct variable when sending messages to Rialto
      
      * Print warning if no message type is provided to script.
      
      * Add note mentioning that certain source origins aren't supported yet
      
      * Use correct runtime when initializing header sync
      
      * Remove option to send messages as Root
      
      * Remove endowment of derived Root accounts
      
      * Fix indentation.
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      fad8c928
    • Hernando Castano's avatar
      Update Substrate Dependency (#566) · 64dab9c2
      Hernando Castano authored
      
      
      * Update `sp-io` dependency
      
      * Rename Trait to Config
      
      * RustFmt
      
      * Bump `sp-io` again
      
      * Use new frame_system weight types in Rialto and Millau runtimes
      
      * Update test Runtimes to use new weight types
      
      * Bump `sp-io` again
      
      * Update to not-the latest first.
      
      * Update benchmarks.
      
      * Another Trai.
      
      * Move new weight types into runtime primitive crates
      
      This allows us to check limits for extrinsics from other parts
      of the codebase without pulling in the entire chain runtime.
      
      * Remove leftover comments
      
      * Move new functions to a better location
      
      * Small formatting fixes
      
      * Add actual documentation to new weight config types
      
      * Decrease maximum block weight of Millau chain
      
      * Decreease maximum block length of Millau chain
      
      Co-authored-by: default avatarTomasz Drwięga <[email protected]>
      64dab9c2
  29. Dec 15, 2020
  30. Dec 14, 2020
  31. Dec 09, 2020
    • Hernando Castano's avatar
      Cross-Chain Transfer Generator (#535) · 5de2bc3d
      Hernando Castano authored
      * 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
      5de2bc3d