diff --git a/react/src/assets/images/cryptologo/snowgem.png b/react/src/assets/images/cryptologo/snowgem.png new file mode 100644 index 0000000..2bbb6ba Binary files /dev/null and b/react/src/assets/images/cryptologo/snowgem.png differ diff --git a/react/src/components/addcoin/addcoinOptionsCrypto.js b/react/src/components/addcoin/addcoinOptionsCrypto.js index 6c91011..aa596ac 100644 --- a/react/src/components/addcoin/addcoinOptionsCrypto.js +++ b/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', diff --git a/react/src/util/coinHelper.js b/react/src/util/coinHelper.js index a10f2b3..ef7ea1d 100644 --- a/react/src/util/coinHelper.js +++ b/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; } -} \ No newline at end of file +} diff --git a/react/src/util/explorerList.js b/react/src/util/explorerList.js index 12e1eb6..842fbda 100644 --- a/react/src/util/explorerList.js +++ b/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; \ No newline at end of file +export default explorerList;