ICNS naming
npm install icns-namingUsing npm:
```
$ npm i icns-naming
Once the package is installed, you can import the library:
``
import { bech32ToICNS, ICNSToBech32 } from 'icns-naming';
async function ICNSName() {
const resolverAddress = 'osmo1xk0s8xgktn9x5vwcgtjdxqzadg88fgn33p8u9cnpdxwemvxscvast52cdd';
const bech32Address = 'osmo1z98eg2ztdp2glyla62629nrlvczg8s7f8sgpm5'; const name = await bech32ToICNS(bech32Address, resolverAddress);
console.log(name);
}
`Result:
`
dogemos
``