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 looksrare market and * update transaction data with relevant information. * * @function * @param {TransactionData} tx - The transaction data object to be updated with total amount and token data. * @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 containing the ABI for the market. **/ declare const parseLooksRare: (tx: TransactionData, log: Log, market: Market, iface: Interface) => void; export { parseLooksRare }; //# sourceMappingURL=parseLooksRare.d.ts.map