14 lines
309 B
Solidity
14 lines
309 B
Solidity
// SPDX-License-Identifier: CC0-1.0
|
|
pragma solidity ^0.8.16;
|
|
|
|
/// @title ERC-1155 Binder Errors Interface
|
|
interface IERC1155BinderErrors {
|
|
|
|
/// @notice Asset has already minted.
|
|
error AssetAlreadyMinted();
|
|
|
|
/// @notice Receiving address cannot be the zero address.
|
|
error ReceiverInvalid();
|
|
|
|
}
|