proposal-47/contracts/interfaces/IRecipientStorage.sol

11 lines
251 B
Solidity
Raw Permalink Normal View History

2024-02-10 21:43:54 +03:00
// SPDX-License-Identifier: UNLICENSED
2024-02-12 12:27:34 +03:00
pragma solidity ^0.8.9;
2024-02-10 21:43:54 +03:00
pragma experimental ABIEncoderV2;
import "../libraries/Types.sol";
interface IRecipientStorage {
function getAirdropRecipients() external view returns (Types.Recipient[] memory);
}