Showing 1,971 of 13,422 total issues
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_BRIDGE_ROUTES)
.pickBy((values, _key) => {
return _.includes(values, `${toTokenRouteSymbol}-${toChainId}`)
})
.keys()
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_BRIDGE_ROUTES)
.values()
.flatten()
.filter((token) => token.endsWith(`-${toChainId}`))
.uniq()
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_BRIDGE_ROUTES)
.entries()
.filter(([_key, values]) =>
values.some((v) => v.endsWith(`-${toChainId}`))
)
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_BRIDGE_ROUTES)
.entries()
.filter(([key, _values]) => key.startsWith(`${fromTokenRouteSymbol}-`))
.map(([key, _values]) => key)
.flatten()
Avoid too many return
statements within this function. Open
Open
return Intl.NumberFormat(locales, {
maximumFractionDigits: 0,
}).format(floatAmount)
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_SWAP_ROUTES)
.pickBy((values, _key) => values.some((v) => v.endsWith(`-${toChainId}`)))
.pickBy((_values, key) => key.endsWith(`-${fromChainId}`))
.keys()
.uniq()
Avoid too many return
statements within this function. Open
Open
return 'BridgeDepositClaimedEvent'
Avoid too many return
statements within this function. Open
Open
return null
Avoid too many return
statements within this function. Open
Open
return Intl.NumberFormat(locales, {
minimumFractionDigits: compactDigits,
maximumFractionDigits: compactDigits,
notation: useCompactNotation ? 'compact' : 'standard',
}).format(floatAmount)
Avoid too many return
statements within this function. Open
Open
return Intl.NumberFormat(locales, {
maximumSignificantDigits: 1,
}).format(floatAmount)
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_BRIDGE_ROUTES)
.pickBy((values, _key) => {
return _.includes(values, `${toTokenRouteSymbol}-${toChainId}`)
})
.keys()
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_BRIDGE_ROUTES)
.pickBy((values, _key) => {
return _.includes(values, `${toTokenRouteSymbol}-${toChainId}`)
})
.keys()
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_BRIDGE_ROUTES)
.pickBy((_values, key) => key.endsWith(`-${fromChainId}`))
.values()
.flatten()
.filter((value) => value.endsWith(`-${toChainId}`))
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_BRIDGE_ROUTES)
.pickBy((values, _key) => values.some((v) => v.endsWith(`-${toChainId}`)))
.keys()
.filter((key) => key.endsWith(`-${fromChainId}`))
.uniq()
Avoid too many return
statements within this function. Open
Open
return true
Avoid too many return
statements within this function. Open
Open
return EXISTING_BRIDGE_ROUTES[
`${fromTokenRouteSymbol}-${fromChainId}`
]?.filter((token) => token.endsWith(`-${toChainId}`))
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_BRIDGE_ROUTES).values().flatten().uniq().value()
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_BRIDGE_ROUTES)
.mapValues((values) =>
values.filter((token) => token.startsWith(`${toTokenRouteSymbol}`))
)
.values()
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_BRIDGE_ROUTES)
.pickBy((values, _key) => {
return _.includes(values, `${toTokenRouteSymbol}-${toChainId}`)
})
.keys()
Avoid too many return
statements within this function. Open
Open
return _(EXISTING_SWAP_ROUTES)
.chain()
.filter((values, _key) => {
return values.some((v) => {
const { symbol } = getTokenAndChainId(v)