For the complete documentation index, see llms.txt. This page is also available as Markdown.

IObligationReceipt

// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.8.16;

import { IRedeemable } from "../interfaces/IRedeemable.sol";

interface IObligationReceipt is IRedeemable {
    function setDelegate(uint256 tokenId, address to, bool value) external;
}

Last updated