dsa-connectors-old/contracts/common/interfaces.sol

12 lines
349 B
Solidity
Raw Normal View History

2020-05-02 17:25:27 +00:00
pragma solidity ^0.6.0;
2020-05-03 00:16:30 +00:00
interface TokenInterface {
function approve(address, uint) external;
function transfer(address, uint) external;
function transferFrom(address, address, uint) external;
function deposit() external payable;
function withdraw(uint) external;
function balanceOf(address) external view returns (uint);
}