cic-contracts/solidity/Faucet.sol

13 lines
415 B
Solidity
Raw Normal View History

2020-12-11 07:48:54 +01:00
pragma solidity >=0.6.12;
// Author: Louis Holbrook <dev@holbrook.no> 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
// SPDX-License-Identifier: GPL-3.0-or-later
2021-04-28 11:59:47 +02:00
// File-version: 5
2020-12-11 07:48:54 +01:00
2020-12-11 10:20:56 +01:00
interface Faucet {
2021-04-28 11:59:47 +02:00
function token() external returns (address);
function amount() external returns (uint256);
2020-12-11 10:20:56 +01:00
function setAmount(uint256 _amount) external returns (bool);
function giveTo(address _recipient) external returns (bool);
2020-12-11 07:48:54 +01:00
}