aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/src/current/tokens/Token/Token.sol
diff options
context:
space:
mode:
authorAmir Bandeali <abandeali1@gmail.com>2018-02-03 02:57:18 +0800
committerGitHub <noreply@github.com>2018-02-03 02:57:18 +0800
commit6a9d3de0f98dee20963f0f70a9b7ad08b9508100 (patch)
tree6fbea107aa30cbef31329bfcb68223dd8ab142d8 /packages/contracts/src/current/tokens/Token/Token.sol
parent47d74aa24ac06de33ae331f3589e9c8013c655ec (diff)
parent05aae368132a81ddb9fd6a04ac5b0ff1cbb24691 (diff)
downloaddexon-sol-tools-6a9d3de0f98dee20963f0f70a9b7ad08b9508100.tar
dexon-sol-tools-6a9d3de0f98dee20963f0f70a9b7ad08b9508100.tar.gz
dexon-sol-tools-6a9d3de0f98dee20963f0f70a9b7ad08b9508100.tar.bz2
dexon-sol-tools-6a9d3de0f98dee20963f0f70a9b7ad08b9508100.tar.lz
dexon-sol-tools-6a9d3de0f98dee20963f0f70a9b7ad08b9508100.tar.xz
dexon-sol-tools-6a9d3de0f98dee20963f0f70a9b7ad08b9508100.tar.zst
dexon-sol-tools-6a9d3de0f98dee20963f0f70a9b7ad08b9508100.zip
Merge pull request #329 from 0xProject/feature/contracts/versioning
Implement stop-gap smart contract versioning
Diffstat (limited to 'packages/contracts/src/current/tokens/Token/Token.sol')
-rw-r--r--packages/contracts/src/current/tokens/Token/Token.sol35
1 files changed, 35 insertions, 0 deletions
diff --git a/packages/contracts/src/current/tokens/Token/Token.sol b/packages/contracts/src/current/tokens/Token/Token.sol
new file mode 100644
index 000000000..bf4e71dcd
--- /dev/null
+++ b/packages/contracts/src/current/tokens/Token/Token.sol
@@ -0,0 +1,35 @@
+pragma solidity ^0.4.18;
+
+contract Token {
+
+ /// @notice send `_value` token to `_to` from `msg.sender`
+ /// @param _to The address of the recipient
+ /// @param _value The amount of token to be transferred
+ /// @return Whether the transfer was successful or not
+ function transfer(address _to, uint _value) public returns (bool) {}
+
+ /// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`
+ /// @param _from The address of the sender
+ /// @param _to The address of the recipient
+ /// @param _value The amount of token to be transferred
+ /// @return Whether the transfer was successful or not
+ function transferFrom(address _from, address _to, uint _value) public returns (bool) {}
+
+ /// @notice `msg.sender` approves `_addr` to spend `_value` tokens
+ /// @param _spender The address of the account able to transfer the tokens
+ /// @param _value The amount of wei to be approved for transfer
+ /// @return Whether the approval was successful or not
+ function approve(address _spender, uint _value) public returns (bool) {}
+
+ /// @param _owner The address from which the balance will be retrieved
+ /// @return The balance
+ function balanceOf(address _owner) public view returns (uint) {}
+
+ /// @param _owner The address of the account owning tokens
+ /// @param _spender The address of the account able to transfer the tokens
+ /// @return Amount of remaining tokens allowed to spent
+ function allowance(address _owner, address _spender) public view returns (uint) {}
+
+ event Transfer(address indexed _from, address indexed _to, uint _value);
+ event Approval(address indexed _owner, address indexed _spender, uint _value);
+}