web3
web3 copied to clipboard
⚡️ Web3 PHP is a supercharged PHP API client that allows you to interact with a generic Ethereum RPC.
Can you implements methods like [here](https://github.com/web3p/web3.php#contract).
This PR implements the eth_getLogs method in Eth namespace. It also proposes validators. Closes issue https://github.com/web3-php/web3/issues/31
There are some missing methods in the Eth namespace. It would be nice to have `eth_getLogs` for example.
i want to ERC20 token balance with your module; similar code for web3p; $contract = new Contract($web3->provider, $string); $contract->at($contractAddress)->call('balanceOf', $address, function ($err, $account) use (&$balance) { if ($err !== null)...
Do you know how to make a wallet in php?