ethers.js/lib.esm/hash/namehash.js

85 lines
2.6 KiB
JavaScript
Raw Normal View History

2022-09-16 05:58:45 +03:00
import { keccak256 } from "../crypto/index.js";
2023-01-28 09:53:29 +03:00
import { concat, hexlify, assertArgument, toUtf8Bytes } from "../utils/index.js";
2023-02-16 16:19:59 +03:00
import { ens_normalize } from "@adraffy/ens-normalize";
2022-09-05 23:57:11 +03:00
const Zeros = new Uint8Array(32);
Zeros.fill(0);
function checkComponent(comp) {
2023-01-27 07:36:26 +03:00
assertArgument(comp.length !== 0, "invalid ENS name; empty component", "comp", comp);
2022-09-05 23:57:11 +03:00
return comp;
}
function ensNameSplit(name) {
2023-01-28 09:53:29 +03:00
const bytes = toUtf8Bytes(ensNormalize(name));
2022-09-05 23:57:11 +03:00
const comps = [];
if (name.length === 0) {
return comps;
}
let last = 0;
for (let i = 0; i < bytes.length; i++) {
const d = bytes[i];
// A separator (i.e. "."); copy this component
if (d === 0x2e) {
comps.push(checkComponent(bytes.slice(last, i)));
last = i + 1;
}
}
// There was a stray separator at the end of the name
2023-01-27 07:36:26 +03:00
assertArgument(last < bytes.length, "invalid ENS name; empty component", "name", name);
2022-09-05 23:57:11 +03:00
comps.push(checkComponent(bytes.slice(last)));
return comps;
}
2023-01-28 09:53:29 +03:00
/**
* Returns the ENS %%name%% normalized.
*/
2022-09-05 23:57:11 +03:00
export function ensNormalize(name) {
2023-01-28 09:53:29 +03:00
try {
2023-10-11 05:41:46 +03:00
if (name.length === 0) {
throw new Error("empty label");
}
2023-01-28 09:53:29 +03:00
return ens_normalize(name);
}
catch (error) {
assertArgument(false, `invalid ENS name (${error.message})`, "name", name);
}
2022-09-05 23:57:11 +03:00
}
2023-01-28 09:53:29 +03:00
/**
* Returns ``true`` if %%name%% is a valid ENS name.
*/
2022-09-05 23:57:11 +03:00
export function isValidName(name) {
try {
return (ensNameSplit(name).length !== 0);
}
catch (error) { }
return false;
}
2023-01-28 09:53:29 +03:00
/**
* Returns the [[link-namehash]] for %%name%%.
*/
2022-09-05 23:57:11 +03:00
export function namehash(name) {
2022-11-09 10:57:02 +03:00
assertArgument(typeof (name) === "string", "invalid ENS name; not a string", "name", name);
2023-10-11 05:41:46 +03:00
assertArgument(name.length, `invalid ENS name (empty label)`, "name", name);
2022-09-05 23:57:11 +03:00
let result = Zeros;
const comps = ensNameSplit(name);
while (comps.length) {
result = keccak256(concat([result, keccak256((comps.pop()))]));
}
return hexlify(result);
}
2023-01-28 09:53:29 +03:00
/**
* Returns the DNS encoded %%name%%.
*
* This is used for various parts of ENS name resolution, such
* as the wildcard resolution.
*/
2022-09-05 23:57:11 +03:00
export function dnsEncode(name) {
return hexlify(concat(ensNameSplit(name).map((comp) => {
// DNS does not allow components over 63 bytes in length
if (comp.length > 63) {
throw new Error("invalid DNS encoded entry; length exceeds 63 bytes");
}
const bytes = new Uint8Array(comp.length + 1);
bytes.set(comp, 1);
bytes[0] = bytes.length - 1;
return bytes;
}))) + "00";
}
//# sourceMappingURL=namehash.js.map