Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.8 KB

README.md

File metadata and controls

36 lines (28 loc) · 1.8 KB

Downloads this Month Latest Stable Version Build Status Scrutinizer Code Quality Coverage Status

Introduction

This API client lib is used to communicate with geth (go-ethereum) node.

Via this client lib you can easily run operation on the node such is:

  • Get account balance,
  • sign transactions,
  • deploy transactions,
  • ...

Full documentation of all methods that can be run on geth node are described here: https://github.com/ethereum/wiki/wiki/JSON-RPC#json-rpc-methods

Install

composer require achse/geth-jsonrpc-php-client

Usage

// Create HTTP client instance (you can use something simplier just wrap it by using IHttpClient interface)
// Create JsonRpc client which can run any operation on your geth node
$httpClient = new GuzzleClient(new GuzzleClientFactory(), 'localhost', 8545);
$client = new Client($httpClient);

// Run operation (all are described here: https://github.com/ethereum/wiki/wiki/JSON-RPC#json-rpc-methods)
$result = $client->callMethod('eth_getBalance', ['0xf99ce9c17d0b4f5dfcf663b16c95b96fd47fc8ba', 'latest']);

// $result ==='0x16345785d8a0000'