Arrange ser and faucet urls
This commit is contained in:
parent
a6109fa387
commit
272843843c
3 changed files with 9 additions and 6 deletions
|
@ -219,7 +219,7 @@ public abstract class BitsharesFaucetApiGenerator {
|
||||||
|
|
||||||
public interface IWebService {
|
public interface IWebService {
|
||||||
@Headers({"Content-Type: application/json"})
|
@Headers({"Content-Type: application/json"})
|
||||||
@POST("/faucet/api/v1/accounts")
|
@POST("/api/v1/accounts")
|
||||||
Call<RegisterAccountResponse> getReg(@Body Map<String, HashMap> params);
|
Call<RegisterAccountResponse> getReg(@Body Map<String, HashMap> params);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,10 +35,13 @@ public class CrystalApplication extends Application {
|
||||||
|
|
||||||
public static String BITSHARES_URL[] =
|
public static String BITSHARES_URL[] =
|
||||||
{
|
{
|
||||||
"wss://de.palmpay.io/ws", // Custom node
|
"wss://de.palmpay.io/ws",
|
||||||
//"wss://bitshares.nu/ws",
|
"wss://nl.palmpay.io/ws",
|
||||||
//"wss://bitshares.crypto.fans/ws", // Munich, Germany
|
"wss://mx.palmpay.io/ws",
|
||||||
//"wss://bitshares.openledger.info/ws", // Openledger node
|
"wss://us.nodes.bitshares.ws/ws",
|
||||||
|
"wss://eu.nodes.bitshares.ws/ws",
|
||||||
|
"wss://sg.nodes.bitshares.ws/ws",
|
||||||
|
"wss://dallas.bitshares.apasia.tech/ws"
|
||||||
};
|
};
|
||||||
|
|
||||||
//This is for testing the equivalent values on the testnet TODO remove
|
//This is for testing the equivalent values on the testnet TODO remove
|
||||||
|
|
|
@ -32,7 +32,7 @@ public abstract class BitsharesConstant {
|
||||||
|
|
||||||
//testnet faucet
|
//testnet faucet
|
||||||
//public final static String FAUCET_URL = "http://185.208.208.147:5010";
|
//public final static String FAUCET_URL = "http://185.208.208.147:5010";
|
||||||
public final static String FAUCET_URL = "https://de.palmpay.io";
|
public final static String FAUCET_URL = "https://faucet.palmpay.io";
|
||||||
public final static String EQUIVALENT_URL = "wss://bitshares.openledger.info/ws";
|
public final static String EQUIVALENT_URL = "wss://bitshares.openledger.info/ws";
|
||||||
|
|
||||||
public final static BitsharesAsset[] SMARTCOINS = new BitsharesAsset[]{
|
public final static BitsharesAsset[] SMARTCOINS = new BitsharesAsset[]{
|
||||||
|
|
Loading…
Reference in a new issue