Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion submodules/astar
Submodule astar updated 71 files
+5 −5 .github/workflows/README.md
+20 −3 .github/workflows/benchmark.yml
+108 −0 .github/workflows/check-try-state.yml
+2 −2 .github/workflows/release-runtime.yml
+29 −33 Cargo.lock
+25 −25 Cargo.toml
+0 −522 bin/collator/src/benchmarking.rs
+5 −78 bin/collator/src/command.rs
+0 −3 bin/collator/src/lib.rs
+2 −2 pallets/astar-xcm-benchmarks/src/mock.rs
+44 −12 pallets/collator-selection/src/benchmarking.rs
+60 −12 pallets/collator-selection/src/lib.rs
+54 −0 pallets/collator-selection/src/tests.rs
+192 −105 pallets/collator-selection/src/weights.rs
+62 −30 pallets/dapp-staking/src/lib.rs
+27 −0 pallets/dapp-staking/src/test/tests.rs
+6 −0 primitives/src/governance.rs
+9 −0 primitives/src/lib.rs
+27 −0 primitives/src/xcm/mod.rs
+1 −9 runtime/astar/Cargo.toml
+37 −47 runtime/astar/src/lib.rs
+2 −2 runtime/astar/src/weights/frame_system_extensions.rs
+2 −2 runtime/astar/src/weights/orml_oracle.rs
+2 −2 runtime/astar/src/weights/pallet_assets.rs
+2 −2 runtime/astar/src/weights/pallet_dapp_staking.rs
+2 −2 runtime/astar/src/weights/pallet_inflation.rs
+2 −2 runtime/astar/src/weights/pallet_scheduler.rs
+2 −2 runtime/astar/src/weights/pallet_transaction_payment.rs
+2 −2 runtime/astar/src/weights/pallet_xcm.rs
+2 −2 runtime/astar/src/weights/xcm/fungible.rs
+2 −2 runtime/astar/src/weights/xcm/generic.rs
+2 −2 runtime/astar/src/weights/xcm/mod.rs
+3 −3 runtime/astar/src/xcm_config.rs
+2 −2 runtime/local/src/lib.rs
+2 −2 runtime/local/src/weights/pallet_assets.rs
+2 −2 runtime/local/src/weights/pallet_balances.rs
+1 −5 runtime/shibuya/Cargo.toml
+11 −29 runtime/shibuya/src/lib.rs
+2 −2 runtime/shibuya/src/weights/frame_system_extensions.rs
+2 −2 runtime/shibuya/src/weights/orml_oracle.rs
+2 −2 runtime/shibuya/src/weights/pallet_assets.rs
+2 −2 runtime/shibuya/src/weights/pallet_balances.rs
+2 −2 runtime/shibuya/src/weights/pallet_dapp_staking.rs
+2 −2 runtime/shibuya/src/weights/pallet_inflation.rs
+2 −2 runtime/shibuya/src/weights/pallet_scheduler.rs
+2 −2 runtime/shibuya/src/weights/pallet_transaction_payment.rs
+2 −2 runtime/shibuya/src/weights/pallet_xcm.rs
+2 −2 runtime/shibuya/src/weights/xcm/fungible.rs
+2 −2 runtime/shibuya/src/weights/xcm/generic.rs
+2 −2 runtime/shibuya/src/weights/xcm/mod.rs
+1 −1 runtime/shibuya/src/xcm_config.rs
+1 −5 runtime/shiden/Cargo.toml
+9 −15 runtime/shiden/src/lib.rs
+2 −2 runtime/shiden/src/weights/frame_system_extensions.rs
+2 −2 runtime/shiden/src/weights/orml_oracle.rs
+2 −2 runtime/shiden/src/weights/pallet_assets.rs
+2 −2 runtime/shiden/src/weights/pallet_dapp_staking.rs
+2 −2 runtime/shiden/src/weights/pallet_inflation.rs
+2 −2 runtime/shiden/src/weights/pallet_transaction_payment.rs
+2 −2 runtime/shiden/src/weights/pallet_xcm.rs
+2 −2 runtime/shiden/src/weights/xcm/fungible.rs
+2 −2 runtime/shiden/src/weights/xcm/generic.rs
+2 −2 runtime/shiden/src/weights/xcm/mod.rs
+3 −3 runtime/shiden/src/xcm_config.rs
+71 −24 scripts/run_benchmarks.sh
+99 −0 scripts/templates/pallet-weight-template.hbs
+3 −3 scripts/templates/runtime-weight-template.hbs
+3 −3 tests/e2e/yarn.lock
+10 −0 tests/xcm-simulator/src/mocks/mod.rs
+3 −3 tests/xcm-simulator/src/mocks/parachain.rs
+72 −0 tests/xcm-simulator/src/tests/fungible_assets.rs