UNPKG

@coolwallet/btc

Version:
10 lines (7 loc) 349 B
import { CardType } from '@coolwallet/core'; export function shouldUseLegacyUtxoScript(cardType: CardType, seVersion: number): boolean { return cardType === CardType.Pro && seVersion <= 331; } export function shouldUseLegacyScript10Or11(cardType: CardType, seVersion: number): boolean { return cardType === CardType.Pro && seVersion <= 330; }