Skip to content

Commit

Permalink
fix: Update Parallel node to use XTokens V3 & Update Calamari node to…
Browse files Browse the repository at this point in the history
… use unlimited fees 🔧
  • Loading branch information
michaeldev5 authored and dudo50 committed Jan 7, 2024
1 parent f5bb06b commit 38b8bef
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion e2e/xcm.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions src/nodes/supported/Calamari.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 })
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/nodes/supported/Parallel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 38b8bef

Please sign in to comment.