From 0ec10d973c63d2d931acb6348cbc8099df53e473 Mon Sep 17 00:00:00 2001 From: Manfred Karrer Date: Mon, 6 Jun 2016 14:46:35 +0200 Subject: [PATCH] Add Insight as default block explorer --- core/src/main/java/io/bitsquare/user/Preferences.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/java/io/bitsquare/user/Preferences.java b/core/src/main/java/io/bitsquare/user/Preferences.java index 3ac3931392..9175c78094 100644 --- a/core/src/main/java/io/bitsquare/user/Preferences.java +++ b/core/src/main/java/io/bitsquare/user/Preferences.java @@ -53,6 +53,7 @@ public final class Preferences implements Persistable { // Deactivate mBit for now as most screens are not supporting it yet private static final List BTC_DENOMINATIONS = Arrays.asList(MonetaryFormat.CODE_BTC/*, MonetaryFormat.CODE_MBTC*/); + transient static final private ArrayList blockChainExplorersTestNet = new ArrayList<>(Arrays.asList( new BlockChainExplorer("Blocktrail", "https://www.blocktrail.com/tBTC/tx/", "https://www.blocktrail.com/tBTC/address/"), new BlockChainExplorer("Blockexplorer", "https://blockexplorer.com/testnet/tx/", "https://blockexplorer.com/testnet/address/"), @@ -61,6 +62,7 @@ public final class Preferences implements Persistable { )); transient static final private ArrayList blockChainExplorersMainNet = new ArrayList<>(Arrays.asList( + new BlockChainExplorer("Insight", "https://insight.bitpay.com/tx/", "https://insight.bitpay.com/address/"), new BlockChainExplorer("Blocktrail", "https://www.blocktrail.com/BTC/tx/", "https://www.blocktrail.com/BTC/address/"), new BlockChainExplorer("Tradeblock.com", "https://tradeblock.com/bitcoin/tx/", "https://tradeblock.com/bitcoin/address/"), new BlockChainExplorer("Blockchain.info", "https://blockchain.info/tx/", "https://blockchain.info/address/"),