├── .gitignore ├── LICENSE ├── README.md ├── erc20.lll ├── erc20_benchmark ├── StandardToken.sol ├── benchmark.js ├── erc20.lll ├── erc20_abi.json ├── erc20_lll.hex ├── erc20_lll_opt.hex ├── erc20_solidity.hex └── erc20_solidity_opt.hex ├── erc20_test ├── 00_start_node ├── erc20.js ├── erc20_abi.json └── erc20_evm.dat └── images ├── ERC20_gas_comparison_chart.png └── ERC20_gas_comparison_table.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/README.md -------------------------------------------------------------------------------- /erc20.lll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20.lll -------------------------------------------------------------------------------- /erc20_benchmark/StandardToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20_benchmark/StandardToken.sol -------------------------------------------------------------------------------- /erc20_benchmark/benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20_benchmark/benchmark.js -------------------------------------------------------------------------------- /erc20_benchmark/erc20.lll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20_benchmark/erc20.lll -------------------------------------------------------------------------------- /erc20_benchmark/erc20_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20_benchmark/erc20_abi.json -------------------------------------------------------------------------------- /erc20_benchmark/erc20_lll.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20_benchmark/erc20_lll.hex -------------------------------------------------------------------------------- /erc20_benchmark/erc20_lll_opt.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20_benchmark/erc20_lll_opt.hex -------------------------------------------------------------------------------- /erc20_benchmark/erc20_solidity.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20_benchmark/erc20_solidity.hex -------------------------------------------------------------------------------- /erc20_benchmark/erc20_solidity_opt.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20_benchmark/erc20_solidity_opt.hex -------------------------------------------------------------------------------- /erc20_test/00_start_node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20_test/00_start_node -------------------------------------------------------------------------------- /erc20_test/erc20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20_test/erc20.js -------------------------------------------------------------------------------- /erc20_test/erc20_abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20_test/erc20_abi.json -------------------------------------------------------------------------------- /erc20_test/erc20_evm.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/erc20_test/erc20_evm.dat -------------------------------------------------------------------------------- /images/ERC20_gas_comparison_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/images/ERC20_gas_comparison_chart.png -------------------------------------------------------------------------------- /images/ERC20_gas_comparison_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/benjaminion/LLL_erc20/HEAD/images/ERC20_gas_comparison_table.png --------------------------------------------------------------------------------