payToScriptHashScript function

Uint8List payToScriptHashScript(
  1. Uint8List hash
)

Implementation

Uint8List payToScriptHashScript(Uint8List hash) {
  return Uint8List.fromList([kOpBlake2b, hash.length, ...hash, kOpEqual]);
}