From f36f8e96dc5e939fb1d3d1a38c710fe03eef71e3 Mon Sep 17 00:00:00 2001 From: AugustoL Date: Thu, 11 Jan 2018 13:53:21 -0300 Subject: [PATCH] Delete SmartToken old docs --- docs/source/SmartToken | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 docs/source/SmartToken diff --git a/docs/source/SmartToken b/docs/source/SmartToken deleted file mode 100644 index 016ef152b..000000000 --- a/docs/source/SmartToken +++ /dev/null @@ -1,16 +0,0 @@ -SmartToken -============================================= - -Inherits from contract StandardToken. Implementation of a ERC20 compatible token with methods to transfer value and execute calls in transfers and approvals (see https://github.com/ethereum/EIPs/issues/20) - -approveData(address _spender, uint _value, bytes _data) returns (bool success) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -It allows to approve the transfer of value and execute a call with the sent data. - -function transferData(address _to, uint _value, bytes _data) returns (bool success) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -Transfer tokens to a specified address and execute a call with the sent data on the same transaction - -transferDataFrom(address _from, address _to, uint _value, bytes _data) returns (bool success) -"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" -Transfer tokens from one address to another and make a contract call on the same transaction \ No newline at end of file