Deal
Last updated
function getDealByOwner(
address owner
)
public
view
returns (
DealStruct[] memory
)function getDealByCounterpart(
address counterpart
)
public
view
returns (
DealStruct[] memory
);function getSendRequestByDeal(
uint256 tokenId
)
public
view
returns (
SendRequest[] memory
);function addSendRequest(
uint256 tokenId,
uint256 idHash
)
public;function accept(
uint256 tokenId,
bytes calldata proof,
uint[3] memory input
)
public;