aboutsummaryrefslogtreecommitdiffstats
path: root/std/Coin
diff options
context:
space:
mode:
Diffstat (limited to 'std/Coin')
-rw-r--r--std/Coin9
1 files changed, 9 insertions, 0 deletions
diff --git a/std/Coin b/std/Coin
new file mode 100644
index 00000000..aca30e6b
--- /dev/null
+++ b/std/Coin
@@ -0,0 +1,9 @@
+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) {}
+}