pbca26
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
11 additions and
2 deletions
-
BIN
react/src/assets/images/cryptologo/snowgem.png
-
react/src/components/addcoin/addcoinOptionsCrypto.js
-
react/src/util/coinHelper.js
-
react/src/util/explorerList.js
Width:
|
Height:
|
Size: 48 KiB
|
|
|
@ -92,6 +92,10 @@ const addCoinOptionsCrypto = () => { |
|
|
|
label: 'Hush (HUSH)', |
|
|
|
icon: 'HUSH', |
|
|
|
value: `HUSH|spv`, |
|
|
|
}, { |
|
|
|
label: 'SnowGem (SNG)', |
|
|
|
icon: 'snowgem', |
|
|
|
value: `SNG|spv`, |
|
|
|
}, { |
|
|
|
label: 'Zclassic (ZCL)', |
|
|
|
icon: 'ZCL', |
|
|
|
|
|
@ -58,6 +58,10 @@ export function getCoinTitle(coin) { |
|
|
|
coinlogo = 'hush'; |
|
|
|
coinname = 'Hush'; |
|
|
|
break; |
|
|
|
case 'SNG': |
|
|
|
coinlogo = 'snowgem'; |
|
|
|
coinname = 'SnowGem'; |
|
|
|
break; |
|
|
|
case 'BCH': |
|
|
|
coinlogo = 'bch'; |
|
|
|
coinname = 'BitcoinCash'; |
|
|
@ -564,4 +568,4 @@ export const isKomodoCoin = (coin) => { |
|
|
|
coin === 'BTCH') { |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
@ -39,6 +39,7 @@ const explorerList = { |
|
|
|
BTG: 'https://btgexplorer.com', |
|
|
|
BCH: 'https://bitcoincash.blockexplorer.com', |
|
|
|
ZCL: 'http://explorer.zclmine.pro', |
|
|
|
SNG: 'https://explorer.snowgem.org/', |
|
|
|
ZMY: 'https://myriadexplorer.com', |
|
|
|
BTX: 'http://explorer.bitcore.cc', |
|
|
|
BTCZ: 'https://explorer.bitcoinz.site', |
|
|
@ -50,4 +51,4 @@ const explorerList = { |
|
|
|
FAIR: 'https://chain.fair.to/transaction?transaction=', |
|
|
|
}; |
|
|
|
|
|
|
|
export default explorerList; |
|
|
|
export default explorerList; |
|
|
|