blackpanda / tronscan
Simple tronScan API wrapper
Installs: 469
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- ext-curl: *
- spatie/guzzle-rate-limiter-middleware: ^2.0
README
-
Monitor Specific Address Transaction and transfers
-
Monitor Specific Transaction and transfers
installition
using Composer composer create-project blackpanda/tronscan
its doesn't need to add Service Proviver to confing/app.php
Usage
read this document for more information TronScan Api Docs
<?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);
...
?>