1. Jun 22, 2020
  2. Jun 18, 2020
  3. Jun 16, 2020
  4. Jun 15, 2020
  5. Jun 11, 2020
    • Hernando Castano's avatar
      Add async_trait to SourceClient and TargetClient (#123) · 044e0334
      Hernando Castano authored
      * Use async_trait for SourceClient
      
      * Use aync_trait for TargetClient
      
      * Revert async_trait usage for Source/Target client
      
      This reverts commit f636ffaf.
      This reverts commit 2c15755e
      
      .
      
      I'm having a very hard time finding out what is causing compilation
      issues, and I think it's best to start over again.
      
      * Use async_trait for TargetClient
      
      * Use async_trait for SourceClient
      
      * Move where non-async methods are
      
      * RustFmt
      
      * QueuedHeader holds Arc to actual data
      
      * Clean up async return type
      
      Co-authored-by: default avatarSvyatoslav Nikolsky <[email protected]>
      
      * Clean up async return type
      
      Co-authored-by: default avatarSvyatoslav Nikolsky <[email protected]>
      
      * Clean up async return type
      
      Co-authored-by: default avatarSvyatoslav Nikolsky <[email protected]>
      
      * Remove unused import
      
      Co-authored-by: default avatarSvyatoslav Nikolsky <[email protected]>
      044e0334
    • Svyatoslav Nikolsky's avatar
      Update Substrate to latest master (rc3) (#129) · 688abd31
      Svyatoslav Nikolsky authored
      * Substrate 606c56d2e2f69f68f3947551224be6a3515dff60
      
      * update jsonrpsee
      688abd31
    • Hernando Castano's avatar
      Add diagrams from draw.io (#122) · 36353d11
      Hernando Castano authored
      * Add diagrams from draw.io
      
      I'm trying to figure out how best to share these in such a way that we
      can all contribute to them easily. While integration between draw.io
      and GitHub exists, it requires read/write permissions to all ParityTech
      repos, which doesn't comfort me. I think having the .drawio file and
      the corresponding pictures available in a folder is a good start.
      
      I imagine the workflow would be something like this: Someone wants to
      update a diagram, so they go to draw.io and upload the .drawio file
      from the repo. They make their changes, download the new .drawio file
      and corresponding SVG, and commit their changes to the repo.
      
      * Make diagrams consistent with background/filling
      
      The background for each diagram has been removed (now it's transparent)
      and the boxes that make up the diagrams have gotten a filled in white
      colour. This will make it possible to have these diagrams show up on
      non-white backgrounds.
      
      * Add file for describing diagrams
      
      * Add missing extension
      36353d11
  6. Jun 10, 2020
  7. Jun 08, 2020
  8. Jun 05, 2020
  9. Jun 03, 2020
  10. Jun 02, 2020
  11. Jun 01, 2020
  12. May 27, 2020
  13. May 22, 2020
    • Hernando Castano's avatar
      RPC Module for Relays (#80) · 55aa5780
      Hernando Castano authored
      * Test defining an RPC API
      
      * Add wrapper clients for the RPC API
      
      * Implement most Ethereum RPCs
      
      Does not include RPCs that require the bridge contract.
      
      * Implement a few of the Substrate RPCs
      
      Still missing proper error handling, as well as decoding responses from the
      Substrate node.
      
      * Make error handling more ergonomic
      
      * Implement Substrate RPCs that use `state_call`
      
      * Implement rest of Substrate RPCs
      
      * Implement `eth_call` RPC
      
      This can be used to implement higher level requests like fetching Substrate headers
      from an Ethereum node.
      
      * Build some of the higher level Ethereum RPCs
      
      Uses the new Ethereum RPC interface to do so
      
      * Build some of the higher level Substrate RPCs
      
      * Remove old Ethereum RPC methods
      
      * Remove old Substrate RPC methods
      
      * Add some documentation to Substrate RPCs
      
      * Fix typo in enum construction
      
      * Revert commits `0f0435d2` to `ca755029`
      
      This range of commits was mainly trying to integrate the new RPC interface into the existing
      codebase, however this turned out to be a little out of scope for the current PR. Instead this work
      will be incorporated into a PR which aims to close #72.
      
      * Add documentation to RPCs
      
      * Rename functions in RPC API to conform to snake_case
      
      * Check that header contains a number and hash
      
      * Put doc comments on trait instead of impl methods
      
      * Remove expect() calls
      
      * Replace runtime API enums with consts
      
      * Accept Bytes when submitting extrinsic
      
      Let's us avoid using a runtime specific Extrinsic.
      
      * Add strictly typed arguments to RPC API
      
      Missing two methods right now, which require a `serde::Deserialize`
      implemenation before they can be changed.
      
      * Add `chain_getBlock` Substrate RPC
      
      * Use typed arguments for `eth_estimateGas` and `eth_call`
      
      * Silence dead code warnings
      
      * Add check for logs bloom
      
      * Remove unused variables
      
      * Add documentation to RPC error enums
      55aa5780
  14. May 20, 2020
  15. May 19, 2020
    • Hernando Castano's avatar
      Bump rust-web3 to latest v0.11 (#100) · acf24309
      Hernando Castano authored
      * Bump rust-web3 to latest master
      
      * Use tagged release from crates.io
      
      * Add check for `logs_bloom`
      
      Since this is required by the runtime we want to enforce that an
      incoming header has this.
      acf24309
  16. May 18, 2020