From 38b8bef8898bcb345bfaba01c9912b2925d5a612 Mon Sep 17 00:00:00 2001 From: Rikkard29 Date: Sun, 7 Jan 2024 18:21:41 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20Update=20Parallel=20node=20to=20use=20XT?= =?UTF-8?q?okens=20V3=20&=20Update=20Calamari=20node=20to=20use=20unlimite?= =?UTF-8?q?d=20fees=20=F0=9F=94=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/release.yml | 2 +- e2e/xcm.test.ts | 2 +- src/nodes/supported/Calamari.ts | 4 ++-- src/nodes/supported/Parallel.ts | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5c89f8c6..404ad269 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: id: release with: token: ${{ secrets.RELEASE_PLEASE_TOKEN }} - release-type: simple + release-type: node - uses: actions/checkout@v4 if: ${{ steps.release.outputs.release_created }} - uses: actions/setup-node@v4 diff --git a/e2e/xcm.test.ts b/e2e/xcm.test.ts index 43f099df..02f78f1f 100644 --- a/e2e/xcm.test.ts +++ b/e2e/xcm.test.ts @@ -26,7 +26,7 @@ const getAssetsForNode = (node: TNode): string[] => { return getAllAssetsSymbols(node) } -const filteredNodes = NODE_NAMES.filter(node => node !== 'Quartz') +const filteredNodes = NODE_NAMES.filter(node => node !== 'Quartz' && node !== 'Clover') const findTransferableNodeAndAsset = ( from: TNode diff --git a/src/nodes/supported/Calamari.ts b/src/nodes/supported/Calamari.ts index a9beef76..c9abca85 100644 --- a/src/nodes/supported/Calamari.ts +++ b/src/nodes/supported/Calamari.ts @@ -17,8 +17,8 @@ class Calamari extends ParachainNode implements IXTokensTransfer { transferXTokens(input: XTokensTransferInput): Extrinsic | TSerializedApiCall { // Currently only option for XCM transfer - const { currencyID, fees } = input - return XTokensTransferImpl.transferXTokens(input, { MantaCurrency: currencyID }, fees) + const { currencyID } = input + return XTokensTransferImpl.transferXTokens(input, { MantaCurrency: currencyID }) } } diff --git a/src/nodes/supported/Parallel.ts b/src/nodes/supported/Parallel.ts index 0c3380a4..12a1ca03 100644 --- a/src/nodes/supported/Parallel.ts +++ b/src/nodes/supported/Parallel.ts @@ -12,7 +12,7 @@ import XTokensTransferImpl from '../XTokensTransferImpl' class Parallel extends ParachainNode implements IXTokensTransfer { constructor() { - super('Parallel', 'parallel', 'polkadot', Version.V1) + super('Parallel', 'parallel', 'polkadot', Version.V3) } transferXTokens(input: XTokensTransferInput): Extrinsic | TSerializedApiCall {