This repository has been archived by the owner on Jul 15, 2022. It is now read-only.
Releases: LedgerHQ/ledger-live-common
Releases · LedgerHQ/ledger-live-common
v7.5.0
- enable ethereum_classic update for bridge (used by mobile)
- update [email protected]
v7.4.0
v7.3.1
v7.2.1
v7.2.0
v7.1.0
v7.0.0
- requires to use a lib-ledger-core binding version 3.x (new libcore major => new live-common major)
- Removed
sortAccounts, reorderAccountByCountervalues, reorderTokenAccountsByCountervalues
(see equivalent in ordering.js) - Have moved to lib/api/Ledger:
findCurrencyExplorer, hasCurrencyExplorer, getCurrencyExplorer
- NotEnoughGas is thrown when sending ERC20 but not enough ETH.
- Add
sortByMarketcap
,getMarketcapTickers
,useMarketcapTickers
,currenciesByMarketcap
,useCurrenciesByMarketcap
- CSV operations to return erc20 account operations
- Replace
createCountervalues
by{ implementCountervalues, getCountervalues }
- Introduce
setSupportedCurrencies
,listSupportedCurrencies
,isCurrencySupported
- drop EXPERIMENTAL_NATIVE_SEGWIT : it's now stable if you use libcore @ 3.
- Ability to hide empty token accounts by environment variable.
Breaking changes
Change signature of countervalues to prepare future
The point is to have countervalues living in live-common more and more so we can more easily migrate codes in live-common. Typically we can getCountervalues() from inside live-common logic.
Replace code like this:
import createCountervalues from "@ledgerhq/live-common/lib/countervalues";
const Countervalues = createCountervalues(a);
by
import { implementCountervalues, getCountervalues } from "@ledgerhq/live-common/lib/countervalues";
implementCountervalues(a);
const Countervalues = getCountervalues();