ethers.js/src.ts/utils/keccak256.ts

15 lines
276 B
TypeScript
Raw Normal View History

2018-06-13 22:39:39 +03:00
'use strict';
import sha3 = require('js-sha3');
import { arrayify } from './bytes';
// Imported Types
import { Arrayish } from './bytes';
2018-06-13 22:39:39 +03:00
export function keccak256(data: Arrayish): string {
return '0x' + sha3.keccak_256(arrayify(data));
}
//export default keccak256;