├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── debug ├── base.json └── runner.sh ├── migrations └── 1_deploy_token.js ├── package.json ├── scripts └── compile.js ├── src ├── allowance.etk ├── approve.etk ├── balance_of.etk ├── ctor.etk ├── jump_table.etk ├── token.abi ├── transfer.etk └── transfer_from.etk ├── test └── token.js └── truffle-config.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.etk linguist-language=asm 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.bin 3 | build 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/README.md -------------------------------------------------------------------------------- /debug/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/debug/base.json -------------------------------------------------------------------------------- /debug/runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/debug/runner.sh -------------------------------------------------------------------------------- /migrations/1_deploy_token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/migrations/1_deploy_token.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/package.json -------------------------------------------------------------------------------- /scripts/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/scripts/compile.js -------------------------------------------------------------------------------- /src/allowance.etk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/src/allowance.etk -------------------------------------------------------------------------------- /src/approve.etk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/src/approve.etk -------------------------------------------------------------------------------- /src/balance_of.etk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/src/balance_of.etk -------------------------------------------------------------------------------- /src/ctor.etk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/src/ctor.etk -------------------------------------------------------------------------------- /src/jump_table.etk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/src/jump_table.etk -------------------------------------------------------------------------------- /src/token.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/src/token.abi -------------------------------------------------------------------------------- /src/transfer.etk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/src/transfer.etk -------------------------------------------------------------------------------- /src/transfer_from.etk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/src/transfer_from.etk -------------------------------------------------------------------------------- /test/token.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/test/token.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightclient/erc20/HEAD/truffle-config.js --------------------------------------------------------------------------------