ERC4626FeesMockUpgradeable
Inherits: Initializable, ERC4626FeesUpgradeable
State Variables
_entryFeeBasisPointValue
uint256 private _entryFeeBasisPointValue;
_entryFeeRecipientValue
address private _entryFeeRecipientValue;
_exitFeeBasisPointValue
uint256 private _exitFeeBasisPointValue;
_exitFeeRecipientValue
address private _exitFeeRecipientValue;
Functions
__ERC4626FeesMock_init
function __ERC4626FeesMock_init(
uint256 entryFeeBasisPoints,
address entryFeeRecipient,
uint256 exitFeeBasisPoints,
address exitFeeRecipient
) internal onlyInitializing;
__ERC4626FeesMock_init_unchained
function __ERC4626FeesMock_init_unchained(
uint256 entryFeeBasisPoints,
address entryFeeRecipient,
uint256 exitFeeBasisPoints,
address exitFeeRecipient
) internal onlyInitializing;
_entryFeeBasisPoints
function _entryFeeBasisPoints() internal view virtual override returns (uint256);
_entryFeeRecipient
function _entryFeeRecipient() internal view virtual override returns (address);
_exitFeeBasisPoints
function _exitFeeBasisPoints() internal view virtual override returns (uint256);
_exitFeeRecipient
function _exitFeeRecipient() internal view virtual override returns (address);