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/moonbeam
Submodule moonbeam updated 95 files
+4 −0 .github/workflows/build.yml
+1 −1 CONTRIBUTIONS.md
+679 −331 Cargo.lock
+11 −2 Cargo.toml
+11 −2 node/cli/src/cli.rs
+3 −3 node/cli/src/command.rs
+7 −7 node/service/src/lib.rs
+0 −8 pallets/moonbeam-lazy-migrations/Cargo.toml
+15 −245 pallets/moonbeam-lazy-migrations/src/benchmarks.rs
+0 −246 pallets/moonbeam-lazy-migrations/src/foreign_asset.rs
+8 −123 pallets/moonbeam-lazy-migrations/src/lib.rs
+6 −216 pallets/moonbeam-lazy-migrations/src/mock.rs
+1 −896 pallets/moonbeam-lazy-migrations/src/tests.rs
+0 −62 pallets/moonbeam-xcm-benchmarks/Cargo.toml
+0 −189 pallets/moonbeam-xcm-benchmarks/src/generic/benchmarking.rs
+0 −258 pallets/moonbeam-xcm-benchmarks/src/generic/mock.rs
+0 −34 pallets/moonbeam-xcm-benchmarks/src/generic/mod.rs
+0 −90 pallets/moonbeam-xcm-benchmarks/src/mock.rs
+5 −1 pallets/parachain-staking/src/inflation.rs
+4 −0 pallets/parachain-staking/src/lib.rs
+5 −0 pallets/parachain-staking/src/mock.rs
+33 −0 pallets/parachain-staking/src/tests.rs
+0 −2 precompiles/assets-erc20/src/lib.rs
+280 −1 precompiles/gmp/src/types.rs
+1 −0 precompiles/parachain-staking/src/mock.rs
+37 −0 primitives/bridge/moonbase/Cargo.toml
+75 −0 primitives/bridge/moonbase/src/betanet.rs
+15 −11 primitives/bridge/moonbase/src/lib.rs
+76 −0 primitives/bridge/moonbase/src/stagenet.rs
+2 −2 runtime/common/Cargo.toml
+12 −8 runtime/common/src/apis.rs
+128 −0 runtime/common/src/bridge.rs
+1 −0 runtime/common/src/lib.rs
+4 −0 runtime/common/src/migrations.rs
+76 −3 runtime/moonbase/Cargo.toml
+7 −13 runtime/moonbase/build.rs
+278 −0 runtime/moonbase/src/bridge_config.rs
+119 −8 runtime/moonbase/src/lib.rs
+15 −3 runtime/moonbase/src/precompiles.rs
+54 −0 runtime/moonbase/src/weights/bridge_weights.rs
+12 −0 runtime/moonbase/src/weights/mod.rs
+97 −0 runtime/moonbase/src/weights/pallet_bridge_grandpa.rs
+266 −0 runtime/moonbase/src/weights/pallet_bridge_messages.rs
+115 −0 runtime/moonbase/src/weights/pallet_bridge_parachains.rs
+107 −0 runtime/moonbase/src/weights/pallet_xcm_bridge.rs
+0 −0 runtime/moonbase/src/weights/xcm/fungible.rs
+2 −1 runtime/moonbase/src/weights/xcm/generic.rs
+2 −2 runtime/moonbase/src/weights/xcm/mod.rs
+67 −19 runtime/moonbase/src/xcm_config.rs
+51 −1 runtime/moonbase/tests/common/mod.rs
+268 −7 runtime/moonbase/tests/integration_test.rs
+0 −3 runtime/moonbeam/Cargo.toml
+7 −13 runtime/moonbeam/build.rs
+17 −8 runtime/moonbeam/src/lib.rs
+15 −3 runtime/moonbeam/src/precompiles.rs
+1 −0 runtime/moonbeam/src/weights/mod.rs
+71 −0 runtime/moonbeam/src/weights/xcm/fungible.rs
+879 −0 runtime/moonbeam/src/weights/xcm/generic.rs
+267 −0 runtime/moonbeam/src/weights/xcm/mod.rs
+1 −1 runtime/moonbeam/src/xcm_config.rs
+2 −1 runtime/moonbeam/tests/integration_test.rs
+0 −3 runtime/moonriver/Cargo.toml
+7 −13 runtime/moonriver/build.rs
+12 −8 runtime/moonriver/src/lib.rs
+15 −3 runtime/moonriver/src/precompiles.rs
+1 −0 runtime/moonriver/src/weights/mod.rs
+71 −0 runtime/moonriver/src/weights/xcm/fungible.rs
+887 −0 runtime/moonriver/src/weights/xcm/generic.rs
+267 −0 runtime/moonriver/src/weights/xcm/mod.rs
+1 −1 runtime/moonriver/src/xcm_config.rs
+2 −1 runtime/moonriver/tests/integration_test.rs
+83 −0 test/contracts/src/XcmTransactorCaller.sol
+5 −5 test/moonwall.config.json
+83 −0 test/suites/dev/common/test-xcm/test-xcm-allowed-instructions.ts
+0 −282 test/suites/dev/moonbase/test-moonbeam-lazy-migrations/test-foreign-assets-migration.ts
+102 −0 test/suites/dev/moonbase/test-precompile/test-precompile-wormhole.ts
+41 −47 test/suites/dev/moonbase/test-precompile/test-precompile-xcm-transactor.ts
+18 −4 test/suites/dev/moonbase/test-precompile/test-precompile-xcm-transactor10.ts
+42 −47 test/suites/dev/moonbase/test-precompile/test-precompile-xcm-transactor11.ts
+163 −45 test/suites/dev/moonbase/test-precompile/test-precompile-xcm-transactor12.ts
+43 −48 test/suites/dev/moonbase/test-precompile/test-precompile-xcm-transactor2.ts
+12 −5 test/suites/dev/moonbase/test-precompile/test-precompile-xcm-transactor3.ts
+0 −2 test/suites/dev/moonbase/test-precompile/test-precompile-xcm-transactor4.ts
+0 −2 test/suites/dev/moonbase/test-precompile/test-precompile-xcm-transactor5.ts
+12 −6 test/suites/dev/moonbase/test-precompile/test-precompile-xcm-transactor6.ts
+42 −47 test/suites/dev/moonbase/test-precompile/test-precompile-xcm-transactor7.ts
+42 −44 test/suites/dev/moonbase/test-precompile/test-precompile-xcm-transactor8.ts
+6 −32 test/suites/dev/moonbase/test-xcm-v3/test-xcmv3-max-weight-instructions.ts
+0 −122 test/suites/tracing-tests/test-multiple-traces-per-substrate-tx.ts
+5 −0 typescript-api/src/moonbase/interfaces/augment-api-consts.ts
+241 −146 typescript-api/src/moonbase/interfaces/lookup.ts
+2 −0 typescript-api/src/moonbase/interfaces/registry.ts
+154 −146 typescript-api/src/moonbase/interfaces/types-lookup.ts
+5 −0 typescript-api/src/moonbeam/interfaces/augment-api-consts.ts
+5 −0 typescript-api/src/moonriver/interfaces/augment-api-consts.ts