feat: expand non-evm relay and route planning support

This commit is contained in:
defiQUG
2026-04-18 12:05:34 -07:00
parent da78073104
commit 843cdbf71c
113 changed files with 8542 additions and 222 deletions

View 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);
}