ethers.js/src.ts/utils/id.ts

9 lines
181 B
TypeScript
Raw Normal View History

2018-06-13 22:39:39 +03:00
'use strict';
import { keccak256 } from './keccak256';
import { toUtf8Bytes } from './utf8';
export function id(text: string): string {
return keccak256(toUtf8Bytes(text));
}