Browse Source

Merge pull request #196 from carsenk/v0.25

Add Denarius (DNR)
v0.25
pbca26 7 years ago
committed by GitHub
parent
commit
912536bb09
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. BIN
      react/src/assets/images/cryptologo/dnr.png
  2. 4
      react/src/components/addcoin/addcoinOptionsCrypto.js
  3. 4
      react/src/util/coinHelper.js

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

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

@ -36,6 +36,10 @@ const addCoinOptionsCrypto = () => {
label: 'Dash (DASH)',
icon: 'DASH',
value: `DASH|spv`,
}, {
label: 'Denarius (DNR)',
icon: 'DNR',
value: `DNR|spv`,
}, {
label: 'DigiByte (DGB)',
icon: 'DGB',

4
react/src/util/coinHelper.js

@ -14,6 +14,10 @@ export function getCoinTitle(coin) {
coinlogo = 'grs';
coinname = 'Groestlcoin';
break;
case 'DNR':
coinlogo = 'dnr';
coinname = 'Denarius';
break;
case 'BTCZ':
coinlogo = 'btcz';
coinname = 'BitcoinZ';

Loading…
Cancel
Save