mirror of
https://github.com/Instadapp/dsa-connectors-2.0.git
synced 2024-07-29 21:57:39 +00:00
12 lines
281 B
Solidity
12 lines
281 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity ^0.8.2;
|
|
|
|
interface IFluidMerkleDistributor {
|
|
function claim(
|
|
address recipient_,
|
|
uint256 cumulativeAmount_,
|
|
address fToken_,
|
|
uint256 cycle_,
|
|
bytes32[] calldata merkleProof_
|
|
) external;
|
|
} |