irita.sdk.config.OpbConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irita-sdk Show documentation
Show all versions of irita-sdk Show documentation
Irita open alliance chain SDK (java)
package irita.sdk.config;
public class OpbConfig {
private final String projectID;
private final String projectKey;
private final String chainAccountAddr;
public OpbConfig(String projectID, String projectKey, String chainAccountAddr) {
this.projectID = projectID;
this.projectKey = projectKey;
this.chainAccountAddr = chainAccountAddr;
}
public String getProjectID() {
return projectID;
}
public String getProjectKey() {
return projectKey;
}
public String getChainAccountAddr() {
return chainAccountAddr;
}
}