PHP wrapper for the Polygonscan API - forked from https://github.com/maslakoff/php-etherscan-api
The minimum requirement by Polygonscan API is that your Web server supports PHP 5.6.
To install Polygonscan PHP API package you can run command:
composer require baumann-at/php-polygonscan-api:dev-master
Mainnet
$client = new \Polygonscan\Client('Y3U3GMFC8P545CFWRU4TET8MY1K79YDZ3V');
$client->api('account')->balance('0x43406D1baAE11a950DE734DAE4079A3C9Eb48DAf');
Supported:
- mumbai
$client = new \Polygonscan\Client('Y3U3GMFC8P545CFWRU4TET8MY1K79YDZ3V', PolygonscanAPIConf::TESTNET_MUMBAI);
$client->api('account')->balance('0x43406D1baAE11a950DE734DAE4079A3C9Eb48DAf');