diff --git a/src/nodes/supported/BifrostKusama.ts b/src/nodes/supported/BifrostKusama.ts index 756f1b09..4e05bfad 100644 --- a/src/nodes/supported/BifrostKusama.ts +++ b/src/nodes/supported/BifrostKusama.ts @@ -16,8 +16,7 @@ class BifrostKusama extends ParachainNode implements IXTokensTransfer { } transferXTokens(input: XTokensTransferInput): Extrinsic | TSerializedApiCall { - // Multiple asset options need addressing - const currencySelection = { Native: input.currency } + const currencySelection = { [input.currency === 'BNC' ? 'Native' : 'Token']: input.currency } return XTokensTransferImpl.transferXTokens(input, currencySelection) } }