We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56ec8cb commit f07e13bCopy full SHA for f07e13b
1 file changed
contracts/src/external/HyperdriveTarget0.sol
@@ -532,6 +532,18 @@ abstract contract HyperdriveTarget0 is
532
_revert(abi.encode(_nonces[account]));
533
}
534
535
+ /// @notice Returns whether or not an interface is supported.
536
+ /// @param interfaceId The ID of the interface.
537
+ /// @return A flag indicating whether or not the interface is supported.
538
+ function supportsInterface(
539
+ bytes4 interfaceId
540
+ ) external pure returns (bool) {
541
+ if (interfaceId == bytes4(0xd9b67a26)) {
542
+ return true;
543
+ }
544
+ return false;
545
546
+
547
/// Helpers ///
548
549
/// @dev Reverts with the provided bytes. This is useful in getters used
0 commit comments