@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
27 lines (25 loc) • 541 B
text/typescript
import { sortCurrenciesByIds } from "./sortByMarketcap";
import { CURRENCIES_LIST, IDS } from "./mock";
test("sortCurrenciesByIds simulate staking from portfolio", () => {
expect(sortCurrenciesByIds(CURRENCIES_LIST, IDS).map(c => c.id)).toEqual([
"ethereum",
"solana",
"cardano",
"polkadot",
"cosmos",
"near",
"injective",
"elrond",
"tezos",
"celo",
"osmo",
"axelar",
"persistence",
"mantra",
"crypto_org",
"xion",
"zenrock",
"babylon",
"quicksilver",
]);
});