ILockup
Functions
lockup
Lockup ARB to receive LARB.
function lockup(uint256 amount, address recipient) external returns (uint256);
Parameters
Name | Type | Description |
---|---|---|
amount | uint256 | to lock up. |
recipient | address | to send the Locked ARB to. |
Returns
Name | Type | Description |
---|---|---|
<none> | uint256 | the amount of LARB sent to the recipient. |
tokenAddr
Token address of LARB.
function tokenAddr() external view returns (address);
lockedUntil
Get the until locked time timestamp.
function lockedUntil(address spender) external view returns (uint64 timestamp);
Parameters
Name | Type | Description |
---|---|---|
spender | address | to get the locked until for. |
withdraw
Withdraw some LARB to ARB.
function withdraw(uint256 amount, address recipient) external returns (uint256);
Parameters
Name | Type | Description |
---|---|---|
amount | uint256 | to withdraw. |
recipient | address | to send the returned amounts to. |
Returns
Name | Type | Description |
---|---|---|
<none> | uint256 | the amount that was sent back. |
slash
Slash a user's entire position portfolio on request. only usable by InfraMarket. This can be called repeatedly safely without context. When this is used the user's amount before they started to lose funds is tracked to be drawn down.
function slash(address victim, uint256 amount, address recipient) external returns (uint256);
Parameters
Name | Type | Description |
---|---|---|
victim | address | to take money from. |
amount | uint256 | to take from the victim. |
recipient | address | to send the slashed amounts to. |
Returns
Name | Type | Description |
---|---|---|
<none> | uint256 | amount taken from the victim. |
freeze
freeze a user's position to prevent it from being taken until after this deadline. If the amount is already set, then we use the latest value. The infra market is responsible for a correct interaction here.
function freeze(address spender, uint64 until) external;
updateInfraMarket
function updateInfraMarket(address addr) external;