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 91 files
+4 −2 .github/PULL_REQUEST_TEMPLATE.md
+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
+135 −0 .github/workflows/runtime-compatibility.yml
+2 −1 .github/workflows/zepter.yml
+37 −33 Cargo.lock
+26 −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
+191 −104 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 precompiles/xcm/src/tests.rs
+6 −0 primitives/src/governance.rs
+9 −0 primitives/src/lib.rs
+27 −0 primitives/src/xcm/mod.rs
+11 −9 runtime/astar/Cargo.toml
+2 −0 runtime/astar/src/genesis_config.rs
+129 −54 runtime/astar/src/lib.rs
+81 −0 runtime/astar/src/weights/block_weights.rs
+81 −0 runtime/astar/src/weights/extrinsic_weights.rs
+2 −2 runtime/astar/src/weights/frame_system_extensions.rs
+6 −0 runtime/astar/src/weights/mod.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
+3 −5 runtime/shibuya/Cargo.toml
+75 −59 runtime/shibuya/src/lib.rs
+80 −0 runtime/shibuya/src/weights/block_weights.rs
+80 −0 runtime/shibuya/src/weights/extrinsic_weights.rs
+2 −2 runtime/shibuya/src/weights/frame_system_extensions.rs
+6 −0 runtime/shibuya/src/weights/mod.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
+3 −5 runtime/shiden/Cargo.toml
+13 −19 runtime/shiden/src/lib.rs
+80 −0 runtime/shiden/src/weights/block_weights.rs
+80 −0 runtime/shiden/src/weights/extrinsic_weights.rs
+2 −2 runtime/shiden/src/weights/frame_system_extensions.rs
+6 −0 runtime/shiden/src/weights/mod.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
+61 −24 scripts/run_benchmarks.sh
+99 −0 scripts/templates/pallet-weight-template.hbs
+3 −3 scripts/templates/runtime-weight-template.hbs
+204 −19 tests/e2e/yarn.lock
+6 −0 tests/integration/Cargo.toml
+274 −76 tests/integration/src/governance.rs
+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
+5 −5 third-party/zombienet/setup.sh
+1 −1 third-party/zombienet/smoke.toml
+38 −0 third-party/zombienet/smoke_runtime_upgrade.toml
+18 −0 third-party/zombienet/smoke_runtime_upgrade.zndsl
Loading