ENS Libraries

ENS support is available in many popular languages. If you know of a library that is not listed here, please send us a PR.

Javascript

Which Javascript library should I use?

If you are already using web3.js, and do not require functionality such as creating subdomains, transferring ownership, or updating resolvers, use web3.js's ENS support.

If you are already using ethjs, and only need to do forward and reverse resolution of ENS names, use ethjs's ENS support.

If you are already using ethers.js, and only need to do forward and reverse resolution of ENNS names, use ethers.js's ENS support.

Otherwise, use ethereum-ens.

Accessing smart contracts directly

All the ENS smart contracts are Truffle projects and published as npm modules (eg: ENS registry). If you want to access to functions none of the above libraries support you can install the smart contracts via npm.

The bytecode and abi are precompiled and can be imported from the modules.

import { abi , bytecode } from '@ensdomains/ens/build/contracts/ENS.json'

Java

Kotlin

Python

Go

Command-line

Delphi

Next Steps

Once you've chosen a library, read Working with ENS to learn how to use your chosen ENS library in your application.

Last updated