12 lines
215 B
Solidity
12 lines
215 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
pragma solidity >=0.8.17;
|
||
|
|
||
|
contract AutoSelfDestruct {
|
||
|
constructor() {
|
||
|
destroy();
|
||
|
}
|
||
|
function destroy() public {
|
||
|
selfdestruct(payable(msg.sender));
|
||
|
}
|
||
|
}
|