@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
14 lines • 605 B
JavaScript
import { BigNumber } from "bignumber.js";
export const useFeesStrategy = (a, t) => {
const allSameEstimatedSeconds = t.networkInfo.every(ni => ni.estimatedSeconds === t.networkInfo[0].estimatedSeconds);
return t.networkInfo.map(ni => ({
label: ni.label,
amount: ni.amount,
disabled: (ni.label === "slow" || ni.label === "medium") && allSameEstimatedSeconds,
extra: {
estimatedMs: BigNumber(ni.estimatedSeconds * 1000),
},
unit: a.currency.units[a.currency.units.length - 1], // Should be sat
}));
};
//# sourceMappingURL=react.js.map