Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d4570a0
feat(xcm): add XcmPaymentApi and DryRunApi to all runtimes
franciscoaguirre Jun 25, 2024
c44c69f
fix: fmt
franciscoaguirre Jul 12, 2024
2e748fb
feat(coretime-kusama-runtime): add XcmPaymentApi and DryRunApi
franciscoaguirre Jun 26, 2024
ee2e870
fix: fmt
franciscoaguirre Jul 12, 2024
555eb1a
fix(encointer): AssetId -> XcmAssetId
franciscoaguirre Jul 12, 2024
f1cf7f9
feat(xcm-fee-payment-runtime-api): update Cargo.lock
franciscoaguirre Jul 12, 2024
7d867b5
fix(kusama-runtime): feature propagation
franciscoaguirre Jul 12, 2024
6b05e7d
doc: update CHANGELOG
franciscoaguirre Jun 25, 2024
5e3e2db
doc: update CHANGELOG
franciscoaguirre Jul 12, 2024
138c5cc
test(asset-hub-polkadot): add XCM fee estimation test (not working)
franciscoaguirre Jul 12, 2024
5fbe49a
fix(asset-hub-polkadot-integration-tests): reverse order A -> B to B …
franciscoaguirre Jul 15, 2024
57df088
fix: fmt
franciscoaguirre Jul 15, 2024
d464252
feat(asset-hub-kusama-integration-tests): add test for XCM fee estima…
franciscoaguirre Jul 15, 2024
4a53b10
chore: address feedback
franciscoaguirre Jul 15, 2024
1c215b1
feat(integration-tests-helpers): use XCM runtime apis to estimate del…
franciscoaguirre Jul 15, 2024
7a2fd64
feat(integration-tests-helpers): use XCM runtime apis to estimate del…
franciscoaguirre Jul 15, 2024
5aa919a
fix: fmt
franciscoaguirre Jul 15, 2024
181b9d4
feat(people): add delivery fees
franciscoaguirre Jul 16, 2024
e59f4a1
feat(people-kusama-integration-tests): teleport tests with delivery fees
franciscoaguirre Jul 16, 2024
708aa26
revert(people): delivery fees
franciscoaguirre Jul 16, 2024
0d1794c
fix: fmt
franciscoaguirre Jul 16, 2024
92ff22c
feat(people-polkadot): teleport test with delivery fees
franciscoaguirre Jul 16, 2024
ffc6c1b
feat(coretime-kusama-integration-tests): initial setup and test
franciscoaguirre Jul 16, 2024
c1cc4c3
fix: fmt
franciscoaguirre Jul 16, 2024
59ed358
feat(bridge-hub-kusama-integration-tests): teleport test with deliver…
franciscoaguirre Jul 16, 2024
9b22b37
feat(bridge-hub-polkadot-integration-tests): add teleport test with d…
franciscoaguirre Jul 16, 2024
55b5191
WIP
franciscoaguirre Jul 17, 2024
5068ea7
Merge branch 'main' into xcm-runtime-apis
franciscoaguirre Jul 22, 2024
79a8340
Merge branch 'xcm-runtime-apis' of github.com:franciscoaguirre/polkad…
franciscoaguirre Jul 22, 2024
899dcd7
fix: fmt
franciscoaguirre Jul 22, 2024
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
fix: fmt
  • Loading branch information
franciscoaguirre committed Jul 16, 2024
commit c1cc4c3a0748cafe9db0fcdb7a5dbdbae24558c3
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ pub fn genesis() -> Storage {
.into_iter()
.map(|(acc, aura)| {
(
acc.clone(), // account id
acc, // validator id
acc.clone(), // account id
acc, // validator id
coretime_kusama_runtime::SessionKeys { aura }, // session keys
)
})
Expand All @@ -61,7 +61,6 @@ pub fn genesis() -> Storage {

build_genesis_storage(
&genesis_config,
coretime_kusama_runtime::WASM_BINARY
.expect("WASM binary was not built, please build it!"),
coretime_kusama_runtime::WASM_BINARY.expect("WASM binary was not built, please build it!"),
)
}
4 changes: 2 additions & 2 deletions integration-tests/emulated/networks/kusama-system/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@

pub use asset_hub_kusama_emulated_chain;
pub use bridge_hub_kusama_emulated_chain;
pub use coretime_kusama_emulated_chain;
pub use kusama_emulated_chain;
pub use penpal_emulated_chain;
pub use people_kusama_emulated_chain;
pub use coretime_kusama_emulated_chain;

use asset_hub_kusama_emulated_chain::AssetHubKusama;
use bridge_hub_kusama_emulated_chain::BridgeHubKusama;
use coretime_kusama_emulated_chain::CoretimeKusama;
use kusama_emulated_chain::Kusama;
use penpal_emulated_chain::{PenpalA, PenpalB};
use people_kusama_emulated_chain::PeopleKusama;
use coretime_kusama_emulated_chain::CoretimeKusama;

// Cumulus
use emulated_integration_tests_common::{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,14 @@ pub use emulated_integration_tests_common::{
PROOF_SIZE_THRESHOLD, REF_TIME_THRESHOLD, XCM_V3,
};
pub use kusama_system_emulated_network::{
kusama_emulated_chain::{genesis::ED as KUSAMA_ED, KusamaRelayPallet as KusamaPallet},
coretime_kusama_emulated_chain::{
genesis::ED as CORETIME_KUSAMA_ED, CoretimeKusamaParaPallet as CoretimeKusamaPallet,
},
KusamaRelay as Kusama, KusamaRelayReceiver as KusamaReceiver,
KusamaRelaySender as KusamaSender, PenpalAPara as PenpalA, CoretimeKusamaPara as CoretimeKusama,
CoretimeKusamaParaReceiver as CoretimeKusamaReceiver, CoretimeKusamaParaSender as CoretimeKusamaSender,
kusama_emulated_chain::{genesis::ED as KUSAMA_ED, KusamaRelayPallet as KusamaPallet},
CoretimeKusamaPara as CoretimeKusama, CoretimeKusamaParaReceiver as CoretimeKusamaReceiver,
CoretimeKusamaParaSender as CoretimeKusamaSender, KusamaRelay as Kusama,
KusamaRelayReceiver as KusamaReceiver, KusamaRelaySender as KusamaSender,
PenpalAPara as PenpalA,
};
pub use parachains_common::{AccountId, Balance};

Expand Down