mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
62ef545fce
* New versions * Check for Taproot inputs when exchanging with ThorChain * Properly handle taproot case with thorchain * fix missing import
82 lines
2.4 KiB
Dart
82 lines
2.4 KiB
Dart
import 'dart:convert';
|
|
|
|
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:flutter/foundation.dart';
|
|
import 'package:web3dart/web3dart.dart';
|
|
|
|
class PolygonClient extends EVMChainClient {
|
|
@override
|
|
Transaction createTransaction({
|
|
required EthereumAddress from,
|
|
required EthereumAddress to,
|
|
required EtherAmount amount,
|
|
EtherAmount? maxPriorityFeePerGas,
|
|
Uint8List? data,
|
|
}) {
|
|
return Transaction(
|
|
from: from,
|
|
to: to,
|
|
value: amount,
|
|
);
|
|
}
|
|
|
|
@override
|
|
Uint8List prepareSignedTransactionForSending(Uint8List signedTransaction) => signedTransaction;
|
|
|
|
@override
|
|
int get chainId => 137;
|
|
|
|
@override
|
|
Future<List<EVMChainTransactionModel>> fetchTransactions(String address,
|
|
{String? contractAddress}) async {
|
|
try {
|
|
final response = await httpClient.get(Uri.https("api.polygonscan.com", "/api", {
|
|
"module": "account",
|
|
"action": contractAddress != null ? "tokentx" : "txlist",
|
|
if (contractAddress != null) "contractaddress": contractAddress,
|
|
"address": address,
|
|
"apikey": secrets.polygonScanApiKey,
|
|
}));
|
|
|
|
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>, 'MATIC'),
|
|
)
|
|
.toList();
|
|
}
|
|
|
|
return [];
|
|
} catch (e) {
|
|
return [];
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<List<EVMChainTransactionModel>> fetchInternalTransactions(String address) async {
|
|
try {
|
|
final response = await httpClient.get(Uri.https("api.polygonscan.io", "/api", {
|
|
"module": "account",
|
|
"action": "txlistinternal",
|
|
"address": address,
|
|
"apikey": secrets.polygonScanApiKey,
|
|
}));
|
|
|
|
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>, 'MATIC'))
|
|
.toList();
|
|
}
|
|
|
|
return [];
|
|
} catch (_) {
|
|
return [];
|
|
}
|
|
}
|
|
}
|