Browse Source

Merge pull request #33 from KomodoPlatform/v0.25

V0.25
dev
pbca26 7 years ago
committed by GitHub
parent
commit
79f6ac4388
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. BIN
      react/src/assets/images/cryptologo/snowgem.png
  2. 4
      react/src/components/addcoin/addcoinOptionsCrypto.js
  3. 6
      react/src/util/coinHelper.js
  4. 3
      react/src/util/explorerList.js

BIN
react/src/assets/images/cryptologo/snowgem.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

4
react/src/components/addcoin/addcoinOptionsCrypto.js

@ -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',

6
react/src/util/coinHelper.js

@ -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;
}
}
}

3
react/src/util/explorerList.js

@ -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;

Loading…
Cancel
Save