Skip to content

Latest commit

 

History

History
41 lines (25 loc) · 1.05 KB

File metadata and controls

41 lines (25 loc) · 1.05 KB

Polygonscan PHP API

PHP wrapper for the Polygonscan API - forked from https://github.com/maslakoff/php-etherscan-api

License: MIT

Official API Documentation

Create API Key (optional)

Requirements

The minimum requirement by Polygonscan API is that your Web server supports PHP 5.6.

Installation

To install Polygonscan PHP API package you can run command:

composer require baumann-at/php-polygonscan-api:dev-master

Usage

Mainnet

$client = new \Polygonscan\Client('Y3U3GMFC8P545CFWRU4TET8MY1K79YDZ3V');
$client->api('account')->balance('0x43406D1baAE11a950DE734DAE4079A3C9Eb48DAf');

For testnet usage

Supported:

  • mumbai
$client = new \Polygonscan\Client('Y3U3GMFC8P545CFWRU4TET8MY1K79YDZ3V', PolygonscanAPIConf::TESTNET_MUMBAI);
$client->api('account')->balance('0x43406D1baAE11a950DE734DAE4079A3C9Eb48DAf');