@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
8 lines • 424 B
JavaScript
export { groupCurrenciesByAsset } from "./groupCurrenciesByAsset";
export { sortAccountsByFiatValue } from "./sortAccountsByFiatValue";
const getBaseId = (currency) => currency.type === "CryptoCurrency" ? currency.id : currency.parentCurrency.id;
function belongsToSameNetwork(elem, network) {
return getBaseId(elem) === getBaseId(network);
}
export { getBaseId, belongsToSameNetwork };
//# sourceMappingURL=index.js.map