OsTokenVaultEscrowAuthMock
Inherits: Ownable, IOsTokenVaultEscrowAuth
Author: StakeWise
Mocks the OsTokenVaultEscrowAuth contract for testing purposes
State Variables
_canRegister
mapping(address => bool) public _canRegister;
Functions
constructor
constructor(address _owner) Ownable(_owner);
setCanRegister
function setCanRegister(address user, bool canRegister_) external onlyOwner;
canRegister
Check if the caller can register the exit position
function canRegister(address, address owner, uint256, uint256) external view override returns (bool);
Parameters
Name | Type | Description |
---|---|---|
<none> | address | |
owner | address | The address of the assets owner |
<none> | uint256 | |
<none> | uint256 |
Returns
Name | Type | Description |
---|---|---|
<none> | bool | True if the caller can register the exit position |