-
Notifications
You must be signed in to change notification settings - Fork 16
ENSv2: Refactor Namechain #1659
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
cf5fa8a
38956f0
6ccee1b
368f547
aba01cc
84087e1
d343c2a
621f172
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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,6 @@ | ||||||||||
| --- | ||||||||||
| "ensindexer": minor | ||||||||||
| "ensapi": minor | ||||||||||
|
Comment on lines
+2
to
+3
|
||||||||||
| "ensindexer": minor | |
| "ensapi": minor | |
| "ensindexer": major | |
| "ensapi": major |
| Original file line number | Diff line number | Diff line change | ||||||
|---|---|---|---|---|---|---|---|---|
| @@ -1,8 +1,7 @@ | ||||||||
| import config from "@/config"; | ||||||||
|
|
||||||||
| import { ccipRequest, createPublicClient, fallback, http, type PublicClient } from "viem"; | ||||||||
| import { createPublicClient, fallback, http, type PublicClient } from "viem"; | ||||||||
|
|
||||||||
| import { ensTestEnvL1Chain } from "@ensnode/datasources"; | ||||||||
| import type { ChainId } from "@ensnode/ensnode-sdk"; | ||||||||
|
|
||||||||
| const _cache = new Map<ChainId, PublicClient>(); | ||||||||
|
|
@@ -24,21 +23,6 @@ export function getPublicClient(chainId: ChainId): PublicClient { | |||||||
| // Create an viem#PublicClient that uses a fallback() transport with all specified HTTP RPCs | ||||||||
| createPublicClient({ | ||||||||
| transport: fallback(rpcConfig.httpRPCs.map((url) => http(url.toString()))), | ||||||||
|
||||||||
| transport: fallback(rpcConfig.httpRPCs.map((url) => http(url.toString()))), | |
| transport: fallback(rpcConfig.httpRPCs.map((url) => http(url.toString()))), | |
| ccipRead: true, |
Uh oh!
There was an error while loading. Please reload this page.