mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-02 02:17:39 +00:00
ac8ef0c946
update resolving of crypto wallet addresses by using of OpenAlias in way to pick right wallet address based on current wallet type
74 lines
2 KiB
Dart
74 lines
2 KiB
Dart
import 'package:basic_utils/basic_utils.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class OpenaliasRecord {
|
|
OpenaliasRecord({this.address, this.name});
|
|
|
|
final String name;
|
|
final String address;
|
|
|
|
static String formatDomainName(String name) {
|
|
String formattedName = name;
|
|
|
|
if (name.contains("@")) {
|
|
formattedName = name.replaceAll("@", ".");
|
|
}
|
|
|
|
return formattedName;
|
|
}
|
|
|
|
static Future<OpenaliasRecord> fetchAddressAndName({
|
|
@required String formattedName,
|
|
@required String ticker,
|
|
}) async {
|
|
String address = formattedName;
|
|
String name = formattedName;
|
|
|
|
if (formattedName.contains(".")) {
|
|
try {
|
|
final txtRecord = await DnsUtils.lookupRecord(
|
|
formattedName, RRecordType.TXT,
|
|
dnssec: true);
|
|
|
|
if (txtRecord != null) {
|
|
for (RRecord element in txtRecord) {
|
|
String record = element.data;
|
|
|
|
if (record.contains("oa1:$ticker") &&
|
|
record.contains("recipient_address")) {
|
|
record = record.replaceAll('\"', "");
|
|
|
|
final dataList = record.split(";");
|
|
|
|
address = dataList
|
|
.where((item) => (item.contains("recipient_address")))
|
|
.toString()
|
|
.replaceAll("oa1:$ticker recipient_address=", "")
|
|
.replaceAll("(", "")
|
|
.replaceAll(")", "")
|
|
.trim();
|
|
|
|
final recipientName = dataList
|
|
.where((item) => (item.contains("recipient_name")))
|
|
.toString()
|
|
.replaceAll("(", "")
|
|
.replaceAll(")", "")
|
|
.trim();
|
|
|
|
if (recipientName.isNotEmpty) {
|
|
name = recipientName.replaceAll("recipient_name=", "");
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
} catch (e) {
|
|
print("${e.toString()}");
|
|
}
|
|
}
|
|
|
|
return OpenaliasRecord(address: address, name: name);
|
|
}
|
|
}
|