Updated on 2026-08-14

This commit is contained in:
Tangem 2019-07-03 15:18:42 +03:00
parent 9a81079ec9
commit 1a54ecc244
10 changed files with 745 additions and 43 deletions

View file

@ -24,7 +24,8 @@ public enum Blockchain {
Matic("MATIC", "MTX", 1.0, R.drawable.tangem2, "Matic"),
MaticTestNet("MATIC/test", "MTX", 1.0, R.drawable.tangem2, "Matic Testnet"),
Stellar("XLM", "XLM", 1000000.0, R.drawable.ic_logo_stellar, "Stellar"),
StellarTestNet("XLM/test", "XLM", 1000000.0, R.drawable.ic_logo_stellar, "Stellar Testnet");
StellarTestNet("XLM/test", "XLM", 1000000.0, R.drawable.ic_logo_stellar, "Stellar Testnet"),
Eos("EOS", "EOS", 10000.0, R.drawable.tangem2, "EOS");
Blockchain(String ID, String currency, double multiplier, int imageResource, String officialName) {
mID = ID;