├── .gitignore ├── LICENSE ├── README.md ├── contracts ├── IBEP20.sol ├── IPancakeFactory.sol ├── IPancakePair.sol ├── IPancakeRouter01.sol ├── IPancakeRouter02.sol ├── ReflectCoin.sol ├── ReflectFeeCoin.sol └── SimpleCoin.sol ├── migrations └── 1_deploy.js ├── package.json ├── scripts ├── add-liquidity.js ├── airdrop.js └── swap-tokens.js ├── test ├── .gitkeep ├── ReflectCoin.js └── ReflectFeeCoin.js ├── truffle-config.js ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .secret 3 | build 4 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/README.md -------------------------------------------------------------------------------- /contracts/IBEP20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/contracts/IBEP20.sol -------------------------------------------------------------------------------- /contracts/IPancakeFactory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/contracts/IPancakeFactory.sol -------------------------------------------------------------------------------- /contracts/IPancakePair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/contracts/IPancakePair.sol -------------------------------------------------------------------------------- /contracts/IPancakeRouter01.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/contracts/IPancakeRouter01.sol -------------------------------------------------------------------------------- /contracts/IPancakeRouter02.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/contracts/IPancakeRouter02.sol -------------------------------------------------------------------------------- /contracts/ReflectCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/contracts/ReflectCoin.sol -------------------------------------------------------------------------------- /contracts/ReflectFeeCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/contracts/ReflectFeeCoin.sol -------------------------------------------------------------------------------- /contracts/SimpleCoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/contracts/SimpleCoin.sol -------------------------------------------------------------------------------- /migrations/1_deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/migrations/1_deploy.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/package.json -------------------------------------------------------------------------------- /scripts/add-liquidity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/scripts/add-liquidity.js -------------------------------------------------------------------------------- /scripts/airdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/scripts/airdrop.js -------------------------------------------------------------------------------- /scripts/swap-tokens.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/scripts/swap-tokens.js -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ReflectCoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/test/ReflectCoin.js -------------------------------------------------------------------------------- /test/ReflectFeeCoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/test/ReflectFeeCoin.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/truffle-config.js -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4lgn/bep-20-templates/HEAD/yarn.lock --------------------------------------------------------------------------------