public CampBXResponse requestCampBXBitcoinDepositAddress() throws IOException {

    CampBXResponse campBXResponse =
        campBX.getDepositAddress(
            exchangeSpecification.getUserName(), exchangeSpecification.getPassword());
    return campBXResponse;
  }
  public CampBXResponse withdrawCampBXFunds(BigDecimal amount, String address) throws IOException {

    CampBXResponse campBXResponse =
        campBX.withdrawBtc(
            exchangeSpecification.getUserName(),
            exchangeSpecification.getPassword(),
            address,
            amount);
    return campBXResponse;
  }
  public MyFunds getCampBXAccountInfo() throws IOException {

    MyFunds myFunds =
        campBX.getMyFunds(exchangeSpecification.getUserName(), exchangeSpecification.getPassword());
    return myFunds;
  }