Rapid ENS name resolution that trades security for speed
Automatically convert Ethereum addresses to ENS names with a single script tag
<script src="https://unpkg.com/@ens-rush-resolution/auto-resolve@0.1.1/dist/index.global.js"></script>
That's it! All Ethereum addresses on your page will be automatically resolved.
The addresses below are automatically resolved using ENS Rush Resolution:
Addresses already resolved! The addresses above have been automatically converted to ENS names.
To see the resolution happen in real-time, click the refresh button below.
Just add one script tag and it works automatically. No setup, no configuration needed.
Batches multiple addresses in a single API call for optimal performance.
No inline styles applied - respects your website's existing design.
Works in all modern browsers, static sites, and dynamic applications.
<!-- Add to your HTML head -->
<script src="https://unpkg.com/@ens-rush-resolution/auto-resolve@0.1.1/dist/index.global.js"></script>
<!-- Addresses in your content will be auto-resolved -->
<p>Contact developer: 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045</p>
import { resolve } from '@ens-rush-resolution/core';
const results = await resolve([
'0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045'
]);
console.log(results[0].name); // "vitalik.eth"
<!-- Prevent auto-resolution in specific sections -->
<div data-ens-rush="false">
<p>This address won't be resolved: 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045</p>
</div>
<!-- Perfect for code examples and documentation -->
<pre data-ens-rush="false">
<code>Contact: 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045</code>
</pre>
ENS Rush Resolution intentionally trades security for speed and simplicity. It's perfect for static sites, blogs, and dashboards where cryptographic verification isn't critical, but user experience is paramount.
This is NOT an official ENS Labs or ENS DAO project.
Learn more about official ENS resolution: https://docs.ens.domains/resolution