mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-20 10:12:01 +01:00
32 lines
595 B
JavaScript
32 lines
595 B
JavaScript
import { AbstractHDElectrumWallet } from './abstract-hd-electrum-wallet';
|
|
|
|
/**
|
|
* HD Wallet (BIP39).
|
|
* In particular, BIP84 (Bech32 Native Segwit)
|
|
* @see https://github.com/bitcoin/bips/blob/master/bip-0084.mediawiki
|
|
*/
|
|
export class HDSegwitBech32Wallet extends AbstractHDElectrumWallet {
|
|
static type = 'HDsegwitBech32';
|
|
static typeReadable = 'HD SegWit (BIP84 Bech32 Native)';
|
|
|
|
allowSend() {
|
|
return true;
|
|
}
|
|
|
|
allowBatchSend() {
|
|
return true;
|
|
}
|
|
|
|
allowSendMax() {
|
|
return true;
|
|
}
|
|
|
|
allowHodlHodlTrading() {
|
|
return true;
|
|
}
|
|
|
|
allowRBF() {
|
|
return true;
|
|
}
|
|
}
|