TronServices.php 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292
  1. <?php
  2. namespace App\Service\Bus;
  3. use App\Service\AipHttpClient;
  4. use App\Library\Log;
  5. class TronServices
  6. {
  7. /*** @var string $NET 网络*/
  8. private $NET;
  9. /*** @var string $OWNER_ADDRESS 平台账户 */
  10. private $OWNER_ADDRESS;
  11. /*** @var string $OWNER_PRIVATE_KEY 平台私钥 */
  12. private $OWNER_PRIVATE_KEY;
  13. private $HEADER;
  14. /*** @var string $CONTRACT_ADDRESS 合约地址 */
  15. private $CONTRACT_ADDRESS = [
  16. "USDT" => "TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t",
  17. "USDD" => "TPYmHEhy5n8TCEfYGqW2rPxsghSfzghPDn"
  18. ];
  19. private $tron;
  20. public function __construct($TronApiConfig,$OWNER_ADDRESS,$OWNER_PRIVATE_KEY){
  21. $this->NET = $TronApiConfig['url'];
  22. $this->HEADER = [
  23. "Content-Type"=> "application/json",
  24. "TRON-PRO-API-KEY"=> $TronApiConfig['api_key']
  25. ];
  26. $this->OWNER_ADDRESS = $OWNER_ADDRESS;
  27. $this->OWNER_PRIVATE_KEY = $OWNER_PRIVATE_KEY;
  28. $fullNode = new \IEXBase\TronAPI\Provider\HttpProvider($this->NET);
  29. $solidityNode = new \IEXBase\TronAPI\Provider\HttpProvider($this->NET);
  30. $eventServer = new \IEXBase\TronAPI\Provider\HttpProvider($this->NET);
  31. try {
  32. $this->tron = new \IEXBase\TronAPI\Tron($fullNode, $solidityNode, $eventServer);
  33. } catch (\IEXBase\TronAPI\Exception\TronException $e) {
  34. return ['code' => 400,'msg' => $e->getMessage()];
  35. }
  36. }
  37. /**
  38. * TRC20转账
  39. * @param $to
  40. * @param $amount
  41. * @param $symbol
  42. * @return mixed
  43. * @throws Exception
  44. */
  45. public function trc20Transaction($to, $amount, $symbol = "USDT"){
  46. $url = $this->NET . "/wallet/triggersmartcontract";
  47. $_to = fill0($this->tron->toHex($to));
  48. $_amount = fill0(decToHex(handleAmount($amount),false));
  49. $postData = [
  50. 'contract_address' => $this->tron->toHex($this->CONTRACT_ADDRESS[$symbol]),
  51. 'owner_address' => $this->tron->toHex($this->OWNER_ADDRESS),
  52. 'function_selector' => "transfer(address,uint256)",
  53. 'parameter' => $_to . $_amount,
  54. 'call_value' => 0,
  55. 'fee_limit' => 40000000
  56. ];
  57. $http = new AipHttpClient($this->HEADER);
  58. $transactionResult = $http->post($url, jsonEncode($postData));
  59. if ($transactionResult['code'] != 200){
  60. return ['code' => 400,'msg' => 'TRC20转账访问失败'];
  61. }
  62. $content = jsonDecode($transactionResult['content']);
  63. if(isset($content['result']['message'])){
  64. return ['code' => 400,'msg' => $this->tron->fromHex($content['result']['message'])];
  65. }
  66. $data = $this->signAndBroadcast($this->tron, $content['transaction'], $this->OWNER_PRIVATE_KEY);
  67. if(isset($data['message'])){
  68. return ['code' => 400,'msg' => $this->tron->fromHex($data['message']),'data'=>$data];
  69. }else{
  70. return ['code' => 200,'data' => $data];
  71. }
  72. }
  73. /**
  74. * TRX转账
  75. * @param $to
  76. * @param $amount
  77. * @return mixed
  78. * @throws Exception
  79. */
  80. public function trxTransaction($to, $amount){
  81. try {
  82. $transaction = $this->tron->getTransactionBuilder()->sendTrx($to, (float)$amount, $this->OWNER_ADDRESS);
  83. }catch (\IEXBase\TronAPI\Exception\TronException $e){
  84. return ['code' => 400,'msg' => $e->getMessage()];
  85. }
  86. // 可能出现余额不足的情况
  87. if (isset($transaction['Error'])) {
  88. return ['code' => 400,'msg' => $transaction['Error']];
  89. }
  90. $data = $this->signAndBroadcast($this->tron,$transaction,$this->OWNER_PRIVATE_KEY);
  91. if(isset($data['result']) && $data['result'] == true){
  92. return ['code' => 200,'data' => $data];
  93. }else{
  94. return ['code' => 400,'data' => '转账失败'];
  95. }
  96. return $data;
  97. }
  98. /**
  99. * 获取TRX账户余额
  100. * @param $address
  101. * @return float
  102. */
  103. public function getAccount($address){
  104. $url = $this->NET . "/wallet/getaccount";
  105. $postData = [
  106. "address" => $address,
  107. "visible" => true
  108. ];
  109. $http = new AipHttpClient($this->HEADER);
  110. $result = $http->post($url,jsonEncode($postData));
  111. $content = jsonDecode($result['content']);
  112. if (!isset($content['balance'])){
  113. $balance = 0;
  114. }else{
  115. $balance = $this->tron->fromTron($content['balance']);
  116. }
  117. return $balance;
  118. }
  119. /**
  120. * 获取Trc20余额
  121. * @param $address
  122. * @param $symbol
  123. * @return float|int
  124. */
  125. public function getTrc20Balance($address,$symbol = "USDT"){
  126. $url = $this->NET . "/wallet/triggersmartcontract";
  127. $_address = fill0($this->tron->toHex($address));
  128. $postData = [
  129. 'contract_address' => $this->tron->toHex($this->CONTRACT_ADDRESS[$symbol]),
  130. 'owner_address' => $this->tron->toHex($this->OWNER_ADDRESS),
  131. 'function_selector' => "balanceOf(address)",
  132. 'parameter' => $_address
  133. ];
  134. $http = new AipHttpClient($this->HEADER);
  135. $transactionResult = $http->post($url, jsonEncode($postData));
  136. $content = jsonDecode($transactionResult['content']);
  137. $constant_result = $content['constant_result'][0];
  138. # 移除前面的000占位符
  139. $s = preg_replace('/^0*/', '', $constant_result);
  140. // 为空 0 || 16进制转10进制后转换为一个trx单位的数字
  141. return empty($s) ? 0 : $this->tron->fromTron(hexToDec($s));
  142. }
  143. /**
  144. * 签名并且广播
  145. * @param Tron $tron
  146. * @param $transaction
  147. * @param $privateKey
  148. * @return mixed
  149. * @throws Exception
  150. */
  151. private function signAndBroadcast($tron,$transaction,$privateKey){
  152. $tron->setPrivateKey($privateKey);
  153. try {
  154. # 签名
  155. $signTransaction = $tron->signTransaction($transaction);
  156. }catch (TronException $e){
  157. return ['code' => 400,'msg' => "签名并且广播:". $e->getMessage()];
  158. }
  159. # 广播签名后的事务
  160. return $tron->sendRawTransaction($signTransaction);
  161. }
  162. /**
  163. * 生成地址并激活
  164. * @return array
  165. * @throws \IEXBase\TronAPI\Exception\TronException
  166. * @throws \think\Exception
  167. */
  168. public function createAddress(){
  169. # 新建一个账户
  170. $account = $this->tron->createAccount();
  171. # 地址
  172. $address = $account->getAddress(true);
  173. # 公钥
  174. $publicKey = $account->getPublicKey();
  175. # 私钥
  176. $privateKey = $account->getPrivateKey();
  177. return compact("address","publicKey","privateKey");
  178. }
  179. /**
  180. * 获取币种余额(2.0)
  181. * @param $address
  182. * @param $symbol 币种
  183. * @param $contract_address 币种合约
  184. * @return float|int
  185. */
  186. public function newGetTrc20Balance($address,$symbol,$contract_address){
  187. $url = $this->NET . "/wallet/triggersmartcontract";
  188. $_address = fill0($this->tron->toHex($address));
  189. $postData = [
  190. 'contract_address' => $this->tron->toHex($contract_address),
  191. 'owner_address' => $this->tron->toHex($this->OWNER_ADDRESS),
  192. 'function_selector' => "balanceOf(address)",
  193. 'parameter' => $_address
  194. ];
  195. $http = new AipHttpClient($this->HEADER);
  196. $transactionResult = $http->post($url, jsonEncode($postData));
  197. $content = jsonDecode($transactionResult['content']);
  198. if(!isset($content['constant_result'][0])){
  199. return 0;
  200. }
  201. $constant_result = $content['constant_result'][0];
  202. # 移除前面的000占位符
  203. $s = preg_replace('/^0*/', '', $constant_result);
  204. // 为空 0 || 16进制转10进制后转换为一个trx单位的数字
  205. return empty($s) ? 0 : $this->tron->fromTron(hexToDec($s));
  206. }
  207. /**
  208. * 地址从hex转为base58
  209. * @param $address 41a614f803b6fd780986a42c78ec9c7f77e6ded13c
  210. * @return string
  211. */
  212. public function addressFromHex($address){
  213. return $this->tron->fromHex($address);
  214. }
  215. /**
  216. * data中的金额转换为十进制
  217. * @param $amount 0000000000000000000000000000000000000000000000000000000000155cc0
  218. * @return string
  219. */
  220. public function dataAmountFormat($amount){
  221. # 移除前面的000占位符
  222. $s = preg_replace('/^0*/', '', $amount);
  223. // 为空 0 || 16进制转10进制后转换为一个trx单位的数字
  224. return empty($s) ? 0 : $this->tron->fromTron(hexToDec($s));
  225. }
  226. /**
  227. * 查区块交易
  228. * @param $block
  229. * @return string
  230. */
  231. public function getBlock($block){
  232. if(empty($block)){
  233. return $this->tron->getCurrentBlock();
  234. }else{
  235. return $this->tron->getBlockByNumber($block);
  236. }
  237. }
  238. /**
  239. * 记入日志
  240. * @param $log_title [日志路径]
  241. * @param $message [内容,不支持数组]
  242. * @param $remarks [备注]
  243. */
  244. protected function log($log_title,$message,$remarks='info'){
  245. Log::get($remarks,$log_title)->info($message);
  246. }
  247. }