2023-02-24 20:07:59 +00:00
|
|
|
import 'dart:async';
|
2023-03-24 00:05:35 +00:00
|
|
|
import 'dart:convert';
|
2023-02-14 17:43:48 +00:00
|
|
|
|
2023-01-26 18:08:12 +00:00
|
|
|
import 'package:decimal/decimal.dart';
|
|
|
|
import 'package:ethereum_addresses/ethereum_addresses.dart';
|
2023-02-27 16:01:06 +00:00
|
|
|
import 'package:flutter/widgets.dart';
|
2023-02-14 17:43:48 +00:00
|
|
|
import 'package:http/http.dart';
|
2023-02-24 20:07:59 +00:00
|
|
|
import 'package:isar/isar.dart';
|
2023-03-03 14:35:43 +00:00
|
|
|
import 'package:stackwallet/db/isar/main_db.dart';
|
2023-03-23 18:19:51 +00:00
|
|
|
import 'package:stackwallet/dto/ethereum/eth_token_tx_dto.dart';
|
|
|
|
import 'package:stackwallet/dto/ethereum/eth_token_tx_extra_dto.dart';
|
2023-03-03 00:40:12 +00:00
|
|
|
import 'package:stackwallet/models/isar/models/isar_models.dart';
|
2023-02-14 17:43:48 +00:00
|
|
|
import 'package:stackwallet/models/node_model.dart';
|
2023-01-25 09:29:20 +00:00
|
|
|
import 'package:stackwallet/models/paymint/fee_object_model.dart';
|
2023-02-27 16:01:06 +00:00
|
|
|
import 'package:stackwallet/models/token_balance.dart';
|
2023-02-24 20:07:59 +00:00
|
|
|
import 'package:stackwallet/services/coins/ethereum/ethereum_wallet.dart';
|
2023-02-23 22:59:58 +00:00
|
|
|
import 'package:stackwallet/services/ethereum/ethereum_api.dart';
|
2023-02-24 20:07:59 +00:00
|
|
|
import 'package:stackwallet/services/event_bus/events/global/updated_in_background_event.dart';
|
2023-02-27 17:42:22 +00:00
|
|
|
import 'package:stackwallet/services/event_bus/events/global/wallet_sync_status_changed_event.dart';
|
2023-02-24 20:07:59 +00:00
|
|
|
import 'package:stackwallet/services/event_bus/global_event_bus.dart';
|
2023-02-27 16:01:06 +00:00
|
|
|
import 'package:stackwallet/services/mixins/eth_token_cache.dart';
|
2023-02-14 17:43:48 +00:00
|
|
|
import 'package:stackwallet/services/node_service.dart';
|
|
|
|
import 'package:stackwallet/services/transaction_notification_tracker.dart';
|
2023-03-24 21:31:05 +00:00
|
|
|
import 'package:stackwallet/utilities/amount.dart';
|
2023-02-14 17:43:48 +00:00
|
|
|
import 'package:stackwallet/utilities/default_nodes.dart';
|
|
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
2023-01-26 18:08:12 +00:00
|
|
|
import 'package:stackwallet/utilities/enums/fee_rate_type_enum.dart';
|
2023-02-14 17:43:48 +00:00
|
|
|
import 'package:stackwallet/utilities/eth_commons.dart';
|
2023-03-24 16:11:18 +00:00
|
|
|
import 'package:stackwallet/utilities/extensions/extensions.dart';
|
2023-03-24 00:05:35 +00:00
|
|
|
import 'package:stackwallet/utilities/extensions/impl/contract_abi.dart';
|
2023-02-14 17:43:48 +00:00
|
|
|
import 'package:stackwallet/utilities/flutter_secure_storage_interface.dart';
|
|
|
|
import 'package:stackwallet/utilities/format.dart';
|
2023-02-24 20:07:59 +00:00
|
|
|
import 'package:stackwallet/utilities/logger.dart';
|
|
|
|
import 'package:tuple/tuple.dart';
|
2023-02-24 14:45:34 +00:00
|
|
|
import 'package:web3dart/web3dart.dart' as web3dart;
|
2023-01-25 16:08:27 +00:00
|
|
|
|
2023-03-03 14:36:56 +00:00
|
|
|
class EthTokenWallet extends ChangeNotifier with EthTokenCache {
|
2023-02-24 20:07:59 +00:00
|
|
|
final EthereumWallet ethWallet;
|
|
|
|
final TransactionNotificationTracker tracker;
|
|
|
|
final SecureStorageInterface _secureStore;
|
2023-02-23 22:59:58 +00:00
|
|
|
|
2023-03-03 14:35:43 +00:00
|
|
|
// late web3dart.EthereumAddress _contractAddress;
|
2023-02-24 14:45:34 +00:00
|
|
|
late web3dart.EthPrivateKey _credentials;
|
2023-03-03 14:35:43 +00:00
|
|
|
late web3dart.DeployedContract _deployedContract;
|
2023-02-24 14:45:34 +00:00
|
|
|
late web3dart.ContractFunction _balanceFunction;
|
|
|
|
late web3dart.ContractFunction _sendFunction;
|
|
|
|
late web3dart.Web3Client _client;
|
2023-01-25 09:29:20 +00:00
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
static const _gasLimit = 200000;
|
2023-01-25 16:08:27 +00:00
|
|
|
|
2023-03-03 14:36:56 +00:00
|
|
|
EthTokenWallet({
|
2023-03-03 14:35:43 +00:00
|
|
|
required EthContract token,
|
2023-02-24 20:07:59 +00:00
|
|
|
required this.ethWallet,
|
2023-01-27 12:32:05 +00:00
|
|
|
required SecureStorageInterface secureStore,
|
2023-02-24 20:07:59 +00:00
|
|
|
required this.tracker,
|
2023-03-03 14:35:43 +00:00
|
|
|
}) : _secureStore = secureStore,
|
|
|
|
_tokenContract = token {
|
|
|
|
// _contractAddress = web3dart.EthereumAddress.fromHex(token.address);
|
2023-02-27 16:01:06 +00:00
|
|
|
initCache(ethWallet.walletId, token);
|
2023-01-26 18:08:12 +00:00
|
|
|
}
|
2023-01-25 09:29:20 +00:00
|
|
|
|
2023-03-03 14:35:43 +00:00
|
|
|
EthContract get tokenContract => _tokenContract;
|
|
|
|
EthContract _tokenContract;
|
|
|
|
|
2023-02-27 16:01:06 +00:00
|
|
|
TokenBalance get balance => _balance ??= getCachedBalance();
|
|
|
|
TokenBalance? _balance;
|
2023-01-25 09:29:20 +00:00
|
|
|
|
2023-01-26 18:08:12 +00:00
|
|
|
Coin get coin => Coin.ethereum;
|
2023-01-25 09:29:20 +00:00
|
|
|
|
2023-01-26 18:08:12 +00:00
|
|
|
Future<String> confirmSend({required Map<String, dynamic> txData}) async {
|
|
|
|
final amount = txData['recipientAmt'];
|
|
|
|
final decimalAmount =
|
|
|
|
Format.satoshisToAmount(amount as int, coin: Coin.ethereum);
|
2023-02-23 22:59:58 +00:00
|
|
|
final bigIntAmount =
|
2023-03-03 14:35:43 +00:00
|
|
|
amountToBigInt(decimalAmount.toDouble(), tokenContract.decimals);
|
2023-01-26 18:08:12 +00:00
|
|
|
|
|
|
|
final sentTx = await _client.sendTransaction(
|
|
|
|
_credentials,
|
2023-02-24 14:45:34 +00:00
|
|
|
web3dart.Transaction.callContract(
|
2023-03-03 14:35:43 +00:00
|
|
|
contract: _deployedContract,
|
2023-01-26 18:08:12 +00:00
|
|
|
function: _sendFunction,
|
|
|
|
parameters: [
|
2023-02-24 14:45:34 +00:00
|
|
|
web3dart.EthereumAddress.fromHex(txData['address'] as String),
|
2023-01-26 18:08:12 +00:00
|
|
|
bigIntAmount
|
|
|
|
],
|
|
|
|
maxGas: _gasLimit,
|
2023-02-24 14:45:34 +00:00
|
|
|
gasPrice: web3dart.EtherAmount.fromUnitAndValue(
|
|
|
|
web3dart.EtherUnit.wei, txData['feeInWei'])));
|
2023-01-26 18:08:12 +00:00
|
|
|
|
|
|
|
return sentTx;
|
2023-01-25 09:29:20 +00:00
|
|
|
}
|
|
|
|
|
2023-01-26 18:08:12 +00:00
|
|
|
Future<String> get currentReceivingAddress async {
|
2023-02-24 20:07:59 +00:00
|
|
|
final address = await _currentReceivingAddress;
|
2023-03-01 21:19:53 +00:00
|
|
|
return checksumEthereumAddress(
|
|
|
|
address?.value ?? _credentials.address.toString());
|
2023-01-26 18:08:12 +00:00
|
|
|
}
|
2023-01-25 09:29:20 +00:00
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
Future<Address?> get _currentReceivingAddress => ethWallet.db
|
|
|
|
.getAddresses(ethWallet.walletId)
|
|
|
|
.filter()
|
|
|
|
.typeEqualTo(AddressType.ethereum)
|
|
|
|
.subTypeEqualTo(AddressSubType.receiving)
|
|
|
|
.sortByDerivationIndexDesc()
|
|
|
|
.findFirst();
|
|
|
|
|
2023-01-26 18:08:12 +00:00
|
|
|
Future<int> estimateFeeFor(int satoshiAmount, int feeRate) async {
|
2023-03-03 14:35:43 +00:00
|
|
|
final fee = estimateFee(feeRate, _gasLimit, tokenContract.decimals);
|
2023-01-26 18:08:12 +00:00
|
|
|
return Format.decimalAmountToSatoshis(Decimal.parse(fee.toString()), coin);
|
2023-01-25 09:29:20 +00:00
|
|
|
}
|
|
|
|
|
2023-01-26 18:08:12 +00:00
|
|
|
Future<FeeObject> get fees => _feeObject ??= _getFees();
|
|
|
|
Future<FeeObject>? _feeObject;
|
|
|
|
|
|
|
|
Future<FeeObject> _getFees() async {
|
2023-02-23 22:59:58 +00:00
|
|
|
return await EthereumAPI.getFees();
|
2023-01-26 18:08:12 +00:00
|
|
|
}
|
2023-01-25 09:29:20 +00:00
|
|
|
|
2023-03-03 14:35:43 +00:00
|
|
|
Future<EthContract> _updateTokenABI({
|
|
|
|
required EthContract forContract,
|
|
|
|
required String usingContractAddress,
|
|
|
|
}) async {
|
2023-03-24 00:05:35 +00:00
|
|
|
final abiResponse = await EthereumAPI.getTokenAbi(
|
|
|
|
name: forContract.name,
|
|
|
|
contractAddress: usingContractAddress,
|
|
|
|
);
|
2023-03-03 14:35:43 +00:00
|
|
|
// Fetch token ABI so we can call token functions
|
|
|
|
if (abiResponse.value != null) {
|
|
|
|
final updatedToken = forContract.copyWith(abi: abiResponse.value!);
|
|
|
|
// Store updated contract
|
|
|
|
final id = await MainDB.instance.putEthContract(updatedToken);
|
|
|
|
return updatedToken..id = id;
|
2023-03-01 20:03:23 +00:00
|
|
|
} else {
|
2023-03-03 14:35:43 +00:00
|
|
|
throw abiResponse.exception!;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> initialize() async {
|
|
|
|
final contractAddress =
|
|
|
|
web3dart.EthereumAddress.fromHex(tokenContract.address);
|
|
|
|
|
2023-03-24 00:05:35 +00:00
|
|
|
// if (tokenContract.abi == null) {
|
|
|
|
_tokenContract = await _updateTokenABI(
|
|
|
|
forContract: tokenContract,
|
|
|
|
usingContractAddress: contractAddress.hex,
|
|
|
|
);
|
|
|
|
// }
|
2023-01-27 12:32:05 +00:00
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
String? mnemonicString = await ethWallet.mnemonicString;
|
2023-01-25 16:08:27 +00:00
|
|
|
|
|
|
|
//Get private key for given mnemonic
|
2023-02-24 20:07:59 +00:00
|
|
|
String privateKey = getPrivateKey(
|
2023-03-03 14:35:43 +00:00
|
|
|
mnemonicString!,
|
|
|
|
(await ethWallet.mnemonicPassphrase) ?? "",
|
|
|
|
);
|
2023-02-24 14:45:34 +00:00
|
|
|
_credentials = web3dart.EthPrivateKey.fromHex(privateKey);
|
2023-01-26 18:08:12 +00:00
|
|
|
|
2023-03-03 14:35:43 +00:00
|
|
|
_deployedContract = web3dart.DeployedContract(
|
2023-03-24 00:05:35 +00:00
|
|
|
ContractAbiExtensions.fromJsonList(
|
|
|
|
jsonList: tokenContract.abi!,
|
|
|
|
name: tokenContract.name,
|
|
|
|
),
|
2023-03-03 14:35:43 +00:00
|
|
|
contractAddress,
|
|
|
|
);
|
2023-01-30 13:44:30 +00:00
|
|
|
|
2023-03-01 20:03:23 +00:00
|
|
|
try {
|
2023-03-03 14:35:43 +00:00
|
|
|
_balanceFunction = _deployedContract.function('balanceOf');
|
|
|
|
_sendFunction = _deployedContract.function('transfer');
|
2023-03-01 20:03:23 +00:00
|
|
|
} catch (_) {
|
2023-03-24 00:05:35 +00:00
|
|
|
//====================================================================
|
|
|
|
final list = List<Map<String, dynamic>>.from(
|
|
|
|
jsonDecode(tokenContract.abi!) as List);
|
|
|
|
final functionNames = list.map((e) => e["name"] as String);
|
|
|
|
|
|
|
|
if (!functionNames.contains("balanceOf")) {
|
|
|
|
list.add(
|
|
|
|
{
|
|
|
|
"encoding": "0x70a08231",
|
|
|
|
"inputs": [
|
|
|
|
{"name": "account", "type": "address"}
|
|
|
|
],
|
|
|
|
"name": "balanceOf",
|
|
|
|
"outputs": [
|
|
|
|
{"name": "val_0", "type": "uint256"}
|
|
|
|
],
|
|
|
|
"signature": "balanceOf(address)",
|
|
|
|
"type": "function"
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
2023-03-03 14:35:43 +00:00
|
|
|
|
2023-03-24 00:05:35 +00:00
|
|
|
if (!functionNames.contains("transfer")) {
|
|
|
|
list.add(
|
|
|
|
{
|
|
|
|
"encoding": "0xa9059cbb",
|
|
|
|
"inputs": [
|
|
|
|
{"name": "dst", "type": "address"},
|
|
|
|
{"name": "rawAmount", "type": "uint256"}
|
|
|
|
],
|
|
|
|
"name": "transfer",
|
|
|
|
"outputs": [
|
|
|
|
{"name": "val_0", "type": "bool"}
|
|
|
|
],
|
|
|
|
"signature": "transfer(address,uint256)",
|
|
|
|
"type": "function"
|
|
|
|
},
|
2023-03-03 14:35:43 +00:00
|
|
|
);
|
2023-03-01 20:03:23 +00:00
|
|
|
}
|
2023-03-24 00:05:35 +00:00
|
|
|
//--------------------------------------------------------------------
|
|
|
|
//====================================================================
|
|
|
|
|
|
|
|
// function not found so likely a proxy so we need to fetch the impl
|
|
|
|
//====================================================================
|
|
|
|
final updatedToken = tokenContract.copyWith(abi: jsonEncode(list));
|
|
|
|
// Store updated contract
|
|
|
|
final id = await MainDB.instance.putEthContract(updatedToken);
|
|
|
|
_tokenContract = updatedToken..id = id;
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
// final contractAddressResponse =
|
|
|
|
// await EthereumAPI.getProxyTokenImplementation(contractAddress.hex);
|
|
|
|
//
|
|
|
|
// if (contractAddressResponse.value != null) {
|
|
|
|
// _tokenContract = await _updateTokenABI(
|
|
|
|
// forContract: tokenContract,
|
|
|
|
// usingContractAddress: contractAddressResponse.value!,
|
|
|
|
// );
|
|
|
|
// } else {
|
|
|
|
// throw contractAddressResponse.exception!;
|
|
|
|
// }
|
|
|
|
//====================================================================
|
2023-03-01 20:03:23 +00:00
|
|
|
}
|
2023-01-26 18:08:12 +00:00
|
|
|
|
2023-03-03 14:35:43 +00:00
|
|
|
_deployedContract = web3dart.DeployedContract(
|
2023-03-24 00:05:35 +00:00
|
|
|
ContractAbiExtensions.fromJsonList(
|
|
|
|
jsonList: tokenContract.abi!,
|
|
|
|
name: tokenContract.name,
|
2023-03-02 00:02:53 +00:00
|
|
|
),
|
2023-03-03 14:35:43 +00:00
|
|
|
contractAddress,
|
2023-03-02 00:02:53 +00:00
|
|
|
);
|
|
|
|
|
2023-03-03 14:35:43 +00:00
|
|
|
_balanceFunction = _deployedContract.function('balanceOf');
|
|
|
|
_sendFunction = _deployedContract.function('transfer');
|
2023-03-02 00:02:53 +00:00
|
|
|
|
2023-01-26 18:08:12 +00:00
|
|
|
_client = await getEthClient();
|
2023-01-25 09:29:20 +00:00
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
unawaited(refresh());
|
2023-01-26 18:08:12 +00:00
|
|
|
}
|
2023-01-25 09:29:20 +00:00
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
bool get isRefreshing => _refreshLock;
|
|
|
|
|
2023-01-25 09:29:20 +00:00
|
|
|
Future<Map<String, dynamic>> prepareSend(
|
|
|
|
{required String address,
|
|
|
|
required int satoshiAmount,
|
2023-01-26 18:08:12 +00:00
|
|
|
Map<String, dynamic>? args}) async {
|
|
|
|
final feeRateType = args?["feeRate"];
|
|
|
|
int fee = 0;
|
|
|
|
final feeObject = await fees;
|
|
|
|
switch (feeRateType) {
|
|
|
|
case FeeRateType.fast:
|
|
|
|
fee = feeObject.fast;
|
|
|
|
break;
|
|
|
|
case FeeRateType.average:
|
|
|
|
fee = feeObject.medium;
|
|
|
|
break;
|
|
|
|
case FeeRateType.slow:
|
|
|
|
fee = feeObject.slow;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
final feeEstimate = await estimateFeeFor(satoshiAmount, fee);
|
|
|
|
|
|
|
|
Map<String, dynamic> txData = {
|
|
|
|
"fee": feeEstimate,
|
|
|
|
"feeInWei": fee,
|
|
|
|
"address": address,
|
|
|
|
"recipientAmt": satoshiAmount,
|
|
|
|
};
|
|
|
|
|
|
|
|
return txData;
|
2023-01-25 09:29:20 +00:00
|
|
|
}
|
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
bool _refreshLock = false;
|
|
|
|
|
|
|
|
Future<void> refresh() async {
|
|
|
|
if (!_refreshLock) {
|
|
|
|
_refreshLock = true;
|
|
|
|
try {
|
2023-02-27 17:42:22 +00:00
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
WalletSyncStatusChangedEvent(
|
|
|
|
WalletSyncStatus.syncing,
|
2023-03-03 14:35:43 +00:00
|
|
|
ethWallet.walletId + tokenContract.address,
|
2023-02-27 17:42:22 +00:00
|
|
|
coin,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2023-02-27 16:01:06 +00:00
|
|
|
await refreshCachedBalance();
|
2023-02-24 20:07:59 +00:00
|
|
|
await _refreshTransactions();
|
|
|
|
} catch (e, s) {
|
|
|
|
Logging.instance.log(
|
2023-03-03 14:35:43 +00:00
|
|
|
"Caught exception in ${tokenContract.name} ${ethWallet.walletName} ${ethWallet.walletId} refresh(): $e\n$s",
|
2023-02-24 20:07:59 +00:00
|
|
|
level: LogLevel.Warning,
|
|
|
|
);
|
|
|
|
} finally {
|
|
|
|
_refreshLock = false;
|
2023-02-27 17:42:22 +00:00
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
WalletSyncStatusChangedEvent(
|
|
|
|
WalletSyncStatus.synced,
|
2023-03-03 14:35:43 +00:00
|
|
|
ethWallet.walletId + tokenContract.address,
|
2023-02-27 17:42:22 +00:00
|
|
|
coin,
|
|
|
|
),
|
|
|
|
);
|
2023-02-27 16:01:06 +00:00
|
|
|
notifyListeners();
|
2023-02-24 20:07:59 +00:00
|
|
|
}
|
|
|
|
}
|
2023-01-25 09:29:20 +00:00
|
|
|
}
|
|
|
|
|
2023-02-27 16:01:06 +00:00
|
|
|
Future<void> refreshCachedBalance() async {
|
2023-01-26 18:08:12 +00:00
|
|
|
final balanceRequest = await _client.call(
|
2023-03-03 14:35:43 +00:00
|
|
|
contract: _deployedContract,
|
2023-03-01 20:03:23 +00:00
|
|
|
function: _balanceFunction,
|
|
|
|
params: [_credentials.address],
|
|
|
|
);
|
2023-02-27 16:01:06 +00:00
|
|
|
|
|
|
|
String _balance = balanceRequest.first.toString();
|
|
|
|
|
|
|
|
final newBalance = TokenBalance(
|
2023-03-03 14:35:43 +00:00
|
|
|
contractAddress: tokenContract.address,
|
2023-02-27 16:01:06 +00:00
|
|
|
total: int.parse(_balance),
|
|
|
|
spendable: int.parse(_balance),
|
|
|
|
blockedTotal: 0,
|
|
|
|
pendingSpendable: 0,
|
2023-03-03 14:35:43 +00:00
|
|
|
decimalPlaces: tokenContract.decimals,
|
2023-02-23 22:59:58 +00:00
|
|
|
);
|
2023-02-27 16:01:06 +00:00
|
|
|
await updateCachedBalance(newBalance);
|
|
|
|
notifyListeners();
|
2023-01-26 18:08:12 +00:00
|
|
|
}
|
2023-01-25 09:29:20 +00:00
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
Future<List<Transaction>> get transactions => ethWallet.db
|
|
|
|
.getTransactions(ethWallet.walletId)
|
|
|
|
.filter()
|
2023-03-03 14:35:43 +00:00
|
|
|
.otherDataEqualTo(tokenContract.address)
|
2023-02-24 20:07:59 +00:00
|
|
|
.sortByTimestampDesc()
|
|
|
|
.findAll();
|
2023-01-25 09:29:20 +00:00
|
|
|
|
2023-03-24 16:11:18 +00:00
|
|
|
String _addressFromTopic(String topic) =>
|
|
|
|
checksumEthereumAddress("0x${topic.substring(topic.length - 40)}");
|
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
Future<void> _refreshTransactions() async {
|
2023-03-23 18:19:51 +00:00
|
|
|
String addressString =
|
|
|
|
checksumEthereumAddress(await currentReceivingAddress);
|
2023-01-27 12:32:05 +00:00
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
final response = await EthereumAPI.getTokenTransactions(
|
|
|
|
address: addressString,
|
2023-03-23 18:19:51 +00:00
|
|
|
tokenContractAddress: tokenContract.address,
|
2023-02-24 20:07:59 +00:00
|
|
|
);
|
2023-01-27 12:32:05 +00:00
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
if (response.value == null) {
|
2023-03-01 20:03:23 +00:00
|
|
|
throw response.exception ??
|
2023-03-23 18:19:51 +00:00
|
|
|
Exception("Failed to fetch token transaction data");
|
|
|
|
}
|
2023-03-23 19:51:56 +00:00
|
|
|
|
|
|
|
// no need to continue if no transactions found
|
|
|
|
if (response.value!.isEmpty) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-03-23 18:19:51 +00:00
|
|
|
final response2 = await EthereumAPI.getEthTokenTransactionsByTxids(
|
|
|
|
response.value!.map((e) => e.transactionHash).toList(),
|
|
|
|
);
|
|
|
|
|
|
|
|
if (response2.value == null) {
|
|
|
|
throw response2.exception ??
|
2023-03-01 20:03:23 +00:00
|
|
|
Exception("Failed to fetch token transactions");
|
2023-02-24 20:07:59 +00:00
|
|
|
}
|
2023-03-23 18:19:51 +00:00
|
|
|
final List<Tuple2<EthTokenTxDto, EthTokenTxExtraDTO>> data = [];
|
|
|
|
for (final tokenDto in response.value!) {
|
|
|
|
data.add(
|
|
|
|
Tuple2(
|
|
|
|
tokenDto,
|
|
|
|
response2.value!.firstWhere(
|
|
|
|
(e) => e.hash == tokenDto.transactionHash,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2023-01-27 12:32:05 +00:00
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
final List<Tuple2<Transaction, Address?>> txnsData = [];
|
2023-01-27 12:32:05 +00:00
|
|
|
|
2023-03-23 18:19:51 +00:00
|
|
|
for (final tuple in data) {
|
2023-03-24 16:11:18 +00:00
|
|
|
int amount;
|
|
|
|
String fromAddress, toAddress;
|
|
|
|
if (tuple.item1.articulatedLog == null) {
|
|
|
|
if (tuple.item1.topics.length != 3) {
|
|
|
|
throw Exception("Topics length != 3 for "
|
|
|
|
"${ethWallet.walletName} ${ethWallet.walletId}: "
|
|
|
|
"${tuple.item1.toString()}");
|
|
|
|
}
|
|
|
|
amount = tuple.item1.data.toBigIntFromHex.toInt();
|
|
|
|
|
|
|
|
fromAddress = _addressFromTopic(
|
|
|
|
tuple.item1.topics[1],
|
|
|
|
);
|
|
|
|
toAddress = _addressFromTopic(
|
|
|
|
tuple.item1.topics[2],
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
amount = int.parse(
|
|
|
|
tuple.item1.articulatedLog!.inputs.amount,
|
|
|
|
);
|
|
|
|
fromAddress = checksumEthereumAddress(
|
|
|
|
tuple.item1.articulatedLog!.inputs.from,
|
|
|
|
);
|
|
|
|
toAddress = checksumEthereumAddress(
|
|
|
|
tuple.item1.articulatedLog!.inputs.to,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
bool isIncoming;
|
2023-03-24 16:11:18 +00:00
|
|
|
bool isSentToSelf = false;
|
|
|
|
if (fromAddress == addressString) {
|
2023-02-24 20:07:59 +00:00
|
|
|
isIncoming = false;
|
2023-03-24 16:11:18 +00:00
|
|
|
if (toAddress == addressString) {
|
|
|
|
isSentToSelf = true;
|
|
|
|
}
|
|
|
|
} else if (toAddress == addressString) {
|
2023-02-24 20:07:59 +00:00
|
|
|
isIncoming = true;
|
2023-03-24 16:11:18 +00:00
|
|
|
} else {
|
|
|
|
throw Exception("Unknown token transaction found for "
|
|
|
|
"${ethWallet.walletName} ${ethWallet.walletId}: "
|
|
|
|
"${tuple.item1.toString()}");
|
2023-02-24 20:07:59 +00:00
|
|
|
}
|
2023-01-27 12:32:05 +00:00
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
final txn = Transaction(
|
|
|
|
walletId: ethWallet.walletId,
|
2023-03-23 18:19:51 +00:00
|
|
|
txid: tuple.item1.transactionHash,
|
|
|
|
timestamp: tuple.item2.timestamp,
|
2023-02-24 20:07:59 +00:00
|
|
|
type: isIncoming ? TransactionType.incoming : TransactionType.outgoing,
|
|
|
|
subType: TransactionSubType.ethToken,
|
2023-03-24 16:11:18 +00:00
|
|
|
amount: amount,
|
2023-03-24 21:31:05 +00:00
|
|
|
amountString: Amount(
|
|
|
|
rawValue: BigInt.from(amount),
|
|
|
|
fractionDigits: tokenContract.decimals,
|
|
|
|
).toJsonString(),
|
2023-03-23 18:19:51 +00:00
|
|
|
fee: tuple.item2.gasUsed * tuple.item2.gasPrice.toInt(),
|
|
|
|
height: tuple.item1.blockNumber,
|
2023-02-24 20:07:59 +00:00
|
|
|
isCancelled: false,
|
|
|
|
isLelantus: false,
|
|
|
|
slateId: null,
|
2023-03-23 18:19:51 +00:00
|
|
|
otherData: tuple.item1.address,
|
2023-02-24 20:07:59 +00:00
|
|
|
inputs: [],
|
|
|
|
outputs: [],
|
|
|
|
);
|
|
|
|
|
|
|
|
Address? transactionAddress = await ethWallet.db
|
|
|
|
.getAddresses(ethWallet.walletId)
|
|
|
|
.filter()
|
2023-03-24 16:11:18 +00:00
|
|
|
.valueEqualTo(toAddress)
|
2023-02-24 20:07:59 +00:00
|
|
|
.findFirst();
|
|
|
|
|
2023-03-24 16:11:18 +00:00
|
|
|
transactionAddress ??= Address(
|
|
|
|
walletId: ethWallet.walletId,
|
|
|
|
value: toAddress,
|
|
|
|
publicKey: [],
|
|
|
|
derivationIndex: isSentToSelf ? 0 : -1,
|
|
|
|
derivationPath: isSentToSelf
|
|
|
|
? (DerivationPath()..value = "$hdPathEthereum/0")
|
|
|
|
: null,
|
|
|
|
type: AddressType.ethereum,
|
|
|
|
subType:
|
|
|
|
isSentToSelf ? AddressSubType.receiving : AddressSubType.nonWallet,
|
|
|
|
);
|
2023-01-27 12:32:05 +00:00
|
|
|
|
2023-02-24 20:07:59 +00:00
|
|
|
txnsData.add(Tuple2(txn, transactionAddress));
|
|
|
|
}
|
|
|
|
await ethWallet.db.addNewTransactionData(txnsData, ethWallet.walletId);
|
|
|
|
|
|
|
|
// quick hack to notify manager to call notifyListeners if
|
|
|
|
// transactions changed
|
|
|
|
if (txnsData.isNotEmpty) {
|
|
|
|
GlobalEventBus.instance.fire(
|
|
|
|
UpdatedInBackgroundEvent(
|
2023-03-03 14:35:43 +00:00
|
|
|
"${tokenContract.name} transactions updated/added for: ${ethWallet.walletId} ${ethWallet.walletName}",
|
2023-02-24 20:07:59 +00:00
|
|
|
ethWallet.walletId,
|
|
|
|
),
|
|
|
|
);
|
2023-01-27 12:32:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-25 09:29:20 +00:00
|
|
|
bool validateAddress(String address) {
|
2023-01-26 18:08:12 +00:00
|
|
|
return isValidEthereumAddress(address);
|
|
|
|
}
|
|
|
|
|
2023-01-27 12:32:05 +00:00
|
|
|
Future<NodeModel> getCurrentNode() async {
|
|
|
|
return NodeService(secureStorageInterface: _secureStore)
|
|
|
|
.getPrimaryNodeFor(coin: coin) ??
|
|
|
|
DefaultNodes.getNodeFor(coin);
|
|
|
|
}
|
|
|
|
|
2023-02-24 14:45:34 +00:00
|
|
|
Future<web3dart.Web3Client> getEthClient() async {
|
2023-01-27 12:32:05 +00:00
|
|
|
final node = await getCurrentNode();
|
2023-02-24 14:45:34 +00:00
|
|
|
return web3dart.Web3Client(node.host, Client());
|
2023-01-25 09:29:20 +00:00
|
|
|
}
|
|
|
|
}
|