Skip to content
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

Upgradeable L2 Resolver #98

Open
wants to merge 26 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
11eda3e
First pass at upgradeable L2 Resolver with EIP-7201 namespaced storage
stevieraykatz Oct 17, 2024
83dbacb
Move UpgradeableL2Resolver to dir
stevieraykatz Oct 17, 2024
f1e9a73
Migrate L2 Resolver tests to upgradeable
stevieraykatz Oct 24, 2024
fb6f8b9
ABI Resolver tests
stevieraykatz Nov 14, 2024
362ad95
Cleanup tests, add user-owned/managed node for resolver profile tests
stevieraykatz Nov 14, 2024
5a55934
Fix pragmas
stevieraykatz Nov 14, 2024
9f1cf35
lint
stevieraykatz Nov 14, 2024
359b3fb
Finish Addr Resolver + unit tests
stevieraykatz Nov 14, 2024
845f497
Add contenthash tests, natspec, add auth check to existing unit tests
stevieraykatz Nov 14, 2024
eb8760a
fix testfile name
stevieraykatz Nov 14, 2024
953172f
Cleanup DNSResolver, start tests for it
stevieraykatz Nov 15, 2024
4b12718
Cleanup natspec in InterfaceResolver, add unit tests
stevieraykatz Nov 15, 2024
8928c15
lint
stevieraykatz Nov 15, 2024
d9ce766
Name Resolver natspec and unit tests
stevieraykatz Nov 15, 2024
d54b4b4
Pubkey Resolver natspec and test
stevieraykatz Nov 15, 2024
09a52e9
Text resolver natspec and tests
stevieraykatz Nov 15, 2024
f344d26
lint
stevieraykatz Nov 15, 2024
21ceab2
Cleanup to UpgradeableL2Resolver natspec
stevieraykatz Nov 15, 2024
65c58a8
Finish DNS record tests
stevieraykatz Nov 15, 2024
90710d0
feat: add `notProxyAdmin` modifier for fuzz tests
abdulla-cb Nov 25, 2024
feb5e22
feat: add view methods for registrarController and reverseRegistrar
abdulla-cb Nov 25, 2024
00e3514
test: add additional cases
abdulla-cb Nov 26, 2024
d2c06eb
test: add tests for versionable resolver
abdulla-cb Nov 26, 2024
ff94866
test: setAddr reverts if invalid
abdulla-cb Nov 27, 2024
64ad9e1
test: add DNS records test
abdulla-cb Nov 27, 2024
c5145ae
chore: fix typo
abdulla-cb Nov 27, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix testfile name
  • Loading branch information
stevieraykatz committed Nov 14, 2024
commit eb8760ab0a09ec1bbde5dce2aad8b987288ab8ae
2 changes: 1 addition & 1 deletion test/UpgradeableL2Resolver/SetContentHash.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {UpgradeableL2ResolverBase} from "./UpgradeableL2ResolverBase.t.sol";
import {ResolverBase} from "src/L2/resolver/ResolverBase.sol";
import {ContentHashResolver} from "src/L2/resolver/ContentHashResolver.sol";

contract SetContentHash is UpgradeableL2ResolverBase {
contract SetContenthash is UpgradeableL2ResolverBase {
bytes IPFS_Data = hex"e3010170122029f2d17be6139079dc48696d1f582a8530eb9805b561eda517e22a892c7e3f1f";

function test_reverts_forUnauthorizedUser() public {
Expand Down
Loading