I have a problem deploying my smart contracts to Goerli. I'm using Truffle config. I want to avoid deployment from Remix. Want to keep it within Truffle. Do you have any Truffle setup for this that successfully deployed to Goerli?
Nov 17, 2022, 11:16 PM
Okay I'll try Mumbai shouldn't be different from Goerli. Thanks.
Nov 17, 2022, 11:18 PM
I use hardhat mostly but the process should be the same. Usually involves setting up the network in the config file then writing s deployment script and executing that. Should be in the documentation. I don't have a setup. Sorry.
Nov 17, 2022, 11:18 PM
I use the migration file in Truffle to deploy to Gamache. It should be the same if I'm pointing to a testnet right? Nothing different? Or do I have to sign the transaction first?
Nov 17, 2022, 11:20 PM
If you have provided your private key in the config file, then you have "signed" the deployment. If you check the deployed address on the test net, it would show the address that deployed it.
etherscan, ploygonscan etc
Nov 17, 2022, 11:23 PM
Yea the provider has the mnemonic and the Alchemy connection so I figure I'm good there
That's thebhead scratcher when it fails on goerli. It was fine with Kovan and Rinkeby but these two are not supported anymore
So got to be Goerli network. I'll try Mumbai
Nov 17, 2022, 11:33 PM