@coolwallet/btc
Version:
Coolwallet Bitcoin sdk
10 lines (7 loc) • 349 B
text/typescript
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;
}