All Downloads are FREE. Search and download functionalities are using the official Maven repository.

irita.sdk.config.OpbConfig Maven / Gradle / Ivy

There is a newer version: 0.13
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy