mirror of
https://github.com/tornadocash/torn-token.git
synced 2024-11-22 09:47:14 +01:00
24 lines
624 B
Solidity
24 lines
624 B
Solidity
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
pragma solidity ^0.6.0;
|
||
|
pragma experimental ABIEncoderV2;
|
||
|
|
||
|
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
|
||
|
import "./ENS.sol";
|
||
|
|
||
|
contract Airdrop is EnsResolve {
|
||
|
struct Recipient {
|
||
|
address to;
|
||
|
uint256 amount;
|
||
|
}
|
||
|
|
||
|
constructor(bytes32 tokenAddress, Recipient[] memory targets) public {
|
||
|
IERC20 token = IERC20(resolve(tokenAddress));
|
||
|
require(token.balanceOf(address(this)) > 0, "Balance is 0, airdrop already done");
|
||
|
for (uint256 i = 0; i < targets.length; i++) {
|
||
|
token.transfer(targets[i].to, targets[i].amount);
|
||
|
}
|
||
|
selfdestruct(address(0));
|
||
|
}
|
||
|
}
|