You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
361 B
10 lines
361 B
import { parseEventLogs, } from '../../utils/abi/parseEventLogs.js';
|
|
import { l2ToL1MessagePasserAbi } from '../abis.js';
|
|
export function extractWithdrawalMessageLogs({ logs, }) {
|
|
return parseEventLogs({
|
|
abi: l2ToL1MessagePasserAbi,
|
|
eventName: 'MessagePassed',
|
|
logs,
|
|
});
|
|
}
|
|
//# sourceMappingURL=extractWithdrawalMessageLogs.js.map
|