Ycash testnet
This commit is contained in:
parent
161c99f2f3
commit
887ddb56a5
Binary file not shown.
After Width: | Height: | Size: 35 KiB |
|
@ -5,6 +5,10 @@ ycash)
|
|||
export APP_TITLE=YWallet
|
||||
export APP_NAME=ywallet
|
||||
;;
|
||||
ycashtest)
|
||||
export APP_TITLE=YWalletTest
|
||||
export APP_NAME=ywallettest
|
||||
;;
|
||||
zcashtest)
|
||||
export APP_TITLE=ZWalletTest
|
||||
export APP_NAME=zwallettest
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
import "coin.dart";
|
||||
|
||||
class Coin {
|
||||
String app = "YWalletTest";
|
||||
String symbol = "\u24E8";
|
||||
String currency = "ycash";
|
||||
String ticker = "YEC";
|
||||
String explorerUrl = "https://yecblockexplorer.com/tx/";
|
||||
List<LWInstance> lwd = [
|
||||
LWInstance("Lightwalletd", "https://testlite.ycash.xyz:9067"),
|
||||
];
|
||||
bool supportsUA = false;
|
||||
bool supportsMultisig = true;
|
||||
List<int> weights = [5, 25, 250];
|
||||
}
|
|
@ -23,7 +23,7 @@ hex = "0.4.3"
|
|||
|
||||
[dependencies.zcash_primitives]
|
||||
git = "https://github.com/hhanh00/librustzcash.git"
|
||||
rev = "1518b145f8ee67e144fa8337c7dfd4c8cff899c9"
|
||||
rev = "f2d098abafd10e3744d23a28abe48ced19050f05"
|
||||
|
||||
[build-dependencies]
|
||||
cbindgen = "0.19.0"
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit f54214d0a6752188efd1404e39b10be58a27ea0f
|
||||
Subproject commit aa2984d61a1f0014695ec5a168df3af5817006b7
|
|
@ -1 +1 @@
|
|||
Subproject commit 6c5426dc4bec84e93eeedcafa197146ed3bfaffc
|
||||
Subproject commit 1368ef704e7b5534f12510049e2dac42741c92b5
|
Loading…
Reference in New Issue