| 1 | import 'package:cw_core/amount/money.dart'; |
| 2 | import 'package:cw_core/balance.dart'; |
| 3 | import 'package:cw_core/crypto_currency.dart'; |
| 4 | |
| 5 | class ZcashBalance extends Balance { |
| 6 | ZcashBalance(super.available, super.unavailable, {required super.frozen}); |
| 7 | |
| 8 | factory ZcashBalance.zero() => ZcashBalance( |
| 9 | Money.zero(CryptoCurrency.zec), |
| 10 | Money.zero(CryptoCurrency.zec), |
| 11 | frozen: Money.zero(CryptoCurrency.zec), |
| 12 | ); |
| 13 | } |