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

The simple way to interact with Ethereum ERC20 token.

Results 2 php-erc20 issues
Sort by recently updated
recently updated
newest added

Ask for help on how to set parameters. Use the default gaslimits (50000) and real-time gas (76044395808) to prompt me TX fee (XX ether) exceeds the configured cap (1.00 ether)

$token = new USDT("https://mainnet.infura.io/v3/8038c7c7********"); $owner_address = '0x1d64720e43342bdd0E824e1dadEF'; $myapp_private = '0xbf15a4a052a3b59c1a55988e8a1e35056fbfacf94ce'; $myapp_address = '0x907Dc5716029B907BfFB223f0A*******'; $to_address = '0x907Dc5716029B907BfFB2*******'; $transfer_tx = $token->transferFrom($myapp_address, $owner_address, $to_address, 1); $transfer_tx_id = $transfer_tx->sign($myapp_private)->send(); How to solve this please?...