├── README.md ├── abis ├── DyDxFlashLoan.json ├── DyDxPool.json ├── IERC20.json ├── IOneSplit.json ├── Migrations.json ├── Structs.json └── TradingBot.json ├── contracts ├── Arbitrage.sol └── Migrations.sol ├── migrations └── 1_initial_migration.js ├── test └── .gitkeep └── truffle-config.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamvenord17/ethereum-arbitrage/HEAD/README.md -------------------------------------------------------------------------------- /abis/DyDxFlashLoan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamvenord17/ethereum-arbitrage/HEAD/abis/DyDxFlashLoan.json -------------------------------------------------------------------------------- /abis/DyDxPool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamvenord17/ethereum-arbitrage/HEAD/abis/DyDxPool.json -------------------------------------------------------------------------------- /abis/IERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamvenord17/ethereum-arbitrage/HEAD/abis/IERC20.json -------------------------------------------------------------------------------- /abis/IOneSplit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamvenord17/ethereum-arbitrage/HEAD/abis/IOneSplit.json -------------------------------------------------------------------------------- /abis/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamvenord17/ethereum-arbitrage/HEAD/abis/Migrations.json -------------------------------------------------------------------------------- /abis/Structs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamvenord17/ethereum-arbitrage/HEAD/abis/Structs.json -------------------------------------------------------------------------------- /abis/TradingBot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamvenord17/ethereum-arbitrage/HEAD/abis/TradingBot.json -------------------------------------------------------------------------------- /contracts/Arbitrage.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamvenord17/ethereum-arbitrage/HEAD/contracts/Arbitrage.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamvenord17/ethereum-arbitrage/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamvenord17/ethereum-arbitrage/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /test/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamvenord17/ethereum-arbitrage/HEAD/truffle-config.js --------------------------------------------------------------------------------