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