I'm following the Defender Meta-Transactions Workshop and as per this instruction: To run the workshop code yourself on the xDai network you will need to sign up to Defender and apply for mainnet access, or change the code to use a public testnet.
I've cupdated hardhat.config.js to use a public test net, like this
ropsten {
url: 'https://ropsten.infura.io/v3/project-id',
accounts: [process.env.PRIVATE_KEY],
however running yarn deploy returns
Error: Cannot find module '../../builtin-tasks/task-names'
Any tips on how to handle this error are greatly appreciated. Thank you!
T