Skip to main content

ISablierLockupBase

Git Source

Inherits: IAdminable, IBatch, IERC4906, IERC721Metadata

Common logic between all Sablier Lockup contracts.

Functions

MAX_BROKER_FEE

Retrieves the maximum broker fee that can be charged by the broker, denoted as a fixed-point number where 1e18 is 100%.

This value is hard coded as a constant.

function MAX_BROKER_FEE() external view returns (UD60x18);

getDepositedAmount

Retrieves the amount deposited in the stream, denoted in units of the token's decimals.

Reverts if streamId references a null stream.

function getDepositedAmount(uint256 streamId) external view returns (uint128 depositedAmount);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

getEndTime

Retrieves the stream's end time, which is a Unix timestamp.

Reverts if streamId references a null stream.

function getEndTime(uint256 streamId) external view returns (uint40 endTime);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

getLockupModel

Retrieves the distribution models used to create the stream.

Reverts if streamId references a null stream.

function getLockupModel(uint256 streamId) external view returns (Lockup.Model lockupModel);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

getRecipient

Retrieves the stream's recipient.

Reverts if the NFT has been burned.

function getRecipient(uint256 streamId) external view returns (address recipient);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

getRefundedAmount

Retrieves the amount refunded to the sender after a cancellation, denoted in units of the token's decimals. This amount is always zero unless the stream was canceled.

Reverts if streamId references a null stream.

function getRefundedAmount(uint256 streamId) external view returns (uint128 refundedAmount);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

getSender

Retrieves the stream's sender.

Reverts if streamId references a null stream.

function getSender(uint256 streamId) external view returns (address sender);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

getStartTime

Retrieves the stream's start time, which is a Unix timestamp.

Reverts if streamId references a null stream.

function getStartTime(uint256 streamId) external view returns (uint40 startTime);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

getUnderlyingToken

Retrieves the address of the underlying ERC-20 token being distributed.

Reverts if streamId references a null stream.

function getUnderlyingToken(uint256 streamId) external view returns (IERC20 token);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

getWithdrawnAmount

Retrieves the amount withdrawn from the stream, denoted in units of the token's decimals.

Reverts if streamId references a null stream.

function getWithdrawnAmount(uint256 streamId) external view returns (uint128 withdrawnAmount);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

isAllowedToHook

Retrieves a flag indicating whether the provided address is a contract allowed to hook to Sablier when a stream is canceled or when tokens are withdrawn.

See ISablierLockupRecipient for more information.

function isAllowedToHook(address recipient) external view returns (bool result);

isCancelable

Retrieves a flag indicating whether the stream can be canceled. When the stream is cold, this flag is always false.

Reverts if streamId references a null stream.

function isCancelable(uint256 streamId) external view returns (bool result);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

isCold

Retrieves a flag indicating whether the stream is cold, i.e. settled, canceled, or depleted.

Reverts if streamId references a null stream.

function isCold(uint256 streamId) external view returns (bool result);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

isDepleted

Retrieves a flag indicating whether the stream is depleted.

Reverts if streamId references a null stream.

function isDepleted(uint256 streamId) external view returns (bool result);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

isStream

Retrieves a flag indicating whether the stream exists.

Does not revert if streamId references a null stream.

function isStream(uint256 streamId) external view returns (bool result);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

isTransferable

Retrieves a flag indicating whether the stream NFT can be transferred.

Reverts if streamId references a null stream.

function isTransferable(uint256 streamId) external view returns (bool result);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

isWarm

Retrieves a flag indicating whether the stream is warm, i.e. either pending or streaming.

Reverts if streamId references a null stream.

function isWarm(uint256 streamId) external view returns (bool result);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

nextStreamId

Counter for stream IDs, used in the create functions.

function nextStreamId() external view returns (uint256);

nftDescriptor

Contract that generates the non-fungible token URI.

function nftDescriptor() external view returns (ILockupNFTDescriptor);

refundableAmountOf

Calculates the amount that the sender would be refunded if the stream were canceled, denoted in units of the token's decimals.

Reverts if streamId references a null stream.

function refundableAmountOf(uint256 streamId) external view returns (uint128 refundableAmount);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

statusOf

Retrieves the stream's status.

Reverts if streamId references a null stream.

function statusOf(uint256 streamId) external view returns (Lockup.Status status);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

streamedAmountOf

Calculates the amount streamed to the recipient, denoted in units of the token's decimals.

Reverts if streamId references a null stream. Notes:

  • Upon cancellation of the stream, the amount streamed is calculated as the difference between the deposited amount and the refunded amount. Ultimately, when the stream becomes depleted, the streamed amount is equivalent to the total amount withdrawn.
function streamedAmountOf(uint256 streamId) external view returns (uint128 streamedAmount);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

wasCanceled

Retrieves a flag indicating whether the stream was canceled.

Reverts if streamId references a null stream.

function wasCanceled(uint256 streamId) external view returns (bool result);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

withdrawableAmountOf

Calculates the amount that the recipient can withdraw from the stream, denoted in units of the token's decimals.

Reverts if streamId references a null stream.

function withdrawableAmountOf(uint256 streamId) external view returns (uint128 withdrawableAmount);

Parameters

NameTypeDescription
streamIduint256The stream ID for the query.

allowToHook

Allows a recipient contract to hook to Sablier when a stream is canceled or when tokens are withdrawn. Useful for implementing contracts that hold streams on behalf of users, such as vaults or staking contracts.

Emits an AllowToHook event. Notes:

function allowToHook(address recipient) external;

Parameters

NameTypeDescription
recipientaddressThe address of the contract to allow for hooks.

burn

Burns the NFT associated with the stream.

Emits a {Transfer} and {MetadataUpdate} event. Requirements:

  • Must not be delegate called.
  • streamId must reference a depleted stream.
  • The NFT must exist.
  • msg.sender must be either the NFT owner or an approved third party.
function burn(uint256 streamId) external payable;

Parameters

NameTypeDescription
streamIduint256The ID of the stream NFT to burn.

cancel

Cancels the stream and refunds any remaining tokens to the sender.

Emits a {Transfer}, {CancelLockupStream} and {MetadataUpdate} event. Notes:

  • If there any tokens left for the recipient to withdraw, the stream is marked as canceled. Otherwise, the stream is marked as depleted.
  • If the address is on the allowlist, this function will invoke a hook on the recipient. Requirements:
  • Must not be delegate called.
  • The stream must be warm and cancelable.
  • msg.sender must be the stream's sender.
function cancel(uint256 streamId) external payable;

Parameters

NameTypeDescription
streamIduint256The ID of the stream to cancel.

cancelMultiple

Cancels multiple streams and refunds any remaining tokens to the sender.

Emits multiple {Transfer}, {CancelLockupStream} and {MetadataUpdate} events. Notes:

  • Refer to the notes in {cancel}. Requirements:
  • All requirements from {cancel} must be met for each stream.
function cancelMultiple(uint256[] calldata streamIds) external payable;

Parameters

NameTypeDescription
streamIdsuint256[]The IDs of the streams to cancel.

collectFees

Collects the accrued fees by transferring them to the contract admin.

Emits a CollectFees event. Notes:

  • If the admin is a contract, it must be able to receive native token payments, e.g., ETH for Ethereum Mainnet.
function collectFees() external;

renounce

Removes the right of the stream's sender to cancel the stream.

Emits a RenounceLockupStream event. Notes:

  • This is an irreversible operation. Requirements:
  • Must not be delegate called.
  • streamId must reference a warm stream.
  • msg.sender must be the stream's sender.
  • The stream must be cancelable.
function renounce(uint256 streamId) external payable;

Parameters

NameTypeDescription
streamIduint256The ID of the stream to renounce.

renounceMultiple

Renounces multiple streams.

Emits multiple RenounceLockupStream events. Notes:

  • Refer to the notes in {renounce}. Requirements:
  • All requirements from {renounce} must be met for each stream.
function renounceMultiple(uint256[] calldata streamIds) external payable;

Parameters

NameTypeDescription
streamIdsuint256[]An array of stream IDs to renounce.

setNFTDescriptor

Sets a new NFT descriptor contract, which produces the URI describing the Sablier stream NFTs.

Emits a SetNFTDescriptor and {BatchMetadataUpdate} event. Notes:

  • Does not revert if the NFT descriptor is the same. Requirements:
  • msg.sender must be the contract admin.
function setNFTDescriptor(ILockupNFTDescriptor newNFTDescriptor) external;

Parameters

NameTypeDescription
newNFTDescriptorILockupNFTDescriptorThe address of the new NFT descriptor contract.

withdraw

Withdraws the provided amount of tokens from the stream to the to address.

Emits a {Transfer}, {WithdrawFromLockupStream} and {MetadataUpdate} event. Notes:

  • If msg.sender is not the recipient and the address is on the allowlist, this function will invoke a hook on the recipient. Requirements:
  • Must not be delegate called.
  • streamId must not reference a null or depleted stream.
  • to must not be the zero address.
  • amount must be greater than zero and must not exceed the withdrawable amount.
  • to must be the recipient if msg.sender is not the stream's recipient or an approved third party.
function withdraw(uint256 streamId, address to, uint128 amount) external payable;

Parameters

NameTypeDescription
streamIduint256The ID of the stream to withdraw from.
toaddressThe address receiving the withdrawn tokens.
amountuint128The amount to withdraw, denoted in units of the token's decimals.

withdrawMax

Withdraws the maximum withdrawable amount from the stream to the provided address to.

Emits a {Transfer}, {WithdrawFromLockupStream} and {MetadataUpdate} event. Notes:

  • Refer to the notes in {withdraw}. Requirements:
  • Refer to the requirements in {withdraw}.
function withdrawMax(uint256 streamId, address to) external payable returns (uint128 withdrawnAmount);

Parameters

NameTypeDescription
streamIduint256The ID of the stream to withdraw from.
toaddressThe address receiving the withdrawn tokens.

Returns

NameTypeDescription
withdrawnAmountuint128The amount withdrawn, denoted in units of the token's decimals.

withdrawMaxAndTransfer

Withdraws the maximum withdrawable amount from the stream to the current recipient, and transfers the NFT to newRecipient.

Emits a WithdrawFromLockupStream, {Transfer} and {MetadataUpdate} event. Notes:

  • If the withdrawable amount is zero, the withdrawal is skipped.
  • Refer to the notes in {withdraw}. Requirements:
  • msg.sender must be either the NFT owner or an approved third party.
  • Refer to the requirements in {withdraw}.
  • Refer to the requirements in {IERC721.transferFrom}.
function withdrawMaxAndTransfer(
uint256 streamId,
address newRecipient
)
external
payable
returns (uint128 withdrawnAmount);

Parameters

NameTypeDescription
streamIduint256The ID of the stream NFT to transfer.
newRecipientaddressThe address of the new owner of the stream NFT.

Returns

NameTypeDescription
withdrawnAmountuint128The amount withdrawn, denoted in units of the token's decimals.

withdrawMultiple

Withdraws tokens from streams to the recipient of each stream.

Emits multiple {Transfer}, {WithdrawFromLockupStream} and {MetadataUpdate} events. For each stream that reverted the withdrawal, it emits an InvalidWithdrawalInWithdrawMultiple event. Notes:

  • This function attempts to call a hook on the recipient of each stream, unless msg.sender is the recipient. Requirements:
  • Must not be delegate called.
  • There must be an equal number of streamIds and amounts.
  • Each stream ID in the array must not reference a null or depleted stream.
  • Each amount in the array must be greater than zero and must not exceed the withdrawable amount.
function withdrawMultiple(uint256[] calldata streamIds, uint128[] calldata amounts) external payable;

Parameters

NameTypeDescription
streamIdsuint256[]The IDs of the streams to withdraw from.
amountsuint128[]The amounts to withdraw, denoted in units of the token's decimals.

Events

AllowToHook

Emitted when the admin allows a new recipient contract to hook to Sablier.

event AllowToHook(address indexed admin, address recipient);

Parameters

NameTypeDescription
adminaddressThe address of the current contract admin.
recipientaddressThe address of the recipient contract put on the allowlist.

CancelLockupStream

Emitted when a stream is canceled.

event CancelLockupStream(
uint256 streamId,
address indexed sender,
address indexed recipient,
IERC20 indexed token,
uint128 senderAmount,
uint128 recipientAmount
);

Parameters

NameTypeDescription
streamIduint256The ID of the stream.
senderaddressThe address of the stream's sender.
recipientaddressThe address of the stream's recipient.
tokenIERC20The contract address of the ERC-20 token that has been distributed.
senderAmountuint128The amount of tokens refunded to the stream's sender, denoted in units of the token's decimals.
recipientAmountuint128The amount of tokens left for the stream's recipient to withdraw, denoted in units of the token's decimals.

CollectFees

Emitted when the accrued fees are collected.

event CollectFees(address indexed admin, uint256 indexed feeAmount);

Parameters

NameTypeDescription
adminaddressThe address of the current contract admin, which has received the fees.
feeAmountuint256The amount of collected fees.

InvalidWithdrawalInWithdrawMultiple

Emitted when withdrawing from multiple streams and one particular withdrawal reverts.

event InvalidWithdrawalInWithdrawMultiple(uint256 streamId, bytes revertData);

Parameters

NameTypeDescription
streamIduint256The stream ID that reverted during withdraw.
revertDatabytesThe error data returned by the reverted withdraw.

RenounceLockupStream

Emitted when a sender gives up the right to cancel a stream.

event RenounceLockupStream(uint256 indexed streamId);

Parameters

NameTypeDescription
streamIduint256The ID of the stream.

SetNFTDescriptor

Emitted when the admin sets a new NFT descriptor contract.

event SetNFTDescriptor(
address indexed admin, ILockupNFTDescriptor oldNFTDescriptor, ILockupNFTDescriptor newNFTDescriptor
);

Parameters

NameTypeDescription
adminaddressThe address of the current contract admin.
oldNFTDescriptorILockupNFTDescriptorThe address of the old NFT descriptor contract.
newNFTDescriptorILockupNFTDescriptorThe address of the new NFT descriptor contract.

WithdrawFromLockupStream

Emitted when tokens are withdrawn from a stream.

event WithdrawFromLockupStream(uint256 indexed streamId, address indexed to, IERC20 indexed token, uint128 amount);

Parameters

NameTypeDescription
streamIduint256The ID of the stream.
toaddressThe address that has received the withdrawn tokens.
tokenIERC20The contract address of the ERC-20 token that has been withdrawn.
amountuint128The amount of tokens withdrawn, denoted in units of the token's decimals.