-
Notifications
You must be signed in to change notification settings - Fork 16
update ensv2 indexing for latest devnet: reservations, event renames, resolver.dedicated removal #1845
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
Merged
Merged
update ensv2 indexing for latest devnet: reservations, event renames, resolver.dedicated removal #1845
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
4880146
checkpoint: update addresses, use docker-compose as source of truth f…
shrugs cbb6449
fix: remove the Resolver.dedicated metadata in advance of permissione…
shrugs 2ecd710
docs(changeset): Omnigraph API (BREAKING): Removed `Resolver.dedicate…
shrugs 2c0ddf3
checkpoint: update abis
shrugs 3d12851
feat: implement registration and reservation in latest devnet commit
shrugs 6941fba
save unregistrant
shrugs 3bf16a5
use distinct ensindexer schema names
shrugs 8784e46
fix orchestrator
shrugs 35eace6
fix: remove unnecessary helper
shrugs 3107c80
fix: container name devnet
shrugs d11d0b9
nit: add relation
shrugs 19a467e
add manual instructions
shrugs a9c73b9
fix: pr notes
shrugs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "ensapi": minor | ||
| --- | ||
|
|
||
| Omnigraph API (BREAKING): Removed `Resolver.dedicated` field in advance of PermissionedResolver integration. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,7 +25,7 @@ import { | |
| // via devnet | ||
| const DEVNET_DEPLOYER: Address = "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266"; | ||
| const DEFAULT_OWNER: Address = "0x70997970c51812dc3a010c7d01b50e0d17dc79c8"; | ||
| const NEW_OWNER: Address = "0x90f79bf6eb2c4f870365e785982e1f101e93b906"; | ||
| const NEW_OWNER_OWNER: Address = "0x3C44CdDdB6a900fa2b585dd299e03d12FA4293BC"; | ||
|
|
||
shrugs marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| describe("Account.domains", () => { | ||
|
Comment on lines
26
to
30
|
||
| type AccountDomainsResult = { | ||
|
|
@@ -66,7 +66,9 @@ describe("Account.domains", () => { | |
| }); | ||
|
|
||
| it("returns domains owned by the new owner", async () => { | ||
| const result = await request<AccountDomainsResult>(AccountDomains, { address: NEW_OWNER }); | ||
| const result = await request<AccountDomainsResult>(AccountDomains, { | ||
| address: NEW_OWNER_OWNER, | ||
| }); | ||
| const domains = flattenConnection(result.account.domains); | ||
| const names = domains.map((d) => d.name); | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.