
org.arkecosystem.client.api.one.One Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arkecosystem-client Show documentation
Show all versions of arkecosystem-client Show documentation
A simple Java API client for the ARK Blockchain.
The newest version!
package org.arkecosystem.client.api.one;
import org.arkecosystem.client.api.AbstractAPI;
import org.arkecosystem.client.http.Client;
public class One extends AbstractAPI {
public Accounts accounts;
public Blocks blocks;
public Delegates delegates;
public Loader loader;
public Peers peers;
public Signatures signatures;
public Transactions transactions;
public One(Client client) {
super(client);
this.accounts = new Accounts(client);
this.blocks = new Blocks(client);
this.delegates = new Delegates(client);
this.loader = new Loader(client);
this.peers = new Peers(client);
this.signatures = new Signatures(client);
this.transactions = new Transactions(client);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy