Skip to content
  1. Dec 05, 2022
  2. Dec 02, 2022
  3. Nov 30, 2022
  4. Nov 22, 2022
  5. Nov 21, 2022
  6. Nov 18, 2022
    • Svyatoslav Nikolsky's avatar
      Remove message fee + message send calls (#1642) · 7b24cd3a
      Svyatoslav Nikolsky authored
      * remove message fee
      
      * it is compiling!
      
      * fixes + fmt
      
      * more cleanup
      
      * more cleanup
      
      * restore MessageDeliveryAndDispatchPayment since we'll need relayer rewards
      
      * started rational relayer removal
      
      * more removal
      
      * removed estimate fee subcommand
      
      * remove DispatchFeePayment
      
      * more removals
      
      * removed conversion rates && some metrics
      
      * - unneeded associated type
      
      * - OutboundMessageFee
      
      * fix benchmarks compilation
      
      * fmt
      
      * test + fix benchmarks
      
      * fix send message
      
      * clippy
      7b24cd3a
  7. Nov 14, 2022
  8. Nov 11, 2022
  9. Oct 21, 2022
  10. Oct 20, 2022
    • Svyatoslav Nikolsky's avatar
      Bump Substrate/Polkadot/Cumulus refs (aka Weights v1.5) (#1597) · 789f185c
      Svyatoslav Nikolsky authored
      * update Substrate + Polkadot + Cumulus refs
      
      * Origin -> RuntimeOrigin
      
      * weights v1.5
      
      * update refs once again + `cargo test -p pallet-bridge-grandpa` works
      
      * started work on `cargo test -p pallet-bridge-messages`
      
      * cargo test -p pallet-bridge-relayers
      
      * cargo test -p pallet-bridge-parachains
      
      * cargo test -p millau-runtime
      
      * cargo test -p bridge-runtime-common
      
      * cargo test -p rialto-runtime
      
      * cargo test -p rialto-parachain-runtime
      
      * cargo test -p millau-bridge-node
      
      * cargo test -p rialto-bridge-node
      
      * cargo test -p rialto-parachain-collator
      
      * cargo test -p messages-relay
      
      * cargo test -p parachains-relay
      
      * cargo test -p substrate-relay
      
      * cargo test --all
      
      * cargo check -p millau-runtime --locked --features runtime-benchmarks
      
      * fix remaining test
      
      * fmt
      
      * try to allow clippy failure temporarily
      
      * Revert "try to allow clippy failure temporarily"
      
      This reverts commit d1b65935.
      
      * use min_by
      
      * Revert "use min_by"
      
      This reverts commit 33042f49.
      
      * Revert "Revert "use min_by""
      
      This reverts commit 1d2204f0.
      
      * trigger CI
      
      * Revert "trigger CI"
      
      This reverts commit 259d91b5.
      
      * new day, new clippy warning
      
      * more clippy issues
      789f185c
  11. Oct 17, 2022
  12. Oct 04, 2022
  13. Sep 09, 2022
    • Svyatoslav Nikolsky's avatar
      update Substrate/Polkadot/Cumulus refs (#1562) · 97cf6dfb
      Svyatoslav Nikolsky authored
      * update Substrate/Polkadot/Cumulus refs
      
      * finality-grandpa 0.16
      
      * fix miillau-runtime compilation
      
      * fix rialto runtime compilation
      
      * fixed rialto-parachain runtime compilation
      
      * backport GRANDPA test fixes
      
      * helper instead of removed record_all_keys
      
      * substrate-relay is compiling
      
      * millau-bridge-node at least compiles
      
      * rialto-bridge-node at least compiles
      
      * rialto-parachain-collator compiles
      
      * fixings tests (wip)
      
      * fmt
      
      * fixed BEEFY alert
      
      * clippy
      
      * removed unused dep
      
      * -extra var
      
      * move Leaf to mod mmr
      
      * fix benchmarks
      97cf6dfb
  14. Aug 12, 2022
    • Serban Iorga's avatar
      Follow-up on #1518 (#1546) · 9dbad39b
      Serban Iorga authored
      
      
      * Adjustments for the xcm messages sending logic
      
      Signed-off-by: default avatarSerban Iorga <[email protected]>
      
      * Deduplicate XCM destination
      
      Signed-off-by: default avatarSerban Iorga <[email protected]>
      
      * [send_message] small changes
      
      Signed-off-by: default avatarSerban Iorga <[email protected]>
      
      * Define CustomNetworkId
      
      Right now we use some associations between Rialto, RialtoParachain and
      Millau chains and chains defined in the NetworkId enum. But if we are
      not carreful we might do mistakes like:
      In Millau:
      pub const ThisNetwork: NetworkId = Kusama;
      pub const RialtoNetwork: NetworkId = Polkadot;
      In Rialto:
      pub const ThisNetwork: NetworkId = Kusama;
      pub const MillauNetwork: NetworkId = Polkadot;
      
      We're introducing CustomNetworkId to have a centralized mapping between
      NetworkId chains and our custom chains.
      
      Signed-off-by: default avatarSerban Iorga <[email protected]>
      
      * Revert "Deduplicate XCM destination"
      
      This reverts commit 3a0a950e
      
      .
      
      Signed-off-by: default avatarSerban Iorga <[email protected]>
      9dbad39b
  15. Jul 27, 2022
    • Svyatoslav Nikolsky's avatar
      Send messages using xcm pallet (#1518) · 9ad43b64
      Svyatoslav Nikolsky authored
      * send messages using xcm pallet
      
      * XcmBridge && XcmBridgeAdapter + (untested) config in RialtoParachain
      
      * impl encode_send_xcm for the rest
      
      * remove duplicate code
      
      * some fixes
      
      * cleanup
      
      * some more tests
      
      * cleanup
      
      * cleanup
      
      * send Rialto -> Millau messages using bridge-messages pallet
      
      * fmt
      
      * some clippy fixes
      
      * more clippy
      9ad43b64
  16. Jul 25, 2022
  17. Jul 18, 2022
  18. Jul 14, 2022
  19. Jul 13, 2022
  20. Jul 12, 2022
  21. Jul 04, 2022
  22. Jun 09, 2022
  23. Jun 07, 2022
  24. Jun 01, 2022
  25. May 25, 2022
  26. May 20, 2022
  27. May 16, 2022
    • Svyatoslav Nikolsky's avatar
      Xcm in Rialto<>Millau bridge (#1379) · 6d7a5eab
      Svyatoslav Nikolsky authored
      * add XCM pallet to Millau runtime
      
      * some progress
      
      * messages are delivered (no fee)
      
      * temp
      
      * flush
      
      * flush
      
      * some progress
      
      * progress
      
      * Trap(42) is dispatched successfully
      
      * fix spelling
      
      * no more manual sending
      
      * parametrize weight credit for tests
      
      * actually charge fees
      
      * enable send-using-messages-pallet to keep our test deployments alive + send valid XCM sometimes
      
      * fix benchmarks build
      
      * fix tests
      6d7a5eab
  28. May 04, 2022
  29. Mar 22, 2022
  30. Mar 14, 2022
    • Svyatoslav Nikolsky's avatar
      Support dedicated lanes for pallets (#962) · 1581f60c
      Svyatoslav Nikolsky authored
      * pass call origin to the message verifier
      
      * is_outbound_lane_enabled -> is_message_accepted
      
      * trait SenderOrigin
      
      * only accept messages from token swap pallet to token swap lane
      
      * tests for edge cases of pay_delivery_and_dispatch_fee
      
      * fixed origin verification
      
      * fmt
      
      * fix benchmarks compilation
      
      * fix TODO with None account and non-zero message fee (already covered by tests)
      
      * revert cargo fmt changes temporarily
      1581f60c
  31. Mar 09, 2022
  32. Mar 02, 2022
  33. Feb 11, 2022
  34. Feb 04, 2022
  35. Jan 27, 2022
  36. Jan 13, 2022