stack_wallet/lib/wallets/wallet/intermediate/bip39_wallet.dart
2024-01-10 20:46:43 -06:00

36 lines
1.2 KiB
Dart

import 'package:isar/isar.dart';
import 'package:stackwallet/models/isar/models/blockchain_data/address.dart';
import 'package:stackwallet/wallets/crypto_currency/intermediate/bip39_currency.dart';
import 'package:stackwallet/wallets/wallet/wallet.dart';
import 'package:stackwallet/wallets/wallet/wallet_mixin_interfaces/mnemonic_interface.dart';
abstract class Bip39Wallet<T extends Bip39Currency> extends Wallet<T>
with MnemonicInterface {
Bip39Wallet(T currency) : super(currency);
List<FilterOperation> get standardReceivingAddressFilters => [
FilterCondition.equalTo(
property: r"type",
value: info.mainAddressType,
),
const FilterCondition.equalTo(
property: r"subType",
value: AddressSubType.receiving,
),
];
List<FilterOperation> get standardChangeAddressFilters => [
FilterCondition.equalTo(
property: r"type",
value: info.mainAddressType,
),
const FilterCondition.equalTo(
property: r"subType",
value: AddressSubType.change,
),
];
// ========== Private ========================================================
// ========== Overrides ======================================================
}