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

L1 offchain register domain #107

Merged
merged 24 commits into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from 14 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
a77117c
feat: register function on l1 and l2
pikonha Jun 3, 2024
6b8d296
refactor: foundry deps from npm
pikonha Jun 4, 2024
7fa31ca
chore: update deps
pikonha Jun 4, 2024
f911b0a
feat: add register function to l1 and l2 contracts
pikonha Jun 4, 2024
29604a0
chore: remove unused deps
pikonha Jun 4, 2024
d0f34aa
refactor: register decoupled from setOwner
pikonha Jun 4, 2024
8c5b748
fix: handle not found domains on l1 resolver
pikonha Jun 4, 2024
8c8bf20
Merge branch 'feat#15-l2-eip-5559' into feat#83/l1-offchain-register
pikonha Jun 5, 2024
f0337b1
test: l1 resolver register unit tests
pikonha Jun 5, 2024
1ed45c8
test: l2 resolver tests
pikonha Jun 5, 2024
fb4e683
Merge branch 'feat#22-client-write-l2' into feat#83/l1-offchain-register
pikonha Jun 5, 2024
99f38be
Merge branch 'feat#22-client-write-l2' into feat#83/l1-offchain-register
pikonha Jun 5, 2024
9cc59b6
Merge remote-tracking branch 'origin' into feat#83/l1-offchain-register
pikonha Jun 5, 2024
fa1feb0
fix: use blockful.eth as text prorperty
pikonha Jun 6, 2024
00de62e
Merge branch 'feat#22-client-write-l2' into feat#83/l1-offchain-register
pikonha Jun 6, 2024
0756097
Merge branch 'feat#22-client-write-l2' into feat#83/l1-offchain-register
pikonha Jun 6, 2024
fe9816d
fix: ensdomains remapping
pikonha Jun 6, 2024
75acef5
Merge branch 'feat#22-client-write-l2' into feat#83/l1-offchain-register
pikonha Jun 6, 2024
8622a9c
chore: remove gas reportes dep
pikonha Jun 6, 2024
8c8e423
Merge branch 'main' into feat#83/l1-offchain-register
pikonha Jun 6, 2024
ce88908
chore: remove gas reportes dep
pikonha Jun 6, 2024
60b0aa1
feat: db addr by coin
pikonha Jun 6, 2024
8ba8245
fix: l1 e2e tests
pikonha Jun 6, 2024
e3cd4a3
fix: handler type wihtout func keyword
pikonha Jun 6, 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
12 changes: 0 additions & 12 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
[submodule "packages/contracts/lib/buffer"]
path = packages/contracts/lib/buffer
url = https://github.com/ensdomains/buffer
[submodule "packages/contracts/lib/openzeppelin-contracts"]
path = packages/contracts/lib/openzeppelin-contracts
url = https://github.com/OpenZeppelin/openzeppelin-contracts
[submodule "packages/contracts/lib/forge-std"]
path = packages/contracts/lib/forge-std
url = https://github.com/foundry-rs/forge-std
[submodule "packages/contracts/lib/ens-contracts"]
path = packages/contracts/lib/ens-contracts
url = https://github.com/ensdomains/ens-contracts
[submodule "packages/contracts/lib/optimism-bedrock-contracts"]
path = packages/contracts/lib/optimism-bedrock-contracts
url = https://github.com/TusimaNetwork/optimism-bedrock-contracts
6 changes: 4 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
{
"type": "node",
"request": "launch",
"name": "l1/db write client",
"name": "db write client",
"skipFiles": [
"<node_internals>/**"
],
Expand Down Expand Up @@ -91,7 +91,9 @@
"-pk",
"0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80",
"--providerl2",
"http://127.0.0.1:8545"
"http://127.0.0.1:8545",
"--l2resolver",
"0x8A791620dd6260079BF849Dc5567aDC3F2FdC318"
pikonha marked this conversation as resolved.
Show resolved Hide resolved
]
},
{
Expand Down
14 changes: 9 additions & 5 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ out = "packages/contracts/out"
libs = ["packages/contracts/lib"]
viaIR = true
remappings = [
"@ens-contracts=packages/contracts/lib/ens-contracts/contracts",
"@openzeppelin=packages/contracts/lib/openzeppelin-contracts",
"@ensdomains=packages/contracts/lib",
"forge-std=packages/contracts/lib/forge-std/src",
"@ens-contracts=packages/contracts/node_modules/@ensdomains/ens-contracts/contracts",
"@ensdomains=node_modules/@ensdomains",
"@openzeppelin=node_modules/@openzeppelin",
"forge-std=node_modules/forge-std/src",
"@eth-optimism/contracts-bedrock/src/libraries=packages/contracts/lib/optimism-bedrock-contracts",
]
ignored_warnings_from = ["**/lib/ens-contracts/", "**/src/evmgateway/"]
ignored_warnings_from = [
pikonha marked this conversation as resolved.
Show resolved Hide resolved
"node_modules/",
"packages/contracts/lib/**",
"**/src/evmgateway/",
]

# See more config options https://github.com/foundry-rs/foundry/blob/master/crates/config/README.md#all-options

Expand Down
Loading
Loading