BATM Public Repository =========== This repository contains Bitcoin ATM related code used in BATMTwo, BATMThree, BATM Server products. More information about the products can be found here: http://www.generalbytes.com All source code is released under GPL2. Overview ======== Here is the list of functionality that can be extended with extenstions API: * **Implement support for different cryptocurrency wallets** - for more see IWallet interface * **Implement support for different cryptocurrency exchanges** - for more see IExchange interface * **Implement support for different cryptocurrency rate tickers** - for more see IRateSource interface * **Implement support for different cryptocurrency payment processors** - for more see IPaymentProcessor interface Content ======= * **server_extensions_api** - contains extension api that all extensions use to extend BATM Server's functionality. * **server_extensions_extra** - reference extension implementation that implements BTC, LTC, DGB, DASH, SYS, FLASH, DOGE, NLG, ICG, NBT, GRS and MAX coin support functionality. * **server_extensions_test** - contains tester for testing the extensions without requirement of having a BATM server Note for developers ========== Requirements: * Linux is required in order to run compilers and tests. * Java * Gradle When you implement support for new crypto-coin add it please to **server_extensions_extra** this way it will get into default BATM Server installation pack for customers. After you implement the the extension make sure you test it with Tester which you will find in **server_extensions_test** Build information ================= ```bash ./gradlew build cp server_extensions_extra/build/libs/batm_server_extensions_extra.jar /batm/app/master/extensions/ ``` How to run Tester ========== ```bash ./gradlew :server_extensions_test:install ./server_extensions_test/build/install/server_extensions_test/bin/server_extensions_test ```