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.
7 lines
397 B
7 lines
397 B
import { extractTransactionDepositedLogs } from './extractTransactionDepositedLogs.js';
|
|
import { getL2TransactionHash } from './getL2TransactionHash.js';
|
|
export function getL2TransactionHashes({ logs, }) {
|
|
const extractedLogs = extractTransactionDepositedLogs({ logs });
|
|
return extractedLogs.map((log) => getL2TransactionHash({ log }));
|
|
}
|
|
//# sourceMappingURL=getL2TransactionHashes.js.map
|