mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
60 lines
1.6 KiB
Dart
60 lines
1.6 KiB
Dart
import 'package:stackwallet/db/hive/db.dart';
|
|
import 'package:stackwallet/models/balance.dart';
|
|
import 'package:stackwallet/models/isar/models/ethereum/eth_contract.dart';
|
|
import 'package:stackwallet/utilities/amount/amount.dart';
|
|
|
|
abstract class TokenCacheKeys {
|
|
static String tokenBalance(String contractAddress) {
|
|
return "tokenBalanceCache_$contractAddress";
|
|
}
|
|
}
|
|
|
|
mixin EthTokenCache {
|
|
late final String _walletId;
|
|
late final EthContract _token;
|
|
|
|
void initCache(String walletId, EthContract token) {
|
|
_walletId = walletId;
|
|
_token = token;
|
|
}
|
|
|
|
// token balance cache
|
|
Balance getCachedBalance() {
|
|
final jsonString = DB.instance.get<dynamic>(
|
|
boxName: _walletId,
|
|
key: TokenCacheKeys.tokenBalance(_token.address),
|
|
) as String?;
|
|
if (jsonString == null) {
|
|
return Balance(
|
|
total: Amount(
|
|
rawValue: BigInt.zero,
|
|
fractionDigits: _token.decimals,
|
|
),
|
|
spendable: Amount(
|
|
rawValue: BigInt.zero,
|
|
fractionDigits: _token.decimals,
|
|
),
|
|
blockedTotal: Amount(
|
|
rawValue: BigInt.zero,
|
|
fractionDigits: _token.decimals,
|
|
),
|
|
pendingSpendable: Amount(
|
|
rawValue: BigInt.zero,
|
|
fractionDigits: _token.decimals,
|
|
),
|
|
);
|
|
}
|
|
return Balance.fromJson(
|
|
jsonString,
|
|
_token.decimals,
|
|
);
|
|
}
|
|
|
|
Future<void> updateCachedBalance(Balance balance) async {
|
|
await DB.instance.put<dynamic>(
|
|
boxName: _walletId,
|
|
key: TokenCacheKeys.tokenBalance(_token.address),
|
|
value: balance.toJsonIgnoreCoin(),
|
|
);
|
|
}
|
|
}
|