├── .gitignore ├── README.md ├── contracts ├── etherdelta.json └── token.json ├── dotnet ├── .gitignore ├── .vscode │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── App.config ├── BaseBot.cs ├── EtherDeltaClient.csproj ├── EtherDeltaClient.csproj.user ├── EtherDeltaClient.sln ├── EtherDeltaClient.sln.DotSettings.user ├── EtherDeltaConfiguration.cs ├── ILogger.cs ├── Maker.cs ├── Message.cs ├── OrderType.cs ├── Orders.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── Service.cs ├── Taker.cs └── Trade.cs ├── js ├── README.md ├── maker.js ├── package.json ├── service.js └── taker.js └── python ├── README.md ├── config.ini.example ├── etherdeltaclientservice.py ├── etherdeltaclientservice_test.py ├── maker.py └── taker.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/README.md -------------------------------------------------------------------------------- /contracts/etherdelta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/contracts/etherdelta.json -------------------------------------------------------------------------------- /contracts/token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/contracts/token.json -------------------------------------------------------------------------------- /dotnet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/.gitignore -------------------------------------------------------------------------------- /dotnet/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/.vscode/launch.json -------------------------------------------------------------------------------- /dotnet/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.tabSize": 4 3 | } -------------------------------------------------------------------------------- /dotnet/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/.vscode/tasks.json -------------------------------------------------------------------------------- /dotnet/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/App.config -------------------------------------------------------------------------------- /dotnet/BaseBot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/BaseBot.cs -------------------------------------------------------------------------------- /dotnet/EtherDeltaClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/EtherDeltaClient.csproj -------------------------------------------------------------------------------- /dotnet/EtherDeltaClient.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/EtherDeltaClient.csproj.user -------------------------------------------------------------------------------- /dotnet/EtherDeltaClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/EtherDeltaClient.sln -------------------------------------------------------------------------------- /dotnet/EtherDeltaClient.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/EtherDeltaClient.sln.DotSettings.user -------------------------------------------------------------------------------- /dotnet/EtherDeltaConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/EtherDeltaConfiguration.cs -------------------------------------------------------------------------------- /dotnet/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/ILogger.cs -------------------------------------------------------------------------------- /dotnet/Maker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/Maker.cs -------------------------------------------------------------------------------- /dotnet/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/Message.cs -------------------------------------------------------------------------------- /dotnet/OrderType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/OrderType.cs -------------------------------------------------------------------------------- /dotnet/Orders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/Orders.cs -------------------------------------------------------------------------------- /dotnet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/Program.cs -------------------------------------------------------------------------------- /dotnet/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/Properties/launchSettings.json -------------------------------------------------------------------------------- /dotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/README.md -------------------------------------------------------------------------------- /dotnet/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/Service.cs -------------------------------------------------------------------------------- /dotnet/Taker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/Taker.cs -------------------------------------------------------------------------------- /dotnet/Trade.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/dotnet/Trade.cs -------------------------------------------------------------------------------- /js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/js/README.md -------------------------------------------------------------------------------- /js/maker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/js/maker.js -------------------------------------------------------------------------------- /js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/js/package.json -------------------------------------------------------------------------------- /js/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/js/service.js -------------------------------------------------------------------------------- /js/taker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/js/taker.js -------------------------------------------------------------------------------- /python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/python/README.md -------------------------------------------------------------------------------- /python/config.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/python/config.ini.example -------------------------------------------------------------------------------- /python/etherdeltaclientservice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/python/etherdeltaclientservice.py -------------------------------------------------------------------------------- /python/etherdeltaclientservice_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/python/etherdeltaclientservice_test.py -------------------------------------------------------------------------------- /python/maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/python/maker.py -------------------------------------------------------------------------------- /python/taker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/etherdelta/bots/HEAD/python/taker.py --------------------------------------------------------------------------------