You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am experiencing issues accessing the ENS subgraph endpoint. When attempting to use the endpoint, I receive a message indicating that the endpoint has been removed.
Error message:
This endpoint has been removed. If you have any questions, reach out to support@thegraph.zendesk.com
Code Example:
I use the example of getNamesForAddress() to test
import { createPublicClient, http } from 'viem'
import { mainnet } from 'viem/chains'
import { addEnsContracts } from '@ensdomains/ensjs'
import { getNamesForAddress } from '@ensdomains/ensjs/subgraph'
const client = createPublicClient({
chain: addEnsContracts(mainnet),
transport: http(),
})
const result = await getNamesForAddress(client, {
address: '0xFe89cc7aBB2C4183683ab71653C4cdc9B02D44b7',
})
Is there something I miss? thanks for any help.
The text was updated successfully, but these errors were encountered:
Description
I am experiencing issues accessing the ENS subgraph endpoint. When attempting to use the endpoint, I receive a message indicating that the endpoint has been removed.
Error message:
This endpoint has been removed. If you have any questions, reach out to support@thegraph.zendesk.com
Code Example:
I use the example of getNamesForAddress() to test
Is there something I miss? thanks for any help.
The text was updated successfully, but these errors were encountered: