mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
10 lines
448 B
Plaintext
10 lines
448 B
Plaintext
contract Coin {
|
|
function isApprovedFor(address _target, address _proxy) constant returns (bool _r) {}
|
|
function isApproved(address _proxy) constant returns (bool _r) {}
|
|
function sendCoinFrom(address _from, uint256 _val, address _to) {}
|
|
function coinBalanceOf(address _a) constant returns (uint256 _r) {}
|
|
function sendCoin(uint256 _val, address _to) {}
|
|
function coinBalance() constant returns (uint256 _r) {}
|
|
function approve(address _a) {}
|
|
}
|