@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
13 lines • 509 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
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),
};
};
exports.default = { getWalletAPITransactionSignFlowInfos };
//# sourceMappingURL=walletApiAdapter.js.map