In hardhat config file I am able to provide multiple wallets via an array in the account field. How do I access the 2nd signer? I would like to have a single run deploy script to deploy two contracts each with a different signer.
I know I can just split the deployment into two each with their own config, but my use case is a 12 contract codebase with intricate dependencies between them and I'd like to deploy all of them in one go.
I'm using this approach to deploy: https://hardhat.org/hardhat-runner/docs/guides/deploying
Would be great to have a similar example for the second signer.