UNPKG

@mutants/cardano-tx-builder

Version:

A package that provides utility functions to build and destructure a cardano transaction

8 lines (7 loc) 274 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.areInputsEqual = void 0; const areInputsEqual = (txIn1, txIn2) => { return txIn1.txHash === txIn2.txHash && txIn1.txIndex === txIn2.txIndex; }; exports.areInputsEqual = areInputsEqual;