ghost-dao-contracts/src/interfaces/IMetadata.sol
Uncle Stretch f9015bf9a5
make gatekeeper extnesions abstract contracts
Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
2026-07-23 21:15:14 +03:00

13 lines
276 B
Solidity

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