doge: static/js/offerstable.js

This commit is contained in:
nahuhh 2024-11-28 15:37:38 +00:00 committed by tecnovert
parent 36ec1e8683
commit 95db6655e7

View file

@ -67,7 +67,8 @@ const coinNameToDisplayName = {
const coinIdToName = {
1: 'particl', 2: 'bitcoin', 3: 'litecoin', 4: 'decred',
6: 'monero', 7: 'particl blind', 8: 'particl anon',
9: 'wownero', 11: 'pivx', 13: 'firo', 17: 'bitcoincash'
9: 'wownero', 11: 'pivx', 13: 'firo', 17: 'bitcoincash',
18: 'dogecoin'
};
// DOM ELEMENT REFERENCES
@ -2308,7 +2309,7 @@ function getCoinSymbol(fullName) {
'Particl': 'PART', 'Particl Blind': 'PART', 'Particl Anon': 'PART',
'PIVX': 'PIVX', 'Firo': 'FIRO', 'Zcoin': 'FIRO',
'Dash': 'DASH', 'Decred': 'DCR', 'Wownero': 'WOW',
'Bitcoin Cash': 'BCH'
'Bitcoin Cash': 'BCH', 'Dogecoin': 'DOGE'
};
return symbolMap[fullName] || fullName;
}