Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 841 Bytes

File metadata and controls

20 lines (15 loc) · 841 Bytes

Java Binance DEX API

binance-dex-java-api is a lightweight Java library for interacting with the Binance DEX API, providing complete API coverage, and supporting synchronous and asynchronous requests.

Installation

  1. Install library into your Maven's local repository by running mvn install
  2. Add the following Maven dependency to your project's pom.xml:
<dependency>
  <groupId>com.binance.dex.api</groupId>
  <artifactId>binance-dex-api-client</artifactId>
  <version>1.0.0</version>
</dependency>

Examples

Examples can be found at https://github.com/binance-chain/java-sdk/tree/master/src/test/java/com/binance/dex/api/client/examples.

If you want to run the examples in an IDE, please run mvn compile first to generate the protobuf classes.