// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; interface IMetadata { struct GatekeeperMetadata { uint48 deployedAt; uint104 amountIn; uint104 amountOut; } function metadata() external view returns (GatekeeperMetadata memory); }