-
Notifications
You must be signed in to change notification settings - Fork 1
feat: implement IERC165 #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b0d05dd
0df451e
af97185
a414f97
ed862f2
06dd078
4f9888e
b77398a
78571ad
972f503
822121e
1abdb94
05ccc90
21447d5
909946a
e1fd7c5
61d875a
2323509
1e0782c
e1d50be
62dab74
72a28c0
c5e7c0d
cb5212b
a394908
5996843
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| forge-std/=node_modules/forge-std/src | ||
| halmos-cheatcodes=node_modules/halmos-cheatcodes | ||
| openzeppelin-contracts=node_modules/@openzeppelin/contracts | ||
|
|
||
| contracts/=src/contracts | ||
| interfaces/=src/interfaces | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| // SPDX-License-Identifier: MIT | ||
| pragma solidity 0.8.30; | ||
|
|
||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it's okay to leave out the interface comments when they are not ours, right?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I added them only because the pre-commit fails without the natspec
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. oh got it, I think we can 100% skip them |
||
| interface IExtendedResolver { | ||
| /** | ||
| * @notice Provides a mechanism to support wildcard resolution of ENS names | ||
| * @param _name The name to resolve | ||
| * @param _data The data to resolve | ||
| * @return _result The result of the resolution | ||
| */ | ||
| function resolve(bytes memory _name, bytes memory _data) external view returns (bytes memory _result); | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.