├── .env-sample ├── .gitignore ├── Exploit copy.sol.bak ├── README.md ├── contracts ├── Arr.sol ├── Exploit.sol ├── Exploit2.sol ├── Fiddy.sol ├── ICurveFiProtocol_Y.sol ├── IPoolToken_CurveFi_Y.sol ├── ISavingsModule.sol ├── IUniswapV2ERC20.sol └── IUniswapV2Pair.sol ├── exploit.bak ├── hardhat.config.js ├── package.json ├── remake.sol ├── scripts ├── bytecode ├── deploy-fiddy.js ├── deploy.js └── storage.js ├── test ├── test-fiddy.js.bak └── test.js └── utils └── utils.js /.env-sample: -------------------------------------------------------------------------------- 1 | FORKING_URL=https://eth-mainnet.alchemyapi.io/v2/{YOUR_API_KEY}} -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/.gitignore -------------------------------------------------------------------------------- /Exploit copy.sol.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/Exploit copy.sol.bak -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/README.md -------------------------------------------------------------------------------- /contracts/Arr.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/contracts/Arr.sol -------------------------------------------------------------------------------- /contracts/Exploit.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/contracts/Exploit.sol -------------------------------------------------------------------------------- /contracts/Exploit2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/contracts/Exploit2.sol -------------------------------------------------------------------------------- /contracts/Fiddy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/contracts/Fiddy.sol -------------------------------------------------------------------------------- /contracts/ICurveFiProtocol_Y.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/contracts/ICurveFiProtocol_Y.sol -------------------------------------------------------------------------------- /contracts/IPoolToken_CurveFi_Y.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/contracts/IPoolToken_CurveFi_Y.sol -------------------------------------------------------------------------------- /contracts/ISavingsModule.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/contracts/ISavingsModule.sol -------------------------------------------------------------------------------- /contracts/IUniswapV2ERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/contracts/IUniswapV2ERC20.sol -------------------------------------------------------------------------------- /contracts/IUniswapV2Pair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/contracts/IUniswapV2Pair.sol -------------------------------------------------------------------------------- /exploit.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/exploit.bak -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/package.json -------------------------------------------------------------------------------- /remake.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/remake.sol -------------------------------------------------------------------------------- /scripts/bytecode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/scripts/bytecode -------------------------------------------------------------------------------- /scripts/deploy-fiddy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/scripts/deploy-fiddy.js -------------------------------------------------------------------------------- /scripts/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/scripts/deploy.js -------------------------------------------------------------------------------- /scripts/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/scripts/storage.js -------------------------------------------------------------------------------- /test/test-fiddy.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/test/test-fiddy.js.bak -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/test/test.js -------------------------------------------------------------------------------- /utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereumvex/Akropolis-delphi-exploit/HEAD/utils/utils.js --------------------------------------------------------------------------------