| 1 | <?php |
||
| 12 | abstract class AddressReaderBase |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @param string $strAddress |
||
| 16 | * @param NetworkInterface $network |
||
| 17 | * @return PayToPubKeyHashAddress|ScriptHashAddress|null |
||
| 18 | */ |
||
| 19 | protected function readBase58($strAddress, NetworkInterface $network) { |
||
| 20 | try { |
||
| 21 | $data = Base58::decodeCheck($strAddress); |
||
| 22 | $prefixByte = $data->slice(0, 1)->getHex(); |
||
| 23 | |||
| 24 | if ($prefixByte === $network->getP2shByte()) { |
||
| 25 | return new ScriptHashAddress($data->slice(1)); |
||
| 26 | } else if ($prefixByte === $network->getAddressByte()) { |
||
| 27 | return new PayToPubKeyHashAddress($data->slice(1)); |
||
| 28 | } |
||
| 29 | } catch (\Exception $e) { |
||
|
|
|||
| 30 | } |
||
| 31 | return null; |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param $strAddress |
||
| 36 | * @param NetworkInterface|null $network |
||
| 37 | * @return AddressInterface |
||
| 38 | */ |
||
| 39 | abstract public function fromString($strAddress, NetworkInterface $network = null); |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @param ScriptInterface $script |
||
| 43 | * @return AddressInterface |
||
| 44 | */ |
||
| 45 | abstract public function fromOutputScript(ScriptInterface $script); |
||
| 46 | } |
||
| 47 |