export type BanxaCoinType = 'ADA' const banxaSupportedCoinTypes: Readonly = ['ADA'] as const export function banxaIsCoinType(value: any): value is BanxaCoinType { return banxaSupportedCoinTypes.includes(value as BanxaCoinType) }