Hi,
When i created a contract on eth awhile back. I copy a contract with following function below.
I renounced the contract of course but i got small eth stuck on the contract.
With it being renounced, can i reclaim the stuck eth on contract or not. If i can, what do i issue in the address? and percent.
Thanks. Just learning
function rescueERC20(address _address, uint256 percent) external onlyOwner {
uint256 _amount = IERC20(_address).balanceOf(address(this)).mul(percent).div(100);
IERC20(_address).transfer(development_receiver, _amount);