baumann-at/php-polygonscan-api

PHP client for the Polygonscan API

1.3.9 2022-04-15 07:49 UTC

This package is not auto-updated.

Last update: 2024-04-07 21:09:25 UTC


README

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');