Peter Lai

Results 157 comments of Peter Lai

Hi @winner202201 You can find how to interact to smart contract in examples: https://github.com/web3p/examples

Yap, I think this didn't work like all web3 library (the latest version), since I made this 3 years ago. Let me take this as feature, I 'll update later.

Does this work if add BSC when initiate WalletConnect connector? ```JS new WalletConnectConnector({ rpc: { [ChainId.BSC]: 'https://bsc-dataseed.binance.org/' }, }) ```

@olegabr Would like to tell more about this?

@olegabr Was it only happened in PHP 7.0? Because I didn't see this warning in PHP 7.2.

I'm not sure what happened. Docker should work on most computer environment. Which computer did you use?

The dev-master worked, but it seems I didn't release library for a while. Just release new one under this organization, try: `composer require web3p/web3.php`. I'll improve this library later.

@pash7ka Because the precision problem in float, I think maybe return string is better. Or we can add a class for this number, like this: ```php $wei = Utils::fromWei($value, 'ether');...