Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add XcmPaymentApi and DryRunApi to all runtimes #380

Merged
Merged
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 0d1794c095a73d1fef9aa0d1eb03b09a53ed0b4d
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,17 @@
// limitations under the License.

use crate::*;
use frame_support::{dispatch::RawOrigin, sp_runtime::traits::Dispatchable, traits::fungible::Mutate};
use people_kusama_runtime::xcm_config::XcmConfig as PeopleKusamaXcmConfig;
use frame_support::{
dispatch::RawOrigin, sp_runtime::traits::Dispatchable, traits::fungible::Mutate,
};
use integration_tests_helpers::{
test_parachain_is_trusted_teleporter_for_relay, test_relay_is_trusted_teleporter,
};
use xcm_fee_payment_runtime_api::fees::runtime_decl_for_xcm_payment_api::XcmPaymentApiV1;
use xcm_fee_payment_runtime_api::dry_run::runtime_decl_for_dry_run_api::DryRunApiV1;
use people_kusama_runtime::xcm_config::XcmConfig as PeopleKusamaXcmConfig;
use xcm_fee_payment_runtime_api::{
dry_run::runtime_decl_for_dry_run_api::DryRunApiV1,
fees::runtime_decl_for_xcm_payment_api::XcmPaymentApiV1,
};

fn relay_dest_assertions_fail(_t: SystemParaToRelayTest) {
Kusama::assert_ump_queue_processed(
Expand Down
Loading