dev-master
9999999-dev https://github.com/maslakoff/php-etherscan-apiPHP client for the Etherscan API
MIT
The Requires
- php ^5.6 || ^7.0
The Development Requires
api ethereum etherscan etherscan.io
Wallogit.com
2017 © Pedro Peláez
PHP client for the Etherscan API
PHP wrapper for the EtherScan API, (*1)
Official API Documentation, (*3)
Create API Key (optional), (*4)
The minimum requirement by EtherScan API is that your Web server supports PHP 5.6., (*5)
To install EtherScan PHP API package you can run command:, (*6)
composer require maslakoff/php-etherscan-api:dev-master
Mainnet, (*7)
$client = new \Etherscan\Client('Y3U3GMFC8P545CFWRU4TET8MY1K79YDZ3V');
$client->api('account')->balance('0x43406D1baAE11a950DE734DAE4079A3C9Eb48DAf');
Supported:, (*8)
$client = new \Etherscan\Client('Y3U3GMFC8P545CFWRU4TET8MY1K79YDZ3V', EtherscanAPIConf::TESTNET_RINKEBY);
$client->api('account')->balance('0x43406D1baAE11a950DE734DAE4079A3C9Eb48DAf');
In order to query the BSC you need a different API. You can obtain it here: https://bscscan.com/apis. Here the call:, (*9)
$bsc_client = new \Etherscan\Client('Y3U3GMFC8P545CFWRU4TET8MY1K79YDZ3V', EtherscanAPIConf::NET_BSC);
$bsc_client->api('account')->balance('0x43406D1baAE11a950DE734DAE4079A3C9Eb48DAf');
PHP client for the Etherscan API
MIT
api ethereum etherscan etherscan.io