ClankerFeeLocker
Documentation of Clanker's ClankerFeeLocker
// callable by anyone, transfers the available fees to the recipient
//
// note: the 'token' parameter is the token that is being claimed, not the token
// that is generating the fees. In other places in Clanker, the 'token' parameter
// is the token that is generating the fees.
function claim(address feeOwner, address token) external;
// view function to return the amount of `token` fees available to claim for a `feeOwner`
function availableFees(address feeOwner, address token) external view returns (uint256);Last updated