dgf-prototype/ethereum/contracts/IAcceptAvailability.sol

11 lines
214 B
Solidity
Raw Normal View History

2024-03-10 22:29:51 -05:00
// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.24;
interface IAcceptAvailability {
function acceptAvailability(
address from,
uint256 value,
uint duration
) external;
}