mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 01:37:40 +00:00
46 lines
1.4 KiB
Dart
46 lines
1.4 KiB
Dart
import 'package:cake_wallet/ethereum/ethereum.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:ens_dart/ens_dart.dart';
|
|
import 'package:http/http.dart';
|
|
import 'package:web3dart/web3dart.dart';
|
|
|
|
class EnsRecord {
|
|
static Future<String> fetchEnsAddress(String name, {WalletBase? wallet}) async {
|
|
Web3Client? _client;
|
|
|
|
if (wallet != null && wallet.type == WalletType.ethereum) {
|
|
_client = ethereum!.getWeb3Client(wallet);
|
|
}
|
|
|
|
if (_client == null) {
|
|
_client = Web3Client("https://ethereum.publicnode.com", Client());
|
|
}
|
|
|
|
try {
|
|
final ens = Ens(client: _client);
|
|
|
|
if (wallet != null) {
|
|
switch (wallet.type) {
|
|
case WalletType.monero:
|
|
return await ens.withName(name).getCoinAddress(CoinType.XMR);
|
|
case WalletType.bitcoin:
|
|
return await ens.withName(name).getCoinAddress(CoinType.BTC);
|
|
case WalletType.litecoin:
|
|
return await ens.withName(name).getCoinAddress(CoinType.LTC);
|
|
case WalletType.haven:
|
|
return await ens.withName(name).getCoinAddress(CoinType.XHV);
|
|
case WalletType.ethereum:
|
|
default:
|
|
return (await ens.withName(name).getAddress()).hex;
|
|
}
|
|
}
|
|
|
|
final addr = await ens.withName(name).getAddress();
|
|
return addr.hex;
|
|
} catch (e) {
|
|
print(e);
|
|
return "";
|
|
}
|
|
}
|
|
}
|