Vesting

Git Source

Inherits: IComplianceModule

Example transfer restriction module used in issuing/restricting token transfers. In a full implementation, this contract would enforce vesting schedules.

Functions

verifyTransfer

Verifies a transfer according to vesting rules.

Reverts if the transfer is not allowed.

function verifyTransfer(address from, address to, uint96 quantity, bytes32 tokenId, bytes memory data)
    external
    view
    override;

Last updated

Was this helpful?