unstoppabledomains / resolution

A library to resolve blockchain domain names.
MIT License
222 stars 67 forks source link

Add domain location methods #180

Closed DancingAxolotl closed 3 years ago

DancingAxolotl commented 3 years ago

Related story

https://www.pivotaltracker.com/story/show/179284542

Changes

Added a resolution.location method that returns domain location details:

type DomainLoaction = {
  registry: string;
  resolver: string;
  networkId: number;
  blockchain: BlockchainType;
  owner: string;
}
DeRain commented 3 years ago

@DancingAxolotl I think it's ready to be merged unless you have something to add