@Path(value="v1")
@Produces(value="application/json")
public interface RipplePublic
| Modifier and Type | Method and Description |
|---|---|
RippleAccountBalances |
getAccountBalances(String address)
Returns the account balances for this address.
|
RippleAccountSettings |
getAccountSettings(String address)
Returns the account settings for this address.
|
RippleOrderBook |
getOrderBook(String address,
String base,
String counter,
String limit)
Returns the order book for this address and base/counter pair.
|
RippleTransactionFee |
getTransactionFee()
Fetch the network transaction fee.
|
RippleNotifications |
notifications(String address,
Boolean excludeFailed,
Boolean earliestFirst,
Integer resultsPerPage,
Integer page,
Long startLedger,
Long endLedger)
Returns notifications for this address.
|
RippleAccountOrders |
openAccountOrders(String address)
Returns the account information for this address.
|
RippleOrderTransaction |
orderTransaction(String address,
String hash)
Returns detailed information about this order transaction.
|
RipplePaymentTransaction |
paymentTransaction(String address,
String hash)
Returns detailed information about this payment transaction.
|
@GET
@Path(value="accounts/{address}/order_book/{base}/{counter}")
RippleOrderBook getOrderBook(@PathParam(value="address")
String address,
@PathParam(value="base")
String base,
@PathParam(value="counter")
String counter,
@QueryParam(value="limit")
String limit)
throws IOException,
RippleException
IOExceptionRippleException@GET
@Path(value="accounts/{address}/balances")
RippleAccountBalances getAccountBalances(@PathParam(value="address")
String address)
throws IOException,
RippleException
IOExceptionRippleException@GET
@Path(value="accounts/{address}/settings")
RippleAccountSettings getAccountSettings(@PathParam(value="address")
String address)
throws IOException,
RippleException
IOExceptionRippleException@GET
@Path(value="accounts/{address}/orders")
RippleAccountOrders openAccountOrders(@PathParam(value="address")
String address)
throws IOException,
RippleException
IOExceptionRippleException@GET
@Path(value="accounts/{address}/orders/{hash}")
RippleOrderTransaction orderTransaction(@PathParam(value="address")
String address,
@PathParam(value="hash")
String hash)
throws IOException,
RippleException
IOExceptionRippleException@GET
@Path(value="accounts/{address}/payments/{hash}")
RipplePaymentTransaction paymentTransaction(@PathParam(value="address")
String address,
@PathParam(value="hash")
String hash)
throws IOException,
RippleException
IOExceptionRippleException@GET
@Path(value="accounts/{address}/notifications")
RippleNotifications notifications(@PathParam(value="address")
String address,
@QueryParam(value="exclude_failed")
Boolean excludeFailed,
@QueryParam(value="earliest_first")
Boolean earliestFirst,
@QueryParam(value="results_per_page")
Integer resultsPerPage,
@QueryParam(value="page")
Integer page,
@QueryParam(value="start_ledger")
Long startLedger,
@QueryParam(value="end_ledger")
Long endLedger)
throws IOException,
RippleException
IOExceptionRippleException@GET @Path(value="transaction-fee") RippleTransactionFee getTransactionFee()
Copyright © 2012–2019 Knowm Inc.. All rights reserved.