io.everitoken.sdk.java.apiResource.AbiBin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chain-sdk Show documentation
Show all versions of chain-sdk Show documentation
Official Java SDK for everiToken public chain. https://www.everitoken.io
package io.everitoken.sdk.java.apiResource;
import com.alibaba.fastjson.JSONObject;
import io.everitoken.sdk.java.exceptions.ApiResponseException;
import io.everitoken.sdk.java.param.RequestParams;
public class AbiBin extends OkhttpApi {
private static final String uri = "/v1/chain/abi_json_to_bin";
public AbiBin() {
super(uri);
}
public JSONObject request(RequestParams requestParams) throws ApiResponseException {
String res = super.makeRequest(requestParams);
JSONObject json = JSONObject.parseObject(res);
if (!json.containsKey("binargs")) {
throw new ApiResponseException("Abi to bin response should have a 'binargs' field", json);
}
return json;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy