Add new addr override
Remove default RPC urls, Allow initialized with UD partner key
- Update
uns-config.json
andresolver-keys.json
- Updated README with Infura key rate limit information about our key vs their own
- Change default blockchain provider to Infura, from Alchemy
- Deprecate
allRecords
method
- Ability to resolve
.zil
domains from Polygon and Ethereum networks - Reverse resolution support via
Resolution#reverse
andResolution#reverseTokenId
methods - Change default blockchain provider from Infura to Alchemy
- ZNS support moved under UNS nameserice
- Remove separate ZNS config
- ENS support has been removed.
-
- Library configurations has been changed and all ens mentions have been removed.
- Library initialization has been changed.
-
- Uns configurations now require setup for ETH network for L1 and poligon network for L2
Resolution#getNetwork
has been removed. It is redundant since anyone who is using the library will have the configurations built-inResolution#batchOwners
has changed signature. It now returns a map [String: String?] of domain to owner addresses.Resolution#tokensOwnedBy
has been removed- ENS considered deprecated and will be removed in the future
- 🎉 🎉 🎉 Add Polygon Layer 2 support!
- Introducing
Resolution#allRecords
method. It resolves a domain and returns all records the domain has been configured on the chain as a map [String: String] record to value - Introducing
Resolution#locations
method which will help to determine domains location (blockhain, networkId) and useful metadata like owner, resolver, registry addresses, provider url if possible. public struct Location: Equatable { var registryAddress: String? var resolverAddress: String? var networkId: String? var blockchain: String? var owner: String? var providerURL: String? }
- Fix
Resolution#tokensOwnedBy
issue with lowercased addresses.
Resolution#isSupported
is now making an async call. Method signature was changed.Configurations
class acceptsuns
configs instead ofcns
.-
- For example:
let resolution = try Resolution(configs: Configurations(uns: NamingServiceConfig(...uns config)));
- For example:
- Support new TLD's ( .888, .nft, .coin, .blockchain, .wallet, .x, .bitcoin, .dao )
- Introduce Resolution#tokenURI - Retrieves the tokenURI from the registry smart contract
- Introduce Resolution#tokenURIMetadata - Retrieves the data from the endpoint provided by tokenURI from the registry smart contract.
- Introduce Resolution#unhash - Retrieves the domain name from token metadata that is provided by tokenURI from the registry smart contract
- Return
ENS
support - Allowed custom networks for each of the naming services. If custom network has been set, it is required to set the proxyReader contract address for UNS and registryAddress for ENS && ZNS (see
./Sources/UnstoppableDomainsResolution/Resources/UNS/uns-config.json
)
- Remove Ens support (#41) via @JohnnyJumper
- Zns fix (#40) via @merenkoff
- Warning in project due to incorrect podspec #38 (#39) via @merenkoff
- Zilliqa testnet support. (#37) via @merenkoff
- UnregisteredDomain instead of UnspecifiedResolver (#36) via @JohnnyJumper
- Introduce DomainResolution#getMultiChainAddress general method to fetch a ticker address from specific chain
- Deprecate DomainResolution#getUsdt method in favor of DomainResolution#getMultiChainAddress
- General multichain support (#33) via @JohnnyJumper
- Auto network (#32) via @JohnnyJumper
- Move Base58 lib from dependencies to internal sources.
- Customizing naming services
- Version 0.3.0 introduced the
Configurations
struct that is used for configuring each connected naming service. - Library can offer three naming services at the moment:
cns
resolves.crypto
domains,ens
resolves.eth
domains,zns
resolves.zil
domains
By default, each of them is using the mainnet network via infura provider. Unstoppable domains are using the infura key with no restriction for CNS. Unstoppable domains recommends setting up your own provider for ENS, as we don't guarantee ENS Infura key availability. You can update each naming service separately
- Update keys (#30) via @JohnnyJumper
- Change ABI codec dependency (#31) via @merenkoff
- Added correct initialization of Resolution object if
rinkeby
test network used(#27) via @merenkoff - Dns records support (#25) via @JohnnyJumper
- Resolution#usdt (#26) via @JohnnyJumper
- CNS supports both
mainnet
andrinkeby
from network-config.json file (#23) via @rommex - BadRequestOrResponse is Handled (#21) via @rommex
- Proxy reader 2 0 support (#22) via @rommex
- Downgrade minimum support version (#20) via @vladyslav-iosdev
- iOS11 support in swiftPM
- Batch Request for owners of domains
- Ininial release