├── .gitignore ├── LICENSE ├── README.md ├── ethereum-arbitrage-web-platform ├── .DS_Store ├── .gitattributes ├── .gitignore ├── brownie-config.yaml ├── client │ ├── .gitignore │ ├── images │ │ ├── Logo.png │ │ ├── favicon-128.png │ │ ├── favicon-192.png │ │ ├── favicon-228.png │ │ ├── favicon-32.png │ │ ├── favicon-57.png │ │ ├── favicon-76.png │ │ └── favicon-96.png │ ├── index.html │ ├── package.json │ ├── postcss.config.js │ ├── src │ │ ├── App.jsx │ │ ├── brownieConfig.json │ │ ├── components │ │ │ ├── Footer.jsx │ │ │ ├── Main.jsx │ │ │ ├── Menus.jsx │ │ │ ├── Navbar.jsx │ │ │ └── index.js │ │ ├── hooks │ │ │ ├── index.js │ │ │ ├── useCreateOrder.jsx │ │ │ ├── useFundWithGas.jsx │ │ │ ├── useGetFee.jsx │ │ │ ├── useGetOrders.jsx │ │ │ ├── useRefundGas.jsx │ │ │ └── useValidatePair.jsx │ │ ├── index.css │ │ └── main.jsx │ ├── srcbrownieConfig.json │ ├── tailwind.config.js │ └── vite.config.js ├── contracts │ ├── DataProvider.sol │ ├── ERC20EUR.sol │ ├── ERC20RON.sol │ ├── FlashArbitrage.sol │ └── OrderManager.sol ├── interfaces │ ├── IERC20.sol │ ├── IUniswapV2Factory.sol │ ├── IUniswapV2Pair.sol │ ├── IUniswapV2Router01.sol │ ├── IUniswapV2Router02.sol │ └── IWETH.sol ├── libraries │ ├── Babylonian.sol │ ├── FullMath.sol │ ├── SafeMath.sol │ └── UniswapV2Library.sol └── scripts │ ├── address_book_manager.py │ ├── arbitrage_manager.py │ ├── demo_manager.py │ ├── deploy_manager.py │ ├── font_manager.py │ ├── interaction_manager.py │ ├── migration_manager.py │ ├── order_manager.py │ ├── pair_manager.py │ └── utilities.py └── screenshots ├── Arbitrage.png ├── Broadcasted.png ├── Completed.png ├── Confirm.png ├── Connect.png ├── Info.png ├── Invalid.png ├── Landing.png ├── PairError.png ├── PairOK.png ├── Pending.png └── Transaction.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/README.md -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/.DS_Store -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/.gitattributes -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/.gitignore -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/brownie-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/brownie-config.yaml -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/.gitignore -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/images/Logo.png -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/images/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/images/favicon-128.png -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/images/favicon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/images/favicon-192.png -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/images/favicon-228.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/images/favicon-228.png -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/images/favicon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/images/favicon-32.png -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/images/favicon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/images/favicon-57.png -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/images/favicon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/images/favicon-76.png -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/images/favicon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/images/favicon-96.png -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/index.html -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/package.json -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/postcss.config.js -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/App.jsx -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/brownieConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/brownieConfig.json -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/components/Footer.jsx -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/components/Main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/components/Main.jsx -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/components/Menus.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/components/Menus.jsx -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/components/Navbar.jsx -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/components/index.js -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/hooks/index.js -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/hooks/useCreateOrder.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/hooks/useCreateOrder.jsx -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/hooks/useFundWithGas.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/hooks/useFundWithGas.jsx -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/hooks/useGetFee.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/hooks/useGetFee.jsx -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/hooks/useGetOrders.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/hooks/useGetOrders.jsx -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/hooks/useRefundGas.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/hooks/useRefundGas.jsx -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/hooks/useValidatePair.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/hooks/useValidatePair.jsx -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/index.css -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/src/main.jsx -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/srcbrownieConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/srcbrownieConfig.json -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/tailwind.config.js -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/client/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/client/vite.config.js -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/contracts/DataProvider.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/contracts/DataProvider.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/contracts/ERC20EUR.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/contracts/ERC20EUR.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/contracts/ERC20RON.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/contracts/ERC20RON.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/contracts/FlashArbitrage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/contracts/FlashArbitrage.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/contracts/OrderManager.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/contracts/OrderManager.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/interfaces/IERC20.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/interfaces/IERC20.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/interfaces/IUniswapV2Factory.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/interfaces/IUniswapV2Factory.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/interfaces/IUniswapV2Pair.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/interfaces/IUniswapV2Pair.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/interfaces/IUniswapV2Router01.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/interfaces/IUniswapV2Router01.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/interfaces/IUniswapV2Router02.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/interfaces/IUniswapV2Router02.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/interfaces/IWETH.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/interfaces/IWETH.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/libraries/Babylonian.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/libraries/Babylonian.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/libraries/FullMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/libraries/FullMath.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/libraries/SafeMath.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/libraries/SafeMath.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/libraries/UniswapV2Library.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/libraries/UniswapV2Library.sol -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/scripts/address_book_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/scripts/address_book_manager.py -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/scripts/arbitrage_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/scripts/arbitrage_manager.py -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/scripts/demo_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/scripts/demo_manager.py -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/scripts/deploy_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/scripts/deploy_manager.py -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/scripts/font_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/scripts/font_manager.py -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/scripts/interaction_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/scripts/interaction_manager.py -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/scripts/migration_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/scripts/migration_manager.py -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/scripts/order_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/scripts/order_manager.py -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/scripts/pair_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/scripts/pair_manager.py -------------------------------------------------------------------------------- /ethereum-arbitrage-web-platform/scripts/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/ethereum-arbitrage-web-platform/scripts/utilities.py -------------------------------------------------------------------------------- /screenshots/Arbitrage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/screenshots/Arbitrage.png -------------------------------------------------------------------------------- /screenshots/Broadcasted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/screenshots/Broadcasted.png -------------------------------------------------------------------------------- /screenshots/Completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/screenshots/Completed.png -------------------------------------------------------------------------------- /screenshots/Confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/screenshots/Confirm.png -------------------------------------------------------------------------------- /screenshots/Connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/screenshots/Connect.png -------------------------------------------------------------------------------- /screenshots/Info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/screenshots/Info.png -------------------------------------------------------------------------------- /screenshots/Invalid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/screenshots/Invalid.png -------------------------------------------------------------------------------- /screenshots/Landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/screenshots/Landing.png -------------------------------------------------------------------------------- /screenshots/PairError.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/screenshots/PairError.png -------------------------------------------------------------------------------- /screenshots/PairOK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/screenshots/PairOK.png -------------------------------------------------------------------------------- /screenshots/Pending.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/screenshots/Pending.png -------------------------------------------------------------------------------- /screenshots/Transaction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alex-Amarandei/Levl-Flash-Arbitrage-on-Ethereum/HEAD/screenshots/Transaction.png --------------------------------------------------------------------------------