mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
1690f6af1e
* evm signature name * hide depositWithExpiry and transfer transactions * Update contact_list_view_model.dart * remove erc20 token history when disabled
74 lines
2.3 KiB
Dart
74 lines
2.3 KiB
Dart
import 'dart:convert';
|
|
import 'dart:developer';
|
|
import 'dart:typed_data';
|
|
|
|
import 'package:cw_evm/evm_chain_client.dart';
|
|
import 'package:cw_evm/.secrets.g.dart' as secrets;
|
|
import 'package:cw_evm/evm_chain_transaction_model.dart';
|
|
import 'package:web3dart/web3dart.dart';
|
|
|
|
class EthereumClient extends EVMChainClient {
|
|
@override
|
|
int get chainId => 1;
|
|
|
|
@override
|
|
Uint8List prepareSignedTransactionForSending(Uint8List signedTransaction) =>
|
|
prependTransactionType(0x02, signedTransaction);
|
|
|
|
@override
|
|
Future<List<EVMChainTransactionModel>> fetchTransactions(String address,
|
|
{String? contractAddress}) async {
|
|
try {
|
|
final response = await httpClient.get(Uri.https("api.etherscan.io", "/api", {
|
|
"module": "account",
|
|
"action": contractAddress != null ? "tokentx" : "txlist",
|
|
if (contractAddress != null) "contractaddress": contractAddress,
|
|
"address": address,
|
|
"apikey": secrets.etherScanApiKey,
|
|
}));
|
|
|
|
final jsonResponse = json.decode(response.body) as Map<String, dynamic>;
|
|
|
|
if (jsonResponse['result'] is String) {
|
|
log(jsonResponse['result']);
|
|
return [];
|
|
}
|
|
|
|
if (response.statusCode >= 200 && response.statusCode < 300 && jsonResponse['status'] != 0) {
|
|
return (jsonResponse['result'] as List)
|
|
.map((e) => EVMChainTransactionModel.fromJson(e as Map<String, dynamic>, 'ETH'))
|
|
.toList();
|
|
}
|
|
|
|
return [];
|
|
} catch (e) {
|
|
log(e.toString());
|
|
return [];
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<List<EVMChainTransactionModel>> fetchInternalTransactions(String address) async {
|
|
try {
|
|
final response = await httpClient.get(Uri.https("api.etherscan.io", "/api", {
|
|
"module": "account",
|
|
"action": "txlistinternal",
|
|
"address": address,
|
|
"apikey": secrets.etherScanApiKey,
|
|
}));
|
|
|
|
final jsonResponse = json.decode(response.body) as Map<String, dynamic>;
|
|
|
|
if (response.statusCode >= 200 && response.statusCode < 300 && jsonResponse['status'] != 0) {
|
|
return (jsonResponse['result'] as List)
|
|
.map((e) => EVMChainTransactionModel.fromJson(e as Map<String, dynamic>, 'ETH'))
|
|
.toList();
|
|
}
|
|
|
|
return [];
|
|
} catch (e) {
|
|
log(e.toString());
|
|
return [];
|
|
}
|
|
}
|
|
}
|