Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions contracts/interfaces/ITestnetFaucet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ interface ITestnetFaucet {
function claim() external;

/// @notice Checks if one can claim more stable
/// @return number of seconds user havs to wait till they can claim new stable
/// @return number of seconds user has to wait till they can claim new stable
function couldClaimInSeconds() external view returns (uint256);

function balanceOf(address asset) external view returns (uint256);

/// @notice Checks if user had calimed stables before
/// @return true if user had calimed before, otherwise false
/// @notice Checks if user had claimed stables before
/// @return true if user had claimed before, otherwise false
function hasClaimBefore() external view returns (bool);

/// @notice Adds new asset to the faucet,
Expand Down