Skip to content

gulaandrij/etherscan

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

etherscan

This lib is created for connecting to etherscan.io's api using php.

  • sync
    $esApiConnector = new ApiConnector('your_api_key');
    $etherScan = new EtherScan($esApiConnector);
    
    
    $account = $etherScan->getAccount(EtherScan::PREFIX_API);
    $startT = microtime(1);
    echo $account->getTransactions('0xbb9bc244d798123fde783fcc1c72d3bb8c189413', 1, 25, 'desc') . PHP_EOL;
    echo $account->getTransactions('0xbb9bc244d798123fde783fcc1c72d3bb8c189413', 1, 25, 'desc') . PHP_EOL;
    echo $account->getTransactions('0xbb9bc244d798123fde783fcc1c72d3bb8c189413', 1, 25, 'desc') . PHP_EOL;
    echo $account->getTransactions('0xbb9bc244d798123fde783fcc1c72d3bb8c189413', 1, 25, 'desc') . PHP_EOL;
    $endT = microtime(1);
    
    
    echo "DONE IN: " . ($endT - $startT);
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 100.0%