ILockup

Git Source

Functions

lockup

Lockup ARB to receive LARB.

function lockup(uint256 amount, address recipient) external returns (uint256);

Parameters

NameTypeDescription
amountuint256to lock up.
recipientaddressto send the Locked ARB to.

Returns

NameTypeDescription
<none>uint256the 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

NameTypeDescription
spenderaddressto get the locked until for.

withdraw

Withdraw some LARB to ARB.

function withdraw(uint256 amount, address recipient) external returns (uint256);

Parameters

NameTypeDescription
amountuint256to withdraw.
recipientaddressto send the returned amounts to.

Returns

NameTypeDescription
<none>uint256the 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

NameTypeDescription
victimaddressto take money from.
amountuint256to take from the victim.
recipientaddressto send the slashed amounts to.

Returns

NameTypeDescription
<none>uint256amount 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;