kendol Pérez

Results 18 comments of kendol Pérez

If you find the solution please share it. So far the most efficient way I have found is to scan the addresses in groups of 20. And thus verify if...

https://github.com/iexbase/tron-api/archive/refs/heads/master.zip

$result=$tron->validateAddress('address '); if($result['result']==true){ echo "yes"; }

$transfer = $tron->contract('TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8')->setFeeLimit(15); //fee limit 15 trx o more //TEkxiTehnzSmSe2XqrBj4w32RUN966rdz8 USDC contract

here --> https://github.com/iexbase/tron-api/issues/155

$tron->setAddress('your wallet'); $tron->setPrivateKey('private key'); $transfer = $tron->contract('TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t')->setFeeLimit(15); //fee limit 15 trx o more AND //TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t tether contract address $result=$transfer->transfer('address To', 'USDT amount');

$tron->setAddress('your wallet'); $tron->setPrivateKey('private key'); $transfer = $tron->contract('TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t')->setFeeLimit(15); //fee limit 15 trx o more AND //TR7NHqjeKQxGTCi8q8ZY4pL8otSzgjLj6t tether contract address $result=$transfer->transfer('address To', 'USDT amount');

You must decode this, Here are the details of the token transaction. ["input"]=> string(138) "0xa9059cbb00000000000000000000000065624442e8916b8cd4bc7c57388461bdc1bbe1a60000000000000000000000000000000000000000000000056bc75e2d63100000" This part refers to the token contract address: USDT ["to"]=> string(42) "0x55d398326f99059ff775485246999027b3197955" You need to...

Use this repository that I have created for you: https://github.com/kendol07/eth_abi_decoder".