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

org.arkecosystem.client.api.two.Two Maven / Gradle / Ivy

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