}
public BitfinexOfferStatusResponse getBitfinexOfferStatusResponse(String offerId) throws IOException {
try {
BitfinexOfferStatusResponse offerStatus = bitfinex.offerStatus(apiKey, payloadCreator, signatureCreator, new BitfinexOfferStatusRequest(String.valueOf(nextNonce()), Integer.valueOf(offerId)));
return offerStatus;
} catch (BitfinexException e) {
throw new ExchangeException(e.getMessage());
}
}