UNPKG

test-triam-base-contract

Version:

Low level triam smart cotnract support library

8 lines (6 loc) 149 B
import {sha256} from "sha.js"; export function hash(data) { let hasher = new sha256(); hasher.update(data, 'utf8'); return hasher.digest(); }