UNPKG

@yoroi/banxa

Version:

The Banxa integration package of Yoroi SDK

8 lines (5 loc) 250 B
export type BanxaCoinType = 'ADA' const banxaSupportedCoinTypes: Readonly<BanxaCoinType[]> = ['ADA'] as const export function banxaIsCoinType(value: any): value is BanxaCoinType { return banxaSupportedCoinTypes.includes(value as BanxaCoinType) }