dsa-connectors/contracts/mainnet/connectors/pooltogether/interface.sol

12 lines
458 B
Solidity
Raw Normal View History

2021-07-03 02:49:43 +00:00
pragma solidity ^0.7.0;
interface PrizePoolInterface {
2021-07-05 13:52:20 +00:00
function token() external view returns (address);
2021-07-03 02:49:43 +00:00
function depositTo( address to, uint256 amount, address controlledToken, address referrer) external;
function withdrawInstantlyFrom( address from, uint256 amount, address controlledToken, uint256 maximumExitFee) external returns (uint256);
2021-08-05 17:56:02 +00:00
}
interface TokenFaucetInterface {
function claim( address user) external returns (uint256);
}