UNPKG

@0xcert/utils

Version:

General utility module with common helper functions.

9 lines (7 loc) 154 B
import * as Hash from 'eth-lib/src/hash'; /** * Generates keccak256 hash. */ export function keccak256(input: any) { return Hash.keccak256(input); }