├── .gitignore ├── LICENSE ├── contracts ├── HoraToken.sol ├── Migrations.sol ├── roles │ ├── MinterRole.sol │ └── Roles.sol ├── tokens │ └── TRC20 │ │ ├── ITRC20.sol │ │ ├── TRC20.sol │ │ ├── TRC20Burnable.sol │ │ ├── TRC20Capped.sol │ │ ├── TRC20Detailed.sol │ │ └── TRC20Mintable.sol └── utils │ └── SafeMath.sol ├── horatoken_flat.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── test └── .placeholder ├── tronbox-config.js ├── tronbox.js └── truffle-config.js /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | node_modules 3 | .env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/LICENSE -------------------------------------------------------------------------------- /contracts/HoraToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/contracts/HoraToken.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/roles/MinterRole.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/contracts/roles/MinterRole.sol -------------------------------------------------------------------------------- /contracts/roles/Roles.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/contracts/roles/Roles.sol -------------------------------------------------------------------------------- /contracts/tokens/TRC20/ITRC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/contracts/tokens/TRC20/ITRC20.sol -------------------------------------------------------------------------------- /contracts/tokens/TRC20/TRC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/contracts/tokens/TRC20/TRC20.sol -------------------------------------------------------------------------------- /contracts/tokens/TRC20/TRC20Burnable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/contracts/tokens/TRC20/TRC20Burnable.sol -------------------------------------------------------------------------------- /contracts/tokens/TRC20/TRC20Capped.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/contracts/tokens/TRC20/TRC20Capped.sol -------------------------------------------------------------------------------- /contracts/tokens/TRC20/TRC20Detailed.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/contracts/tokens/TRC20/TRC20Detailed.sol -------------------------------------------------------------------------------- /contracts/tokens/TRC20/TRC20Mintable.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/contracts/tokens/TRC20/TRC20Mintable.sol -------------------------------------------------------------------------------- /contracts/utils/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/contracts/utils/SafeMath.sol -------------------------------------------------------------------------------- /horatoken_flat.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/horatoken_flat.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/package.json -------------------------------------------------------------------------------- /test/.placeholder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/test/.placeholder -------------------------------------------------------------------------------- /tronbox-config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | 3 | }; 4 | -------------------------------------------------------------------------------- /tronbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/tronbox.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/horagames/horatoken/HEAD/truffle-config.js --------------------------------------------------------------------------------