The selfdestruct
operation is the only way to delete a smart contract and the remaining Ether stored at that address is sent to a designated target. The selfdestruct
operation is designed to deal with the extreme case of contract errors. Originally the opcode was named suicide
but the Ethereum community decided to rename it as selfdestruct
because suicide is a heavy subject and we should make every effort possible not to be insensitive to programmers who suffer from depression.
How to use selfdestruct
It's simple to use selfdestruct
:
_addr
is the address to store the remaining ETH
in the contract.
Example:
In DeleteContract
, we define a public state variable named value
and two functions:getBalance()
which is used to get the ETH balance of the contract,deleteContract()
which is used to delete the contract and transfer the remaining ETH to the sender of the message.
After the contract is deployed, we send 1 ETH to the contract. The result should be 1 ETH while we call getBalance()
and the value
should be 10.
Then we call deleteContract().
The contract will self-destruct and all variables will be cleared. At this time, value
is equal to 0
which is the default value, and getBalance()
also returns an empty value.
Attention
- When providing the contract destruction function externally, it is best to declare the function to only be called by the contract owner such as using the function modifier
onlyOwner
. - When the contract is destroyed, the interaction with the smart contract can also succeed and return
0
. - Security and trust issues often arise when a contract includes a
selfdestruct
function. This feature opens up attack vectors for potential attackers. For instance, attackers might exploitselfdestruct
to frequently transfer tokens to a contract, significantly reducing the cost of gas for attacking. Although this tactic is not commonly employed, it remains a concern. Furthermore, the presence of theselfdestruct
feature can diminish users' confidence in the contract.
Example from Remix
- Deploy the contract and send 1 ETH to the contract. Check the status of the contract.

- Delete the contract and check the status of the contract.

By checking the contract state, we know that ETH is sent to the specified address after the contract is destroyed. After the contract is deleted, we can still interact with the contract. So we cannot confirm whether the contract has been destroyed based on this condition.
Summary
selfdestruct
is the emergency button for smart contracts. It will delete the contract and transfer the remaining ETH
to the designated account. When the famous The DAO
hack happened, the founders of Ethereum must have regretted not adding selfdestruct
to the contract to stop the hacker attack.