TronAddress.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. namespace App\Service\Bus;
  3. use Web3\Utils;
  4. use IEXBase\TronAPI\Tron;
  5. use IEXBase\TronAPI\Provider\HttpProvider;
  6. use IEXBase\TronAPI\Exception\TronException;
  7. use App\Library\Log;
  8. class TronAddress
  9. {
  10. private $hex;
  11. private $base58;
  12. public function __construct(string $address)
  13. {
  14. $fullNode = new HttpProvider('https://api.trongrid.io');
  15. $solidityNode = new HttpProvider('https://api.trongrid.io');
  16. $eventServer = new HttpProvider('https://api.trongrid.io');
  17. try {
  18. $this->tron = new Tron($fullNode, $solidityNode, $eventServer);
  19. } catch (TronException $exception) {
  20. $this->tron = null;
  21. }
  22. if ($address === '0x0000000000000000000000000000000000000000') {
  23. $this->hex = null;
  24. $this->base58 = null;
  25. } else {
  26. if (Utils::isHex($address)) {
  27. if (substr($address, 0, 2) === '0x') {
  28. //set prefix
  29. $address = '41'.substr($address, 2);
  30. }
  31. $this->hex = $address;
  32. $this->base58 = $this->tron->hexString2Address($address);
  33. } else {
  34. $this->base58 = $address;
  35. $this->hex = $this->tron->address2HexString($address);
  36. }
  37. }
  38. }
  39. public function getHex()
  40. {
  41. return $this->hex;
  42. }
  43. public function getBase58()
  44. {
  45. return $this->base58;
  46. }
  47. public function __toString()
  48. {
  49. return json_encode(['hex' => $this->hex, 'base58' => $this->base58]);
  50. }
  51. /**
  52. * 记入日志
  53. * @param $log_title [日志路径]
  54. * @param $message [内容,不支持数组]
  55. * @param $remarks [备注]
  56. */
  57. protected function log($log_title,$message,$remarks='info'){
  58. Log::get($remarks,$log_title)->info($message);
  59. }
  60. }