pbca26
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with
8 additions and
2 deletions
-
BIN
react/src/assets/images/cryptologo/oot.png
-
react/src/components/addcoin/addcoinOptionsAC.js
-
react/src/util/coinHelper.js
-
react/src/util/explorerList.js
Width:
|
Height:
|
Size: 2.7 KiB
|
|
|
@ -15,6 +15,7 @@ const addCoinOptionsAC = () => { |
|
|
|
'mgw', |
|
|
|
'mnz', |
|
|
|
'pangea', |
|
|
|
'oot', |
|
|
|
'revs', |
|
|
|
'mshark', |
|
|
|
'supernet', |
|
|
|
|
|
@ -46,6 +46,10 @@ export function getCoinTitle(coin) { |
|
|
|
coinlogo = 'pizza'; |
|
|
|
coinname = 'PIZZA (Test coin)'; |
|
|
|
break; |
|
|
|
case 'OOT': |
|
|
|
coinlogo = 'oot'; |
|
|
|
coinname = 'Utrum'; |
|
|
|
break; |
|
|
|
case 'XMY': |
|
|
|
coinlogo = 'xmy'; |
|
|
|
coinname = 'Myriad'; |
|
|
@ -564,4 +568,4 @@ export const isKomodoCoin = (coin) => { |
|
|
|
coin === 'BTCH') { |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
@ -2,6 +2,7 @@ |
|
|
|
|
|
|
|
const explorerList = { |
|
|
|
KMD: 'http://www.kmdexplorer.ru', |
|
|
|
OOT: 'http://explorer.utrum.io', |
|
|
|
MSHARK: 'http://MSHARK.explorer.supernet.org', |
|
|
|
REVS: 'http://revs.explorer.supernet.org', |
|
|
|
SUPERNET: 'http://SUPERNET.explorer.supernet.org', |
|
|
@ -50,4 +51,4 @@ const explorerList = { |
|
|
|
FAIR: 'https://chain.fair.to/transaction?transaction=', |
|
|
|
}; |
|
|
|
|
|
|
|
export default explorerList; |
|
|
|
export default explorerList; |
|
|
|