Input Data:
- Address:
address recipient = "0x9558...ED";
(Replace with your actual address)
- Amount:
uint256 amount=10;
(Specify desired number of tokens to transfer, in this case it's set at '7')
Function Call:
solidity transfer("address recipient", uint_t amount);
The complete function call is as follows :
ERC20(contractAddress).Transfer (" addressrecipient ", amount) ;
where contract Address
refers to the deployed ERC-17 token smart Contract.