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 that interacts with Seaport contract * and updates the TransactionData object. * * @function * @param {TransactionData} tx - The transaction data object. * @param {Log} log - The transaction log object to be parsed. * @param {Market} market - The market object. * @param {Interface} iface - The interface object for the market contract. **/ declare const parseSeaport: (tx: TransactionData, log: Log, market: Market, iface: Interface) => void; export { parseSeaport }; //# sourceMappingURL=parseSeaport.d.ts.map