Skip to content

Commit

Permalink
fix: fix fee config
Browse files Browse the repository at this point in the history
  • Loading branch information
qwer951123 committed Jan 23, 2025
1 parent bb9c8a3 commit f85a9e8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@polkawallet/bridge",
"version": "0.1.7-15",
"version": "0.1.7-16",
"description": "polkawallet bridge sdk",
"main": "index.js",
"types": "index.d.ts",
Expand Down Expand Up @@ -58,5 +58,5 @@
"ts-node": "^10.9.2",
"typescript": "^4.7.4"
},
"stableVersion": "0.1.7-12"
"stableVersion": "0.1.7-15"
}
8 changes: 4 additions & 4 deletions src/adapters/assethub.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export const assetHubPolkadotRouteConfigs = createRouteConfigs(
token: "LOVA",
xcm: {
deliveryFee: { token: "DOT", amount: "311100000" },
fee: { token: "LOVA", amount: "803" },
fee: { token: "LOVA", amount: "0" },
weightLimit: "Unlimited",
},
},
Expand All @@ -71,7 +71,7 @@ export const assetHubPolkadotRouteConfigs = createRouteConfigs(
token: "DAMN",
xcm: {
deliveryFee: { token: "DOT", amount: "311100000" },
fee: { token: "DAMN", amount: "803" },
fee: { token: "DAMN", amount: "0" },
weightLimit: "Unlimited",
},
},
Expand Down Expand Up @@ -155,7 +155,7 @@ export const assetHubKusamaRouteConfigs = createRouteConfigs("assetHubKusama", [
to: "karura",
token: "USDT",
xcm: {
fee: { token: "USDT", amount: "0" },
fee: { token: "USDT", amount: "808" },
deliveryFee: { token: "KSM", amount: "1036333296" },
weightLimit: "Unlimited",
},
Expand All @@ -164,7 +164,7 @@ export const assetHubKusamaRouteConfigs = createRouteConfigs("assetHubKusama", [
to: "kintsugi",
token: "USDT",
xcm: {
fee: { token: "USDT", amount: "0" },
fee: { token: "USDT", amount: "20000" },
deliveryFee: { token: "KSM", amount: "1036333296" },
weightLimit: "Unlimited",
},
Expand Down

0 comments on commit f85a9e8

Please sign in to comment.