cn.hyperchain.sdk.request.CompileRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of litesdk Show documentation
Show all versions of litesdk Show documentation
A Java client tool for Hyperchain
package cn.hyperchain.sdk.request;
import cn.hyperchain.sdk.provider.ProviderManager;
/**
* this class represents request for solidity contract compile.
*
* @author Lam
* @ClassName CompileRequest
* @date 2019-07-09
*/
public class CompileRequest extends Request {
public CompileRequest(String method, ProviderManager providerManager, Class clazz, int... nodeIds) {
super(method, providerManager, clazz, nodeIds);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy