nowpayments-sdk-java is a Java SDK that provides a HTTP client layer for the NOWPayments.io crypto payment gateway.
- Java JDK version (e.g., JDK 17+)
- Any specific libraries or tools if needed
- Clone the repository:
git clone https://github.com/thejramon/nowpayments-sdk-java.git
- Navigate to the project directory and install any dependencies (if applicable):
cd nowpayments-sdk-java
mvn install
NowPayments client = new NowPayments();
Provide a brief example. E.g.:
PaymentRequest request = new PaymentRequest(/* ... parameters ... */);
PaymentResponse response = client.createPayment(request);
... (Add more examples of typical usage patterns.)
-
src/main/java: Contains the main Java source files.
- me/thejramon/nowpayments/client: HTTP client and related utilities.
- me/thejramon/nowpayments/model: Data models for requests and responses.
- ... (list other packages and their purposes)
-
src/test/java: Unit tests for the SDK.
- NOWPayments.io for their crypto payment gateway service.