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

org.arkecosystem.client.api.one.One Maven / Gradle / Ivy

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