@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
11 lines • 429 B
JavaScript
const CAN_EDIT_FEES = true;
const areFeesProvided = tx => !!tx.fee;
const getWalletAPITransactionSignFlowInfos = ({ walletApiTransaction }) => {
return {
canEditFees: CAN_EDIT_FEES,
liveTx: { ...walletApiTransaction, family: "xrp" },
hasFeesProvided: areFeesProvided(walletApiTransaction),
};
};
export default { getWalletAPITransactionSignFlowInfos };
//# sourceMappingURL=walletApiAdapter.js.map