added slash to symbol

This commit is contained in:
tim
2024-10-23 23:08:03 -04:00
parent a59ecbe67c
commit aea69e624b

View File

@@ -101,7 +101,7 @@ export function feelessTickerKey(ticker) {
} }
function addSymbol(chainId, p, base, quote, inverted) { function addSymbol(chainId, p, base, quote, inverted) {
const symbol = base.s + quote.s const symbol = base.s + '/' + quote.s
const exchange = ['UNIv2', 'UNIv3'][p.e] const exchange = ['UNIv2', 'UNIv3'][p.e]
const full_name = exchange + ':' + symbol // + '%' + formatFee(fee) const full_name = exchange + ':' + symbol // + '%' + formatFee(fee)
const ticker = tickerKey(chainId, p.e, base.a, quote.a, p.f) const ticker = tickerKey(chainId, p.e, base.a, quote.a, p.f)