├── README.md ├── contracts ├── HoneyPot.sol ├── HoneyPotCollect.sol └── Migrations.sol ├── migrations ├── 1_initial_migration.js ├── 2_deploy_contracts.js └── 3_deploy_honey_pot_collect.js ├── test ├── TestMetacoin.sol └── metacoin.js └── truffle.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoguimaraes/honeyPotReentranceAttack/HEAD/README.md -------------------------------------------------------------------------------- /contracts/HoneyPot.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoguimaraes/honeyPotReentranceAttack/HEAD/contracts/HoneyPot.sol -------------------------------------------------------------------------------- /contracts/HoneyPotCollect.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoguimaraes/honeyPotReentranceAttack/HEAD/contracts/HoneyPotCollect.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoguimaraes/honeyPotReentranceAttack/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoguimaraes/honeyPotReentranceAttack/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoguimaraes/honeyPotReentranceAttack/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /migrations/3_deploy_honey_pot_collect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoguimaraes/honeyPotReentranceAttack/HEAD/migrations/3_deploy_honey_pot_collect.js -------------------------------------------------------------------------------- /test/TestMetacoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoguimaraes/honeyPotReentranceAttack/HEAD/test/TestMetacoin.sol -------------------------------------------------------------------------------- /test/metacoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoguimaraes/honeyPotReentranceAttack/HEAD/test/metacoin.js -------------------------------------------------------------------------------- /truffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gustavoguimaraes/honeyPotReentranceAttack/HEAD/truffle.js --------------------------------------------------------------------------------