We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi ! Thanks for the library but It is a madness :/
Any documentation with common examples?
I am trying to get the Symbol of a ERC-20 like this:
$contract->at($contractAddress)->getData('symbol');
The return: 95d89b41 (the result would be Uni 2.6)
I am trying to convert from Utils::toString, utf_encode, utf_decode, pack.... nothing works
Thanks.
The text was updated successfully, but these errors were encountered:
This code solved it:
$contract->at($contractAddress)->call('symbol', function ($err, $result) { if ($err !== null) { return; } echo 'The symbol: ' . $result[0]; });
Sorry, something went wrong.
Any way to getPastEvents with this library?
Thanks
No branches or pull requests
Hi ! Thanks for the library but It is a madness :/
Any documentation with common examples?
I am trying to get the Symbol of a ERC-20 like this:
$contract->at($contractAddress)->getData('symbol');
The return: 95d89b41 (the result would be Uni 2.6)
I am trying to convert from Utils::toString, utf_encode, utf_decode, pack.... nothing works
Thanks.
The text was updated successfully, but these errors were encountered: