public interface AliasService
| Modifier and Type | Method and Description |
|---|---|
io.reactivex.Observable<Address> |
resolveAddress(UnresolvedAddress unresolvedAddress)
This method returns the resolved
Address from the UnresolvedAddress. |
io.reactivex.Observable<MosaicId> |
resolveMosaicId(UnresolvedMosaicId unresolvedMosaicId)
This method returns the resolved
MosaicId from the UnresolvedMosaicId. |
io.reactivex.Observable<MosaicId> resolveMosaicId(UnresolvedMosaicId unresolvedMosaicId)
MosaicId from the UnresolvedMosaicId. If the
UnresolvedMosaicId is an alias, it finds the real MosaicId by using the
namespace endpoints.unresolvedMosaicId - the unresolvedMosaicIdMosaicId from the namespace endpoint if it's an alias or Mosaic Id if it's an
mosaic id.io.reactivex.Observable<Address> resolveAddress(UnresolvedAddress unresolvedAddress)
Address from the UnresolvedAddress. If the
UnresolvedAddress is an alias, it finds the real Address by using the namespace
endpoints.unresolvedAddress - the unresolvedAddressAddress from the namespace endpoint if it's an alias or Address if it's an
address.