blackpanda/tronscan

简单的 tronScan API 封装

安装: 374

依赖: 0

建议者: 0

安全性: 0

星标: 2

关注者: 1

分支: 0

开放问题: 0

类型:package

v1.0.7 2023-10-10 11:16 UTC

This package is auto-updated.

Last update: 2024-09-10 13:16:21 UTC


README

  • 监控特定 地址 交易和转账

  • 监控特定 交易 和转账

安装

使用 Composer composer create-project blackpanda/tronscan

不需要在 confing/app.php 中添加 Service Proviver

用法

阅读此文档获取更多信息 TronScan Api 文档

<?PHP
	
    $tronScan = new BlackPanda\TronScan\TronScan();
    $address = 'Your Tron Network Address';
    
    /*
    * get Address information
    */
    $tronScan->getAccount($address);

    /*
    * get transactions of specific address
    */
    $tronScan->getAccountTransactions($address);
    
    ...

?>