1 //SPDX-License-Identifier: MIT 2 pragma solidity >= 0.4.3 < 0.9.0; 3 4 contract SafeSend { 5 function deliver(address recipient) public payable { 6 assembly { 7 selfdestruct(recipient) 8 } 9 } 10 }