-
Notifications
You must be signed in to change notification settings - Fork 699
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[bridges-v2] Permissionless lanes #4949
Commits on Jul 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1a76f1c - Browse repository at this point
Copy the full SHA 1a76f1cView commit details -
prune messages from confirmation tx, not from the on_idle (#2211)
Original PR with more context: paritytech/parity-bridges-common#2211 Signed-off-by: Branislav Kontur <[email protected]> Co-authored-by: Svyatoslav Nikolsky <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 712a690 - Browse repository at this point
Copy the full SHA 712a690View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1251505 - Browse repository at this point
Copy the full SHA 1251505View commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=bridge-hub-westend --runtime_dir=bridge-hubs --target_dir=cumulus --pallet=pallet_bridge_messages
Configuration menu - View commit details
-
Copy full SHA for 0feaa40 - Browse repository at this point
Copy the full SHA 0feaa40View commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=bridge-hub-rococo --runtime_dir=bridge-hubs --target_dir=cumulus --pallet=pallet_bridge_messages
Configuration menu - View commit details
-
Copy full SHA for 4cbe637 - Browse repository at this point
Copy the full SHA 4cbe637View commit details -
Add state to message lanes (#2214)
* add LaneState enum and a field to lanes data * use OptionQuery in InboundLanes and OutboundLanes * ensure that lanes are opened when accessing them * an option to specify opened lanes in genesis config + fixed tests * added PR reference to TODO * fix failing benchmarks * spelling * get_or_init_data -> data bump Substrate, Polkadot and Cumulus (#2223)
Configuration menu - View commit details
-
Copy full SHA for d7f4f43 - Browse repository at this point
Copy the full SHA d7f4f43View commit details -
Change LaneId underlying type from [u8; 4] to H256 (#2221)
* change LaneId underlying type from [u8; 4] to H256 * fixed typo * added some tests * spelling * started fixing testnets * uncommented call size test * changed RewardsAccountParams encoding + added values separator when computing LaneId * review suggestions
Configuration menu - View commit details
-
Copy full SHA for 7a50472 - Browse repository at this point
Copy the full SHA 7a50472View commit details -
Introduce MessagesLaneManager (#2227)
* some useful stuff like LanesManager * clippy * more clippy * Error::LanesManager * {in, out}bound_lane -> active_{in, out}bound_lane * merge two impl blocks in one * fmt
Configuration menu - View commit details
-
Copy full SHA for 4f0dc6a - Browse repository at this point
Copy the full SHA 4f0dc6aView commit details -
* Updated version according to Cumulus * Updated docs
Configuration menu - View commit details
-
Copy full SHA for 0ba297e - Browse repository at this point
Copy the full SHA 0ba297eView commit details -
Allow delivery confirmations on closed outbound lanes (#2257)
* allow delivery confirmations on closed outbound lanes * fix benchmarks compilation
Configuration menu - View commit details
-
Copy full SHA for 963382e - Browse repository at this point
Copy the full SHA 963382eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b372c1 - Browse repository at this point
Copy the full SHA 1b372c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 71ee52b - Browse repository at this point
Copy the full SHA 71ee52bView commit details -
XCM bridge hub pallet (will be deployed at bridge hubs) (#2213)
* XCM over bridge pallet (won't ever be merged to this repo): initial commit * try both bridge-id and lane-id * flush * flush * flush * flush * first prototype * started working on xcm-over-bridge tests * proper open_bridge_works test * more open_bridge tests * request_bridge_closure tests * tests for close_bridge * report_misbehavior tests * renaming xcm-over-bridge ad xcm-bridge-hub: we'll have two similar pallets for dynamic lanes/fees support. One will be deployed at the bridge hub (xcm-bridge-hub) and another one (xcm-bridge-hub-router) at sibling/parent chains to send messages to remote network over the bridge hub * added couple of TODOs * moved BridgeQueuesState here + TODO for implementing report_bridge_queues_state + fmt * fixing TODOs * fixing TODOs * moved bridge locations to primitives * added a couple of TODOs * ref issue from TODO * clippy and spelling * fix tests * another TODOs * typo * LaneState -> force_close_bridge * start_closing_the_bridge -> start_closing_bridge * removed Closing bridge state, so now we only have the Opened -> optional temporary Closed state -> None * spelling * started prototyping suspend+resume on misbehavior * continue prototyping * more tests for open_bridge * more tests for close_bridge * more tests for report_misbehavior * started tests for resume_misbehaving_bridges * implemented tests for resume_misbehaving_bridges * remove UnsuspendedChannelWithMisbehavingOwner because now, when all bridges are resumed at once + we assume that the inbound XCM channel is suspended immediately it is no longer actual * added TODO * add comment re misbehavior reporter if he's associated with the bridge owner * ignored clippy * fmt * use versioned XCM structs in public interfaces and storage + Box XCM locations where possible * spelling * removed TODO in favor of paritytech/parity-bridges-common#2257 * LocalChannelManager -> LocalXcmChannelManager * removed code specific to #2233, because it isn't the only option now * removemisbehavior mentions * also temporary (?) remove BridgesByLocalOrigin because the storage format will likely change to be able to resume bridges from the on_iniitalize/on_idle * AllowedOpenBridgeOrigin -> OpenBridgeOrigin * - TooManyBridgesForLocalOrigin * use bridge_destination_relative_location in args * better impl of strip_low_level_junctions * get rid of xcm_into_latest * clippy * added #![warn(missing_docs)] to new crates
Configuration menu - View commit details
-
Copy full SHA for dcbe134 - Browse repository at this point
Copy the full SHA dcbe134View commit details -
Configuration menu - View commit details
-
Copy full SHA for 23c04f3 - Browse repository at this point
Copy the full SHA 23c04f3View commit details -
Implement additional require primitives for dynamic fees directly for…
… pallet-xcm-bridge-hub (#2261) Xcm bridge hub router v2 (backport to master branch) (#2312) * copy new pallet (palle-xcm-bridge-hub-router) from dynamic-fees-v1 branch * added remaining traces of pallet-xcm-bridge-hub-router * added comment about sharing delivery fee factor between all bridges, opened by this chain * spelling * clippy Implement additional require primitives for dynamic fees directly for pallet-xcm-bridge-hub (#2261) * added backoff mechanism to inbound bridge queue * impl backpressure in the XcmBlobHaulerAdapter * leave TODOs * BridgeMessageProcessor prototype * another TODO * Revert "also temporary (?) remove BridgesByLocalOrigin because the storage format will likely change to be able to resume bridges from the on_iniitalize/on_idle" This reverts commit bdd7ae11a8942b58c5db6ac6d4e7922aa28cece4. * prototype for QueuePausedQuery * implement ExportXcm and MessageDispatch for pallet-xcm-bridge-hub * spelling * flush * small comments to myself * more backports from dynamic-fees-v1 * use new pallet as exporter and dispatcher in Millau * use new pallet as exporter and dispatcher in Rialto * use new pallet as exporter and dispatcher in RialtoParachain * flush * fix remaining compilation issues * warnings + fmt * fix tests * LocalXcmChannelManager * change lane ids * it works! * remove bp-xcm-bridge-hub-router and use LocalXcmChannelManager everywhere * removed commented code * cleaning up * cleaning up * cleaning up * - separated BridgeId and LaneId - BridgeId now uses versioned universal locations - added missing stuff to exporter.rs * OnMessagesDelivered is back * start using bp-xcm-bridge-hub as OnMessagesDelivered * cleaning up * spelling * fix stupid issues * Backport latest relevant dynamic fees changes from v1 to v2 (#2372) * backport latest relevant dynamic fees changes from v1 to v2 * fix comment Added remaining unit tests for pallet-xcm-bridge-hub (#2499) * added backoff mechanism to inbound bridge queue * impl backpressure in the XcmBlobHaulerAdapter * leave TODOs * BridgeMessageProcessor prototype * another TODO * Revert "also temporary (?) remove BridgesByLocalOrigin because the storage format will likely change to be able to resume bridges from the on_iniitalize/on_idle" This reverts commit bdd7ae11a8942b58c5db6ac6d4e7922aa28cece4. * prototype for QueuePausedQuery * implement ExportXcm and MessageDispatch for pallet-xcm-bridge-hub * spelling * flush * small comments to myself * more backports from dynamic-fees-v1 * use new pallet as exporter and dispatcher in Millau * use new pallet as exporter and dispatcher in Rialto * use new pallet as exporter and dispatcher in RialtoParachain * flush * fix remaining compilation issues * warnings + fmt * fix tests * LocalXcmChannelManager * change lane ids * it works! * remove bp-xcm-bridge-hub-router and use LocalXcmChannelManager everywhere * removed commented code * cleaning up * cleaning up * cleaning up * - separated BridgeId and LaneId - BridgeId now uses versioned universal locations - added missing stuff to exporter.rs * OnMessagesDelivered is back * start using bp-xcm-bridge-hub as OnMessagesDelivered * cleaning up * spelling * fix stupid issues * added remaining unit tests for pallet-xcm-bridge-hub fixed benchmarks (#2504) Remove pallet_xcm_bridge_hub::SuspendedBridges (#2505) * remove pallet_xcm_bridge_hub::SuspendedBridges * apply review suggestions
Configuration menu - View commit details
-
Copy full SHA for 6756a25 - Browse repository at this point
Copy the full SHA 6756a25View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b481d8 - Browse repository at this point
Copy the full SHA 0b481d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0c3eaf8 - Browse repository at this point
Copy the full SHA 0c3eaf8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3ab2661 - Browse repository at this point
Copy the full SHA 3ab2661View commit details -
Configuration menu - View commit details
-
Copy full SHA for e0bc5bd - Browse repository at this point
Copy the full SHA e0bc5bdView commit details -
Move refund extension to relayers pallet (#2584)
* moved all call-related definitions to primitives * moving refund extension to relayers pallet * cleaning up * fix compilation + spelling fix compilation remove priority_calculator.rs fix extensions
Configuration menu - View commit details
-
Copy full SHA for b22c01e - Browse repository at this point
Copy the full SHA b22c01eView commit details -
Backport recent changes from polkadot staging (#2590)
* fiox overflow when computing priority boost (#2587) * Backport changes from polkadot-sdk (#2588) * backport #1543 * another backport * https://gitlab.parity.io/parity/mirrors/polkadot-sdk/-/jobs/3833103
Configuration menu - View commit details
-
Copy full SHA for 542e0a7 - Browse repository at this point
Copy the full SHA 542e0a7View commit details -
Fixed "TODO:(bridges-v2) - most of that stuff was introduced with fre…
…e header execution"
Configuration menu - View commit details
-
Copy full SHA for 9352d45 - Browse repository at this point
Copy the full SHA 9352d45View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8936da7 - Browse repository at this point
Copy the full SHA 8936da7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 53cf059 - Browse repository at this point
Copy the full SHA 53cf059View commit details -
Adjusted BH runtimes to the latest vogue
WIP: some TODOs WIP: Adjusted BH runtimes to the latest vogue for `MessageDispatch` and `Origin`s nits WIP: fix signed extensions and refund WIP: add empty migration and TODO (at least runtimes compile) WIP: more compile reexport static_assertions for macro WIP: more compile
Configuration menu - View commit details
-
Copy full SHA for d6d8b2c - Browse repository at this point
Copy the full SHA d6d8b2cView commit details -
Configuration menu - View commit details
-
Copy full SHA for aee6db8 - Browse repository at this point
Copy the full SHA aee6db8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 10b39cd - Browse repository at this point
Copy the full SHA 10b39cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1ffd99d - Browse repository at this point
Copy the full SHA 1ffd99dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 50cc635 - Browse repository at this point
Copy the full SHA 50cc635View commit details -
Configuration menu - View commit details
-
Copy full SHA for 72bf124 - Browse repository at this point
Copy the full SHA 72bf124View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb819e0 - Browse repository at this point
Copy the full SHA fb819e0View commit details -
Disconnect
BridgeId
andLaneId
to be able fix backwards compatibl……ity and XCM upgrades Addressing: paritytech/parity-bridges-common#2500 paritytech/parity-bridges-common#2794
Configuration menu - View commit details
-
Copy full SHA for 692b80b - Browse repository at this point
Copy the full SHA 692b80bView commit details -
Configuration menu - View commit details
-
Copy full SHA for a3554f7 - Browse repository at this point
Copy the full SHA a3554f7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0739367 - Browse repository at this point
Copy the full SHA 0739367View commit details -
Configuration menu - View commit details
-
Copy full SHA for bb91688 - Browse repository at this point
Copy the full SHA bb91688View commit details -
Configuration menu - View commit details
-
Copy full SHA for f1573d7 - Browse repository at this point
Copy the full SHA f1573d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 681aec0 - Browse repository at this point
Copy the full SHA 681aec0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4f2beee - Browse repository at this point
Copy the full SHA 4f2beeeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 32690b7 - Browse repository at this point
Copy the full SHA 32690b7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 294523d - Browse repository at this point
Copy the full SHA 294523dView commit details -
Configuration menu - View commit details
-
Copy full SHA for d6e2136 - Browse repository at this point
Copy the full SHA d6e2136View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a8098f - Browse repository at this point
Copy the full SHA 7a8098fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 61bc9cc - Browse repository at this point
Copy the full SHA 61bc9ccView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e1fec4 - Browse repository at this point
Copy the full SHA 4e1fec4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e1be0b - Browse repository at this point
Copy the full SHA 5e1be0bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 74e0bcf - Browse repository at this point
Copy the full SHA 74e0bcfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9a2202a - Browse repository at this point
Copy the full SHA 9a2202aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5a60c86 - Browse repository at this point
Copy the full SHA 5a60c86View commit details -
Configuration menu - View commit details
-
Copy full SHA for e19b1e5 - Browse repository at this point
Copy the full SHA e19b1e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b8d920 - Browse repository at this point
Copy the full SHA 0b8d920View commit details -
Configuration menu - View commit details
-
Copy full SHA for 956f347 - Browse repository at this point
Copy the full SHA 956f347View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f4a4b3 - Browse repository at this point
Copy the full SHA 0f4a4b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for d442936 - Browse repository at this point
Copy the full SHA d442936View commit details -
Configuration menu - View commit details
-
Copy full SHA for d463d01 - Browse repository at this point
Copy the full SHA d463d01View commit details
Commits on Aug 12, 2024
-
Merge remote-tracking branch 'origin/master' into bko-bridges-v2-perm…
…issionless-lanes
Configuration menu - View commit details
-
Copy full SHA for 9341a25 - Browse repository at this point
Copy the full SHA 9341a25View commit details
Commits on Aug 13, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d4506d5 - Browse repository at this point
Copy the full SHA d4506d5View commit details -
Configuration menu - View commit details
-
Copy full SHA for bbe088c - Browse repository at this point
Copy the full SHA bbe088cView commit details -
Configuration menu - View commit details
-
Copy full SHA for b0f360c - Browse repository at this point
Copy the full SHA b0f360cView commit details -
Merge remote-tracking branch 'origin/master' into bko-bridges-v2-perm…
…issionless-lanes
Configuration menu - View commit details
-
Copy full SHA for 6c8645e - Browse repository at this point
Copy the full SHA 6c8645eView commit details -
Configuration menu - View commit details
-
Copy full SHA for ad93c2b - Browse repository at this point
Copy the full SHA ad93c2bView commit details
Commits on Aug 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 2b5c43f - Browse repository at this point
Copy the full SHA 2b5c43fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b6c21e - Browse repository at this point
Copy the full SHA 2b6c21eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 45b5659 - Browse repository at this point
Copy the full SHA 45b5659View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f57da9 - Browse repository at this point
Copy the full SHA 2f57da9View commit details -
Merge remote-tracking branch 'origin/master' into bko-bridges-v2-perm…
…issionless-lanes
Configuration menu - View commit details
-
Copy full SHA for 63c0e8e - Browse repository at this point
Copy the full SHA 63c0e8eView commit details -
Configuration menu - View commit details
-
Copy full SHA for a4905d1 - Browse repository at this point
Copy the full SHA a4905d1View commit details
Commits on Aug 15, 2024
-
Merge remote-tracking branch 'origin/master' into bko-bridges-v2-perm…
…issionless-lanes
Configuration menu - View commit details
-
Copy full SHA for e94f48a - Browse repository at this point
Copy the full SHA e94f48aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 40b20ff - Browse repository at this point
Copy the full SHA 40b20ffView commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=bridge-hub-westend --runtime_dir=bridge-hubs --target_dir=cumulus --pallet=pallet_bridge_parachains
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for ab2b4be - Browse repository at this point
Copy the full SHA ab2b4beView commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=bridge-hub-rococo --runtime_dir=bridge-hubs --target_dir=cumulus --pallet=pallet_bridge_parachains
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for d6f0f06 - Browse repository at this point
Copy the full SHA d6f0f06View commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=bridge-hub-rococo --runtime_dir=bridge-hubs --target_dir=cumulus --pallet=pallet_bridge_relayers
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 6f20439 - Browse repository at this point
Copy the full SHA 6f20439View commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=bridge-hub-rococo --runtime_dir=bridge-hubs --target_dir=cumulus --pallet=pallet_bridge_grandpa
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 1837a23 - Browse repository at this point
Copy the full SHA 1837a23View commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=bridge-hub-westend --runtime_dir=bridge-hubs --target_dir=cumulus --pallet=pallet_bridge_relayers
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 0d30f75 - Browse repository at this point
Copy the full SHA 0d30f75View commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=bridge-hub-westend --runtime_dir=bridge-hubs --target_dir=cumulus --pallet=pallet_bridge_messages
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 6d15dd4 - Browse repository at this point
Copy the full SHA 6d15dd4View commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=bridge-hub-westend --runtime_dir=bridge-hubs --target_dir=cumulus --pallet=pallet_bridge_grandpa
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 8d09b62 - Browse repository at this point
Copy the full SHA 8d09b62View commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=bridge-hub-rococo --runtime_dir=bridge-hubs --target_dir=cumulus --pallet=pallet_bridge_messages
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 0154d8f - Browse repository at this point
Copy the full SHA 0154d8fView commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=xcm --runtime=br…
…idge-hub-westend --runtime_dir=bridge-hubs --target_dir=cumulus --pallet=pallet_xcm_benchmarks::generic
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for ffa8cdf - Browse repository at this point
Copy the full SHA ffa8cdfView commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=asset-hub-rococo --runtime_dir=assets --target_dir=cumulus --pallet=pallet_xcm_bridge_hub_router
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 57e45ee - Browse repository at this point
Copy the full SHA 57e45eeView commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=pallet --runtime…
…=asset-hub-westend --runtime_dir=assets --target_dir=cumulus --pallet=pallet_xcm_bridge_hub_router
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for c6efc1f - Browse repository at this point
Copy the full SHA c6efc1fView commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=xcm --runtime=br…
…idge-hub-rococo --runtime_dir=bridge-hubs --target_dir=cumulus --pallet=pallet_xcm_benchmarks::generic
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 6074e62 - Browse repository at this point
Copy the full SHA 6074e62View commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=xcm --runtime=as…
…set-hub-westend --runtime_dir=assets --target_dir=cumulus --pallet=pallet_xcm_benchmarks::fungible
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for 048955f - Browse repository at this point
Copy the full SHA 048955fView commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=xcm --runtime=as…
…set-hub-rococo --runtime_dir=assets --target_dir=cumulus --pallet=pallet_xcm_benchmarks::generic
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for e7c5d9d - Browse repository at this point
Copy the full SHA e7c5d9dView commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=xcm --runtime=as…
…set-hub-rococo --runtime_dir=assets --target_dir=cumulus --pallet=pallet_xcm_benchmarks::fungible
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for b30bd99 - Browse repository at this point
Copy the full SHA b30bd99View commit details -
".git/.scripts/commands/bench/bench.sh" --subcommand=xcm --runtime=as…
…set-hub-westend --runtime_dir=assets --target_dir=cumulus --pallet=pallet_xcm_benchmarks::generic
command-bot committedAug 15, 2024 Configuration menu - View commit details
-
Copy full SHA for fc57334 - Browse repository at this point
Copy the full SHA fc57334View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ac82eb - Browse repository at this point
Copy the full SHA 2ac82ebView commit details -
Update bridges/modules/xcm-bridge-hub-router/src/lib.rs
Co-authored-by: Francisco Aguirre <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f57769f - Browse repository at this point
Copy the full SHA f57769fView commit details -
Update bridges/modules/xcm-bridge-hub/src/exporter.rs
Co-authored-by: Francisco Aguirre <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for afc560d - Browse repository at this point
Copy the full SHA afc560dView commit details -
Update bridges/modules/xcm-bridge-hub/src/lib.rs
Co-authored-by: Francisco Aguirre <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for c408b61 - Browse repository at this point
Copy the full SHA c408b61View commit details -
Configuration menu - View commit details
-
Copy full SHA for 507d993 - Browse repository at this point
Copy the full SHA 507d993View commit details -
Merge remote-tracking branch 'origin/master' into bko-bridges-v2-perm…
…issionless-lanes
Configuration menu - View commit details
-
Copy full SHA for 3b019fc - Browse repository at this point
Copy the full SHA 3b019fcView commit details -
Configuration menu - View commit details
-
Copy full SHA for ede990b - Browse repository at this point
Copy the full SHA ede990bView commit details -
Update bridges/modules/xcm-bridge-hub/src/lib.rs
Co-authored-by: Francisco Aguirre <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 617c365 - Browse repository at this point
Copy the full SHA 617c365View commit details -
Configuration menu - View commit details
-
Copy full SHA for ea9adbb - Browse repository at this point
Copy the full SHA ea9adbbView commit details -
Configuration menu - View commit details
-
Copy full SHA for fa60d26 - Browse repository at this point
Copy the full SHA fa60d26View commit details
Commits on Aug 16, 2024
-
Configuration menu - View commit details
-
Copy full SHA for afa2956 - Browse repository at this point
Copy the full SHA afa2956View commit details -
Merge remote-tracking branch 'origin/master' into bko-bridges-v2-perm…
…issionless-lanes
Configuration menu - View commit details
-
Copy full SHA for 3a6bfaf - Browse repository at this point
Copy the full SHA 3a6bfafView commit details -
Configuration menu - View commit details
-
Copy full SHA for b974795 - Browse repository at this point
Copy the full SHA b974795View commit details
Commits on Sep 2, 2024
-
Merge remote-tracking branch 'origin/master' into bko-bridges-v2-perm…
…issionless-lanes
Configuration menu - View commit details
-
Copy full SHA for 88cb019 - Browse repository at this point
Copy the full SHA 88cb019View commit details -
Configuration menu - View commit details
-
Copy full SHA for 351ae31 - Browse repository at this point
Copy the full SHA 351ae31View commit details -
Configuration menu - View commit details
-
Copy full SHA for 01344b8 - Browse repository at this point
Copy the full SHA 01344b8View commit details -
Configuration menu - View commit details
-
Copy full SHA for cf5bc06 - Browse repository at this point
Copy the full SHA cf5bc06View commit details -
Configuration menu - View commit details
-
Copy full SHA for 935e87a - Browse repository at this point
Copy the full SHA 935e87aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 513aa6a - Browse repository at this point
Copy the full SHA 513aa6aView commit details -
Merge remote-tracking branch 'origin/master' into bko-bridges-v2-perm…
…issionless-lanes
Configuration menu - View commit details
-
Copy full SHA for 4929d4e - Browse repository at this point
Copy the full SHA 4929d4eView commit details -
Configuration menu - View commit details
-
Copy full SHA for a0837d9 - Browse repository at this point
Copy the full SHA a0837d9View commit details