feat: expand non-evm relay and route planning support
This commit is contained in:
14
contracts/wrapped-lp-public/interfaces/IWLPProgramEvents.sol
Normal file
14
contracts/wrapped-lp-public/interfaces/IWLPProgramEvents.sol
Normal file
@@ -0,0 +1,14 @@
|
||||
// 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);
|
||||
}
|
||||
Reference in New Issue
Block a user