You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
561 B
Solidity
22 lines
561 B
Solidity
// SPDX-License-Identifier: MIT
|
|
// OpenZeppelin Contracts (last updated v4.8.0) (interfaces/IERC2309.sol)
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
/**
|
|
* @dev ERC-2309: ERC-721 Consecutive Transfer Extension.
|
|
*
|
|
* _Available since v4.8._
|
|
*/
|
|
interface IERC2309 {
|
|
/**
|
|
* @dev Emitted when the tokens from `fromTokenId` to `toTokenId` are transferred from `fromAddress` to `toAddress`.
|
|
*/
|
|
event ConsecutiveTransfer(
|
|
uint256 indexed fromTokenId,
|
|
uint256 toTokenId,
|
|
address indexed fromAddress,
|
|
address indexed toAddress
|
|
);
|
|
}
|