The rescueToken
function in the MiniByte
contract allows the contract owner to transfer a specified amount of tokens from the contract to the owner's address. It ensures that only the owner can execute this function by checking ownership before performing the transfer.
_token
(address
): The address of the ERC20 token contract from which tokens will be transferred._balance
(uint256
): The amount of tokens to be transferred to the owner's address.