Address
0x4fcce6defe6ea84f80e16fafe8155ff8a90f7579Current Holdings
$0.00
TXs sent
not counted
First Active
2026-05-25
block 26,618,566
Last Active
113 days ago
block 26,618,566
Funded By
not identified
Net worth historyi
No net-worth snapshots recorded yet
partial matchSwapRoutersolc 0.7.6+commit.7338295fruntime partial · creation partial
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;
/// @title Callback for ILibertyV3PoolActions.sol#flash
/// @notice Any contract that calls ILibertyV3PoolActions.sol#flash must implement this interface
interface ILibertyV3FlashCallback {
/// @notice Called to `msg.sender` after transferring to the recipient from ILibertyV3Pool.sol#flash.
/// @dev In the implementation you must repay the pool the tokens sent by flash plus the computed fee amounts.
/// The caller of this method must be checked to be a LibertyV3Pool.sol deployed by the canonical LibertyV3Factory.sol.
/// @param fee0 The fee amount in token0 due to the pool by the end of the flash
/// @param fee1 The fee amount in token1 due to the pool by the end of the flash
/// @param data Any data passed through by the caller via the ILibertyV3PoolActions.sol#flash call
function libertyV3FlashCallback(
uint256 fee0,
uint256 fee1,
bytes calldata data
) external;
}