You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 12, 2024. It is now read-only.
import ENS from 'ethereum-ens';
import Web3 from 'web3';
const provider = new Web3.providers.HttpProvider();
const ens = new ENS(provider);
let name = await ens.reverse(address).name();
if (address !== await ens.resolver(name).addr()) {
name = null;
}
The ens.reverse(address).name() promise never resolves and just hangs. The method directly after doesn't run.
There is a network request being made to infura: https://ipfs.infura.io:5001/api/v0/add?pin=true,
returning hash, name, and size values - but not sure if its this method that's making that exact request
Thanks for any help
The text was updated successfully, but these errors were encountered:
I believe I've instantiated correctly:
The
ens.reverse(address).name()
promise never resolves and just hangs. The method directly after doesn't run.There is a network request being made to infura: https://ipfs.infura.io:5001/api/v0/add?pin=true,
returning
hash
,name
, andsize
values - but not sure if its this method that's making that exact requestThanks for any help
The text was updated successfully, but these errors were encountered: