mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
1f904dcd47
* Change order of currencies in currency picker * Disable Background sync until implemented properly * remove ability to use device pin in bio auth * Fix condition * Minor fix [skip ci] * make notifications red dot go when opened * Update Frozen coin text color * Update Frozen coin text color * Fetch internal transactions for eth and polygon * Remove debug prints [skip ci] * Fix Camera permission on iOS [skip ci] * Minor fixes [skip ci] --------- Co-authored-by: tuxsudo <tuxsudo@tux.pizza>
69 lines
2.2 KiB
Dart
69 lines
2.2 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 (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 [];
|
|
}
|
|
}
|
|
}
|