thonguyen/ethereumexplorer

连接到EthereumExplorer服务

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

This package is auto-updated.

Last update: 2024-09-26 23:02:47 UTC


README

此库是为使用PHP连接到EthereumExplorer API而创建的。

用法


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

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