This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Abstract contract for the full ERC 20 Token standard | |
| // https://github.com/ethereum/EIPs/issues/20 | |
| pragma solidity ^0.4.8; | |
| contract Token { | |
| /* This is a slight change to the ERC20 base standard. | |
| function totalSupply() constant returns (uint256 supply); | |
| is replaced with: | |
| uint256 public totalSupply; | |
| This automatically creates a getter function for the totalSupply. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| cd /tmp | |
| wget 'http://ipkg.nslu2-linux.org/feeds/optware/syno-i686/cross/unstable/syno-i686-bootstrap_1.2-7_i686.xsh' |