👨🏫WEbdEXNetworkPoolV3
Visão
solidityCopy code// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
interface IWEbdEXStrategiesV3 {
function lpBurnFrom(address to, address coin, uint256 amount) external;
}
contract WEbdEXNetworkPoolV3 is Ownable {
// ... (continuation of the code)Conclusão
Last updated