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.
21 lines
606 B
21 lines
606 B
7 years ago
|
pragma solidity ^0.4.13;
|
||
|
|
||
7 years ago
|
|
||
7 years ago
|
import "../ERC20/ERC20.sol";
|
||
7 years ago
|
|
||
7 years ago
|
|
||
7 years ago
|
/**
|
||
7 years ago
|
@title ERC827 interface, an extension of ERC20 token standard
|
||
7 years ago
|
|
||
7 years ago
|
Interface of a ERC827 token, following the ERC20 standard with extra
|
||
7 years ago
|
methods to transfer value and data and execute calls in transfers and
|
||
|
approvals.
|
||
|
*/
|
||
7 years ago
|
contract ERC827 is ERC20 {
|
||
7 years ago
|
|
||
7 years ago
|
function approve( address _spender, uint256 _value, bytes _data ) public returns (bool);
|
||
|
function transfer( address _to, uint256 _value, bytes _data ) public returns (bool);
|
||
|
function transferFrom( address _from, address _to, uint256 _value, bytes _data ) public returns (bool);
|
||
7 years ago
|
|
||
7 years ago
|
}
|