├── .gitignore ├── Arbitrage-Bot-Project-Documentations ├── .env.example ├── Mainnet.md └── Trading-Bot-Functions-Explanation.md ├── README.md ├── bot.js ├── config.json ├── contracts └── Arbitrage.sol ├── hardhat.config.js ├── helpers ├── helpers.js ├── initialization.js └── server.js ├── package.json ├── scripts ├── 1_deploy.js └── 2_manipulate.js └── test └── ArbitrageTest.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Arbitrage-Bot-Project-Documentations/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/Arbitrage-Bot-Project-Documentations/.env.example -------------------------------------------------------------------------------- /Arbitrage-Bot-Project-Documentations/Mainnet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/Arbitrage-Bot-Project-Documentations/Mainnet.md -------------------------------------------------------------------------------- /Arbitrage-Bot-Project-Documentations/Trading-Bot-Functions-Explanation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/Arbitrage-Bot-Project-Documentations/Trading-Bot-Functions-Explanation.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/bot.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/config.json -------------------------------------------------------------------------------- /contracts/Arbitrage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/contracts/Arbitrage.sol -------------------------------------------------------------------------------- /hardhat.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/hardhat.config.js -------------------------------------------------------------------------------- /helpers/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/helpers/helpers.js -------------------------------------------------------------------------------- /helpers/initialization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/helpers/initialization.js -------------------------------------------------------------------------------- /helpers/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/helpers/server.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/package.json -------------------------------------------------------------------------------- /scripts/1_deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/scripts/1_deploy.js -------------------------------------------------------------------------------- /scripts/2_manipulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/scripts/2_manipulate.js -------------------------------------------------------------------------------- /test/ArbitrageTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Innovation-Web-3-0-Blockchain/Arbitrage-Bot/HEAD/test/ArbitrageTest.js --------------------------------------------------------------------------------