mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
235 B
Plaintext
7 lines
235 B
Plaintext
contract CoinReg{
|
|
function count() constant returns (uint256 r) {}
|
|
function info(uint256 i) constant returns (address addr, bytes3 name, uint256 denom) {}
|
|
function register(bytes3 name, uint256 denom) {}
|
|
function unregister() {}
|
|
}
|