public VircurexAccountInfoReturn getVircurexAccountInfo() throws IOException {
String timestamp = VircurexUtils.getUtcTimestamp();
String nonce = (System.currentTimeMillis() / 250L) + "";
VircurexSha2Digest digest = new VircurexSha2Digest(exchangeSpecification.getApiKey(), exchangeSpecification.getUserName(), timestamp, nonce, "get_balances");
VircurexAccountInfoReturn info = vircurex.getInfo(exchangeSpecification.getUserName(), nonce, digest.toString(), timestamp);
return info;
}