all files / contracts/interfaces/ IFaucet.sol

100% Statements 0/0
100% Branches 0/0
100% Functions 0/0
100% Lines 0/0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19                                     
// SPDX-License-Identifier: Unlicense
pragma solidity 0.8.6;
 
 
/**
 * @title Faucet
 * @author solace.fi
 * @notice Drips [**SOLACE**](../SOLACE).
 *
 * Useful for testing but should NOT be used in production.
 */
interface IFaucet {
 
    /**
     * @notice Drips [**SOLACE**](../SOLACE) to msg.sender.
     */
    function drip() external;
}