├── .gitignore ├── README.md ├── contracts ├── Flashy.sol └── Migrations.sol ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── test ├── Flashy.test.js └── utils.js └── truffle-config.js /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | build 3 | 4 | node_modules 5 | 6 | .env -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenatSF/Flash_Loans_V2/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Flashy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenatSF/Flash_Loans_V2/HEAD/contracts/Flashy.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenatSF/Flash_Loans_V2/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenatSF/Flash_Loans_V2/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenatSF/Flash_Loans_V2/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenatSF/Flash_Loans_V2/HEAD/package.json -------------------------------------------------------------------------------- /test/Flashy.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenatSF/Flash_Loans_V2/HEAD/test/Flashy.test.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenatSF/Flash_Loans_V2/HEAD/test/utils.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KenatSF/Flash_Loans_V2/HEAD/truffle-config.js --------------------------------------------------------------------------------