Skip to main content
PulseScanner.io

Address

0x384e0a4de045fd82134c2181d78ec2ca13159ece
Current Holdings
$0.00
TXs sent
not counted
First Active
2025-10-20
block 24,806,857
Last Active
329 days ago
block 24,811,745
Funded By
not identified

Net worth historyi

No net-worth snapshots recorded yet
exact matchEscrowFactoryWPLSOnlysolc 0.8.20+commit.a1b79de6runtime exact · creation exact
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "./EscrowWPLSOnly.sol";

/// @title EscrowFactoryWPLSOnly — deploys WPLS-only escrows
contract EscrowFactoryWPLSOnly {
    event EscrowCreated(
        address indexed escrow,
        address indexed seller,
        address indexed buyer,
        address esteem,
        address wpls,
        uint256 amountSell,
        uint256 amountBuy,
        uint256 deadline
    );

    function create(
        address seller,
        address buyer,
        IERC20 esteem,
        IERC20 wpls,
        uint256 amountSell,
        uint256 amountBuy,
        uint256 deadline
    ) external returns (address escrowAddr) {
        escrowAddr = address(new EscrowWPLSOnly(seller, buyer, esteem, wpls, amountSell, amountBuy, deadline));
        emit EscrowCreated(escrowAddr, seller, buyer, address(esteem), address(wpls), amountSell, amountBuy, deadline);
    }
}