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

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

The newest version!
package org.arkecosystem.client.api.two;

import com.google.gson.internal.LinkedTreeMap;
import org.arkecosystem.client.http.Client;

import java.io.IOException;

public class Peers {
    Client client;

    public Peers(Client client) {
        this.client = client;
    }

    public LinkedTreeMap all() throws IOException {
        return this.client.get("peers");
    }

    public LinkedTreeMap show(String ip) throws IOException {
        return this.client.get("peers/" + ip);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy