ethereum-php icon indicating copy to clipboard operation
ethereum-php copied to clipboard

Ethereum Client in PHP

Results 6 ethereum-php issues
Sort by recently updated
recently updated
newest added

Is there any method for list all transactions to coming all accounts, or outgoing from all accounts?

Can not send out any ETH using Transaction function Please give me some example.

when send > 100 ETH this error

https://github.com/kesar/ethereum-php/blob/869c71b5cf82126ca5141239385c1d5bd02d0321/src/EthereumPHP/Methods/Eth.php#L122-L129 The getTransactionCount method does not call eth_getTransactionCount

May I ask whether you intend to change classes derived from AbstractMethods to check for errors returned by ClientInterface? I see that three days ago Personal::unlockAccount was changed to check...

I tried to send a transaction with ether value over 100 like the following. ``` $transaction = new \EthereumPHP\Types\Transaction( $myAddress, $otherAddress, null, null, null, (new \EthereumPHP\Types\Ether(100))->toWei()->amount() ); ``` and then...