pragma ever -solidity ^0.62.0; /** * @dev Interface extends contract interface adding destroy function. */ interface IDestroyable { /** * @dev Destroys the contract. * @param remainingGasTo The address to which the remaining gas will be sent. */ function destroy(address remainingGasTo) external; }