toScriptPubKey method

  1. @override
List<String> toScriptPubKey()

Returns the scriptPubKey (P2SH) that corresponds to this address

Implementation

@override
List<String> toScriptPubKey() {
  return ['OP_HASH160', _h160, 'OP_EQUAL'];
}