P2PKH.fromScript constructor

P2PKH.fromScript(
  1. Script script
)

Implementation

P2PKH.fromScript(this.script) {
  if (!template.match(script)) throw NoProgramMatch();
  _pkHash = (script[2] as ScriptPushData).data;
}