thonguyen/ethereumexplorer

Connect to the EthereumExplorer service

dev-master 2018-09-26 09:38 UTC

This package is auto-updated.

Last update: 2024-03-26 21:49:56 UTC


README

This lib is created for connecting to EthereumExplorer api using php.

USAGE


$ep = new EthereumExplorer('127.0.0.1', '8545');

try {
    echo $ep->web3_clientVersion() . PHP_EOL;
} catch (Exception $exception) {
    echo $exception->getMessage() . PHP_EOL;
}