import type { Log, Interface } from 'ethers'; import type { Market } from '../types/models/market.model.js'; import type { TransactionData } from '../types/models/transaction.model.js'; /** * * Parses the transaction log for the Blur market and update * transaction data object with relevant information. * * @function * @param {TransactionData} tx - The transaction data object to be updated. * @param {Log} log - The log event object containing information about the transaction. * @param {Market} market - The market object containing market-specific data. * @param {Interface} iface - The interface object for the market contract. **/ declare const parseBlur: (tx: TransactionData, log: Log, market: Market, iface: Interface) => void; export { parseBlur }; //# sourceMappingURL=parseBlur.d.ts.map