Skip to content

Latest commit

 

History

History
174 lines (146 loc) · 4.89 KB

IFeeSharingProxy.md

File metadata and controls

174 lines (146 loc) · 4.89 KB

Interface for contract governance/FeeSharingProxy.sol (IFeeSharingProxy.sol)

View Source: contracts/Interfaces/IFeeSharingProxy.sol

IFeeSharingProxy

Interfaces are used to cast a contract address into a callable instance.

Functions


withdrawFees

function withdrawFees(address _token) external nonpayable

Arguments

Name Type Description
_token address
Source Code
function withdrawFees(address _token) external;

transferTokens

function transferTokens(address _token, uint96 _amount) external nonpayable

Arguments

Name Type Description
_token address
_amount uint96
Source Code
function transferTokens(address _token, uint96 _amount) external;

withdraw

function withdraw(address _loanPoolToken, uint32 _maxCheckpoints, address _receiver) external nonpayable

Arguments

Name Type Description
_loanPoolToken address
_maxCheckpoints uint32
_receiver address
Source Code
function withdraw(
		address _loanPoolToken,
		uint32 _maxCheckpoints,
		address _receiver
	) external;

Contracts