Technical
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
address public collector;
constructor(address _collector) Ownable(msg.sender);
| Name | Type | Description |
|---|---|---|
_collector | address | The address of the fee collector |
function setCollector(address _collector) external onlyOwner;
| Name | Type | Description |
|---|---|---|
_collector | address | The address of the fee collector |
function airdropERC20(
address _token,
address[] calldata _addresses,
uint256[] calldata _amounts,
uint256 _totalAmount
)
external
payable;
| Name | Type | Description |
|---|---|---|
_token | address | The address of the ERC20 contract |
_addresses | address[] | The addresses to airdrop to |
_amounts | uint256[] | The amounts to airdrop |
_totalAmount | uint256 | The total amount to airdrop |
function airdropETH(address[] calldata _addresses, uint256[] calldata _amounts) external payable;
| Name | Type | Description |
|---|---|---|
_addresses | address[] | The addresses to airdrop to |
_amounts | uint256[] | The amounts to airdrop |
function collectFees() public;
receive() external payable;