2017-05-04 03:24:07 +03:00
|
|
|
'use strict';
|
|
|
|
|
2018-07-16 10:27:49 +03:00
|
|
|
import { concat, hexlify } from './bytes';
|
2018-06-13 22:39:39 +03:00
|
|
|
import { toUtf8Bytes } from './utf8';
|
|
|
|
import { keccak256 } from './keccak256';
|
2017-05-04 03:24:07 +03:00
|
|
|
|
2018-07-31 01:59:52 +03:00
|
|
|
///////////////////////////////
|
|
|
|
// Imported Types
|
|
|
|
|
|
|
|
import { Arrayish } from './bytes';
|
|
|
|
|
|
|
|
///////////////////////////////
|
2018-07-16 10:27:49 +03:00
|
|
|
|
2018-06-13 22:39:39 +03:00
|
|
|
var Zeros = new Uint8Array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);
|
2017-05-04 03:24:07 +03:00
|
|
|
var Partition = new RegExp("^((.*)\\.)?([^.]+)$");
|
|
|
|
var UseSTD3ASCIIRules = new RegExp("^[a-z0-9.-]*$");
|
|
|
|
|
2018-06-13 22:39:39 +03:00
|
|
|
export function namehash(name: string): string {
|
2017-05-04 03:24:07 +03:00
|
|
|
name = name.toLowerCase();
|
|
|
|
|
|
|
|
// Supporting the full UTF-8 space requires additional (and large)
|
|
|
|
// libraries, so for now we simply do not support them.
|
|
|
|
// It should be fairly easy in the future to support systems with
|
|
|
|
// String.normalize, but that is future work.
|
|
|
|
if (!name.match(UseSTD3ASCIIRules)) {
|
|
|
|
throw new Error('contains invalid UseSTD3ASCIIRules characters');
|
|
|
|
}
|
|
|
|
|
2018-06-13 22:39:39 +03:00
|
|
|
var result: string | Uint8Array = Zeros;
|
|
|
|
while (name.length) {
|
2017-05-04 03:24:07 +03:00
|
|
|
var partition = name.match(Partition);
|
2018-06-13 22:39:39 +03:00
|
|
|
var label = toUtf8Bytes(partition[3]);
|
|
|
|
result = keccak256(concat([result, keccak256(label)]));
|
2017-05-04 03:24:07 +03:00
|
|
|
|
|
|
|
name = partition[2] || '';
|
|
|
|
}
|
|
|
|
|
2018-06-13 22:39:39 +03:00
|
|
|
return hexlify(result);
|
2017-05-04 03:24:07 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-18 12:42:41 +03:00
|
|
|
export function id(text: string): string {
|
|
|
|
return keccak256(toUtf8Bytes(text));
|
|
|
|
}
|
|
|
|
|
|
|
|
export function hashMessage(message: Arrayish | string): string {
|
|
|
|
var payload = concat([
|
|
|
|
toUtf8Bytes('\x19Ethereum Signed Message:\n'),
|
|
|
|
toUtf8Bytes(String(message.length)),
|
|
|
|
((typeof(message) === 'string') ? toUtf8Bytes(message): message)
|
|
|
|
]);
|
|
|
|
return keccak256(payload);
|
|
|
|
}
|
|
|
|
|