You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$contract->at($erc20TokenAddress)->call('balanceOf', [$accountAddress], function($err, $result) { } function call with params giving error while function call without params is working
#354
provider, $erc20TokenABI);
$contract->at($erc20TokenAddress)->call('symbol', function ($err, $result) {
if ($err !== null) { return; }
echo 'The symbol: ' . $result[0];
});
$contract->at($erc20TokenAddress)->call('balanceOf', [$accountAddress], function($err, $result) {
if ($err !== null) {
echo 'Error: ' . $err->getMessage() . PHP_EOL;
// return;
}
// Print balance
print_r($result);
});
The symbol: WTM
PHP Warning: Array to string conversion in D:\xampp\htdocs\web3.php-master\src\Contracts\Types\Address.php on line 63
Warning: Array to string conversion in D:\xampp\htdocs\web3.php-master\src\Contracts\Types\Address.php on line 63
PHP Fatal error: Uncaught InvalidArgumentException: Please make sure you have put all function params and callback. in D:\xampp\htdocs\web3.
.php-master\src\Contract.php:625
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: