diff options
Diffstat (limited to 'std/CoinReg')
-rw-r--r-- | std/CoinReg | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/std/CoinReg b/std/CoinReg new file mode 100644 index 00000000..58400a98 --- /dev/null +++ b/std/CoinReg @@ -0,0 +1,6 @@ +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() {} +} |