@paraspell/sdk-core 11.0.1 → 11.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -8138,7 +8138,7 @@ var Parachain = /*#__PURE__*/function () {
|
|
|
8138
8138
|
method: method
|
|
8139
8139
|
};
|
|
8140
8140
|
shouldUseTeleport = this.shouldUseNativeAssetTeleport(sendOptions);
|
|
8141
|
-
if (!shouldUseTeleport) {
|
|
8141
|
+
if (!(shouldUseTeleport && this.chain !== 'Mythos' && destination !== 'Mythos')) {
|
|
8142
8142
|
_context.n = 6;
|
|
8143
8143
|
break;
|
|
8144
8144
|
}
|
|
@@ -8342,7 +8342,7 @@ var Parachain = /*#__PURE__*/function () {
|
|
|
8342
8342
|
_yield$getParaEthTran2 = _slicedToArray(_yield$getParaEthTran, 2);
|
|
8343
8343
|
bridgeFee = _yield$getParaEthTran2[0];
|
|
8344
8344
|
executionFee = _yield$getParaEthTran2[1];
|
|
8345
|
-
PARA_TO_PARA_FEE_DOT =
|
|
8345
|
+
PARA_TO_PARA_FEE_DOT = 5000000000n; // 0.5 DOT
|
|
8346
8346
|
fee = useOnlyDepositInstruction ? PARA_TO_PARA_FEE_DOT : bridgeFee + executionFee;
|
|
8347
8347
|
ethAssetInfo = assets.findAssetInfoByLoc(assets.getOtherAssets('Ethereum'), asset.location);
|
|
8348
8348
|
if (ethAssetInfo) {
|
package/dist/index.mjs
CHANGED
|
@@ -8139,7 +8139,7 @@ var Parachain = /*#__PURE__*/function () {
|
|
|
8139
8139
|
method: method
|
|
8140
8140
|
};
|
|
8141
8141
|
shouldUseTeleport = this.shouldUseNativeAssetTeleport(sendOptions);
|
|
8142
|
-
if (!shouldUseTeleport) {
|
|
8142
|
+
if (!(shouldUseTeleport && this.chain !== 'Mythos' && destination !== 'Mythos')) {
|
|
8143
8143
|
_context.n = 6;
|
|
8144
8144
|
break;
|
|
8145
8145
|
}
|
|
@@ -8343,7 +8343,7 @@ var Parachain = /*#__PURE__*/function () {
|
|
|
8343
8343
|
_yield$getParaEthTran2 = _slicedToArray(_yield$getParaEthTran, 2);
|
|
8344
8344
|
bridgeFee = _yield$getParaEthTran2[0];
|
|
8345
8345
|
executionFee = _yield$getParaEthTran2[1];
|
|
8346
|
-
PARA_TO_PARA_FEE_DOT =
|
|
8346
|
+
PARA_TO_PARA_FEE_DOT = 5000000000n; // 0.5 DOT
|
|
8347
8347
|
fee = useOnlyDepositInstruction ? PARA_TO_PARA_FEE_DOT : bridgeFee + executionFee;
|
|
8348
8348
|
ethAssetInfo = findAssetInfoByLoc(getOtherAssets('Ethereum'), asset.location);
|
|
8349
8349
|
if (ethAssetInfo) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@paraspell/sdk-core",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.1.1",
|
|
4
4
|
"description": "SDK core for ParaSpell XCM/XCMP tool for developers",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"@noble/hashes": "^1.8.0",
|
|
27
27
|
"@scure/base": "^1.2.6",
|
|
28
28
|
"viem": "^2.33.2",
|
|
29
|
-
"@paraspell/assets": "11.
|
|
30
|
-
"@paraspell/
|
|
31
|
-
"@paraspell/
|
|
29
|
+
"@paraspell/assets": "11.1.1",
|
|
30
|
+
"@paraspell/pallets": "11.1.1",
|
|
31
|
+
"@paraspell/sdk-common": "11.1.1"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
34
|
"@babel/plugin-syntax-import-attributes": "^7.27.1",
|