To connect to an Ethereum Testnet,
the configuration in hardhat.config.js
is like this:
networks: {
ropsten: {
url: `https://eth-ropsten.alchemyapi.io/v2/${ALCHEMY_API_KEY}`,
accounts: [`${ROPSTEN_PRIVATE_KEY}`]
}
}
(taken from here: https://hardhat.org/tutorial/deploying-to-a-live-network.html )
How can I add a network config for the RSK Testnet?
(Note that I'm using a seed phrase instead of a raw private key)