├── .gitignore ├── ABIs.json ├── LICENSE ├── README.md ├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── contracts │ │ ├── ERC20.json │ │ ├── ERC20Detailed.json │ │ ├── ERC20Token.json │ │ ├── IERC20.json │ │ ├── KyberNetworkProxy.json │ │ ├── KyberTestContract.json │ │ ├── KyberUniArbContract.json │ │ ├── Migrations.json │ │ ├── RinkebyArbContract.json │ │ ├── SafeMath.json │ │ └── UniswapExchange.json │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── serviceWorker.js │ └── utils │ │ └── getWeb3.js └── yarn.lock ├── contracts ├── ERC20Token.sol ├── KyberNetworkProxy.sol ├── KyberTestContract.sol ├── KyberUniArbContract.sol ├── Migrations.sol ├── RinkebyArbContract.sol └── UniswapExchange.sol ├── main.js ├── migrations ├── 1_initial_migration.js └── 2_deploy_contracts.js ├── package.json ├── test ├── kyberUniArbContract.js └── rinkebyArbContract.js ├── testScriptsKyber.js ├── testScriptsUniswap.js ├── truffle-config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/.gitignore -------------------------------------------------------------------------------- /ABIs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/ABIs.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/App.css -------------------------------------------------------------------------------- /client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/App.js -------------------------------------------------------------------------------- /client/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/App.test.js -------------------------------------------------------------------------------- /client/src/contracts/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/contracts/ERC20.json -------------------------------------------------------------------------------- /client/src/contracts/ERC20Detailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/contracts/ERC20Detailed.json -------------------------------------------------------------------------------- /client/src/contracts/ERC20Token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/contracts/ERC20Token.json -------------------------------------------------------------------------------- /client/src/contracts/IERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/contracts/IERC20.json -------------------------------------------------------------------------------- /client/src/contracts/KyberNetworkProxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/contracts/KyberNetworkProxy.json -------------------------------------------------------------------------------- /client/src/contracts/KyberTestContract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/contracts/KyberTestContract.json -------------------------------------------------------------------------------- /client/src/contracts/KyberUniArbContract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/contracts/KyberUniArbContract.json -------------------------------------------------------------------------------- /client/src/contracts/Migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/contracts/Migrations.json -------------------------------------------------------------------------------- /client/src/contracts/RinkebyArbContract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/contracts/RinkebyArbContract.json -------------------------------------------------------------------------------- /client/src/contracts/SafeMath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/contracts/SafeMath.json -------------------------------------------------------------------------------- /client/src/contracts/UniswapExchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/contracts/UniswapExchange.json -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/index.js -------------------------------------------------------------------------------- /client/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/logo.svg -------------------------------------------------------------------------------- /client/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/serviceWorker.js -------------------------------------------------------------------------------- /client/src/utils/getWeb3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/src/utils/getWeb3.js -------------------------------------------------------------------------------- /client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/client/yarn.lock -------------------------------------------------------------------------------- /contracts/ERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/contracts/ERC20Token.sol -------------------------------------------------------------------------------- /contracts/KyberNetworkProxy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/contracts/KyberNetworkProxy.sol -------------------------------------------------------------------------------- /contracts/KyberTestContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/contracts/KyberTestContract.sol -------------------------------------------------------------------------------- /contracts/KyberUniArbContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/contracts/KyberUniArbContract.sol -------------------------------------------------------------------------------- /contracts/Migrations.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/contracts/Migrations.sol -------------------------------------------------------------------------------- /contracts/RinkebyArbContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/contracts/RinkebyArbContract.sol -------------------------------------------------------------------------------- /contracts/UniswapExchange.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/contracts/UniswapExchange.sol -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/main.js -------------------------------------------------------------------------------- /migrations/1_initial_migration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/migrations/1_initial_migration.js -------------------------------------------------------------------------------- /migrations/2_deploy_contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/migrations/2_deploy_contracts.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/package.json -------------------------------------------------------------------------------- /test/kyberUniArbContract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/test/kyberUniArbContract.js -------------------------------------------------------------------------------- /test/rinkebyArbContract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/test/rinkebyArbContract.js -------------------------------------------------------------------------------- /testScriptsKyber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/testScriptsKyber.js -------------------------------------------------------------------------------- /testScriptsUniswap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/testScriptsUniswap.js -------------------------------------------------------------------------------- /truffle-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/truffle-config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johngrantuk/balancerBot/HEAD/yarn.lock --------------------------------------------------------------------------------