I'm currently attempting to utilize the polygon amoy testnet on a local server. Unfortunately, I haven't been able to determine if there's a method for accessing this chain via thirdweb.
My code is implemented in typescript.
Although I attempted using
const activeChain = "amoy";
and const activeChain = "polygonamoy";
, an error occurred:
Error: Invalid chain: "amoy". It is not one of supportedChains
.
The tutorial I'm following, found at this link, mentions the mumbai testnet using simply
const activeChain = "mumbai";
. However, that option is currently unavailable.
Is there any alternative approach or a solution to specifically reference the polygon amoy chain?