
org.arkecosystem.client.api.two.Two 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.two;
import org.arkecosystem.client.api.AbstractAPI;
import org.arkecosystem.client.http.Client;
public class Two extends AbstractAPI {
public Blocks blocks;
public Delegates delegates;
public Node node;
public Peers peers;
public Transactions transactions;
public Votes votes;
public Wallets wallets;
public Two(Client client) {
super(client);
this.blocks = new Blocks(client);
this.delegates = new Delegates(client);
this.node = new Node(client);
this.peers = new Peers(client);
this.transactions = new Transactions(client);
this.votes = new Votes(client);
this.wallets = new Wallets(client);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy