Skip to content

Commit

Permalink
Fix Asset Hub memecoings asset ordering in fee calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaurello committed Sep 29, 2024
1 parent da6ff5f commit ca585db
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 12 deletions.
5 changes: 5 additions & 0 deletions .changeset/serious-ants-shout.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@moonbeam-network/xcm-config': patch
---

Fix Asset Hub memecoins asset ordering in fee calculation
28 changes: 16 additions & 12 deletions packages/config/src/configs/polkadotAssetHub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,10 @@ export const polkadotAssetHubConfig = new ChainConfig({
balance: BalanceBuilder().substrate().assets().account(),
destination: moonbeam,
destinationFee: {
amount: FeeBuilder()
.xcmPaymentApi()
.xcmPaymentFee({ isAssetReserveChain: false }),
amount: FeeBuilder().xcmPaymentApi().xcmPaymentFee({
isAssetReserveChain: false,
shouldTransferAssetPrecedeAsset: true,
}),
asset: usdt,
balance: BalanceBuilder().substrate().assets().account(),
},
Expand All @@ -84,9 +85,10 @@ export const polkadotAssetHubConfig = new ChainConfig({
balance: BalanceBuilder().substrate().assets().account(),
destination: moonbeam,
destinationFee: {
amount: FeeBuilder()
.xcmPaymentApi()
.xcmPaymentFee({ isAssetReserveChain: false }),
amount: FeeBuilder().xcmPaymentApi().xcmPaymentFee({
isAssetReserveChain: false,
shouldTransferAssetPrecedeAsset: true,
}),
asset: usdt,
balance: BalanceBuilder().substrate().assets().account(),
},
Expand Down Expand Up @@ -128,9 +130,10 @@ export const polkadotAssetHubConfig = new ChainConfig({
balance: BalanceBuilder().substrate().assets().account(),
destination: moonbeam,
destinationFee: {
amount: FeeBuilder()
.xcmPaymentApi()
.xcmPaymentFee({ isAssetReserveChain: false }),
amount: FeeBuilder().xcmPaymentApi().xcmPaymentFee({
isAssetReserveChain: false,
shouldTransferAssetPrecedeAsset: true,
}),
asset: usdt,
balance: BalanceBuilder().substrate().assets().account(),
},
Expand All @@ -150,9 +153,10 @@ export const polkadotAssetHubConfig = new ChainConfig({
balance: BalanceBuilder().substrate().assets().account(),
destination: moonbeam,
destinationFee: {
amount: FeeBuilder()
.xcmPaymentApi()
.xcmPaymentFee({ isAssetReserveChain: false }),
amount: FeeBuilder().xcmPaymentApi().xcmPaymentFee({
isAssetReserveChain: false,
shouldTransferAssetPrecedeAsset: true,
}),
asset: usdt,
balance: BalanceBuilder().substrate().assets().account(),
},
Expand Down

0 comments on commit ca585db

Please sign in to comment.