dexorder
This commit is contained in:
19
lib_openzeppelin_contracts/contracts/interfaces/IERC2309.sol
Normal file
19
lib_openzeppelin_contracts/contracts/interfaces/IERC2309.sol
Normal file
@@ -0,0 +1,19 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC2309.sol)
|
||||
|
||||
pragma solidity ^0.8.20;
|
||||
|
||||
/**
|
||||
* @dev ERC-2309: ERC-721 Consecutive Transfer Extension.
|
||||
*/
|
||||
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
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user