Goerli to Sepholia move on The Graph

Hello,

Alchemy just announced they will decomission Goerli testnets by end of March. I’m currently consequently looking for support of the Polygon Amoy (80002) testnet on our different required services. I don’t see the Polygon Amoy support in The Graph network list. Can you tell me when you will support it ?

Thank you

3 Likes

Hello,

Polygon announced Polygon Mumbai deprecation for April 13th. Is there any news regarding Amoy support on The Graph ?

Thank you

1 Like

We are in touch with Polygon to get that enabled very soon.

2 Likes

Hello,

any news on this ? I’m currently on my way to migrate to amoy as Alchemy has deprecated mumbai…

Best,

Polygon Amoy is now supported. Make sure you upgrade graph-cli to the latest version.

1 Like

Great news ! Thank you @itsjerryokolo ! :slight_smile:

1 Like

Hello @itsjerryokolo ,

so I updated my graph libs that way:

...
    "dependencies": {
        "@graphprotocol/graph-cli": "0.69.2",
        "@graphprotocol/graph-ts": "0.34.0"
    },
...

Then I setup my subgraphyaml that way :

specVersion: 0.0.5
schema:
    file: ./schema.graphql
dataSources:
    - kind: ethereum
      name: MVREstate
      network: amoy
      source:
...

However when trying deploy to The Graph Studio :

yarn graph deploy --studio --version-label ${GRAPH_VERSION_LABEL} ${VRESTATE_SUBGRAPH_NAME}

I get that error:

✖ Failed to deploy to Graph node https://api.studio.thegraph.com/deploy/: Could not deploy subgraph on graph-node: network not supported by registrar: no network amoy found on chain ethereum. Deployment: QmTCuHC7xpZYma2kL9xkh8RV625q33pkGSi2z1ce6CVC9B

Can you help on this ? Is there some documentation updated ?

Thank you !

OK, I found the appropriate network name and deployment is now working:

...
specVersion: 0.0.5
schema:
    file: ./schema.graphql
dataSources:
    - kind: ethereum
      name: MVREstate
      network: polygon-amoy
      source:
...
3 Likes