{
  "version": 3,
  "sources": ["../../src/utils/transactions/getTransactionsHistory/helpers/isTransferNftOrSft.ts"],
  "sourcesContent": ["import { NftEnumType } from 'types/tokens.types';\n\nexport const isTransferNftOrSft = (\n  transactionTransfer: Record<string, string>\n) => {\n  const assetTypesWithoutDenomination = [\n    NftEnumType.SemiFungibleESDT,\n    NftEnumType.NonFungibleESDT\n  ];\n\n  const transferType = transactionTransfer.type as NftEnumType;\n  const isTransferTypeNftOrSFt =\n    assetTypesWithoutDenomination.includes(transferType);\n\n  return isTransferTypeNftOrSFt;\n};\n"],
  "mappings": "AAEO,IAAMA,EACXC,GACG,CACH,IAAMC,EAAgC,qCAGtC,EAEMC,EAAeF,EAAoB,KAIzC,OAFEC,EAA8B,SAASC,CAAY,CAGvD",
  "names": ["isTransferNftOrSft", "transactionTransfer", "assetTypesWithoutDenomination", "transferType"]
}
