mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
849 B
17 lines
849 B
6 years ago
|
pragma solidity ^0.4.24;
|
||
|
|
||
|
interface IERC165 {
|
||
|
function supportsInterface(bytes4 interfaceID) external;
|
||
|
}
|
||
|
contract Token is IERC165{
|
||
|
function balanceOf(address _owner) external;
|
||
|
function ownerOf(uint256 _tokenId) external;
|
||
|
function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes data) external returns (bool);
|
||
|
function safeTransferFrom(address _from, address _to, uint256 _tokenId) external returns (bool);
|
||
|
function transferFrom(address _from, address _to, uint256 _tokenId) external returns (bool);
|
||
|
function approve(address _approved, uint256 _tokenId) external returns (bool);
|
||
|
function setApprovalForAll(address _operator, bool _approved) external returns (bool);
|
||
|
function getApproved(uint256 _tokenId) external;
|
||
|
function isApprovedForAll(address _owner, address _operator) external;
|
||
|
}
|