1 | <?php |
||
11 | class PayToPubKeyHashAddress extends Base58Address |
||
12 | { |
||
13 | /** |
||
14 | * PayToPubKeyHashAddress constructor. |
||
15 | * @param BufferInterface $hash |
||
16 | */ |
||
17 | 56 | public function __construct(BufferInterface $hash) |
|
25 | |||
26 | /** |
||
27 | * @param NetworkInterface $network |
||
28 | * @return string |
||
29 | */ |
||
30 | 38 | public function getPrefixByte(NetworkInterface $network = null) |
|
35 | |||
36 | /** |
||
37 | * @return ScriptInterface |
||
38 | */ |
||
39 | 16 | public function getScriptPubKey() |
|
43 | } |
||
44 |