mirror of
https://github.com/Instadapp/dsa-polygon-migration.git
synced 2024-07-29 22:27:58 +00:00
9 lines
182 B
Solidity
9 lines
182 B
Solidity
pragma solidity ^0.7.0;
|
|
|
|
contract Funder {
|
|
receive() external payable {}
|
|
|
|
function kill() external {
|
|
selfdestruct(0x0000000000000000000000000000000000001001);
|
|
}
|
|
} |