// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** * @title IWLPProgramEvents * @notice Canonical events for wrapped-LP / bridge attestation flows (Option A). * @dev `lockRef` is the idempotency key for destination mint (replay protection). */ interface IWLPProgramEvents { event LPLocked(bytes32 indexed lockRef, address indexed depositor, uint256 amount, address indexed lpToken); event LPReleased(bytes32 indexed lockRef, address indexed to, uint256 amount, address indexed lpToken); event WLPMinted(bytes32 indexed lockRef, address indexed recipient, uint256 amount); event RedemptionRequested(address indexed holder, uint256 wlpAmount); }