@yoroi/exchange
Version:
The Exchange package of Yoroi SDK
13 lines (10 loc) • 328 B
text/typescript
import {isStringLiteral} from '@yoroi/common'
import {Exchange} from '@yoroi/types'
const supportedBlockchainCodes: Readonly<Exchange.BlockchainCode[]> = [
'ADA',
] as const
export function isBlockchainCode(
value: unknown,
): value is Exchange.BlockchainCode {
return isStringLiteral(supportedBlockchainCodes, value)
}