Resolution Java Changelog
5.0.0
Breaking changes
- Ens support has been removed from the library.
-
Library builder methods regarding ens has been removed:
ensChainId
,ensProviderUrl
andensContractAddress
4.1.0
Changes
-
Library builder methods no longer require UNS smart contract addresses for known networks (mainnet, testnet). Only
unsChainId
andunsProviderUrl
methods are required.
4.0.0
Breaking changes
-
Library builder methods has changed it's signature. Almost all methods now has prefixes related to specific name server (
UNS
,ZNS
,ENS
)- Example of changed methods:
-
ensChainId
-
unsChainId
-
znsChainId
- ENS considered deprecated and will be removed in future
New methods and features
- 🎉 🎉 🎉 Add Polygon Layer 2 support!
-
Introduced
Resolution#getBatchOwners
method to resolve owner addresses of many domains only for UNS. -
Introduced
Resolution#getRecords
method to resole multiple records of a single domain. -
Introduced
Resolution#getAllRecords
method to resole all known records of a single domain. -
Introduced
Resolution#getLocations
method to resole all known records of a single domain. -
Add
Resolution#getLocations
method which will help to determine domains location (blockhain, networkId) and useful metadata like owner, resolver, registry addresses, provider url if possible.- Method returns:
- Domain blockhain (ETH or MATIC)
- Blockchain network id (numeric)
- Owner address
- Resolver address
- Registry address
-
Provider URL if possible
- Infura URL by default
- Domain name is now trimmed and lowercased before resolving
-
Domain names that are not accomply with this regex
^[.a-z\d-]+$
will throw a NSExceptionCode.InvalidDomain
3.0.0
Breaking changes
-
Resolution#isSupported
is now making an async call and throwsNamingServiceException
-
NamingServiceType.CNS
was replaced byNamingServiceType.UNS
. - Removed deprecated constructor, to build the instance use Resolution.builder() instead
- Remove deprecated Resolution#getUsdt, use Resolution#getMultiChainAddress() instead
- Remove deprecated Resolution#addr, use Resolution#getAddress() instead
- Remove deprecated Resolution#namehash, use Resolution#getNamehash() instead
- Remove deprecated Resolution#email, use Resolution#getEmail() instead
- Remove deprecated Resolution#ipfsHash, use Resolution#getIpfsHash() instead
- Remove deprecated Resolution#owner, use Resolution#getOwner() instead
- Remove deprecated TickerVersion enum
New methods and features
- 🎉 🎉 🎉 Added support for new TLD's ( .888, .nft, .coin, .blockchain, .wallet, .x, .bitcoin, .dao )
-
Introduced
DomainResolution#getTokenURI
- Retrieves the tokenURI from the registry smart contract. -
Introduced
DomainResolution#getTokenURIMetadata
- Retrieves the data from the endpoint provided by tokenURI from the registry smart contract. -
Introduced
DomainResolution#unhash
- Retrieves the domain name from token metadata that is provided by tokenURI from the registry smart contract. - Return ENS support
-
Allow setting custom contract addresses in
Resolution.Builder
to support local testnet environment
2.0.0
- remove ENS support
1.13.3
- removed BufferedReader#lines due to incompatibility with lower android versions (< 7)
1.13.2
- Remove Jakson dependency in favor of gson
1.13.1
- Fix the deserialization bug with Jakson on NetworkConfigLoader.java
1.13.0
- Introduce DomainResolution#getMultiChainAddress general method to fetch a ticker address from specific chain
- Deprecate DomainResolution#getUsdt method in favor of DomainResolution#getMultiChainAddress
1.12.1
- Remove dependency 'org.apache.commons:commons-math3:3.6.1'
- Added linter to make sure there is no unused dependencies.
1.12.0
- Autoconfigure chainId from the blockchainprovider url when setting one via Builder#ProviderUrl
1.11.0
- Use Infura Ethereum Provider by default
1.10.0
- Fixed missing information on NamingServiceException thrown from ZNS
- Introduced IProvider interface -- implement it in order to get full control over HTTP requests to blockchain provider
-
Moved Lombok dependency to compileOnly group
1.9.1
- Added ability to instantly check a domain according to naming service rules for valid domain names
1.9.0
- Introduced Resolution#dns method to query dns records from .crypto domains
- Introduced Resolution#usdt method to query usdt address of different chains such as tron, omni, eos and erc20
1.8.1
- Solve issue with recent etherium node update
- Moved to use ProxyReader contract instead of direct communication with Registry/Resolver contracts
1.8.0
- Replace Resolution constructor with configurable builder
- Introduce DomainResolution interface
- Replace deprecated APIs
- Update network-config
- Code cleanup
- Fix infura response handling to align with a new format
1.7.0
- Plugged-in network config file with contracts
- Code cleanup
1.6.1
- Deprecated following methods from Resolution.java class:
- owner in favor of getOwner
- addr in favor of getAddress
- email in favor of getEmail
- ipfsHash in favor of getIpfsHash
- namehash in favor of getNamehash
1.6.0
- Added Ens support
1.5.1
- Code cleanup
1.5.0
- Fix resource read
- Change group id to 'com.unstoppabledomains'
1.4.0
- Setup CI/CD process
1.3.0
- Optimized build process
- Client version specification
- Changelog introduced
1.2.2 and earlier
- Changelog is not tracked