├── .nojekyll ├── README.md ├── contracts ├── BasicToken.sol ├── ERC20.sol ├── ERC20Basic.sol ├── ExampleToken.sol ├── SafeMath.sol └── StandardToken.sol ├── mobile ├── app │ ├── main.json │ └── simple.json ├── qr │ ├── privatekey.json │ ├── publickey.json │ └── scanner.json ├── tutorial.md └── wallet │ ├── wallet.html │ └── wallet.json └── web ├── index.html └── tutorial.md /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/README.md -------------------------------------------------------------------------------- /contracts/BasicToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/contracts/BasicToken.sol -------------------------------------------------------------------------------- /contracts/ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/contracts/ERC20.sol -------------------------------------------------------------------------------- /contracts/ERC20Basic.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/contracts/ERC20Basic.sol -------------------------------------------------------------------------------- /contracts/ExampleToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/contracts/ExampleToken.sol -------------------------------------------------------------------------------- /contracts/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/contracts/SafeMath.sol -------------------------------------------------------------------------------- /contracts/StandardToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/contracts/StandardToken.sol -------------------------------------------------------------------------------- /mobile/app/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/mobile/app/main.json -------------------------------------------------------------------------------- /mobile/app/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/mobile/app/simple.json -------------------------------------------------------------------------------- /mobile/qr/privatekey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/mobile/qr/privatekey.json -------------------------------------------------------------------------------- /mobile/qr/publickey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/mobile/qr/publickey.json -------------------------------------------------------------------------------- /mobile/qr/scanner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/mobile/qr/scanner.json -------------------------------------------------------------------------------- /mobile/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/mobile/tutorial.md -------------------------------------------------------------------------------- /mobile/wallet/wallet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/mobile/wallet/wallet.html -------------------------------------------------------------------------------- /mobile/wallet/wallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/mobile/wallet/wallet.json -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/web/index.html -------------------------------------------------------------------------------- /web/tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gliechtenstein/erc20/HEAD/web/tutorial.md --------------------------------------------------------------------------------