Add missing coin def for zcash testnet

This commit is contained in:
Hanh 2021-08-27 09:10:25 +08:00
parent 19f087b49e
commit 4118218d55
1 changed files with 12 additions and 0 deletions

12
lib/coin/zcashtest.dart Normal file
View File

@ -0,0 +1,12 @@
import 'coin.dart';
class Coin {
String app = "ZWalletTest";
String symbol = "\u24E9";
String currency = "zcash";
String ticker = "ZEC";
String explorerUrl = "https://sochain.com/tx/ZECTEST/";
List<LWInstance> lwd = [
LWInstance("Lightwalletd", "https://testnet.lightwalletd.com:9067"),
];
}