Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

XCM-emulator test for multi-assets #2480

Draft
wants to merge 29 commits into
base: nacho/improve-xcm-emulator
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
4733416
Bump syn from 2.0.13 to 2.0.14 (#2446)
dependabot[bot] Apr 12, 2023
5a0ebad
Bump serde from 1.0.159 to 1.0.160 (#2445)
dependabot[bot] Apr 12, 2023
030db02
Invoke cargo build commands with `--locked` (#2444)
Apr 12, 2023
df9ed24
Bump actions/checkout from 3.1.0 to 3.5.1 (#2448)
dependabot[bot] Apr 12, 2023
574f425
Bump serde_json from 1.0.95 to 1.0.96 (#2453)
dependabot[bot] Apr 13, 2023
b42855d
Bump actions/checkout from 3.5.1 to 3.5.2 (#2452)
dependabot[bot] Apr 14, 2023
a26ebb2
Bump syn from 2.0.14 to 2.0.15 (#2454)
dependabot[bot] Apr 14, 2023
863e94d
Bump assert_cmd from 2.0.10 to 2.0.11 (#2457)
dependabot[bot] Apr 15, 2023
72349fc
Changed `query_account_balances` return type (#2455)
bkontur Apr 17, 2023
926799c
Companion for substrate#13883 (#2460)
andresilva Apr 18, 2023
3de5354
Optimize level monitor reconstruction (#2461)
davxy Apr 19, 2023
4449044
Bump clap from 4.1.14 to 4.2.3 (#2465)
dependabot[bot] Apr 19, 2023
ea44f8c
Bump Swatinem/rust-cache from 2.2.0 to 2.2.1 (#2456)
dependabot[bot] Apr 19, 2023
d403b49
Companion for substrate#13771 (#2410)
muharem Apr 19, 2023
eced0cb
Parachain node should not recover blocks while syncing (#2462)
skunert Apr 19, 2023
8615ac8
[Polkadot Companion] for 7101 (#2470)
mrcnski Apr 21, 2023
71350eb
[Feature] XCM-Emulator
ruseinov Apr 12, 2023
c6612c6
".git/.scripts/commands/fmt/fmt.sh"
Apr 12, 2023
a277a05
rename
ruseinov Apr 12, 2023
0e74076
readme
ruseinov Apr 12, 2023
c664ba5
more rename
ruseinov Apr 12, 2023
d7b8960
rename directory
ruseinov Apr 12, 2023
4dfe34c
implement AssetTransactor
ruseinov Apr 12, 2023
464e19a
Update xcm/xcm-emulator/README.md
ruseinov Apr 13, 2023
6f13ceb
copy in the xcm-emulator
tonyalaribe Apr 19, 2023
10c7546
copy in the xcm-emulator
tonyalaribe Apr 19, 2023
16d5ce2
save and include logic for statemine xcm-emulator tests
tonyalaribe Apr 21, 2023
92e3db6
working integration tests
tonyalaribe Apr 21, 2023
866ff08
remove unnneeded
tonyalaribe Apr 24, 2023
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
Prev Previous commit
Next Next commit
copy in the xcm-emulator
  • Loading branch information
tonyalaribe committed Apr 21, 2023
commit 6f13ceb4f44761ebb70e964cb9367468bf8d42e4
11 changes: 11 additions & 0 deletions xcm/xcm-emulator/example/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,24 @@ decl_test_parachain! {
}
}

decl_test_parachain! {
pub struct Statemine {
Runtime = statemine_runtime::Runtime,
RuntimeOrigin = statemine_runtime::RuntimeOrigin,
XcmpMessageHandler = statemine_runtime::XcmpQueue,
DmpMessageHandler = statemine_runtime::DmpQueue,
new_ext = parachain_ext(1000),
}
}

decl_test_network! {
pub struct Network {
relay_chain = KusamaNet,
parachains = vec![
(1, ParachainA),
(2, ParachainB),
(3, ParachainC),
(1000, Statemine),
],
}
}
Expand Down