Updated on 2026-08-14

This commit is contained in:
Tangem 2019-11-29 18:06:23 +03:00
parent 357cef6273
commit 857913f36a
7 changed files with 163 additions and 173 deletions

View file

@ -26,7 +26,8 @@ public enum Blockchain {
Stellar("XLM", "XLM", 1000000.0, R.drawable.ic_logo_stellar, "Stellar"),
StellarTestNet("XLM/test", "XLM", 1000000.0, R.drawable.ic_logo_stellar, "Stellar Testnet"),
StellarAsset("Asset", "XLM", 10000000.0, R.drawable.ic_logo_stellar, "Stellar"),
Eos("EOS", "EOS", 10000.0, R.drawable.tangem2, "EOS");
Eos("EOS", "EOS", 10000.0, R.drawable.tangem2, "EOS"),
Ducatus("DUC", "DUC", 100000000.0, R.drawable.tangem2, "Ducatus");
Blockchain(String ID, String currency, double multiplier, int imageResource, String officialName) {
mID = ID;