mirror of
https://github.com/Instadapp/dsa-connectors.git
synced 2024-07-29 22:37:00 +00:00
6 lines
305 B
Solidity
6 lines
305 B
Solidity
pragma solidity ^0.7.0;
|
|
|
|
interface PrizePoolInterface {
|
|
function depositTo( address to, uint256 amount, address controlledToken, address referrer) external;
|
|
function withdrawInstantlyFrom( address from, uint256 amount, address controlledToken, uint256 maximumExitFee) external returns (uint256);
|
|
} |